:root{
    --white-color: #fff;
    --black-color: #000;
    --text-color: #4B506D;
    --box-shadow: rgba(0, 0, 0, 0.25) 0px 15px 40px -12px;
    /* --box-shadow: 5px 5px 15px #c1c8d3, -5px -5px 15px #fff; */
    --gradient-color: linear-gradient(-45deg, #398CBF, #398CBF);
    --body-background: #FAFAFA;
    --p-color: #3c104a;
    --p-2-color: #FF9C41;
    --bot-border: #EBEBF6;
    --input-fill: #FCFDFE;
    --input-stroke: #F0F1F7;
    --gradient-back: #3c104a;
    --neumor-style: -6px -6px 14px rgba(255, 255, 255, .7),
    -6px -6px 10px rgba(255, 255, 255, .5),
    6px 6px 8px rgba(255, 255, 255, .075),
    6px 6px 10px rgba(0, 0, 0, .15);

}
*{
    box-sizing: inherit;
}

html{
    line-height: 1.6rem;
    font-family: 'inter', sans-serif;
    box-sizing: border-box;
}
*{
    margin: 0;
    padding: 0;
}
.grid{
    padding: 64px
}

.grid__full-width{
    width: 100%;
}

.grid__row{
    display: flex;
    flex-wrap: wrap;
}
.main__container{
    padding: 64px;
    background: rgb(0,46,93);
    background: radial-gradient(circle, rgba(0,46,93,1) 0%, rgba(6,25,44,1) 100%);
}
.main__content{
    /* background-color: red; */
    /* height: 100px; */
    width: 100%;
    padding: 100px;
    display: flex;
    gap: 100px
}
.bold__blue{
    font-weight: bold;
    color: #002E5D;
}
.about__us__logo img{
    display: block;
    box-shadow: var(--box-shadow);
    border-radius: 50%;
}
.about__us__bref{
    color: white;
}
.about__us__bref h1{
    font-size: 64px;
    margin-bottom: 50px;
}
.about__us__bref p{
    line-height: 30px;
    font-size: 16px;
    font-weight: 400;
    margin-top: 30px;
}
.about__us__buttons{
    display: flex;
    padding: 0px 100px;
    justify-content: center;
    gap: 50px;
    margin-bottom: 50px;
}
.about__us__buttons a{
    display: block;
    text-decoration: none;
    color: black;
    padding: 20px 20px;
    width: 200px;
    border-radius: 20px;
    text-align: center;
    font-size: 16px;
    background: #9A814E;
    box-shadow: var(--box-shadow);
    transition: 0.2s;
}
.about__us__buttons a:hover{
    background: #D6B04F;
    font-weight: bold;

}
.list__para{
    padding: 0 64px;
}
.main__tittle{
    text-align: center;
    font-weight: 700;
    font-size: 50px;
    color: white;
    letter-spacing: 3px;
}
.header__text{
    text-align: center;
    font-size: 26px;
    line-height: 36px;
    text-transform: uppercase;
    font-weight: 700;
}
.header__text :nth-child(2){
    color: #9A814E;
}
.first__para{
    display: flex;
    align-items: center;
    gap: 100px;
    padding: 0 100px;
}
.first__para img{
    height: 300px;
    box-shadow: var(--box-shadow);
    border-radius: 50%;
}
.first__block h1{
    font-size: 50px;
    letter-spacing: 10px;
    color: #002E5D;
}
.first__block p{
    font-size: 16px;
    margin-top: 30px;
    line-height: 30px;
}
.second__para{
    font-size: 16px;
    line-height: 30px;
    margin-top: 30px;
    text-align: center;
    padding: 0 64px;
}
.second__para p{
    margin-bottom: 20px;
}

.block__tittle{
    text-align: center;
    font-size: 40px;
    line-height: 50px;
    letter-spacing: 5px;
    color: #002E5D;
    margin-bottom: 70px;
}
.block i{
    text-align: center;
    display: block;
    margin: 0 auto;
    font-size: 100px;
    margin-bottom: 30px;
    color: #6d6d6d;
    opacity: 0.5;
}
.group{
    display: flex;
    gap: 50px;
    padding: 0 100px;
}
.group img{
    width: 600px;
    height: auto;
    border-radius: 30px;
    box-shadow: var(--box-shadow);
    margin-bottom: 20px;
}
.group__content{
    font-size: 18px;
    margin: 0 auto;
    
}
.group__content p{
    margin-bottom: 30px;
    line-height: 30px;
}

.gray__back{
    background-color: #EDEEF2;
    border-radius: 30px;
}
.box__content{
    padding: 40px;
}
.box__content__header h2{
    color: #9A814E;
    font-size: 30px;
    line-height: 35px;
}
.text__center{
    text-align: center;
}
.hd__img{
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
}
.box__content__header h2{
    margin-bottom: 20px;
}
.hd__box{
    max-width: 1200px;

}

/* Mobile: width < 740px */
@media only screen and (max-width: 46.1875em){
    .main__container{
        padding: 30px;
    }
    .main__content{
        padding: 0;
        flex-direction: column;
        gap: 30px;
    }
    .about__us__logo{
        width: 80%;
        margin: 0 auto;
    }
    .about__us__logo img{
        width: 100%;
    }
    .about__us__bref h1{
        font-size: 30px;
        text-align: center;
        margin-bottom: 30px;
        letter-spacing: 5px;
    }
    .about__us__bref p{
        text-align: justify;
    }
    .about__us__buttons{
        flex-wrap: wrap;
        padding: 0;
        gap: 20px;
        margin-top: 30px;

    }
    .about__us__buttons a{
        width: 100%;
        background-color: #D6B04F;
    }
    .main__tittle{
        font-size: 20px;
        line-height: 22px;
    }
    .grid{
        padding: 30px;
    }
    .header__text{
        font-size: 16px;
    }
    .list__para{
        padding: 30px;
    }
    .first__para{
        flex-direction: column;
        gap: 0;
        padding: 0;
        text-align: justify;
    }
    .first__block h1{
        text-align: center;
        margin-top: 30px;
        line-height: 50px;
    }
    .second__para{
        padding: 0;
        text-align: justify;
    }
    .block__tittle{
        font-size: 22px;
        margin-bottom: 30px;
        line-height: 30px;
        letter-spacing: 0;
    }
    .group{
        padding: 0;
        flex-direction: column;
    }
    .group img{
        width: 100%;
        /* margin-bottom: 0; */
    }
    .group__content p{
        text-align: justify;
    }
    .box__content__header h2{
        text-align: center;
        font-size: 20px;
    }
    .box__content{
        padding: 20px;
    }
}


