/*about*/

.about-left-full-image {
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    /* padding: 0; */
}

.about-left-full-image .about-img-wrap {
    background-size: contain !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    position: relative;
}

.about-left-full-image .about-content {
    padding: 50px 0px 60px 60px;
}

.about-left-full-image .play-btn {
    background: #fff !important;
    padding: 0px 15px 0px 0px;
    color: #1C1C1C;
    text-decoration: none;
    border-radius: 25px;
    display: block;
    width: 180px;
    font-weight: 600;
    position: absolute;
    bottom: 10%;
    left: 10%;
}

.about-left-full-image .play-btn i {
    background: #FF1D2C;
    color: #fff !important;
    width: 50px;
    height: 50px;
    text-align: center;
    border-radius: 50%;
    font-size: 20px;
    line-height: 50px;
    box-shadow: 0px 4px 5px #ff1d2c69;
    transition: .4s;
    animation: pulse-animation 2s infinite;
    margin-right: 10px;
}

.relative {
    position: relative;
}

.text-link {
    border: 1px solid #04082b;
    padding: 5px 10px;
    border-radius: 4px;
    margin-top: 25px;
    display: block;
    width: 110px;
    text-align: center;
    /* color: #04082B !important; */
    text-decoration: none;
    box-shadow: 0px 11px 30px -10px #6a26dba6;
    background: #fff;
}

@keyframes pulse-animation {
    0% {
        box-shadow: 0 0 0 0px rgba(0, 0, 0, 0.2);
    }

    100% {
        box-shadow: 0 0 0 20px rgba(0, 0, 0, 0);
    }
}

.about-left-full-image .play-btn:hover {
    background: #ff4854 !important;
    transition: .4s !important;
}


/*about*/

@media only screen and (min-device-width: 320px) and (max-device-width:768px) {
    .about-left-full-image .about-img-wrap {
        height: 300px;
        width: 100% !important;
    }

    .about-left-full-image .about-content {
        padding: 50px 10px 80px;
    }

    .about-left-full-image .play-btn {
        position: relative;
        bottom: -70%;
        left: 10px;
    }
}

@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) {
    .about-left-full-image .play-btn {
        left: 4%;
    }

    .about-left-full-image .about-content {
        padding: 50px 35px 60px 35px;
    }
}

@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: landscape) {
    .about-left-full-image .play-btn {
        left: 17%;
    }
}