#mc .content h2,
#mc .content h3,
#mc .content h4,
#mc .content h5{
    margin: 50px 0 20px;
}

#mc .content > :first-child{
    margin-top: 0!important;
}

#mc{
    padding: 50px 0;
}

#mc .row{
    justify-content: space-between;
}

#mc .container-fluid{
    padding: 0 200px;
}

#mc .content p:first-of-type{
    font-size: 19px;
    color: #37558F;
}

#mc .content h2{
    font-size: 30px;
    color: #213458;
    font-weight: 400;
}

#mc .content h3{
    font-size: 25px;
    color: #213458;
    font-weight: 400;
}

#mc .content h4{
    font-size: 22px;
    color: #213458;
    font-weight: 400;
}

#mc .content h5{
    font-size: 21px;
    color: #213458;
    font-weight: 400;
}

#mc .sidebar h3{
    font-size: 30px;
    font-weight:600;
    margin-bottom: 20px;
}

#mc .sidebar h4{
    font-size: 21px;
    font-weight: 700;
    color: #36558F;
    margin-bottom: 10px;
}

#mc .sidebar p{
    color: #221F20;
    margin-bottom: 10px;
}

#mc .sidebar a{
    text-decoration: none;
    display: flex;
    align-items: center;
    color: #36558F
}

#mc .sidebar a i{
    margin-left: 10px;
}

#mc .sidebar .inner{
    border-bottom: 1px solid #728EC3;
    padding-bottom: 20px;
}

@media(max-width:1700px){
    #mc .container-fluid{
        padding: 0 100px;
    }
}

@media(max-width:1400px){
    #mc .container-fluid{
        padding: 0 50px;
    }
}

@media(max-width:767px){
    #mc .container-fluid{
        padding: 0 15px;
    }
}

#gallery{
    padding: 50px 0;
}

#gallery .container-fluid{
    padding: 0 200px;
}

#gallery p{
    max-width: 1000px;
    margin: 0 auto;
    text-align: center
}

#gallery h2{
    text-align: center;
    font-size: 30px;
    font-weight: 400;
    margin-bottom: 20px;
}

#gallery .gallery{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

#gallery .thumbnail{
    width: 228px;
    height: 228px;
    object-fit: cover;
    margin: 0 10px 20px;
    cursor: pointer;
}

/* Styles for the lightbox */
#lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 999;
}

.lightbox-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#lightbox-image {
    max-width: 90%;
    max-height: 90%;
}

@media(max-width:1700px){
    #gallery .container-fluid{
        padding: 0 100px;
    }
}

@media(max-width:1400px){
    #gallery .container-fluid{
        padding: 0 50px;
    }
}

@media(max-width:767px){
    #gallery .container-fluid{
        padding: 0 15px;
    }
}

#hero{
    max-height: 1080px;
    height: 90vh;
    background-position: center;
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    margin-bottom: 50px;
}
#hero .inner{
    background: rgba(38, 62, 109, 0.9);
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}
#hero .hero_logo{
    position: relative;
    top: -20px;
    height: 41px;
    width: 105px;
    margin-bottom: 10px;
}
#hero .triangle1 {
    width: 100%;
    height: 48px;
    clip-path: polygon(50% 0,100% 100%,0 100%);
    background: rgba(38, 62, 109, 0.9);
    position: relative;
    top: 0.2px;
}
#hero .triangle2 {
    width: 100%;
    height: 20px;
    clip-path: polygon(50% 0,100% 100%,0 100%);
    background: #fff;
    bottom: -1px;
    position: relative;
}
#hero .btn{
    width: 350px;
    margin: 0 auto 30px;
}
#hero h1{
    font-size: 33px;
    line-height: 33px;
    color: #fff;
    margin-bottom: 20px;
}
#hero .text{
    width: 900px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
#hero p{
    font-size: 17px;
    line-height: 26px;
    color: #fff;
    margin-bottom: 20px;
    text-align: center;
}
@media(max-width: 767px){
    #hero .text{
        width: 100%;
        padding: 0 20px;
        text-align: center;
    }
    #hero .triangle1, #hero .triangle2{
        display: none;
    }
    #hero .hero_logo{
        top: 0;
        margin: 30px 0 20px;
    }
    #hero .btn{
        width: 100%;
    }
}