/* Minification failed. Returning unminified contents.
(6,17): run-time error CSS1039: Token not allowed after unary operator: '-black-title'
(7,23): run-time error CSS1039: Token not allowed after unary operator: '-font-title'
(9,23): run-time error CSS1039: Token not allowed after unary operator: '-font-medium'
(13,17): run-time error CSS1039: Token not allowed after unary operator: '-orange-normal'
(15,23): run-time error CSS1039: Token not allowed after unary operator: '-font-medium'
(20,23): run-time error CSS1039: Token not allowed after unary operator: '-font-regular'
(45,28): run-time error CSS1039: Token not allowed after unary operator: '-orange-normal'
(47,17): run-time error CSS1039: Token not allowed after unary operator: '-white-text'
(55,17): run-time error CSS1039: Token not allowed after unary operator: '-white-text'
(56,23): run-time error CSS1039: Token not allowed after unary operator: '-font-title'
(58,23): run-time error CSS1039: Token not allowed after unary operator: '-font-medium'
(61,17): run-time error CSS1039: Token not allowed after unary operator: '-white-text'
(72,17): run-time error CSS1039: Token not allowed after unary operator: '-orange-normal'
(73,23): run-time error CSS1039: Token not allowed after unary operator: '-font-title'
(75,23): run-time error CSS1039: Token not allowed after unary operator: '-font-medium'
(84,34): run-time error CSS1039: Token not allowed after unary operator: '-gray-border-25'
(99,17): run-time error CSS1039: Token not allowed after unary operator: '-black-title'
(100,23): run-time error CSS1039: Token not allowed after unary operator: '-font-title'
(102,23): run-time error CSS1039: Token not allowed after unary operator: '-font-medium'
(138,39): run-time error CSS1039: Token not allowed after unary operator: '-gray-border-25'
 */
#about {
    padding: 75px 0 150px 0;
}
/*HISTORY*/
#about .title {
    color: var(--black-title);
    font-family: var(--font-title);
    font-size: 1.6875rem;
    font-weight: var(--font-medium);
    margin-bottom: 2rem;
}
#about .left-side-text {
    color: var(--orange-normal);
    font-size: 1.125rem;
    font-weight: var(--font-medium);
    margin: 0;
}
#about .right-side-text {
    font-size: 0.875rem;
    font-weight: var(--font-regular);
}
/*END HISTORY*/
/*BANNER*/
#about .banner {
    align-items: center;
    display: flex;
    justify-content: center;
    height: 400px;
    margin-top: 70px;
}
#about .left-side {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100%;
    width: 50%;
}
#about .right-side {
    height: 100%;
    margin-left: -25px;
    width: calc(50% + 25px);
}
#about .right-side .main-section {
    align-items: flex-start;
    background-color: var(--orange-normal);
    box-shadow: -4px 4px 6px rgba(0,0,0,0.2);
    color: var(--white-text);
    display: flex;
    flex-flow: column;
    height: 330px;
    justify-content: center;
    padding: 75px 25px 75px 50px;
}
#about .right-side .main-section h2 {
    color: var(--white-text);
    font-family: var(--font-title);
    font-size: 1.375rem;
    font-weight: var(--font-medium);
}
#about .right-side .main-section p {
    color: var(--white-text);
    font-size: 0.875rem;
}
#about .right-side .sub-section {
    align-items: center;
    display: flex;
    justify-content: flex-start;
    height: 70px;
    padding-left: 50px;
}
#about .right-side .sub-section h3 {
    color: var(--orange-normal);
    font-family: var(--font-title);
    font-size: 1.375rem;
    font-weight: var(--font-medium);
    margin: 0;
}
/*END BANNER*/
/*SERVICE*/
#about .service-row {
    margin-top: 150px;
}
#about .service-col {
    border-right: 1px solid var(--gray-border-25);
    padding: 0 1rem;
}
#about .service-col:first-child {
    padding-left:0;
}
#about .service-col:last-child {
    border: none;
    padding-right: 0;
}
#about .service-icon {
    height: 52px;
    width: 52px;
}
#about .service-title {
    color: var(--black-title);
    font-family: var(--font-title);
    font-size: 1.375rem;
    font-weight: var(--font-medium);
    padding: 25px 0;
}
#about .service-text {
    font-size: .875rem;
    margin-bottom: 1.5rem;
}
/*SERVICE*/
/*RESPONSIVE*/
/*XS TO MD*/
@media (max-width: 991px) {
    #about .left-side-text {
        margin-bottom: 2rem;
    }
    #about .banner {
        align-items: flex-end;
        flex-flow: column;
        height: 800px;
        margin-top: 0;
    }
    #about .left-side {
        width: 100%;
    }
    #about .right-side {
        margin-left: 0;
        margin-top: -25px;
        width: calc(100% - 25px);
    }
    #about .right-side .main-section {
        padding: 50px;
    }
    #about .service-row {
        margin: 0;
    }
    #about .service-col {
        border-right: none;
        border-bottom: 1px solid var(--gray-border-25);
        padding: 1rem;
    }
    #about .service-col:first-child {
        padding-left: 1rem;
    }
    #about .service-col:last-child {
        padding-left: 1rem;
    }
}
/*XS TO SM*/
@media (max-width: 767px) {
    #about {
        padding: 50px 0;
        text-align: center;
    }
    #about .right-side {
        width: 100%;
    }
    #about .right-side .sub-section {
        justify-content: center;
        padding-left: 0;
    }
    #about .right-side .main-section {
        align-items: center;
        box-shadow: none;
        padding: 50px;
    }
    #about .right-side .main-section h2 {
        text-align: center;
    }
    #about .service-col {
        padding: 3rem 1rem;
    }
}
/*END RESPONSIVE*/
