.Divition {
    width: 100%;
    /* height: 200vh; */
    /* border: 1px solid red; */
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    /* padding: 10px; */
    filter: blur(0px);
    
}
section {
    width: 100%;
    /* height: 100vh; */
    /* display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column; */
}

.sec1 {
    width: 100%;
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.sec1 > .content {
    width: 100%;
    /* height: 80%; */
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: white;
    text-align: center;
    /* border: 1px solid red; */
    /* position: absolute; */
    /* background-color: rgba(0, 0, 0, 0.5); */
}
.sec1 > .content > h1 {
    font-size: clamp(24px, 2.5vw, 48px); /* يضمن تناسب الحجم مع الشاشات */
    font-weight: 700;
    margin: 15px 0;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5); /* ظل خفيف بدون تشويش زائد */
}

.sec1 > .content > p {
    font-size: clamp(16px, 1.5vw, 32px); /* نفس المنطق لكن للفقرات */
    font-weight: 500;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.4);
}

.sec1 > .content > button {
    padding: 10px 20px;
    background-color: transparent;
    color: white;
    border: 2px solid white;
    border-radius: 10px;
    cursor: pointer;
    font-size: clamp(10px, 2vw, 24px);
    margin: 15px 0px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease-in-out;
}

.sec1 > .content > button:hover {
    background-color: white;
    color: black;
}

.sec1 > .content > button:active {
    transform: scale(0.95);
}

.sec1 > .timeStart {
    position: absolute;
    bottom: 0px;
    color: white;
    background-color: whitesmoke;
    border-top-left-radius: calc(1vw + 0.5vh);
    border-top-right-radius: calc(1vw + 0.5vh);
    text-align: center;
    padding: calc(0.25vw + 0.15vh) calc(1vw + 1vh);
}
.sec1 > .timeStart > span {
    width: 100%;
    height: 100%;
    font-size: calc(1.1vw + 1vh);
    font-weight: 700;
    color: rgb(8, 23, 53);
}

.sec2 {
    width: 100%;
    height: 15vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-color: rgba(245, 245, 245, 1);
    box-shadow: 0px 1px 10px rgba(245, 245, 245, 1);
}
.sec2 > .countdown {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.sec2 > .countdown > .time-box {
    width: 100px;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin: 0px calc(1vw + 0.5vh);
    border-radius: 10px;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.1);
    background-color: #fff;
    overflow: hidden;
}
.sec2 > .countdown > .time-box:hover {
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
}

.sec2 > .countdown > .time-box > span {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 100%;
    font-size: 1.2em;
    font-weight: 700;
}

.sec3 { 
    width: 100%;
    /* height: 50vh; */
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    background-color: rgba(245, 245, 245, 1);
    box-shadow: 0px 1px 10px rgba(245, 245, 245, 1);
    /* border: 1px solid red; */
    position: relative;
    padding: 10px 10%;
}
.sec3 > .imgLogo {
    /* width: 100%; */
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    /* border: 1px solid green; */
    padding: 1%;
}
.sec3 > .imgLogo > img {
    width: 100%;
    /* height: 100%; */
    object-fit: cover;
    /* border: 1px solid red; */
    /* padding: 10px; */
    display: flex;
    justify-content: center;
    align-items: center;
}
.sec3 > .content {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: black;
    text-align: start;
    /* border: 1px solid red; */
    /* padding: 20px 0px; */
    /* position: absolute; */
    /* background-color: rgba(0, 0, 0, 0.5); */
}
.sec3 > .content > h2 {
    width: 100%;
    font-size: clamp(20px, 2vw, 45px); /* يضمن تناسب الحجم مع الشاشات */
    font-weight: 700;
    margin: 15px 0;
    color: #222222;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5); /* ظل خفيف بدون تشويش زائد */
}
.sec3 > .content > p {
    width: 100%;
    font-size: clamp(10px, 0.85vw, 25px); /* نفس المنطق لكن للفقرات */
    font-weight: 500;
    text-shadow: 0px 1px 2px rgba(0, 0, 0, 0.4);
    padding-left: 50px;
    color: #444444;
    /* word-spacing: 10px; */
}

.sec4{
    width: 100%;
    height: 70vh;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    background-color: rgba(245, 245, 245, 1);
    box-shadow: 0px 1px 10px rgba(245, 245, 245, 1);
    position: relative;
}
.sec4 > .continer{
    width: 100%;
    height: 100%;
    box-shadow: 0px 1px 5px rgba(241,243,245,0.5);
    background-color: rgba(241,243,245,0.5);
    margin: 1vh 10vw;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-direction: column;
}
.sec4 > .continer > .top{
    width: 100%;
    height: 100%;
    padding: 10px 0px;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}
