body{
    overflow-x: hidden;
    box-sizing: border-box;
}

/* main-content-wrapper */
.main-content-wrapper-sales {
    padding: 52px 0px;
    background: url('../images/svg/sales_crowd.svg') no-repeat;
    background-position: bottom;
    background-size: cover;
    width: 100%;

    .display-4 {
        font-family: var(--futuraStdExtraBold);
        font-size: 72px;
        font-weight: 750;
        line-height: 1.1;
        letter-spacing: 2px;
        text-align: center;
        color: #fff;
        width: auto;
        text-transform: uppercase;
        margin-bottom: 32px;
    }

    .display-3 {
        font-family: var(--futuraStdExtraBold);
        font-size: 46px;
        font-weight: 750;
        line-height: 1.05;
        letter-spacing: 1px;
        text-align: center;
        color: #fff;
        text-transform: uppercase;
        font-weight: bold;
        max-width: 1024px;
        margin: 0 auto;
    }

    .header-title {
        font-family: var(--archivo-narrow);
        color: #ffffff;
        text-align: center;
        font-weight: bold;
        margin-top: 32px;
        text-transform: capitalize;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 24px;
        
        h4{
            font-size: 36px;
            font-weight: 700;
            margin-bottom: 0;
            line-height: 1.2;
            letter-spacing: 2px;
        }

        /* .dare{
            height: 5rem; 
            margin: 0 10px;
        } */
    }

    .leverage {
        font-family: var(--archivo-narrow);
        font-size: 32px;
        font-weight: 400;
        line-height: 1.2;
        letter-spacing: 1px;
        text-align: center;
        color: #D2A164;;
        text-transform: capitalize;
        max-width: 95%;
        margin: 0 auto;
        margin-bottom: 2rem;

        strong{
            position: relative;
            overflow-x: visible;

            &::after{
                content: '';
                background: url('../images/svg/do-not-bottom.svg');
                max-width: 132px;
                width: 100%;
                height: 8px;
                position: absolute;
                bottom: -2px;
                left: 50%;
                transform: translateX(-50%);
                background-size: cover;
            }

        }
    }

}

/* Extra large screen */
@media only screen and (max-width: 1599px){
    .main-content-wrapper-sales {    
        .display-4 {
            font-size: 72px;
        }
    
        .display-3 {
            font-size: 46px;
        }
    
        .header-title {            
            h4{
                font-size: 42px;
            }
    
            .dare{
                height: 4.75rem; 
                margin: 0 8px;
            }
        }
    
        .leverage {
            font-size: 36px;
        }
    
    }
}
  
  /* large screen */
@media only screen and (max-width: 1399px){
    .main-content-wrapper-sales {    
        .display-4 {
            font-size: 52px;
            margin-bottom: 24px;
        }
    
        .display-3 {
            font-size: 40px;
        }
    
        .header-title {            
            h4{
                font-size: 38px;
            }
    
            .dare{
                height: 4.25rem; 
            }
        }
    
        .leverage {
            font-size: 32px;
        }
    
    }
}
  
  /* laptop screen */
  @media only screen and (max-width: 1199px){
    .main-content-wrapper-sales {    
        .display-4 {
            font-size: 36px;
            margin-bottom: 20px;
        }
    
        .display-3 {
            font-size: 30px;
        }
    
        .header-title {            
            h4{
                font-size: 28px;
            }
    
            .dare{
                height: 3.25rem; 
            }
        }
    
        .leverage {
            font-size: 28px;
        }

        .btn-submit {
            max-width: 346px;
            font-size: 26px;     
        }
    
    }
  }

  /* mid screen / Tabs */
  /* @media only screen and (max-width: 991px){
    
  } */
  
  /* tabs screen */
  @media only screen and (max-width: 765px){
    .main-content-wrapper-sales { 
        padding: 32px 0;   
        .display-4 {
            font-size: 34px;
            margin-bottom: 16px;
        }

        .display-3 {
            margin-bottom: 12px;
        }
    
        .header-title {
            flex-direction: column;
            
            h4{
                font-size: 32px;
            }
    
            .dare{
                height: 3.25rem; 
                margin: 8px;
            }
        }
    
        .leverage {
            font-size: 28px;

            strong{
                &::after{
                    bottom: -4px;
                }
    
            }
        }

        .btn-submit { 
            padding: 14px 16px; 
            font-size: 28px;
            font-weight: 600;
        }
    
    }
  }

  /* extra small / Mobile devices */
  @media only screen and (max-width: 575px){
    .main-content-wrapper-sales {    
        .display-4 {
            font-size: 2.2rem;
            margin-bottom: 16px;
            line-height: 1.35;
        }
    
        .display-3 {
            font-size: 1.8rem;
        }
    
        .header-title {
            flex-direction: column;
            
            h4{
                font-size: 1.8rem;
            }
    
            .dare{
                height: 2.8rem; 
                margin: 8px;
            }
        }
    
        .leverage {
            font-size: 22px;
            line-height: 1.2;
        }
    
    }
  }


/* banner-bottom-quote */
.banner-bottom-quote{
    background-color: var(--CKBlack);
    padding: 52px 0;
    box-sizing: border-box;
    text-align: center;
    color: var(--white);

    .quote-text {
        font-size: 2.5rem;
        font-weight: 400;
        line-height: 1.2;
        text-align: center;
        /* letter-spacing: 0.01em; */
        color: #D2A164;
        margin-bottom: 0;
    }
}

/* laptop screen */
@media only screen and (max-width: 1199px){
    .banner-bottom-quote{
        padding: 46px 0;
    
        .quote-text {
            font-size: 2.25rem;
        }
    }
}

/* mid screen / Tabs */
@media only screen and (max-width: 991px){
    .banner-bottom-quote{
        padding: 42px 0;
    
        .quote-text {
            font-size: 2rem;
        }
    }
}

/* extra small / Mobile devices */
@media only screen and (max-width: 575px){
    .banner-bottom-quote{
        padding: 34px 0;
    
        .quote-text {
            font-size: 22px;
        }
    }
}

.dare-want{
    background-color: #000;
}

.why-mind-mastery{
    .module{
        margin-top: 38px;

        .h-title{
            font-size: 2rem ;
            margin-bottom: 28px;
            font-family: var(--archivo-narrow);
            font-weight: 700;
            line-height: 1.2;
            color: rgba(210, 161, 100, 1);
            text-align: center;
            position: relative;

            &::after{
                content: '';
                background: url('../images/svg/under-line.svg');
                max-width: 220px;
                width: 100%;
                height: 10px;
                position: absolute;
                bottom: -10px;
                left: 50%;
                transform: translateX(-50%);
            }
        }

        .para-1{
            font-size: 1.5rem;
            font-weight: 700;
            line-height: 1.4;
            letter-spacing: 1px;
            margin-bottom: 12px;
            color: #000;
            text-align: center;
        }

        .para-2{
            font-size: 1.5rem;
            font-weight: 400;
            line-height: 1.4;
            letter-spacing: 1px;
            margin-bottom: 6px;
            color: #000;
            text-align: justify;
        }
        
    }
}

@media only screen and (max-width: 765px){
    .why-mind-mastery{
        .module{
            margin-top: 24px;
    
            .h-title{
                font-size: 28px ;
                margin-bottom: 24px;                
            }
    
            .para-1{
                font-size: 22px;
            }
    
            .para-2{
                font-size: 18px;
                line-height: 1.5;
            }
            
        }
    }
}

