.header {
    width: 100%;
    height: 85vh;
    background-image: url("../images/IMG_8462-1536x1024.jpg");
    background-repeat: no-repeat;
    background-position: 0 10%;
    background-size: cover;
}

.section-below-header {
    height: auto;
    padding: 18px 0;
    width: 100%;
    background-color: #895D2C;
}

.section-below-header>.container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.section-below-header .container .items {
    text-align: center;
    flex: 1;
    font-weight: 700;
    font-size: 20px;
    border-left: 1px dashed rgb(86, 84, 84);
    border-right: 1px dashed rgb(86, 84, 84);
    color: white;
}

.section-below-header .container .items .img {
    font-size: 2.5rem;
    font-weight: 900;
    color: #e7d2c9;
}

.section-below-header .container .items p {
    margin: 0;
}

.counter {
    padding: 2% 0;
}

.counter .flex {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 3%;
}

.counter .flex .box {
    flex: 1;
    padding: .5%;
    background-color: #895D2C;
    color: white;
    text-align: center;
    border-radius: 10px;
}

.counter .flex .box div {
    font-size: 3rem;
    font-weight: 700;
}

.counter .flex:first-child .box {
    background-color: transparent;
    text-align: start;
    margin: 4% 0;
}

.counter .flex:first-child .box:first-child {
    flex: 30%;
}

.counter .flex:first-child .box:last-child {
    flex: 60%;
}

.counter .flex:first-child .box h2 {
    color: #895D2C;
    margin: 0;
    font-size: 5rem;
    line-height: 80px;
}

.counter .flex:first-child .box h2 span {
    color: rgb(217, 11, 11);
    font-size: 4.5rem;
}

.counter .flex:first-child .box p {
    color: grey;
    font-size: 1.1rem;
    line-height: 30px;
}

.video-slider {
    background-color: #EEE3E3;
    padding: 3% 0;
}

.video-slider .flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    color: #895D2C;
}

.video-slider .flex h2 {
    font-size: 2.7rem;
}

.video-slider .flex p {
    font-weight: 600;
}


.faq {
    padding: 2%;
}

.faq .container {
    margin: 7% auto;
}

.faq h2 {
    font-size: 3rem;
    color: #895D2C;
    text-align: center;
    margin: 2% 0;
}

.faq p {
    text-align: center;
    font-size: 1.1rem;
}

.faq .flex {
    width: 100%;
    height: auto;
    display: flex;
    gap: 5%;
    flex-wrap: wrap;
}

.faq .box {
    flex: 1;
}

.faq .box .question {
    background-color: #895D2C;
    color: white;
    padding: 2% 4%;
    border-radius: 10px;
}

.faq .box p {
    text-align: start;
    line-height: 30px;
    padding: 2% 4%;
}

.join-us{padding: 2% 0;}
.join-us .flex{
    width: 100%;
    display: flex;
    gap: 7%;
    flex-wrap: wrap;
    margin: 3% 0;
}

.join-us .flex .box{
    flex: 1;
}

.join-us .box .video{
    width: 100%;
    height: 320px; 
    overflow: hidden;
    border-radius: 10px;
    position: relative;
}

.join-us .box .video img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    cursor: pointer;
}


.join-us .box .video svg{
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 1;
    transform: translate(-50%, -50%);
    width: 100px;
    opacity: .7;
}

.join-us h2{
    font-size: 3.5rem;
    margin: 0;
    color: #895D2C;
}

.join-us p{
    font-size: 1.1rem;
    line-height: 30px;
}

.join-us .flex-img{
    display: flex;
    gap: 10px;
}
.join-us .flex-img .img1, .join-us .flex-img .img2{ 
    transition: .5s;
}
.join-us .flex-img .img1:hover, .join-us .flex-img .img2:hover{
    transform: translateY(-10px); 
}

footer .footer-flex {
    margin-top: 4%;
}

footer .flex-col:first-child {
    display: none;
}

@media (max-width:600px) {
    .section-below-header .container .items {
        flex-direction: column;
        flex: 50%;
    }
    .counter .flex .box {
        flex:100%;
        margin:1% 0;
    }
    .faq .box {
        flex: 100%;
        margin: 1% 0;
    }
    .join-us .flex .box{
        flex: 100%;
        margin:2% 0
    }
}