	/*section video */
    .container-video h2 {
        max-width: 576px;
        border-bottom: none;
    }
    .container-video p {
        text-align: center;
        width: 767px;
        margin-top: 30px;
    }
    .container-video p span {
        font-weight: 800;
    }
    .video {
        background-size: cover !important;
        border: transparent !important;
        border-radius: 16px !important;
        height: 424px !important;
        width: 100%;
        position: relative;
    }

	.playbtn a:hover span {
		border-left: 23px solid #3A62A9;
	}
    .playbtn {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 2;
    }
    .playbtn a {
        box-sizing: content-box;
        display: inline-block;
        width: 84px;
        height: 84px;
        border-radius: 50%;
        position: relative;
    }
    .playbtn a span {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-7px, -13px);
        width: 0;
        height: 0;
        border-left: 23px solid #009EFF;
        border-top: 13px solid transparent;
        border-bottom: 13px solid transparent;
    }
    .playbtn a::before {
        content: "";
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        width: 80px;
        height: 80px;
        background: #ffffffb3;
        border-radius: 50%;
        animation: pulse-border 1500ms ease-out infinite;
    }
    .playbtn 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: 80px;
        height: 80px;
        border-radius: 50%;
        -webkit-transition: all 200ms;
        transition: all 200ms;
    }

    @media (max-width: 990px) {
        .video {
            height: 320px !important;
            width: 320px;
            position: relative;
            margin: 20px 0;
        }
        .container-video p {
            width: auto;
        }
    }