.common-section{
    padding: 52px 0px;

    .header-title {
        font-size: 60px;
        color: #D2A164;
        text-align: center;
        font-weight: 700;
        line-height: 1.2;
        text-transform: uppercase;
        margin-bottom: 1.5rem;
    }

    .header-subtitle {
        font-size: 3rem;
        color: #D2A164;
        text-align: center;
        font-weight: 700;
        line-height: 1.2;
        text-transform: uppercase;
        margin-bottom: 8px;
    }

    .content-section {
        background-color: #fff;

        .content-text {
            color: var(--CKBlack);
            font-size: 1.8rem;
            font-weight: 400;
            line-height: 1.5;
            letter-spacing: 1px;
            text-align: justify;
        }
    }

    .header-title-2{
        font-size: 40px;
        margin-bottom: 2rem;
        color: #D2A164;
        font-family: var(--futuraStdExtraBold);
        letter-spacing: 0.005em;
        text-align: center;
    }

    .ol-list{
        margin-bottom: 0;

        li{
            font-size: 1.8rem;
            font-weight: bold;
            margin-top: 2rem;
            line-height: 1.2;
            margin-bottom: 6px;
            letter-spacing: 1px;
            text-align: justify;
        }
    }

}

/* Extra large screen */
@media only screen and (max-width: 1599px){
    .common-section{
        .header-title-2{
            font-size: 36px;
        }
    }
}
  
  /* large screen */
  @media only screen and (max-width: 1399px){
    .common-section{
        .header-title {
            font-size: 52px;
        }

        .header-title-2{
            font-size: 32px;
            margin-bottom: 1.75rem;
        }
    }
  }
  
  /* laptop screen */
@media only screen and (max-width: 1199px){
    .common-section{
        .header-title {
            font-size: 3rem;
            margin-bottom: 1.25rem;
        }

        .header-title-2{
            font-size: 28px;
        }
    }    
}
 
/* mid screen / Tabs */
@media only screen and (max-width: 991px){
    .common-section{
        padding: 42px 0px;
    
        .header-title {
            font-size: 2.75rem;
            margin-bottom: 1.25rem;
        }
    
        .header-subtitle {
            font-size: 2.4rem;
        }
    
        .content-section {
            padding: 0;  
            .content-text {
                font-size: 1.5rem;
                margin-bottom: 8px;
            }
        }

        .header-title-2{
            font-size: 24px;
            margin-bottom: 1.5rem;
        }
        
        .ol-list{    
            li{
                font-size: 1.5rem;
                margin-top: 1.5rem;
            }
        }
    }
}

/* tabs screen */
@media only screen and (max-width: 765px){
    .common-section{
        padding: 38px 0px;
    
        .header-title {
            font-size: 2.25rem;
            margin-bottom: 1rem;
        }
    
        .header-subtitle {
            font-size: 2rem;
        }
    
        .content-section {    
            .content-text {
                font-size: 1.25rem;
            }
        }

        .header-title-2{
            font-size: 20px;
        }

        .ol-list{    
            li{
                font-size: 1.25rem;
            }
        }
    
    }
}

/* extra small / Mobile devices */
@media only screen and (max-width: 575px){
    .common-section{
        padding: 32px 0px;

        .header-title {
            font-size: 1.5rem;
            margin: 0;
            margin-bottom: 1rem;
        }
    
        .header-subtitle {
            font-size: 1.25rem;
        }
        
        .header-title-2{
            font-size: 18px;
            margin-bottom: 1.25rem;
        }
        .content-section {    
            .content-text {
                font-size: 1rem;
            }
            .content-text-2{
                font-size: 1rem;
            }
        }
        .ol-list{
            padding-left: 20px;
            li{
                font-size: 1rem;
                margin-top: 0.75rem;
            }
        }
    }    
}


/* just-imagine */
.just-imagine{
    background-color: #000;
    padding: 52px 0;
    box-sizing: border-box;
    color: var(--white);

    .header-title{
        font-size: 60px;
        font-family: var(--futuraStdExtraBold);
        font-weight: 750;
        line-height: 1.5;
        color: var(--white);
        margin: 0;
        margin-bottom: 32px;
        text-align: center;
    }

    .list{
        --icon-space: 32px;
        list-style: none;
        padding: 0;
        margin: 0;
        margin-bottom: 30px;

        .item{
            font-size: 1.8rem;
            font-weight: 400;
            line-height: 1.5;
            margin-bottom: 10px;
            color: var(--white);
            letter-spacing: 2px;
            padding-left: var(--icon-space);
            display: flex;
            align-items: flex-start;
            column-gap: 12px;

            p{
                font-size: inherit;
                text-align: justify;
            }

            &:before {
                content:'';
                display: inline-block;
                min-width: 32px;
                min-height: 32px;
                width: 32px;
                height: 32px;
                margin-top: 6px;
                background:  url('../images/svg/right-circle.svg');
                background-size: cover;
            }
        }    
    }

    .you-dont{
        font-size: 60px;
        font-family: var(--futuraStdExtraBold);
        font-weight: 750;
        line-height: 1.3;
        color: var(--white);
        margin-bottom: 32px;
        text-align: center;
    }

    .quote-text {
        font-size: 2rem;
        font-weight: 400;
        line-height: 1.2;
        text-align: center;
        letter-spacing: 2px;
        color: var(--white);
        margin-bottom: 0;
    }

    .header-title-2{
        font-size: 40px;
        margin-bottom: 2rem;
        color: #D2A164;
        font-family: var(--futuraStdExtraBold);
        letter-spacing: 0.005em;
        text-align: center;
    }
}

.before-make{
    background: url('../../assets/images/svg/crowd.svg') no-repeat center;
    background-size: cover;
    background-color: black;

    .header-title-2{
        letter-spacing: 1px;

        .under-line{
            position: relative;

            &::after{
                content: '';
                max-width: 100%;
                width: 100%;
                height: 20px;
                position: absolute;
                bottom: -20px;
                left: 0;
                background: url('../images/not-for-bottom.png') no-repeat;
                background-size: contain;

                @media only screen and (max-width: 575px){
                    height: 14px;
                    bottom: -12px;
                }
            }
        }
    }

    .list{
        .item{
            p{
                letter-spacing: 1px;
                span{
                    color: #D2A164;
                    font-weight: bold;
                    position: relative;

                    &::after{
                        content: '';
                        background: url('../../assets/images/svg/not-bottom.svg') no-repeat;
                        background-size: contain;
                        width: 100%;
                        max-width: 60px;
                        height: 10px;
                        position: absolute;
                        bottom: -8px;
                        left: 0;
                    }
                }
            }
        }
    }

  }

  .have-you{
    background-color: black;
  }


/* Extra large screen */
@media only screen and (max-width: 1599px){
    .just-imagine{    
        /* .header-title{
            font-size: 52px;
        } */
    
        .list{    
            .item{
                font-size: 1.8rem;
    
                &:before {
                    min-width: 28px;
                    min-height: 28px;
                    width: 28px;
                    height: 28px;
                    margin-top: 0;
                }
            }    
        }
    
        /* .you-dont{
            font-size: 52px;
        } */
    
        .quote-text {
            font-size: 1.8rem;
        }

        /* .header-title-2{
            font-size: 36px;
        } */
    }
}
  
  /* large screen */
  @media only screen and (max-width: 1399px){
    .just-imagine{    
        .header-title{
            font-size: 42px;
        }
    
        .list{    
            .item{
                font-size: 1.6rem;
            }    
        }
    
        .you-dont{
            font-size: 42px;
        }
    
        .quote-text {
            font-size: 1.6rem;
        }

        .header-title-2{
            font-size: 32px;
            margin-bottom: 1.75rem;
        }
    }
  }
  
  /* laptop screen */