.sec4 > .continer > .top > .Organizing{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    /* margin: 0px 10px; */
}
.Organizing > h3{
    font-size: 1.5vw;
    font-weight: 700;
    color: #444444;
    margin: 10px 0px;
    width: 100%;
    text-align: center;
}
.Organizing > p{
    font-size: 1.2vw;
    font-weight: 500;
    color: #555555;
    margin: 10px 0px;
    width: 70%;
    text-align: center;
}
.sec4 > .continer > .top > .photoFacebook{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    /* border: 1px solid red; */
    overflow: hidden;
}
.photoFacebook > .continer{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    overflow: hidden;
    /* padding: 10px; */
    /* border: 1px solid red; */  
    position: relative;
}
.photoFacebook > .continer > img{
    width: 100%;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0,0,0,1);
    object-fit: cover;
}

.photoFacebook > .continer > .navigation{
    width: 100%;
    height: 10%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    position: absolute;
}

.photoFacebook > .continer > .navigation >i{
    font-size: 1.5vw;
    color: #fff;
    cursor: pointer;
    transition: all 0.1s ease-in-out;
    background-color: rgba(0, 102, 255, 0.5);
    padding: 0.5vw 1vw;
    border-radius: 10px;
}
.photoFacebook > .continer > .navigation >i:hover{
    background-color: rgba(0, 102, 255, 1);
    transform: scale(1.1);
}

.sec5{
    width: 100%;
    height: 20vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(245, 245, 245, 1);
    box-shadow: 0px 1px 10px rgba(245, 245, 245, 1);
    position: relative;
    border-radius: 10px;
    margin: 20px 0px;
}
.sec5 > .slider{
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

  .sec5 > .slider > .slider-track{
    width: 200%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    /* position: relative; */
    padding: 15px 0px;
    animation: scroll 25s linear infinite;
    transition: all 0.5s ease-in-out;
  }

  @keyframes scroll {
    0%{
        transform: translateX(0);
    }
    50%{
        transform: translateX(50%);
    }
    100%{
        transform: translateX(0);
    }
}
.sec5 > .slider > .slider-track > img{
    /* width: 150px; */
    height: 120px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0,0,0,1);
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 10px;
}

.sec6 {
    width: 100%;
    padding: 20px;
}

.sec6 > .content{
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
    text-align: center;
    padding: 0px 10vw;
    text-align: start;
}
.sec6 > .content > h2{
    width: 100%;
    font-size: clamp(20px, 2vw, 45px); /* يضمن تناسب الحجم مع الشاشات */
    color: #222222;
    padding-right: 5%;
}
.sec6 > .content > ul{
    list-style-type: '🔔    ';
    width: 100%;
    color: #444444;
    padding-right: 10%;
    font-size: clamp(10px, 1vw, 15px); /* يضمن تناسب الحجم مع الشاشات */
}
.sec6 > #contentEn > h2{
    width: 100%;
    font-size: clamp(20px, 2vw, 45px); /* يضمن تناسب الحجم مع الشاشات */
    color: #222222;
    padding-left: 5%;
}
.sec6 > #contentEn > ul{
    list-style-type: '🔔    ';
    width: 100%;
    color: #444444;
    padding-left: 10%;
    font-size: clamp(10px, 1vw, 15px); /* يضمن تناسب الحجم مع الشاشات */
}

.sec7 {
    width: 100%;
    height: 50vh;
    display: flex;
    justify-content: center;
    align-items: center;
    /* border: 1px solid red; */
    margin-bottom: 5%;
    padding: 10px;
}
.sec7 > .continer{
    width: 80%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    /* flex-direction: column; */
    padding: 10px;
    /* border: 1px solid red; */
}
.sec7 > .continer > div {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 10px;
    /* border: 1px solid green; */
    margin: 0px 1%;
}


.sec7 > .continer > .right{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: start;
    align-items: center;
    flex-direction: column;
    padding: 10px;
    /* border: 1px solid red; */
    margin: 0px 1%;
    text-align: center;
}
.sec7 > .continer > .right > h2{
    text-align: start;
    /* border: 1px solid red; */
    width: 100%;
    font-size: clamp(20px, 1vw, 45px); /* يضمن تناسب الحجم مع الشاشات */
    font-weight: 700;
    color: #222222;
    text-shadow: 0px 1px 5px rgba(0, 0, 0, 0.5); /* ظل خفيف بدون تشويش زائد */
    padding: 5px;
}

