
.about-area {
    position: relative
}

.about-area .about-shape img {
    position: absolute
}

.about-area .about-shape img:nth-child(1) {
    top: 100px;
    left: 0
}

.about-area .about-shape img:nth-child(2) {
    left: 40px;
    top: 140px;
    -webkit-animation: about-ani-two 15s linear infinite;
    animation: about-ani-two 15s linear infinite
}

.about-area .about-shape img:nth-child(3) {
    top: 100px;
    left: 30px;
    max-width: 210px;
    -webkit-animation: about-ani-one 5s linear infinite;
    animation: about-ani-one 5s linear infinite
}

.about-area .container-fluid {
    padding-left: 0;
    padding-right: 0
}

.about-area .container-fluid .row {
    margin-left: 0;
    margin-right: 0
}

.about-area .left-padding {
    padding-left: 0
}

.about-area .about-img .one {
    margin-bottom: 30px;
    text-align: right;
    position: relative
}

.about-area .about-img .one img:nth-child(1) {
    border-radius: 0 30% 0 0;
    max-width: 375px;
    margin-left: auto;
    z-index: 1;
    position: relative
}

.about-area .about-img .one img:nth-child(2) {
    position: absolute;
    top: 0;
    right: -60px;
    -webkit-animation: about-ani-three 20s linear infinite;
    animation: about-ani-three 20s linear infinite
}

.about-area .about-img .three img {
    border-radius: 30% 0 0 0
}

.about-area .about-content {
    max-width: 750px
}

.about-area .about-content .section-title {
    text-align: left;
    margin-bottom: 30px
}

.about-area .about-content .middle {
    margin-bottom: 35px
}

.about-area .about-content .middle span {
    font-weight: 600;
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 10px;
    display: block
}

.about-area .about-content .middle p {
    margin-bottom: 0
}

.about-area .about-content .bottom {
    margin-bottom: 40px
}

.about-area .about-content .bottom ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

.about-area .about-content .bottom ul li {
    list-style-type: none;
    display: inline-block;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.33333333333333%;
    flex: 0 0 33.33333333333333%;
    max-width: 33.33333333333333%;
    position: relative;
    padding-left: 80px
}

.about-area .about-content .bottom ul li i {
    display: inline-block;
    position: absolute;
    top: 10px;
    left: 15px;
    color: #384259;
    font-size: 50px;
    z-index: 1
}

.about-area .about-content .bottom ul li i:after {
    position: absolute;
    content: '';
    width: 50px;
    height: 50px;
    top: -10px;
    left: -15px;
    border-radius: 50%;
    background-color: #65ab6a;
    z-index: -1
}

.about-area .about-content .bottom ul li h3 {
    font-size: 40px;
    margin-bottom: 5px
}

.about-area .about-content .bottom ul li p {
    margin-bottom: 0;
    font-weight: 600;
    color: #384259
}

.about-area .about-content .years {
    position: relative;
    left: -110px
}

.about-area .about-content .years ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

.about-area .about-content .years ul li {
    list-style-type: none;
    display: inline-block;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 60%;
    flex: 0 0 60%;
    max-width: 60%
}

.about-area .about-content .years ul li:nth-child(2) {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 40%;
    flex: 0 0 40%;
    max-width: 40%
}

.about-area .about-content .years ul li .years-inner {
    background-color: #011a41;
    border-radius: 10px 0 10px 0;
    position: relative;
    padding: 18px 150px 20px 130px
}

.about-area .about-content .years ul li .years-inner span {
    display: inline-block;
    font-size: 80px;
    color: #384259;
    font-weight: 700;
    position: absolute;
    top: 0;
    left: 25px
}

.about-area .about-content .years ul li .years-inner h4 {
    font-size: 32px;
    color: #fff;
    margin-bottom: 0
}

.about-area .about-content .years ul li .years-inner i {
    display: inline-block;
    font-size: 85px;
    color: #5d6d86;
    position: absolute;
    top: -3px;
    right: 25px
}

.about-area .about-content .years ul li .years-inner img {
    position: absolute;
    right: -55px;
    bottom: -20px;
    -webkit-animation: about-ani-three 20s linear infinite;
    animation: about-ani-three 20s linear infinite;
    z-index: -1
}

@-webkit-keyframes about-ani-one {
    0% {
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0)
    }

    50% {
        -webkit-transform: translate(-15px, 0);
        transform: translate(-15px, 0)
    }

    100% {
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0)
    }
}

@keyframes about-ani-one {
    0% {
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0)
    }

    50% {
        -webkit-transform: translate(-15px, 0);
        transform: translate(-15px, 0)
    }

    100% {
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0)
    }
}

@-webkit-keyframes about-ani-two {
    0% {
        -webkit-transform: rotateY(0deg);
        transform: rotateY(0deg)
    }

    50% {
        -webkit-transform: rotateY(180deg);
        transform: rotateY(180deg)
    }

    100% {
        -webkit-transform: rotateY(360deg);
        transform: rotateY(360deg)
    }
}

@keyframes about-ani-two {
    0% {
        -webkit-transform: rotateY(0deg);
        transform: rotateY(0deg)
    }

    50% {
        -webkit-transform: rotateY(180deg);
        transform: rotateY(180deg)
    }

    100% {
        -webkit-transform: rotateY(360deg);
        transform: rotateY(360deg)
    }
}

@-webkit-keyframes about-ani-three {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg)
    }

    50% {
        -webkit-transform: rotate(180deg);
        transform: rotate(180deg)
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

@keyframes about-ani-three {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg)
    }

    50% {
        -webkit-transform: rotate(180deg);
        transform: rotate(180deg)
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

.video-wrap {
    z-index: 2;
    margin-left: 25px
}

.video-wrap a {
    z-index: 10;
    display: inline-block;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    position: relative;
    font-size: 60px;
    text-align: center;
    color: #384259
}

.video-wrap a i {
    line-height: 90px
}

.video-wrap a:before {
    content: '';
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 90px;
    height: 90px;
    background-color: #65ab6a;
    border-radius: 50%;
    z-index: -1;
    -webkit-animation: pulse-border 1500ms ease-out infinite;
    animation: pulse-border 1500ms ease-out infinite
}

.video-wrap a:after {
    content: '';
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 90px;
    height: 90px;
    background-color: #65ab6a;
    border-radius: 50%;
    z-index: -1;
    -webkit-transition: .5s all ease;
    transition: .5s all ease
}

.video-wrap a:hover {
    color: #fff
}

.video-wrap a:hover:before {
    background-color: #011a41
}

.video-wrap a:hover:after {
    background-color: #011a41
}

.video-wrap span {
    display: inline-block;
    color: #384259;
    font-weight: 600;
    position: relative;
    top: -20px;
    margin-left: 25px
}

@-webkit-keyframes pulse-border {
    0% {
        -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1
    }

    100% {
        -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        opacity: 0
    }
}

@keyframes pulse-border {
    0% {
        -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1
    }

    100% {
        -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        opacity: 0
    }
}