@media only screen and (max-width: 1199px){

    .just-imagine{    
        .header-title{
            font-size: 38px;
        }
    
        .list{    
            .item{
                font-size: 1.5rem;
    
                &:before {
                    min-width: 24px;
                    min-height: 24px;
                    width: 24px;
                    height: 24px;
                }
            }    
        }
    
        .you-dont{
            font-size: 38px;
        }
    
        .quote-text {
            font-size: 1.5rem;
        }

        .header-title-2{
            font-size: 28px;
        }
    }
}
  /* mid screen / Tabs */
  @media only screen and (max-width: 991px){
    .just-imagine{    
        .header-title{
            font-size: 34px;
        }
    
        .list{    
            .item{
                font-size: 1.25rem;
            }    
        }
    
        .you-dont{
            font-size: 34px;
        }
    
        .quote-text {
            font-size: 1.25rem;
        }
        .header-title-2{
            font-size: 24px;
            margin-bottom: 1.5rem;
        }
    }
  }
  
  /* tabs screen */
  @media only screen and (max-width: 765px){
    .just-imagine{    
        .header-title{
            font-size: 28px;
        }
    
        .you-dont{
            font-size: 28px;
        }

        .header-title-2{
            font-size: 20px;
        }
    }
  }
  
  
  /* extra small / Mobile devices */
  @media only screen and (max-width: 575px){
    .just-imagine{
        padding: 32px 0;
          
        .header-title{
            font-size: 1.5rem;
            margin-bottom: 24px;
        }
    
        .list{ 
            margin-bottom: 16px;  
            .item{
                font-size: 1rem;
                padding-left: 0;
    
                &:before {
                    min-width: 20px;
                    min-height: 20px;
                    width: 20px;
                    height: 20px;
                }
            }    
        }
    
        .you-dont{
            font-size: 1.5rem;
            margin-bottom: 24px;
        }
    
        .quote-text {
            font-size: 1rem;
            letter-spacing: 1px;
        }

        .header-title-2{
            font-size: 1.25rem;
            margin-bottom: 1.25rem;
            line-height: 1.5;
        }
    }

    .before-make {
        & .list {
            & .item {
                p {
                    margin-bottom: 8px;
                }
            }
        }
    }


  }





/* qoute */
.quote-container {
    background-color: #D2A164;
    text-align: center;
    padding: 50px 20px;
    width: 100%;
    box-sizing: border-box;
    color: #fff;
    padding-inline: 5rem;

    .quote-text {
        font-size: 1.5rem;
        font-weight: 400;
        line-height: 2.5rem;
        text-align: center;
        letter-spacing: 0.01em;
        color: #D2A164;
    }
    
    .quote-header {
        font-size: 2.5rem;
        color: #fff;
        text-align: center;
        font-weight: bold;
        text-transform: uppercase;
    }
}


/* qoute */
.quote-container {
    background-color: #000;    
    padding: 50px 0;

    .content-wrapper{
        .header-subtitle{
            font-size: 60px;
            line-height: 1.3;
            font-family: var(--futuraStdExtraBold);
            margin-bottom: 16px;
            color: #D2A164;
            text-align: center;
        }

        h4{
            font-size: 60px;
            line-height: 1.3;
            font-family: var(--futuraStdExtraBold);
            margin-bottom: 16px;
            color: #fff;
            text-align: center;
        }

        .author{
            text-align: center;
            font-size: 2rem;
            font-weight: 400;
            margin-bottom: 0;
            color: var(--white);
        }
    }
}

.quote-container.your-alliance{
    .content-wrapper{
        h4{
            font-size: 80px;
            max-width: 1456px;
            width: 100%;
        }
    }
}

/* Extra large screen */
@media only screen and (max-width: 1599px){
    .quote-container {    
        .content-wrapper{
            .header-subtitle{
                font-size: 48px;
            }
    
            h4{
                font-size: 52px;
            }
        }
    }

    .quote-container.your-alliance{
        .content-wrapper{
            h4{
                font-size: 60px;
            }
        }
    }
}
  
  /* large screen */
  @media only screen and (max-width: 1399px){
    .quote-container {    
        .content-wrapper{
            .header-subtitle{
                font-size: 38px;
            }

            h4{
                font-size: 42px;
            }

            .author{
                font-size: 1.8rem;
            }
        }
    }

    .quote-container.your-alliance{
        .content-wrapper{
            h4{
                font-size: 52px;
            }
        }
    }
  }
  
  /* laptop screen */
@media only screen and (max-width: 1199px){
    .quote-container {    
        .content-wrapper{
            .header-subtitle{
                font-size: 36px;
            }

            h4{
                font-size: 38px;
            }

            .author{
                font-size: 1.5rem;
            }
        }
    }

    .quote-container.your-alliance{
        .content-wrapper{
            h4{
                font-size: 46px;
            }
        }
    }
}
  /* mid screen / Tabs */
  @media only screen and (max-width: 991px){
    .quote-container {    
        .content-wrapper{
            .header-subtitle{
                font-size: 32px;
            }
    
            h4{
                font-size: 34px;
            }

        }
    }

    .quote-container.your-alliance{
        .content-wrapper{
            h4{
                font-size: 36px;
            }
        }
    }
  }
  
  /* tabs screen */
  @media only screen and (max-width: 765px){
    .quote-container {    
        .content-wrapper{
            .header-subtitle{
                font-size: 26px;
            }

            h4{
                font-size: 28px;
            }
            .author{
                font-size: 1.25rem;
            }

        }
    }

    .quote-container.your-alliance{
        .content-wrapper{
            h4{
                font-size: 28px;
            }
        }
    }
  }
  
  
  /* extra small / Mobile devices */
  @media only screen and (max-width: 575px){
    .quote-container {    
        .content-wrapper{
            .header-subtitle{
                font-size: 30px;
            }
    
            h4{
                font-size: 32px;
            }

            .author{
                font-size: 1rem;
            }
        }
    }

    .quote-container.your-alliance{
        .content-wrapper{
            h4{
                font-size: 22px;
            }
        }
    }
  }


/* well-container */
.well-container{
    background-color: #000;    
    padding: 72px 0;

    .header-title{
        font-size: 40px;
        line-height: 1.5;
        font-family: var(--futuraStdExtraBold);
        margin-bottom: 32px;
        margin-top: 0;
        color: #D2A164;
        text-align: center;
        color: var(--white);
    }

    .text-1{
        font-size: 1.8rem;
        color: var(--white);
        margin-bottom: 8px;
        line-height: 1.7;
        font-weight: 400;
        letter-spacing: 1px;
        text-align: justify;
    }
}

