@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap');

* {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    color: #36263f;
}
html{
    overflow-x: hidden;
    padding: 0;
    margin: 0;
}
h1,h2,h3,h4,h5,h6, a{
    font-family: 'Nunito', sans-serif;
}
.navbar{
    z-index: 3;
    /* add easing effect to navbar*/
    transition: all 5s ease-in-out;
}
.text-white{
    color: #fff;
}

.nav-link{
    font-weight: 600;
}

.nav-link:hover{
    text-decoration-line: underline;
    text-underline-offset: 6px;
}

.btn-mas-primary{
    font-weight:500;
    background-color:#36263f;
    color: #fff;
}
.btn-mas-primary:hover{
    background-color:#1b1320;
    color: #fff;
}
.btn-mas-primary-inverted{
    font-weight:500;
    border-color:#36263f;
    border-width: 2px;
    background-color: #f8f9fa;
}

.btn-mas-primary-inverted:hover{
    background-color:#1b1320;
    border-color:#1b1320;
    border-width: 2px;
    background-color: #eef0f2;
}

.btn-mas-secondary{
    font-weight:500;
    background-color:#63C8CA;
    color: #36263f;
}
.btn-mas-secondary:hover{
    background-color:#40b8ba;
    color: #36263f;
}

.btn-mas-secondary-inverted{
    font-weight:500;
    border-color:#63C8CA;
    border-width: 2px;
    background-color: #f8f9fa;
    color: #36263f;
}
.btn-mas-secondary-inverted:hover{
    background-color: #eef0f2;
    border-width: 2px;
    border-color:#40b8ba;
    color: #36263f;
}

.btn-oval{
    border-radius: 20px;
    padding-left: 50px;
    padding-right: 50px;
}


.section {
    padding-top: 4rem;
    padding-bottom: 4rem;
    height: auto;
}


.hero {
    position: relative;
    background-image: url('../images/landing-hero.webp');
    background-size: cover;
    background-position: center;
    width: 100%;
    height: auto;

    /*padding: 20px;*/
}

/*Landing hero section*/


.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.48);
    z-index: 1;
}
.hero .container {
    position: relative;
    z-index: 2;
}
.hero .container .row{
    padding-top: 10%;
    padding-bottom: 15%;
}
.hero .container h1{
    font-size: 2.8rem;
    font-weight: 700;
    color: #f1f1f1;
}
.hero .container p{
    font-size: 1.2rem;
    color: #f1f1f1;
}

.founder h1 {
    font-weight: 700;
}


.founder p {
    font-size: 1em;
    font-weight: 400;
    margin-bottom: 0.5em;
}


.benefits img, .assesssment img{
    box-shadow: -50px 42px 0px #96BEBF;
    border-left: 2px solid rgba(0, 0, 0, 0.4);
    border-radius: 10px;

}
.benefits h1, .consulation h1{
    font-weight: 800;
}
.benefits h4, .consulation h4{
    font-weight: 300;
}
.book img{
    box-shadow: -50px 42px 0px #36263f;
    border-left: 2px solid rgba(0, 0, 0, 0.4);
    border-radius: 10px;

}
.book-about {
    background-color: #96BEBF;
}
.book-about img{
    box-shadow: -50px 42px 0px #f8f9fa;
    border-radius: 10px;
}
.values{
    background-color: #96BEBF;
}
.values h1{
    font-weight: 800;
    color: #f8f9fa;
}
.vision h1{
    font-weight: 800;
    padding-left: 1rem;

}
.vision h2{
    font-weight: 300;
    color: #63C8CA;
}
.vision-content{
    background-color: rgba(150, 190, 191, 0.302);
}
.vision-content{
    padding:1.8rem;
    border-radius:18.29px
}

.bg-reel::before {
    content: "";
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(87, 77, 74,0.5);
    z-index: 1;
}


footer{
    position: relative;
    background-image: url('../images/footer-bg.webp');
    padding-bottom:10px;
}

footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(87, 77, 74,0.9);
    z-index: 1;
}
footer > .container{
    position: relative;
    z-index: 2;
}
.footerbanner{
    background-color: #2C1F33;
    border-radius: 18.29px;
}
footer ul li{
    list-style: none;
}

footer ul li a{
    text-decoration: none;
    color: rgb(248, 249, 250)
}
footer ul li a h5{
    padding-top:8px;
    padding-bottom: 8px;
}
footer ul li a:hover{
    color: #1b1320;
}

/*utilities*/
.mx-width-80{
    max-width: 80%;
}
.font-weight-300{
    font-weight: 300;
}

.uppercase{
    text-transform: uppercase;
}
.capitalize{
    text-transform: capitalize;
}
.text-mas-blue{
    color: #63C8CA;
}
.text-grey-blue{
    color: #96BEBF;
}
.text-mas-primary{
    color: #36263f;
}
.bg-mas-primary{
    background-color: #36263f;
}
.bg-mas-secondary{
    background-color: #63C8CA;
}
.bg-mas-blue{
    background-color: #96BEBF;
}

.bg-reel{
    background-image: url('../images/aboutreel.webp');
    background-size: cover;
    background-position: center;
}

.bg-mas-conference{
    background-image: url('../images/rainbow_conf.webp');
    background-size: cover;
    background-position: center;
}
.bg-mas-graduation{
    background-image: url('../images/graduation.webp');
    background-size: cover;
    background-position: center;
}
.icon-pad{
    padding: 10px;
    border-radius: 30px;
    background-color: #36263f;
    display: flex;
    justify-content: center;
    align-items: center;
}
.icon-pad2{
    padding: 10px;
    border-radius: 30px;
    background-color: #96BEBF;
    display: inline-block;
}
.feather-footer-icons {
    width: 68px;
    height: 68px;
    stroke: #f8f9fa;
    stroke-width: 1;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
  }
