.banner-wrapper{
    background-image: url("../images/md/banner.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}
.banner-description-box{
    position: relative;
    z-index: 9;
}
.banner-text {
    margin-top: 100px;
    text-align: center;
    color: #fff;
}
.banner-text h1 {
    font-size: 40px;
    font-weight: 700;
}
.banner-text h2 {
    font-size: 40px;
    font-weight: 700;    
    color:#00B7FF;
}
.banner-text p {
    margin-top: 50px;
    margin-bottom: 32px;
    font-size: 20px;
    font-weight: 500; 
    max-width: 545px;
    line-height: 30px;
}
.banner-text .cta {
    margin-bottom: 180px;
    z-index: 9;
}

.master-wrapper {
    background-image: url("../images/home/principles_banner.png");
    background-repeat: repeat;
    background-size: contain;
    padding-top: 30px;
    padding-bottom: 150px;
}
.master-text {
    text-align: center;
    width: 100%;
    margin-top: 23px;
    margin-bottom: 80px;
}
.master-text h2 {
    font-weight: 700;
    font-size: 35px;
    color: #262B32;
}
.master-text h4 {
    font-weight: 700;
    font-size: 40px;
    color: #00A8E9;
}
.master-profile-wrapper{
    flex-wrap: wrap;
}
.mp-box{
    border-radius: 40px;
    background: linear-gradient(180deg, #00B7FF 0%, #052271 100%);
    display: flex;
    width: calc((100% / 3) - 40px);
    padding: 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
    box-sizing: border-box;
    margin-bottom: 70px;
}
.mp-box img {
    max-width: 327px;
    width: 100%;
    border-radius: 32px;
}
.mp-box-text {
    color: #fff;
}
.mp-box-text h3 {
    font-size: 16px;
    font-weight: 700;
    line-height: 18px; /* 112.5% */
    letter-spacing: 0.8px;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.mp-box-text h4 {
    font-size: 16px;
    font-weight: 400;
    line-height: 18px; /* 112.5% */
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

@media (max-width: 991px) {
    .master-profile-wrapper {
        justify-content: space-around;
    }
    .mp-box {
        width: calc((100% / 2) - 95px);
    }
}

@media (max-width: 767px) {
    .master-profile-wrapper {
        justify-content: space-between;
    }
    .mp-box {
        padding: 24px 20px;
        width: calc((100% / 2) - 10px);
    }
}

@media (max-width: 500px) {
    .mp-box {
        width: auto;
    }
}