/* Extra large screen */
@media only screen and (max-width: 1599px){
    .well-container{
        padding: 60px 0;        
    }
}
  
  /* laptop screen */
  @media only screen and (max-width: 1199px){
    .well-container{
        padding: 50px 0;
    
        .header-title{
            font-size: 28px;
            margin-bottom: 28px;
        }    
    
        .text-1{
            font-size: 1.5rem;
        }
    }
  }

  /* mid screen / Tabs */
  @media only screen and (max-width: 991px){
    .well-container{
        padding: 42px 0;
    
        .header-title{
            font-size: 26px;
            margin-bottom: 32px;
        }
    }
  }
  
  /* tabs screen */
  @media only screen and (max-width: 765px){
    .well-container{
        padding: 32px 0;
    
        .header-title{
            font-size: 24px;
            margin-bottom: 24px;
        }
    
    }
  }

  /* tabs screen */
  @media only screen and (max-width: 575px){
    .well-container{  
        
        .text-1{
            font-size: 1rem;
        }
    }
  }


.pricing-box {
    border: 1px solid #dee2e6;
    padding: 20px;
    border-radius: 10px;
    background-color: #fff3cd;
    color: #856404;
}

.lead {
    color: #D2A164;
    font-family: Archivo Narrow;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 2.5rem;
    letter-spacing: 0.04em;
    text-align: center;
    margin-bottom: 0.2rem;
    margin-top: 1rem;
}

.lead-1 {
    color: #D2A164;
    font-family: Archivo Narrow;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-align: center;

}

/* .leverage {
    font-family: Archivo Narrow;
    font-size: 1.3rem;
    font-weight: 400;
    line-height: 2rem;
    letter-spacing: 0.04em;
    text-align: center;
    color: #FFFFFF;
    margin-bottom: 0.3rem;

} */

/* .leverage-1 {
    font-family: Archivo Narrow;
    font-size: 1.3rem;
    font-weight: 400;
    letter-spacing: 0.04em;
    text-align: center;
    color: #FFFFFF;

} */

.the-exact {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background-color: #D2A164;
    padding: 10px;
    padding-inline: 55px;
}

.the-exact h2 {
    font-family: Roboto Condensed;
    font-size: 2.6rem;
    font-weight: 700;
    line-height: 54.9px;
    letter-spacing: 0.14em;
    text-align: center;

}

/* .modules {
    display: flex;
    padding-block: 12px;
    background-color: #0E1012;
    margin-bottom: 5px;
    width: 99.6vw;
} */

/* .module {
    display: flex;
    align-items: center;
    flex-direction: column;
} */

/* .module h4 {
    color: #D2A164;
} */

/* .module p {
    font-family: Roboto Condensed;
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 30px;
    text-align: center;
    color: #fff;
} */

.badge-box {
    margin: 20px 0;
}


.badge-danger {
    font-size: 1.5em;
    padding: 10px 20px;
}

hr {
    border-top: 2px solid #f1f1f1;
}





/* You can */
.header-title {
    font-size: 2rem;
    color: #D2A164;
    text-align: center;
    font-weight: bold;
    margin-top: 20px;
    text-transform: uppercase;

}

.header-subtitle {
    font-size: 2.5rem;
    color: #D2A164;
    text-align: center;
    font-weight: bold;
    margin-top: 10px;
    /* margin-bottom: 30px; */
    text-transform: uppercase;
}

.content-text {
    color: #0E1012;
    font-size: 2rem;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: 1px;
    text-align: justify;
}

.content-text strong {
    font-weight: bold;
}

.highlight-text {
    color: #000;
    font-weight: bold;
    font-style: italic;
}

.highlight-text-normal {
    color: #000;
    font-weight: bold;
}

.content-section {
    margin: auto;
    padding: 20px;
    background-color: #fff;
}

.right-circle {
    width: 1.5rem;
    height: 1.5rem;
    margin-right: 0.5rem;
}

/* Eliminating negative */
.custom-section {
    width: 100%;
    overflow-x: hidden;
    padding: 72px 0;
    position: relative;

    &::after{
        content: '';
        background: url('../images/ck3.png') no-repeat;
        background-size: contain;
        background-position: right;
        background-size: contain;
        width: 100%;
        height: 100%;
        position: absolute;
        right: 0;
        top: 0;
        z-index: 1;
    }

    .text-section{
        position: relative;
        z-index: 2;
    }

    .custom-text {
        color: rgba(210, 161, 100, 1);
        font-size: 40px;
        font-family: var(--futuraStdExtraBold);
        font-weight: 750;
        /* letter-spacing: 0.1em; */
        line-height: 1.4;
        text-align: justify;
        margin-bottom: 40px;
    }

    p {
        font-size: 1.8rem;
        font-weight: 400;
        color: #000;
        line-height: 1.5;
        letter-spacing: 1px;
        margin-bottom: 12px;
        text-align: justify;
    }

    .list{
        --icon-space: 32px;
        list-style: none;
        padding: 0;
        margin: 0;
        margin-bottom: 12px 0;

        .item{
            font-size: 2rem;
            font-weight:700;
            letter-spacing: 1px;
            line-height: 1.2;
            margin-bottom: 10px;
            color: #0E1012;
            padding-left: var(--icon-space);
            display: flex;
            align-items: flex-start;
            column-gap: 12px;
            text-align: justify;
            padding: 0;

            &:before {
                content:'';
                display: inline-block;
                min-width: 32px;
                min-height: 32px;
                width: 32px;
                height: 32px;
                margin-top: 6px;
                background:  url('../images/svg/right-circle.svg');
                background-size: cover;
            }
        }    
    }
    
    .image-section img {
        max-width: 100%;
        height: auto;
    }
}

/* Extra large screen */
@media only screen and (max-width: 1599px){
    .custom-section {

        .list{    
            .item{
                font-size: 1.8rem;
                
                &:before {
                    min-width: 28px;
                    min-height: 28px;
                    width: 28px;
                    height: 28px;
                    margin-top: 0;
                }
            }    
        }
        
    }
}
  
  /* large screen */
  @media only screen and (max-width: 1399px){
    .custom-section {
        padding-top: 1500px;

        &::after{
            content: '';
            background: url('../images/ck3-mobile.png') no-repeat;
            background-size: cover;
            background-position: top;
        }

        .custom-text {
            font-size: 36px;
            margin-bottom: 24px;
        }

        .list{    
            .item{
                font-size: 1.6rem;
            }    
        }
        
    }
  }
  
  /* laptop screen */
@media only screen and (max-width: 1199px){
    .custom-section {
        padding-top: 1020px;

        &::after{
            content: '';
            background: url('../images/ck3-mobile.png') no-repeat;
            background-size: cover;
            background-position: top;
        }

        .custom-text {
            font-size: 30px;
            margin-bottom: 24px;
        }


        p {
            font-size: 1.5rem;
        }

        .list{    
            .item{
                font-size: 1.5rem;
                
                &:before {
                    min-width: 24px;
                    min-height: 24px;
                    width: 24px;
                    height: 24px;
                }
            }    
        }
    }

 
}
  /* mid screen / Tabs */
  @media only screen and (max-width: 991px){
    .custom-section {

        .list{    
            .item{
                font-size: 1.5rem;
            }    
        }
    }

  }
  
  
  
  