.sec7 > .continer > .right > .Thebrochure{
    width: 100%;
    height: 100%;
    /* border: 1px solid green; */
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 10px 0px;
}
.sec7 > .continer > .right > .Thebrochure > img{
    /* width: 100%; */
    height: 100%;
    border-radius: 10px;
}

.sec7 > .continer > .right > .Thebrochure > .navigation{
    width: 100%;
    height: 10%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5%;
    position: absolute;
}

.sec7 > .continer > .right > .Thebrochure > .navigation >i{
    font-size: 1.1vw;
    color: #fff;
    cursor: pointer;
    transition: all 0.1s ease-in-out;
    background-color: rgba(255, 166, 0, 0.6);
    padding: 0.5vw 1vw;
    border-radius: 10px;
}
.sec7 > .continer > .right > .Thebrochure > .navigation >i:hover{
    background-color: orange;
    transform: scale(1.1);
}


.sec7 > .continer > .left {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 10px;
    /* border: 1px solid green; */
    margin: 0px 1%;
    text-align: center;
}
.sec7 > .continer > .left > h2 {
    width: 100%;
    font-size: clamp(20px, 2vw, 45px); /* يضمن تناسب الحجم مع الشاشات */
    font-weight: 700;
    color: #222222;
    text-shadow: 0px 1px 5px rgba(0, 0, 0, 0.5); /* ظل خفيف بدون تشويش زائد */
}
.sec7 > .continer > .left > p {
    width: 100%;
    font-size: clamp(10px, 0.85vw, 25px); /* نفس المنطق لكن للفقرات */
    font-weight: 500;
    text-shadow: 0px 1px 2px rgba(0, 0, 0, 0.4);
    color: #444444;
}
.sec7 > .continer > .left > a{
    padding: 0.3vw 1vw;
    background-color: #69727d;
    color: white;
    /* border: 2px solid white; */
    border-radius: 5px;
    cursor: pointer;
    font-size: clamp(10px, 2vw, 24px);
    margin: 15px 0px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease-in-out;
    font-size: 1rem;
    transform: scale(1);
}
.sec7 > .continer > .left > a:hover {
    background-color: white;
    color:  #69727d;
    transform: scale(0.95);
}


.sec8 { 
    width: 100%;
    height: max-content;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    /* background-color: rgba(245, 245, 245, 1); */
    /* box-shadow: 0px 1px 10px rgba(245, 245, 245, 1); */
    /* border: 1px solid red; */
    /* position: relative; */
    padding: 10px 10%;
    /* border: 1px solid red; */
}

.sec8 > .content{
    width:  100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: black;
    text-align: start;
    /* border: 1px solid red; */
}

.sec8 > .content > h2 {
    width: fit-content;
    font-size: calc(0.85rem + 1vw);
    font-weight: 700;
    padding: 10px 20%;
    margin: 10px 0px;
    color: #222222;
    text-align: center;
    background-color: #007EA3;
    color: #fff;
    border-radius: 5px;
}

.sec8 > .content > p {
    width: 100%;
    font-size:  calc(0.5rem + 1vw);
    font-weight: 500;
    text-shadow: 0px 1px 0px rgba(0, 0, 0, 0.4);
    color: #444444;
    padding: 10px 20%;
    text-align: center;
}

.sec8 > .content > .paragraph {
    /* border: 1px solid #007EA3; */
    width: 100%;
    padding: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
}
.sec8 > .content > .paragraph > p {
    width: 100%;
    height: 100%;
    font-size: calc(0.1rem + 1vw);
    font-weight: 500;
    text-shadow: 0px 0px 1px rgba(0, 0, 0, 0.4);
    color: #444444;
    padding: 10px;
    text-align: center; 
}
.sec8 > .content > a{
    padding: 0.3vw 1vw;
    background-color: #007EA3;
    color: white;
    /* border: 2px solid white; */
    border-radius: 5px;
    cursor: pointer;
    font-size: calc(0.5rem + 1vw);
    margin: 15px 0px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease-in-out;
    font-size: 1rem;
    transform: scale(1);
}
.sec8 > .content > a:hover {
    background-color: white;
    color:  #007EA3;
    transform: scale(0.95);
}


