﻿/* =========================
   ABOUT US SECTION
========================= */

.aboutus {
    background: #eaedf2 url(/Images/aboutusbg.jpg) top right no-repeat;
    min-height: 895px;
    padding-top: 215px;
}

/* Layout */
.aboutus__row {
    display: flex;
    align-items: center;
}

.aboutus__content {
    margin-left: 6rem;
    border: 1px solid black;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 1px 2px 4px 0px #111;
}

/* Headings */
.aboutus h2 {
    margin-bottom: 25px;
    text-align: left;
}

    .aboutus h2 span {
        color: #3190E7;
    }

/* List */
.aboutus__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.aboutus__item {
    margin-bottom: 25px;
}

    .aboutus__item span {
        font-weight: 600;
        font-size: 18px;
        display: block;
        margin-bottom: 6px;
    }

.aboutus__desc {
    font-size: 14px;
    line-height: 1.7;
    color: #555;
}

/* Image Column */
.aboutus__image {
/*    min-height: 400px;*/
}

.aboutus {
    opacity: 0;
}

    .aboutus.is-visible {
        opacity: 1;
    }
.scale-up-hor-center {
    animation: scale-up-hor-center 0.4s cubic-bezier(0.39, 0.575, 0.565, 1) both;
    transform-origin: center;
}

@-webkit-keyframes scale-up-hor-center {
    0% {
        -webkit-transform: scaleX(0.4);
        transform: scaleX(0.4);
    }

    100% {
        -webkit-transform: scaleX(1);
        transform: scaleX(1);
    }
}

@keyframes scale-up-hor-center {
    0% {
        -webkit-transform: scaleX(0.4);
        transform: scaleX(0.4);
    }

    100% {
        -webkit-transform: scaleX(1);
        transform: scaleX(1);
    }
}