
h1{
    text-align: center;
}
.section-intro{
    height: 150px;
    background: rgb(219,127,19);
    background: linear-gradient(180deg, rgba(219,127,19,1) 0%, rgba(254,165,61,1) 100%);
}

.intro-content{
    padding: 10px 0;
}

.intro-content p{
    font-size: 16px;
    margin-top: 6px;
}

table{
    width: 100%;
    height: 300px;
    border: 1px solid #FEA53D;
}

table thead{
    height: 50px;
    background-color: #FEA53D;
}

table tbody tr:hover{
    background-color: #FEA53D;
}

table a{
    text-decoration: none;
    cursor: pointer;
    color: #000;
}

table a:hover{
    text-decoration: underline;
    color: #FEA53D;
}

.why-join-us-section .container{
    width: 1230px;
}

.row{
    display: flex;
    flex-wrap: wrap;
}

.col-4{
    width: 33.33%;
    padding: 0 15px;
}

.why-join-us-section h1{
    text-align: center;
    margin-bottom: 15px;
}

.card{
    /* background-color: #fff;
    color: #000; */
    padding: 25px;
    height: 340px;
    border-radius: 2px;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid #FEA53D;
}

.card .card-title{
    margin: 15px 0 5px 0;
}

.card .icons{
    width: 80px;
    height: 82px;
    border: 1px solid #FEA53D;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}

.card .icons i{
    font-size: 32px;
    color: #FEA53D;
}

.card-text{
    text-align: center;
}

.hero {
    width: 100%;
    height: 50vh;
    background-color: gray;
    position: relative;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    
}

.hero .overlay {
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    position: absolute;
}

.hero .hero-content {
    width: 100%;
    height: 50vh;
    position: absolute;
    z-index: 99;
}

.hero .hero-content .content {
    margin-top: 150px;
    text-align: center;
    align-items: center;

}

.hero .hero-content .link {
    font-size: 20px;
    display: flex;
    justify-content: center;
    align-items: center;


}

.hero .hero-content a {
    text-decoration: none;
    color: white;
}

.hero .hero-content .link u {
    background-color: transparent;
    color: #FEA53D;
}

.hero .hero-content a:hover {
    color: #FEA53D;
}

.hero .hero-content h1 {
    font-size: 50px;
    font-weight: 600;
    color: #FEA53D;

}

.hero .hero-content .content p {
    font-size: 25px;
    font-weight: 600px;
    margin-top: -20px;
    margin-left: 40px;
    color: #ddd;

}