/*  */
@media only screen and (max-width: 991px){
    .custom-section {
        padding: 36px 0;
        padding-top: 1020px;
    
        &::after{
            background-size: contain;
            /* content: '';
            background: url('../images/ck3-mobile.png') no-repeat;
            background-size: contain;
            background-position: top; */
            /* background-size: contain; */
            /* width: 100%;
            height: 100%;
            position: absolute;
            right: 0;
            top: 0;
            z-index: 1; */
        }
    
        /* .text-section{
            position: relative;
            z-index: 2;
        } */
    
        .custom-text {
            /* color: rgba(210, 161, 100, 1); */
            font-size: 2rem;
            /* font-family: var(--futuraStdExtraBold);
            font-weight: 750;
            letter-spacing: 1px;
            text-align: justify; */
            /* text-align: left; */
            margin-bottom: 16px;
        }
    
        p {
            /* margin: 20px 0; */
            font-size: 1rem;
            /* font-weight: 400;
            color: #000;
            line-height: 1.5;
            letter-spacing: 1px; */
            margin-bottom: 10px;
        }

        .list{    
            .item{
                font-size: 1rem;
            }    
        }
        
       

        ul {
            /* list-style: none;
            padding-left: 0;
            margin-bottom: 12px 0; */
        }
        
        ul li {
            /* margin-bottom: 10px;
            color: #0E1012;
            font-weight: 700; */
            /* text-align: left;
            font-size: 1rem; */
            /* font-weight: 700; */
        }
        
        /* ul li i {
            color: #FDB900;
            margin-right: 10px;
        } */
        
        .image-section img {
            max-width: 100%;
            height: auto;
        }
    }
}


/* tabs screen */
@media only screen and (max-width: 765px){
    .custom-section {
        padding: 24px 0;
        padding-top: 680px;
    
        &::after{
            background-position: top;
        }
    
        .custom-text {
            font-size: 1.5rem;
            margin-bottom: 16px;
        }
    
        p {
            font-size: 1rem;
            margin-bottom: 10px;
        }

        .list{    
            .item{
                font-size: 1rem;
            }    
        }
        
        .image-section img {
            max-width: 100%;
            height: auto;
        }
    }

    .custom-section.eleminate-negative{
        .custom-text {
           text-align: center;
        }
    }
  }

/* 6 steps */
.module-title {
    color: #0E1012;
    font-family: Archivo Narrow;
    font-size: 2rem;
    font-weight: 700;
    line-height: 2.5rem;
    letter-spacing: 0.07em;
    text-align: left;
    text-transform: uppercase;

}

.module-content {
    font-family: Roboto Condensed;
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 2rem;
    text-align: justify;
}

.module-image {
    max-width: 100%;
    height: auto;
    margin-bottom: 20px;
}

.back-container {
    background-color: #000;
    text-align: center;
    padding: 50px 20px;
    width: 100%;
    box-sizing: border-box;
    color: #fff;
    padding-inline: 5rem;
}

/* 12 steps */
.card-grid-wrapper{
    padding: 50px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    column-gap: 28px;

    .img-wrapper{
        flex-basis: 42%;

        .module-image{
            width: 100%;
        }
    }

    .line-bar{
        max-width: 393px;
        width: 100%;
    }

    .content-wrapper{
        flex-basis: 55%;

        .module-title{
            font-size: 50px;
            font-weight: 600;
            line-height: 1.1;
            margin-bottom: 8px;
            font-family: var(--archivo-narrow);
            letter-spacing: 1px;
            color: var(--CKBlack);
            font-weight: bolder;
        }

        .module-subtitle{
            font-size: 2rem;
            line-height: 1.4;
            letter-spacing: 1px;
            margin-bottom: 12px;
            font-family: var(--archivo-narrow);
            font-weight: 600;
            color: var(--CKBlack);
        }

        .module-content{
            font-size: 2rem;
            line-height: 1.3;
            margin-bottom: 0;
            text-align: justify;
            color: rgba(110, 110, 110, 1);
            letter-spacing: 1px;
        }
    }
}

/* Extra large screen */
@media only screen and (max-width: 1599px){
    .card-grid-wrapper{    
        .content-wrapper{    
            .module-title{
                font-size: 40px;
            }    
            .module-subtitle{
                font-size: 1.9rem;
            }    
            .module-content{
                font-size: 1.8rem;
            }
        }
    }
}
  
  /* large screen */
@media only screen and (max-width: 1399px){
    .card-grid-wrapper{
        padding: 40px 0;

        .content-wrapper{    
            .module-title{
                font-size: 38px;
            }    
            .module-subtitle{
                font-size: 1.8rem;
            }    
            .module-content{
                font-size: 1.7rem;
            }
        }
    }
}
  
  /* laptop screen */
  @media only screen and (max-width: 1199px){
    .card-grid-wrapper{
        align-items: center;
    
        .content-wrapper{    
            .module-title{
                font-size: 32px;
            }    
            .module-subtitle{
                font-size: 1.6rem;
                line-height: 1.1;
                margin-bottom: 8px;                
            }    
            .module-content{
                font-size: 1.5rem;
            }
        }
    }
  }

  /* mid screen / Tabs */
  @media only screen and (max-width: 991px){
    .card-grid-wrapper{
        flex-direction: column;
        padding: 15px 0;

        &:nth-child(odd){
            flex-direction: column-reverse;
        }
    
        .img-wrapper{
            flex-basis: 100%;
    
            .module-image{
               
                object-fit: cover;
            }
        }
    
        .content-wrapper{
            flex-basis: 100%;
            margin-bottom: 16px;
    
            .module-title{
                font-size: 28px;
            }
    
            .module-subtitle{
                font-size: 1.4rem;
                line-height: 1.1;
                margin-bottom: 8px;
            }
    
            .module-content{
                font-size: 1.35rem;
            }
        }
    }
  }
  
  /* tabs screen */
  @media only screen and (max-width: 765px){
    .card-grid-wrapper{    
        .content-wrapper{
            margin-bottom: 0px;
            .module-title{
                font-size: 22px;
            }

            .module-content{
                font-size: 18px;
            }
        }
    }
  }



/* faq */
.faqs{
    background-color: #000;

    .header-subtitle{
        font-size: 2.5rem;
        margin-bottom: 32px;
    }

    .btn-bottom{
        max-width: 800px;
        width: 100%;
        padding: 16px 24px;
        font-size: 2rem;
        font-weight: 700;
        letter-spacing: 3px;
        color: var(--white);
        background-color: rgba(210, 161, 100, 1);
        border: 1px solid #ffffff;
        text-transform: uppercase;
        border-radius: 0;
    }
}

@media only screen and (max-width: 1399px){
    .faqs{
       .header-subtitle{
            font-size: 1.75rem;
            margin-bottom: 24px;
        }
    }
}

@media only screen and (max-width: 1199px){
    .faqs{
       .header-subtitle{
            font-size: 1.5rem;
            margin-bottom: 16px;
        }
    }
}

@media only screen and (max-width: 765px){
    .faqs{
       .header-subtitle{
            font-size: 1.25rem;
        }
    }
}


.accordion .card {
    background-color: #fff;
    /* border: none; */
    border: 2px solid #D2A164;
    border-radius: 0px;
    margin-bottom: 10px;
}

.accordion .card-header {
    background-color: #fff;
    color: #000;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    border-bottom: 0px;
}

.accordion .card-body {
    background-color: #fff;
    color: #757575;
    margin: 10px 15px;
    padding: 0;
    padding-left: 15px;
    font-size: 24px;
    text-align: justify;
    border-left: 2px solid #D2A164;
    margin-left: 3%;
}

