﻿.tutorm5.header1 {
    position: relative;
    overflow: visible;
    background-color: #f8f9fa; 
    min-height: 600px; 
    padding-top: 80px; 
    padding-bottom: 80px;
}

.round {
    position: absolute;
    bottom: 0;
    left: -20%;
    width: 140%;
    height: 400px; 
    border-top-left-radius: 50%;
    border-top-right-radius: 50%;
    background: #adb5bd; 
    z-index: 1; 
}

.item-wrapper {
    position: relative;
    z-index: 9; 
}

.face1, .face2, .face3, .face4 {
    width: 200px;
    height: 200px;
    filter: grayscale(1);
    object-fit: cover;
    border-radius: 4rem !important;
    position: absolute; 
    z-index: 9999; 
}

@media (max-width: 767px) {
    .face1, .face2, .face3, .face4 {
        display: none;
    }
}

.face1 {
    left: 5%;
    top: 10%;
    animation: circle1 6s linear infinite;
}

.face2 {
    left: 5%;
    bottom: 10%;
    animation: circle2 6s linear infinite;
}

.face3 {
    right: 5%;
    top: 10%;
    animation: circle1 6s linear infinite;
}

.face4 {
    right: 5%;
    bottom: 10%;
    animation: circle2 6s linear infinite;
}

@keyframes circle1 {
    0% {
        transform: rotate(0deg) translate(-8px) rotate(0deg);
    }

    100% {
        transform: rotate(360deg) translate(-8px) rotate(-360deg);
    }
}

@keyframes circle2 {
    0% {
        transform: rotate(360deg) translate(-8px) rotate(-360deg);
    }

    100% {
        transform: rotate(0deg) translate(-8px) rotate(0deg);
    }
}

.content-wrap {
    position: relative;
    z-index: 9; 
    margin: 0 auto;
    text-align: center;
    max-width: 1200px;
}

.content-wrap {
    padding: 2rem 1rem;
}

@media (min-width: 992px) {
    .content-wrap {
        padding: 3rem 2rem;
    }
}

.mbr-tag {
    border: 1px solid currentColor;
    border-radius: 20px;
    padding: 5px 30px;
    display: inline-block;
    margin-bottom: 6px;
    margin-right: 0.5rem;
    margin-left: 0.5rem;
    color: #838383;
}

.mbr-section-title,
.mbr-section-subtitle,
.mbr-text {
    color: #000;
}

#videoCarousel,
#videoCarousel .carousel-inner,
#videoCarousel .carousel-item {
    height: 100vh;
}

.video-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

    .video-container iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: 0;
        object-fit: cover;
    }
