/*video_blog*/
.section_video_blog {
	position:relative;
	.video_blog_items_list {
		#video_blog_arrows{
			position:absolute;
			top: -75px;
			left: auto;
			right:120px;
			@media screen and (width <= 780px) {
				display:none;
			}
			button.glide__arrow.glide__arrow--right,
			button.glide__arrow.glide__arrow--left{
				color: transparent;
				background: transparent;
				box-shadow: none;
				border: none;
				outline: none;
				padding: 0;
			}
			button.glide__arrow.glide__arrow--right{
				right: -1em;
				&:after{
					content:url("data:image/svg+xml,%3Csvg width='69' height='69' viewBox='0 0 69 69' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='69' height='69' rx='10' fill='%23D31C21'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M29.9059 39.9808L29.0156 39.0906L33.6065 34.4997L29.0156 29.9088L29.9059 29.0186L35.387 34.4997L29.9059 39.9808Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M34.943 39.9808L34.0527 39.0906L38.6436 34.4997L34.0527 29.9088L34.943 29.0186L40.4241 34.4997L34.943 39.9808Z' fill='white'/%3E%3C/svg%3E");
					width: 69px;
					height: 69px;
					display:block;
					transform:rotate(180deg);
				}
			}
			button.glide__arrow.glide__arrow--left{
				&:after{
					content:url("data:image/svg+xml,%3Csvg width='69' height='69' viewBox='0 0 69 69' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='69' height='69' rx='10' fill='%23D31C21'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M29.9059 39.9808L29.0156 39.0906L33.6065 34.4997L29.0156 29.9088L29.9059 29.0186L35.387 34.4997L29.9059 39.9808Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M34.943 39.9808L34.0527 39.0906L38.6436 34.4997L34.0527 29.9088L34.943 29.0186L40.4241 34.4997L34.943 39.9808Z' fill='white'/%3E%3C/svg%3E");
					width: 69px;
					height: 69px;
					display:block;
				}
			}
		}
		.video_blog_item {
			cursor: pointer;
			display: block;
			transition: all .3s ease-in-out;
			background: #EBEBEB;
			border-radius: 10px;
			padding: 20px;

			.video_blog_body {
				display: flex;
				flex-direction: column;
				gap: 18px;
				color: #0C0B0B;
				background: white;
				border-radius: 10px;
				>iframe {
					width: 100%;
				}
			}
		}
	}
}
/*END_video_blog*/