.sec8 > .content > .addCMT3{
    /* border: 1PX solid red; */
   width: 100%;
    padding: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.sec8 > .content > .addCMT3 > p {
    width: 100%;
    height: 100%;
    font-size: calc(0.1rem + 1vw);
    font-weight: 500;
    text-shadow: 0px 0px 1px rgba(0, 0, 0, 0.4);
    color: #444444;
    padding: 10px;
    text-align: center; 
}



/* ------------------Responsive Design */
@media (max-width: 1000px) {
    .sec1 > .timeStart {
        border-top-left-radius: calc(1vw + 0.1vh);
        border-top-right-radius: calc(1vw + 0.1vh);
        padding: calc(1vw - 0.5vh) calc(3vw + 1vh);
    }
    .sec1 > .timeStart > span {
        width: 100%;
        height: 100%;
        font-size: calc(3.5vw + 1.5vw);
        font-weight: 700;
        color: rgb(8, 23, 53);
    }

    .sec2 {
        width: 100%;
        height: 20vh;
    }
    .sec2 > .countdown {
        width: 100%;
        height: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    
    .sec2 > .countdown > .time-box > span {
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
        width: 100%;
        font-size: calc(2vw + 0.5vh);
        font-weight: 700;
    }
    
    .sec7 {
        width: 100%;
        height: 80vh;
        display: flex;
        justify-content: center;
        align-items: center;
        /* border: 1px solid red; */
        margin-bottom: 5%;
        padding: 0px;
    }
    .sec7 > .continer{
        width: 100%;
        height: 50vh;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        padding: 0px;
        /* border: 1px solid red; */
    }
    .sec7 > .continer > div {
        width: 100%;
        height: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        padding: 10px;
        /* border: 1px solid green; */
        margin: 0px 0px;
        
    }
    
    
    .sec7 > .continer > .right{
        width: 100%;
        height: 100%;
        display: flex;
        justify-content: start;
        align-items: center;
        flex-direction: column;
        padding: 10px;
        /* border: 1px solid red; */
        margin: 0px 0%;
        text-align: center;
    }
    .sec7 > .continer > .right > h2{
        text-align: start;
        /* border: 1px solid red; */
        width: 100%;
        font-size: clamp(20px, 1vw, 45px); /* يضمن تناسب الحجم مع الشاشات */
        font-weight: 700;
        color: #222222;
        text-shadow: 0px 1px 5px rgba(0, 0, 0, 0.5); /* ظل خفيف بدون تشويش زائد */
        padding: 5px;
    }
    
    .sec7 > .continer > .right > .Thebrochure{
        width: 100%;
        height: 100%;
        /* border: 1px solid green; */
        overflow: hidden;
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
        padding: 10px 0px;
    }
    .sec7 > .continer > .right > .Thebrochure > img{
        width: 100%;
        height: auto;
        border-radius: 10px;
    }
    
    .sec7 > .continer > .right > .Thebrochure > .navigation{
        width: 100%;
        height: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 5%;
        position: absolute;
        z-index: 100;
    }
    
    .sec7 > .continer > .right > .Thebrochure > .navigation >i{
        font-size: 5vw;
        color: #fff;
        cursor: pointer;
        transition: all 0.1s ease-in-out;
        background-color: rgba(255, 166, 0, 0.6);
        padding: 1vw 3vw;
        border-radius: 10px;
    }
    .sec7 > .continer > .right > .Thebrochure > .navigation >i:hover{
        background-color: orange;
        transform: scale(1.1);
    }
    
    
    .sec7 > .continer > .left {
        width: 100%;
        height: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        padding: 10px;
        /* border: 1px solid green; */
        margin: 0px 1%;
        text-align: center;
    }
    .sec7 > .continer > .left > h2 {
        width: 100%;
        font-size: clamp(20px, 2vw, 45px); /* يضمن تناسب الحجم مع الشاشات */
        font-weight: 700;
        color: #222222;
        text-shadow: 0px 1px 5px rgba(0, 0, 0, 0.5); /* ظل خفيف بدون تشويش زائد */
    }
    .sec7 > .continer > .left > p {
        width: 100%;
        font-size: clamp(10px, 0.85vw, 25px); /* نفس المنطق لكن للفقرات */
        font-weight: 500;
        text-shadow: 0px 1px 2px rgba(0, 0, 0, 0.4);
        color: #444444;
    }
    .sec7 > .continer > .left > a{
        padding: 0.3vw 1vw;
        background-color: #69727d;
        color: white;
        /* border: 2px solid white; */
        border-radius: 5px;
        cursor: pointer;
        font-size: clamp(10px, 2vw, 24px);
        margin: 15px 0px;
        box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
        transition: all 0.3s ease-in-out;
        font-size: 1rem;
        transform: scale(1);
    }
    .sec7 > .continer > .left > a:hover {
        background-color: white;
        color:  #69727d;
        transform: scale(0.95);
    }

    .sec8 > .content > .paragraph {
        flex-direction: column;
    }
    .sec8 > .content > .paragraph > p {
        font-size: calc(0.5rem + 1vw);
    }


    
    .sec8 > .content > .addCMT3 > p {
        font-size: calc(0.5rem + 1vw);
    }

}



@media (max-width: 800px) {
    .sec3 { 
        width: 100%;
        flex-direction: column-reverse;
        /* border: 1px solid red; */
    }

    .sec3 > .imgLogo {
        width: 40vw;
        /* height: 100%; */
        display: flex;
        justify-content: center;
        align-items: center;
        /* border: 1px solid green; */
        padding: 1%;
    }
    .sec3 > .imgLogo > img {
        width: 100%;
        /* height: 100%; */
        object-fit: cover;
        /* border: 1px solid red; */
        /* padding: 10px; */
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .sec3 > .content {
        width: 100%;
        height: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        color: black;
        text-align: center;
    }
    .sec3 > .content > h2 {
        width: 100%;
        font-size: clamp(20px, 2vw, 45px); /* يضمن تناسب الحجم مع الشاشات */
        font-weight: 700;
        margin: 15px 0;
        text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5); /* ظل خفيف بدون تشويش زائد */
    }
    .sec3 > .content > p {
        width: 100%;
        font-size: clamp(10px, 0.85vw, 25px); /* نفس المنطق لكن للفقرات */
        font-weight: 500;
        text-shadow: 0px 1px 2px rgba(0, 0, 0, 0.4);
        padding: 0px;
    }


    .sec4{
        width: 100%;
        height: 70vh;
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: rgba(245, 245, 245, 1);
        box-shadow: 0px 1px 10px rgba(245, 245, 245, 1);
        position: relative;
        margin-top: 5%;
    }
    .sec4 > .continer{
        width: 100%;
        height: 100%;
        box-shadow: 0px 1px 5px rgba(241,243,245,0.5);
        background-color: rgba(241,243,245,0.5);
        margin: 1vh 10vw;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .sec4 > .continer > .top{
        width: 100%;
        height: 100%;
        padding: 0px 0px;
        display: flex;
        justify-content: space-evenly;
        align-items: center;
        flex-direction: column;
    }
    .sec4 > .continer > .top > .Organizing{
        width: 100%;
        height: auto;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }
    .Organizing > h3{
        font-size: clamp(20px, 1vw, 35px);
        font-weight: 700;
        color: #444444;
        margin: 10px 0px;
        width: 100%;
        text-align: center;
    }
    .Organizing > p{
        font-size: clamp(15px, 1vw, 25px);
        font-weight: 500;
        color: #555555;
        margin: 0px 0px;
        width: 80%;
        text-align: center;
    }
    .sec4 > .continer > .top > .photoFacebook{
        width: 100%;
        height: 80vw;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 0px;
        overflow: hidden;
    }
    .photoFacebook > .continer{
        width: 100%;
        height: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        overflow: hidden;
        position: relative;
    }
    .photoFacebook > .continer > img{
        width: 100%;
        height: 100vw;
        border-radius: 0px;
        box-shadow: 0px 0px 0px rgba(0,0,0,0);
        object-fit: cover;
    }
    
    .photoFacebook > .continer > .navigation{
        width: 100%;
        height: 10%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 10px;
        position: absolute;
    }
    
    .photoFacebook > .continer > .navigation >i{
        font-size: 1.5vw;
        color: #fff;
        cursor: pointer;
        transition: all 0.1s ease-in-out;
        background-color: rgba(0, 102, 255, 0.5);
        padding: 0.5vw 1vw;
        border-radius: 10px;
    }
    .photoFacebook > .continer > .navigation >i:hover{
        background-color: rgba(0, 102, 255, 1);
        transform: scale(1.1);
    }

    .sec6 > .content{
        padding: 0px;
    }
    .sec6 > .content > h2{
        padding-right: 5%;
    }
    .sec6 > .content > ul{
        padding-right: 15%;
    }

}