.accordion .card-body p{
    margin-bottom: 8px;
}

.accordion .card-header .btn-link {
    text-decoration: none;
    color: rgba(0, 0, 0, 1);
    font-family: var(--archivo-narrow);
    font-weight: bold;
    font-size: 24px;
    font-weight: 500;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

@media only screen and (max-width: 991px){
    .faqs{    
        .btn-bottom{
            max-width:620px;
            font-size: 1.5rem;
        }
    }
}

@media only screen and (max-width: 765px){
    .faqs{    
        .btn-bottom{
            max-width: 502px;
            padding: 10px 16px;
            font-size: 1.5rem;
            font-weight: 700;
            letter-spacing: 0;
        }
    }
}

@media only screen and (max-width: 576px){
    .faqs{    
        .btn-bottom{
            max-width:400px;
        }
    }
}

@media only screen and (max-width:  575px){
    .accordion .card-header .btn-link {
        font-size: 16px;
    }

    .accordion .card-body {
        font-size: 16px;

        p{
            margin-bottom: 8px;
        }
    }    
}

/* .accordion .card-header .btn-link:hover {
    text-decoration: none;
    color: #fff;
} */
.accordion .card-header .btn-link::before {
    content: '+';
    font-size: 20px;
    font-weight: bold;
    margin-left: auto;
    margin-right: 0.5rem;
    color: #D2A164;
}

.accordion .card-header .btn-link.collapsed::before {
    content: '+';
}

.accordion .card-header .btn-link:not(.collapsed)::before {
    content: '−';
}

.about-section {
    background-image: url('../images/svg/meet-chirag.svg');
    background-size: cover;
    background-position: center;
    padding: 50px 0;
    color: #000;
    /* Ensure the text is readable on the background */
}

.about-title {
    font-weight: bold;
    text-transform: uppercase;
    font-size: 2rem;
    margin-bottom: 20px;
}

.about-text {
    font-size: 1.2rem;
    margin-bottom: 15px;
    line-height: 1.6;
    font-family: Roboto Condensed;
    font-weight: 400;
    text-align: justify;
    color: "#6E6E6E"
}

@media (max-width: 768px) {
    .about-title {
        font-size: 1.5rem;
    }

    .about-text {
        font-size: 1rem;
    }
}

/* meet chirag */
.section-chirag {
    width: 100%;
    background: url('../images/svg/meet-chirag.svg') no-repeat;
    background-size: cover;
    padding: 145px 0;
    background-position: 100%;

    .meet-chirag {    
        .title{
            font-family: var(--futuraStdExtraBold);
            font-size: 60px;
            line-height: 1.1;
            margin-bottom: 10px;
        }
    
        p{
            font-size: 1.8rem;
            margin-bottom: 12px;
            font-weight: 400;
            text-align: justify;
            color: rgba(110, 110, 110, 1);
        }
    
    }
}

.section-chirag-2{
    background: radial-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 1));

    .meet-chirag {    
        .title{
            font-family: var(--futuraStdExtraBold);
            font-size: 60px;
            line-height: 1.1;
            margin-bottom: 10px;
            color: #D2A164;
        }
    
        p{
            font-size: 1.5rem;
            margin-bottom: 12px;
            font-weight: 400;
            text-align: justify;
            color: rgb(12, 12, 12);
        }
    
    }
}

/* Extra large screen */
@media only screen and (max-width: 1599px){
    .section-chirag {
        padding: 120px 0;
        padding: 130px 0;
    
        .meet-chirag {
            .title {
                font-size: 52px;
            }
    
            p {
                font-size: 1.5rem;
            }
    
        }
    }
}
  
/* large screen */
@media only screen and (max-width: 1399px){
    .section-chirag {
        padding: 100px 0;
        background-position: 90%;
    
        .meet-chirag {        
            .title{
                font-size: 44px;
            }
        }
    }
}
  
  /* laptop screen */
  @media only screen and (max-width: 1199px){
    .section-chirag {
        padding: 80px 0;
    
        .meet-chirag {        
            .title{
                font-size: 42px;
            }

            p {
                font-size: 1.3rem;
                line-height: 1.3;
                margin-bottom: 8px;
            }
        }
    }
  }

  /* mid screen / Tabs */
  @media only screen and (max-width: 991px){
    .section-chirag {
        /* background-position: 20%; */
        background-position: top 0% right 0%;

        .img-chirag{
            height: 800px;
        }
    
        .meet-chirag {        
            .title{
                font-size: 38px;
                letter-spacing: 0;
            }        
        }
    }

    .section-chirag-2 {
        padding: 32px 0;

        .meet-chirag {
            .title {
                font-size: 36px;
                margin-bottom: 1.5rem;
            }

            p {
                font-size: 1.3rem;
            }

        }
    }
  }
  
  /* tabs screen */
  @media only screen and (max-width: 765px){
    .section-chirag-2 {
        .meet-chirag {
            .title {
                font-size: 28px;
            }

            p {
                font-size: 1rem;
            }

        }
    }
  }

   /* mid screen / Tabs */
   @media only screen and (max-width: 575px){
    .section-chirag {
        .img-chirag{
            height: 656px;
        }
    
    }
    .section-chirag-2 {
        .meet-chirag {
            .title {
                font-size: 1.5rem;
            }
        }
    }
  }


/* Why any.. */
.why-section {
    background-image: url('../images/why-any.png');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: top 0% left 0%;
    padding: 84px 0;
    width: 100%;

    .why-any-img{
        object-fit: cover;
        width: 100%;

    }

    .min-title{
        font-size: 1.8rem;
        font-weight: 700;
        text-align: center;
        color: rgba(14, 16, 18, 1);
        letter-spacing: 1px;
    }
}

.why-title {
    font-weight: 750;
    text-transform: uppercase;
    font-size: 60px;
    line-height: 1.2;
    font-family: var(--futuraStdExtraBold);
    margin-bottom: 40px;
    color: #D2A164;
    text-align: center;
    /* letter-spacing: 1px; */
}

.why-text {
    font-size: 1.8rem;
    margin-bottom: 32px;
    line-height: 1.5;
    font-weight: 400;
    text-align: justify;
    color: rgba(14, 16, 18, 1);
    letter-spacing: 1px;
}

@media only screen and (max-width: 1599px){
    .why-section {
        background-position: top 0% left -160px; 
        background-size: cover;
    }
}

  /* large screen */
  @media only screen and (max-width: 1399px){
    .why-section {
        background-position: top 0% left -280px;    
        .min-title{
            font-size: 2rem;
        }
    }
    
    .why-title {
        font-size: 52px;
        margin-bottom: 40px;
    }
  }
  
  /* laptop screen */
@media only screen and (max-width: 1199px){
    .why-section {
        background-position: top 0% left -420px;
        padding: 60px 0;
    
        .min-title{
            font-size: 2rem;
        }
    }
    
    .why-title {
        font-size: 48px;
        margin-bottom: 34px;
    }
}
  /* mid screen / Tabs */
  @media only screen and (max-width: 991px){
    .why-section {
        background-position: top 0% left -100px;
        padding: 24px 0;
        background-size: contain;
    
        .min-title{
            font-size: 1.25rem;
        }
    }
    
    .why-title {
        font-size: 32px;
        margin-bottom: 20px;
    }
    
    .why-text {
        font-size: 1.25rem;
        margin-bottom: 26px;
    }
  }
  
  /* tabs screen */
  @media only screen and (max-width: 765px){
    .why-section {
        background: none;

        .min-title{
            font-size: 1rem;
        }
    }
    .why-title {
        font-size: 1.5rem;
        margin-top: 24px;
    }
    .why-text {
        font-size: 1rem;
        margin-bottom: 16px;
    }
  }

  @media screen and (max-width: 575px){    
   ol.why-text{
    padding-left: 20px;
   }
  }


