section{
    /* text-align:center; */
    margin-top: 4.4rem;
    margin-bottom: 5rem;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    /* padding: 80px; */
    color: #fff;
    width: 100%;
    /* height: 100%; */
}

.section-title{
    /* margin-top: 10rem; */
    font-size: 3em;
    margin-bottom: 3rem;
    width: 98%;
    width: fit-content;
    /* text-shadow: 0 0 0.3rem white; */
}

.sec-01 .section-title{
    border-bottom: 5px solid ;
    border-image: linear-gradient(to right,transparent,var(--c-yellow),var(--c-red-orange),transparent) 1;
    padding-bottom: 1.7rem;
    text-align: center;
    background: linear-gradient(to right, var(--c-yellow), var(--c-red-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.container{
    margin-top: 15rem;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    
}

.content{
    position: relative;
    width: 90%;
    display: flex;
    justify-content: center;
    align-items: center;
    align-items: center;
    margin-top: 1.5rem;
    line-height: 1.3rem;
    
}

.image {
    position: relative;
    width:fit-content;
    height: 600px;
    /* width: fit-content; */
    /* overflow: hidden; */
    align-items: center;
    border-radius: 10px;
    display:flex;
    box-shadow: 0 0 0.3rem var(--c-light-yellow);
    /* justify-items: center; */

}

.image img{
    z-index: 111;
    position: flex;
    /* top: 0;
    left: 0; */
    /* object-fit: cover; */
    border-radius: 10px;
    height: 100%;
    /* width:fit-content; */
    justify-items: center;
    /* object-fit:cover; */
    justify-self: center;
    align-items: center;
}


.text-box{
    position: relative;
    z-index: 222;
    background-color: var(--box-background-color);
    backdrop-filter: blur(10px);
    padding: 4rem;
    max-width: 650px;
    border: 1px solid var(--main-color);
    -webkit-border-radius:1px solid var(--main-color);
    -moz-border-radius:1px solid var(--main-color);
    -ms-border-radius:1px solid var(--main-color);
    -o-border-radius:1px solid var(--main-color);
    border-radius: 10px;
    box-shadow: 0 0 0.3rem var(--main-color);
}

.sec-01 .image.reveal.left.active{
    transform: translate(30px,-90px);
    -webkit-transform: translate(30px,-90px);
    -moz-transform: translate(30px,-90px);
    -ms-transform: translate(30px,-90px);
    -o-transform: translate(30px,-90px);
}

.sec-02 .image.reveal.right.active{
    transform: translate(-30px,-70px);
    -webkit-transform: translate(-30px,-70px);
    -moz-transform: translate(-30px,-70px);
    -ms-transform: translate(-30px,-70px);
    -o-transform: translate(-30px,-70px);
}

.sec-01 .text-box.reveal.right.active{
    transform: translate(-30px,90px);
    -webkit-transform: translate(-30px,90px);
    -moz-transform: translate(-30px,90px);
    -ms-transform: translate(-30px,90px);
    -o-transform: translate(-30px,90px);
}

.sec-02 .text-box.reveal.left.active{
    transform: translate(30px,70px);
    -webkit-transform: translate(30px,70px);
    -moz-transform: translate(30px,70px);
    -ms-transform: translate(30px,70px);
    -o-transform: translate(30px,70px);
}

.text-box h3{
    font-size: 2em;
    margin-bottom: 1.5rem;
    color: var(--main-color);
    line-height: 2.2rem;
}

.text-box h4{
    font-size: 0.9em;
    margin-bottom: 1.5rem;
    /* margin-top: -3px; */
}

.text-box p{
    margin: 0.7rem auto;
    /* font-weight: 400 ; */
}

.text-box .list li{
    /* list-style:disc var(--main-color); */
    margin-left: 1.5rem;
    margin-top: 0.4rem;
    /* list-style: var(--main-color); */
}

.buttons{
    position: inline-block;
    z-index: 333;
    margin-top: 3rem;
    display: flex;
    align-items: center;
}

.sec-03 h3{
    font-size: 2rem;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--main-color);
    /* text-shadow: 0 0 0.3rem white; */
}

.sec-03 .buttons{
    margin-bottom: 6rem;
}

.button{
    color:var(--btn-font-color);
    /* font-size: 16px; */
    margin: 1rem auto;
    background-color: var(--main-color);
    backdrop-filter: blur(30px);
    border: 1px solid var(--main-color);
    -webkit-border-radius:1px solid var(--main-color);
    -moz-border-radius:1px solid var(--main-color);
    -ms-border-radius:1px solid var(--main-color);
    -o-border-radius:1px solid var(--main-color);
    border-radius: 10px;
    padding: 1rem;
    text-transform: uppercase;
    box-shadow: 0 0 0.3rem var(--main-color);
    font-weight: bold;
}

.button:hover{
    color: var(--main-color);
    background-color: var(--btn-background-color);
}

/* .section-title{
    font-size: 2rem;
    margin-bottom: 80px;
    text-align: center;
    text-shadow: 0 0 0.3rem white;
} */

@media screen and (max-width:1410px){
    .content{
        flex-direction: column;
    }

    .sec-02 .content{
        flex-direction: column-reverse;
    }

    .sec-01 .image.reveal.left.active, .sec-01 .text-box.reveal.right.active,.sec-02 .image.reveal.right.active, .sec-02 .text-box.reveal.left.active{
        transform: translate(0px,0px);
        -webkit-transform: translate(0px,0px);
        -moz-transform: translate(0px,0px);
        -ms-transform: translate(0px,0px);
        -o-transform: translate(0px,0px);
    }
    
    .image{
        height: 730px;
        margin-bottom: 3rem;
    }
}

@media screen and (max-width:810px){
    .image{
        width: 98%;
        height:fit-content;
    }
    .image img{
        width: 100%;
        height: 100%;
    }
}


.sec-04 .section-title{
    border-bottom: 5px solid ;
    border-image: linear-gradient(to right,transparent,var(--c-yellow),var(--c-red-orange),transparent) 1;
    padding-bottom: 1.7rem;
    text-align: center;
    background: linear-gradient(to right, var(--c-yellow), var(--c-red-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.container{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-left: 1rem;
    margin-right: 1rem;
    margin-top: 5rem;
    margin-bottom: 5rem;
}

.sec-04 .content{
    position: relative;
    width: 90%;
    display: grid;
    grid-template-columns: repeat(2,1.5fr);
    column-gap: 1rem;
    justify-content: center;
    /* align-items: center;*/
    align-items: center;
    /* margin-top: 1.5rem; */
    
}

.sec-04 .list li{
    /* list-style:disc; */
    margin-left: 1.4rem;
    margin-top: 0.1rem;
}


.info-icon{
    display:flex;
    align-items: center;
    justify-content: center;
    position:block;
    /* float:inline-end; */
    width: 230px;
    height: 230px;
    padding-left: 5px;
    padding-right: 5px;
    align-self: center;
    bottom:1rem;

}

.four .info-icon{
    margin-top: 5.2rem;

}
.five .info-icon{
    margin-top: 5.5rem;
}

.one .info-icon{
    margin-top: 6.2rem;
}

.five .info-icon img{
    display: flex;
    justify-content: center;
    position: relative;
    width: 70%;
    height: 70%;
    overflow: hidden;
    align-items: center;
    border-radius: 10px;
    font-size: 6rem;
    color: #ffb400;
}

.info-icon i{
    display: flex;
    justify-content: center;
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    align-items: center;
    border-radius: 10px;
    font-size: 7rem;
    color: var(--main-color);
    /* margin-bottom: 2rem; */
}

.info-title{
    /* margisn-top: 1.5rem; */
    font-size: 1.5em;
    margin-bottom: 0.7rem;
    display:flex;
    position:relative;
    color: var(--main-color);
    
    /* color: var(--main-color); */
}
.info{
    z-index: 222;
    background-color: var(--box-background-color);
    backdrop-filter: blur(10px);
    padding-top: 1rem;
    /* max-width: 550px; */
    border: 1px solid var(--main-color);
    -webkit-border-radius:1px solid var(--main-color);
    -moz-border-radius:1px solid var(--main-color);
    -ms-border-radius:1px solid var(--main-color);
    -o-border-radius:1px solid var(--main-color);
    border-radius: 10px;
    margin: 10px;
    height: 630px;
    width: 600px;
    margin: 2rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content:first baseline;
    box-shadow: 0 0 0.3rem var(--main-color);
    padding-bottom: 1rem;

}

.info p,.info h4,.info h3{
    margin: 0.7rem 2rem;
    margin-bottom: 1rem;
    line-height: 1.5rem;
}

.section-title p{
    color: var(--main-color);
    margin-top: 3rem;
    font-size: 1.3rem;
    letter-spacing: 2px;
    margin-left: 2rem;
    margin-right: 2rem;
    margin-bottom: 6rem;
}
.info h3{
    margin-top: 2rem;
    font-size: 2em;
    line-height: 1.5rem;
    color: var(--main-color);
}

.info h4{
    font-size: 1.5em;
    line-height: 2rem;
    /* margin-bottom: 10px; */
    /* margin-top: -3px; */
}


@media screen and (max-width:1410px) {
    .sec-04 .content{
        grid-template-columns: repeat(2,1.5fr);
    }
}

@media screen and (max-width:1340px) {
    .sec-04 .content{
        display: flex;
        flex-direction: column;
    }

    .info{
        height: fit-content;
    }

    .four .info-icon{
        margin-top: 0rem;
    
    }
    .five .info-icon{
        margin-top: 0rem;
    }
    
    .one .info-icon{
        margin-top: 0rem;
    }
}

@media screen and (max-width:644px) {
    .info{
        width: 98%;
    }
}

.sec-01 span, .sec-02 span, .sec-04 span{
    font-weight: bold;
    color: var(--main-color);
}

.sec-05 .section-title{
    /* padding-top: 8rem; */
    position: relative;
    /* margin-top: 1rem; */
    text-align: center;
    /* color: white; */
    z-index: 111;
    align-items: center;
    justify-content: center;
    display: block;
    /* text-align: center; */

}

.sec-05 .title-line{
    position: relative;
    text-align: center;
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.sec-05 .title-line h3{
    width:auto;
    position:relative;
    margin: 1rem 4rem;
    font-size: 3rem;
    z-index: 555;
    border-bottom: 3px solid ;
    border-image: linear-gradient(to right,transparent,var(--c-yellow),var(--c-red-orange),transparent) 1;
    padding-bottom: 1.4rem;
    text-align: center;
    justify-self: center;
    display: block;
    background: linear-gradient(to right, var(--c-yellow), var(--c-red-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    /* text-shadow: 0.4rem 0.4rem 0.3rem var(--btn-background-color); */
}

.sec-05 .section-title p{
    color: var(--c-light-yellow);
    margin-top: 3rem;
    font-size: 1.3rem;
    letter-spacing: 2px;
    margin-left: 5rem;
    margin-right: 5rem;
    margin-bottom: 6rem;
}

.sec-05 .section-title span{
    color: var(--c-red-orange);
    /* margin-top: 3rem;
    font-size: 1.3rem;
    letter-spacing: 2px;
    margin-left: 5rem;
    margin-right: 5rem;
    margin-bottom: 6rem; */
}