:root {

    --primary-color: ;

    --secondary-color: ;
    --tertiary-color: ;
    --accent-color: ;
    --font-1: ;
    --font-2: ;
    --font-2-b: ;

    --heading-size: ;
    --para-size: ;

    --padding: ;
}





.hero {
    min-height: 47vh !important;
    padding-bottom: 40px !important;
    display: flex;
    justify-content: center;
    align-items: end;
}


/* section-1 */

.section-1 {}

.section-1 .container {
    border-radius: 20px;
    padding: 50px 60px;
    background: linear-gradient(to top, #080B0F, #0C1419);
    box-shadow: 0px 0px 4px 0px rgb(201, 201, 201, 0.7), inset 0px 1px 3px 0px rgba(191, 191, 191, 0.544);
    display: flex;
    flex-direction: column;
    gap: 45px;
}

.section-1 .row {

    display: flex;
    justify-content: space-between;

    display: grid;
    grid-template-columns: auto 700px;

}

.section-1 .row h4 {
    font-size: 25px;
    font-weight: 500;
    color: #dcdcdc;
}

.section-1 .row p {
    letter-spacing: unset !important;
    color: rgb(242, 240, 240, 0.9);
    /* line-height: 1.5 ; */
}

.section-1 .row p,
.section-1 .para {
    width: min(700px, 100%);
    margin-left: auto;
}

.section-1 .row a {
    color: #2FBAE0;
}


.section-1 .row .para {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.section-1 .row .para>div {
    display: flex;
    flex-direction: column;
    gap: 8px;
}




.section-1 .row h6 {
    color: rgb(242, 240, 240, 0.9) !important;
    font-size: 17px;
    font-weight: 500;
    letter-spacing: .9px;
}

@media (max-width:1200px) {
    .section-1 .row {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .section-1 .row p,
    .section-1 .para {
        margin-left: unset;

    }
    .section-1 .container{
        padding: 50px;
    }

    .section-1 .row h4 {
        /* text-decoration: underline;
        text-decoration-thickness: .9px;
        text-underline-offset: 7px; */
    }
}

@media (max-width:760px) {
    .hero {
        min-height: 38vh !important;
    }

    .hero .text {
        position: relative;
        /* bottom: calc(10px + 5vh); */
    }

    .section-1 .container{
        padding: 35px 30px ;
        box-shadow: 0px 0px 2px 0px rgb(201, 201, 201, 0.7), inset 0px 1px 2px 0px rgba(191, 191, 191, 0.544);
    }
}

@media (max-width:500px) {
    .section-1 .container{
        padding: 20px 13px;
        border-radius: 15px;
    }
    .section-1 .row h4{
        font-size: 21px;
    }
    .section-1 .container{
        gap: 40px;
    }
    .section-1 .row h6{
        font-size: 14px;
    }
}