@media (min-width: 769px) {
    .custom-modal .modal-dialog {
        max-width: 70vw;
        width: 100%;
        height: 70vh;
    }
}


/* modal */

.custom-modal .modal-content {
    height: auto;
}

.custom-modal .modal-body {
    overflow-y: visible;
    padding: 0;
}

.modal-content {
    /* background: url('../images/svg/crowd-modal.svg') no-repeat center; */
    background: var(--CKBlack);
    background-size: cover;
    border: 1px solid #D2A164;
    padding: 0;
}

.modal-header {
    border-bottom: none;
    margin-top: 0;
    color: white;
}

.content-wrapper{
    padding: 32px;
    font-family: var(--archivo-narrow);
    line-height: 1.3;
    font-weight: 700;

    .modal-heading{        
        font-size: 60px;              
        margin-bottom: 1.4rem;
    }
    .modal-heading-3{
        font-size: 40px;
        margin-bottom: 0;
        font-family: inherit;
        font-weight: inherit;
        letter-spacing: 2px;
        margin-bottom: 16px;
    }

    .modal-heading-2{
        font-size: 2rem;
        margin-bottom: 0;
        font-family: inherit;
        font-weight: inherit;
        letter-spacing: 2px;
    }

    .modal-ques{
        font-size: 2rem;
        line-height: 1.3;
        text-align: left;
        font-family: inherit;
        font-weight: inherit;
        margin-bottom: 20px;  
        text-align: justify;      
    }

    .modal-text{
        font-size: 1.5rem;
        letter-spacing: 2px;
        line-height: 1.3;
        text-align: left;
        font-family: inherit;
        font-weight: inherit;
        margin-bottom: 20px; 
        margin-top: -8px;
        text-align: justify;
    }

    .modal-text-2{
        font-size: 1.5rem;
        letter-spacing: 2px;
        line-height: 1.3;
        text-align: left;
        font-family: inherit;
        font-weight: 400;
        margin-bottom: 20px; 
        margin-top: -8px;

        strong{
            color: #D2A164;
        }
    }

    .modal-list{
        margin-bottom: 24px; 
        margin-top: -6px;

        li{
            font-size: 1.5rem;
            letter-spacing: 2px;
            line-height: 1.3;
            text-align: left;
            font-family: inherit;
            font-weight: inherit;
            margin-bottom: 6px;
            text-align: justify;
        }
    }

    .radio-scale-wrapper{
        display: flex;
        align-items: center;
        justify-content: center;
        flex-wrap: wrap;
        gap: 10px;

        .form-group-2{
            padding: 10px 16px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;

            .form-check-input{
                margin-right: 0;
                margin-bottom: 4px;
            }
        }
    }

    .modal-hints{
        font-size: 1.5rem;
        margin-top: 20px;
        font-weight: 400;
        text-align: center;
        color: rgba(255, 255, 255, 1);
    }

    &.content-wrapper-2{
        .modal-ques{
            margin-bottom: 36px;
        }
    }

    .form-control {
        background: #fff;
        width: 100%;
        border: 2px solid #D5A76B;
        padding: 13px 16px;
        height: fit-content;
        font-size: 1.5rem;
        color: rgba(14, 16, 18, 1);
        
        &::placeholder{
            color: #333;
            font-weight: 400;
            font-size: inherit;
        }

        &:focus{
            box-shadow: none;
        }

        &[type=number]::-webkit-inner-spin-button, 
        &[type=number]::-webkit-outer-spin-button { 
            -webkit-appearance: none;
            -moz-appearance: none;
            appearance: none;
            margin: 0; 
        }
    }

}

.btn-close {
    background-color: #D2A164;
}

.modal-title {
    font-family: Archivo Narrow;
    font-size: 32px;
    font-weight: 700;
    line-height: 43.1px;
    letter-spacing: 0.02em;
    text-align: left;
    color: #D2A164;
    margin-top: -1rem;
}

.modal-body {
    margin-top: -1rem;
    color: white;
}

.modal-body p {
    font-family: Roboto Condensed;
    font-size: 1.5rem;
    font-weight: 300;
    line-height: 2rem;
    letter-spacing: 0.02em;
    text-align: center;
    color: #fff;
}

.modal-para {
    font-family: Roboto Condensed;
    font-size: 1.5rem;
    font-weight: 300;
    line-height: 2rem;
    letter-spacing: 0.02em;
    text-align: center;
    color: #fff;
}

.form-control {
    background: #fff;
    color: #333;
    width: 100%;
    border: 2px solid #D5A76B;
    padding: 12px 16px;
    height: fit-content;
}

.form-group label {
    color: white;
}

.btn-custom {
    background-color: #D5A76B;
    color: white;
}

.form-check {
    padding: 1rem;
    color: var(--CKBlack);
    background-color: #f1f1f1;
    border: 2px solid #D2A164;
    border-radius: 5px;
    display: flex;
    align-items: center;   

    .form-check-input{
        margin: 0;
        margin-right: 10px;
    }

    .form-check-label{
        font-family: var(--roboto-condensed);
        font-size: 1.5rem;
        font-weight: 400;
        line-height: 1.2;
        letter-spacing: 0.25px;
        color: var(--CKBlack);
        cursor: pointer;
    }

    &.form-check-2{
        max-width: 426px;
        width: 100%;
    }
    &:hover{
        background-color: #fddaab;
        border-color: var(--CKBlack);
    }
}

.form-check-input {
    border: 2px solid var(--CKBlack);
    /* color: #000; */
    cursor: pointer;

    &:checked {
        background-color: #D5A76B;
        border-color: var(--CKBlack); 
    
        &[type=radio]{
            --bs-form-check-bg-image: none;
        }
    }

    &:focus {
        box-shadow: none
    }
}

.label-txt {
    font-family: Poppins;
    font-size: 18px;
    font-weight: 400;
    line-height: 27px;
    letter-spacing: 0.02em;
    text-align: left;
    color: #D2A164;
}

.btn-submit {
    height: auto;
    font-size: 28px;
    font-weight: 600;
    background-color: var(--white);
    border-radius: 0px;
    letter-spacing: 1.23px;
    text-align: center;
    line-height: 42px;
    margin-bottom: 0;
    transition: 0.3s ease-in-out;
    border: 3px solid #D2A164;
    opacity: 0px;
    color: #D2A164;
    background-color: #fff;
    max-width: 346px;
    width: 100%;
    padding: 14px 24px;
}

.btn-submit:hover {
    background: #D2A164;
    color: #fff;
}

  
  /* laptop screen */
  /* @media only screen and (max-width: 1199px){
    .btn-submit {
        font-size: 26px;     
    }
  } */

  
  /* tabs screen */
  /* @media only screen and (max-width: 765px){
    .btn-submit {
        padding: 10px 16px; 
        font-size: 20px;      
    }
  } */

  /* extra small / Mobile devices */
  /* @media only screen and (max-width: 575px){
    .btn-submit {
        font-size: 18px;      
    }
  } */

