/* Minification failed. Returning unminified contents.
(7,28): run-time error CSS1039: Token not allowed after unary operator: '-main-color'
(15,17): run-time error CSS1039: Token not allowed after unary operator: '-main-color'
(35,28): run-time error CSS1039: Token not allowed after unary operator: '-main-color'
(69,28): run-time error CSS1039: Token not allowed after unary operator: '-main-color'
(73,28): run-time error CSS1039: Token not allowed after unary operator: '-sub-color'
 */
.banner-about {
    margin: 60px 0 30px;
}

.banner-sub-about {
    height: 600px;
    border: 7px solid var(--main-color);
}

.our-story {
    margin-bottom: 30px;
}

.our-story h3, .our-vision h3 {
    color: var(--main-color);
    margin-bottom: 20px;
    font-size: 24px;
    font-weight: bold;
}

.our-story p, .our-vision p {
    line-height: 1.75;
    margin-bottom: 10px;
}

.our-vision {
    margin:40px 0;
}

.about-us {
    margin-bottom: 60px;
}

.img-wrap img {
    border: 5px solid var(--main-color);
}

.our-content{
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}
.our-left{
   text-align: right;
}

.class-main {
    margin-bottom: 40px;
}

.block-level {
    margin-bottom: 40px;
}

.block-tag {
    padding: 10px 30px;
    color: #fff;
    border-radius: 5px;
    display: inline-block;
    margin-bottom: 15px;
    font-size: 20px;
    font-weight: bold;
    min-width: 150px;
    text-align: center;
}

.tag-green {
    background-color: var(--main-color);
}

.tag-yellow {
    background-color: var(--sub-color);
}

.tag-orange {
    background-color: #c55d00;
}

.block-content {
    margin-left: 70px;
}

.block-descrip {
    font-size: 20px;
    margin-bottom: 10px;
}

.block-item {
    display: flex;
    flex-direction: row;
    align-items: baseline;
    margin-bottom: 20px;
}

.block-item .title {
    font-size: 20px;
    font-weight: 900;
    margin-right: 10px;
    flex: none;
}

.block-item .content {
    font-size: 18px;
    text-align: justify;
}

@media (max-width: 991px) {
   .our-content{
       margin-top: 20px;
       display: block;
   }
   .our-vision{
       margin: 40px 0;
   }
   .our-left{
       text-align: left;
   }
   .our-left .our-content{
       margin-bottom: 30px;
   }
}
@media (max-width: 768px) {
   .banner-sub-about{
       height: 400px;
   }
}
@media (max-width: 575px) {
   .banner-sub-about{
       height: 250px;
   }
   .block-tag {
    display: block;
    }
    .block-content {
        margin-left: 0;
    }
    .block-descrip {
        font-size: 18px;
    }
    .block-item {
        display: block;
    }
    .block-item .content {
        font-size: 16px;
    }
    .banner-subpage {
        margin: 20px 0;
    }
}