.modal-footer-text {
    font-family: var(--archivo-narrow);
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: 0.02em;
    color: #fff;
    background-color: #D2A164;
    border-radius: 0px;
    padding: 12px;
    transition: background-color 0.3s ease-in-out;

    &:hover{
        background-color: #c5893f;
    }
}

.close {
    color: #fff;
}

/* qoute */
.quote-container {
    background-color: #000;    
    padding: 50px 0;

    .content-wrapper{
        .header-subtitle{
            font-size: 60px;
            line-height: 1.3;
            font-family: var(--futuraStdExtraBold);
            margin-bottom: 16px;
            color: #D2A164;
            text-align: center;
        }

        h4{
            font-size: 60px;
            line-height: 1.3;
            font-family: var(--futuraStdExtraBold);
            margin-bottom: 16px;
            color: #fff;
            text-align: center;
        }

        .author{
            text-align: center;
            font-size: 2rem;
            font-weight: 400;
            margin-bottom: 0;
            color: var(--white);
        }
    }
}

/* Extra large screen */
@media only screen and (max-width: 1599px){
    .quote-container {    
        .content-wrapper{
            .header-subtitle{
                font-size: 48px;
            }
    
            /* h4{
                font-size: 52px;
            } */
        }
    }
}
  
  /* large screen */
  @media only screen and (max-width: 1399px){
    .quote-container {    
        .content-wrapper{
            .header-subtitle{
                font-size: 38px;
            }

            h4{
                font-size: 42px;
            }

            .author{
                font-size: 1.8rem;
            }
        }
    }
  }
  
  /* laptop screen */
@media only screen and (max-width: 1199px){
    .quote-container {    
        .content-wrapper{
            .header-subtitle{
                font-size: 36px;
            }

            h4{
                font-size: 38px;
            }

            .author{
                font-size: 1.5rem;
            }
        }
    }
}
  /* mid screen / Tabs */
  @media only screen and (max-width: 991px){
    .quote-container {    
        .content-wrapper{
            padding: 0 16px;
            .header-subtitle{
                font-size: 32px;
            }
    
            h4{
                font-size: 34px;
            }

        }
    }
  }
  
  /* tabs screen */
  @media only screen and (max-width: 765px){
    .quote-container {    
        .content-wrapper{
            .header-subtitle{
                font-size: 26px;
            }

            h4{
                font-size: 28px;
            }
            .author{
                font-size: 1.25rem;
            }

        }
    }
  }
  
  
  /* extra small / Mobile devices */
  @media only screen and (max-width: 575px){
    .quote-container {    
        .content-wrapper{
            .header-subtitle{
                font-size: 30px;
            }
    
            h4{
                font-size: 22px;
            }

            .author{
                font-size: 1rem;
            }
        }
    }
  }

/* qoute */
.quote-container-bgGold {
    background-color: rgba(210, 161, 100, 1);

    .content-wrapper{
        .header-subtitle{
            color: #ffffff;
        }

        h4{
            color: #fff;
        }

        .author{
            color: var(--white);
        }
    }
}

.modules{
    background-color: #0E1012;
    width: 100%;
    padding: 2rem 0;

    .header-subtitle{
        text-align: center;
        margin-bottom: 38px;
        color: rgba(210, 161, 100, 1);
        font-size: 60px;
    }

    .module{
        display:flex;
        align-items: center;
        flex-direction: column;
        padding: 0 16px;

        h3{
            font-size: 2rem;
            line-height: 1.2;
            margin-bottom: 6px;
            color: rgba(210, 161, 100, 1);
            text-transform: uppercase;
        }
        p{
            font-family: var(--roboto-condensed);
            font-size: 1.5rem;
            font-weight: 400;
            line-height: 1.4;
            text-align: justify;
            color: var(--white);    
            margin-bottom: 0px;
        }
    }
}
  
  /* large screen */
  @media only screen and (max-width: 1399px){
    .modules{    
        .header-subtitle{
            margin-bottom: 34px;
            font-size: 42px;
        }
    
        .module{
            padding: 0 12px;
    
            h3{
                font-size: 1.8rem;
            }
        }
    }
  }
  
  /* laptop screen */
@media only screen and (max-width: 1199px){
    .modules{    
        .header-subtitle{
            margin-bottom: 32px;
            font-size: 28px;
        }
    
        .module{
            padding: 0 8px;
    
            h3{
                font-size: 1.5rem;
            }
        }
    }
}
  /* mid screen / Tabs */
  @media only screen and (max-width: 991px){
    .modules{    
        .header-subtitle{
            margin-bottom: 24px;
            font-size: 34px;
        }
    
        .module{
            padding: 0 6px;
            margin-bottom: 24px;
        }
    }
  }
  
  /* tabs screen */
  @media only screen and (max-width: 765px){
    .modules{    
        .header-subtitle{
            /* margin-bottom: 24px; */
            font-size: 28px;
        }
    
        .module{
            padding: 0;
    
            h3{
                font-size: 1.25rem;
            }

            p{
                font-size: 1rem;
            }
        }
    }

    .more-reason{
        .content-wrapper {
            h4 {
                font-size: 1.5rem;
                margin-bottom: 0;
            }
        }
    }
  }
  
  /* extra small / Mobile devices */
  @media only screen and (max-width: 575px){
    .modules{    
        .header-subtitle{
            /* margin-bottom: 24px; */
            font-size: 24px;
        }
    
        .module{
            padding: 0;
    
            h3{
                font-size: 1.25rem;
            }

            p{
                font-size: 1rem;
            }
        }

        .btn-submit{
            max-width: 270px;
            font-size: 24px;
            padding: 8px 16px;
        }
    }
  }


  
.introduction-mind{
    .header-title {
        font-size: 60px;
    }

    .content-section{

        .content-text{
            font-size: 1.8rem;
        }
    }
}

/* Extra large screen */
@media only screen and (max-width: 1599px){
    .introduction-mind{
        /* .header-title {
            font-size: 52px;
        } */
    
        .content-section{
    
            .content-text{
                font-size: 1.8rem
            }
        }
    }
}
  
  /* large screen */
  @media only screen and (max-width: 1399px){
    .introduction-mind{
        .header-title {
            font-size: 48px;
        }
    
        .content-section{
    
            .content-text{
                font-size: 24px;
            }
        }
    }
  }
  
  /* laptop screen */
@media only screen and (max-width: 1199px){
    .introduction-mind{
        .header-title {
            font-size: 40px;
        }
    }    
}
  /* mid screen / Tabs */
  @media only screen and (max-width: 991px){
    .introduction-mind{
        .header-title {
            font-size: 32px;
        }
    
        .content-section{
            padding: 16px 0 0 0;
    
            .content-text{
                font-size: 1rem;
            }
        }
    }
  }
  
  /* tabs screen */
  @media only screen and (max-width: 765px){
    .introduction-mind{
        .header-title {
            font-size: 24px;
            margin-bottom: 8px;
        }
    }
  }
  

  

  @media only screen and (max-width: 991px){
    .why-mind-mastery{
            .header-subtitle{
                margin-bottom: 16px;
            }
    }
  }


.iti__country {
    padding: 12px 10px !important;
}

@media only screen and (max-width: 575px){
    .iti {
        width: 100%;
    }

    .iti__country-list {
        width: 320px;
    }
}


