/* ================================================= */
/* ------------------ General CSS ------------------ */
/* ================================================= */

* {
    box-sizing: border-box;
}
html{
    scroll-behavior: smooth; 
}

body {
    color: #666;
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    background: #ffffff;
}

a {
    color: #0bc1c1;
    transition: 0.5s;
}

a:hover,
a:active,
a:focus {
    color: #ffffff;
    outline: none;
    text-decoration: none;
}

p {
    color: #666;
    font-size: 14px;
    line-height: 24px;
    padding: 0;
    margin: 0 0 15px 0;
}

h2 {
    margin: 0;
    padding: 0;
    color: #666;
    font-weight: 700;
}

@media (max-width: 767.98px) {
    h2 {
        font-size: 26px;
        font-weight: 600;
    }
}

@media (max-width: 575.98px) {
    h2 {
        font-size: 18px;
        font-weight: 400;
    } 
}

/* ================================================= */
/* ---------------- Burger Menu CSS ---------------- */
/* ================================================= */

.header {
    display: table;
    position: relative;
    background-image: linear-gradient(rgba(255, 255, 255, 0.777),rgba(182, 182, 19, 0.771)),url(../img/equipe.jpg);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 100px 0;
    color: #000000;
    width: 100%;
    height: 100vh;
}

.header.banner {
    height: 400px;
    background-image: url(../img/banner.jpg);
}

.header:after {
    content: '';
    z-index: 0;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}

.header .container {
    position: relative;
    z-index: 1;
    text-align: center;
    display: table-cell;
    vertical-align: middle;
    width: 100%;
}

.header .brand {
    font-size: 60px;
    font-weight: 800;
    margin-bottom: 75px;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.header .brand:hover {
    color: #ffffff;
}

.header .brand:hover img {
    opacity: .7;
}

.header h1 {
    font-size: 45px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 2px;
}

.header .tagline {
    font-size: 26px;
    line-height: 32px;
    margin: 30px 0 60px 0;
    color: #000000;
}

.header .btn {
    background-color: #343434;
    font-weight: 700;
    font-size: 1.5em;
    border: 4px solid #343434;
    color: #fff;
    padding: 15px 45px;
    border-radius: 50px;
    text-transform: uppercase;
    transition: ease 0.5s;
}

.header .btn:hover {
    border: 4px solid #343434;
    background:none;
    color: #343434;
}

.header .btn:focus {
    color: #ffffff;
}

@media (max-width: 61.9em) {
    .header {
        padding: 75px 0;
    }
    
    .header h1 {
        font-size: 2.2rem;
    }
    
    .header.banner h1 {
        font-size: 1.5rem;
    }

    .header .brand {
        font-size: 3rem;
        margin-bottom: 35px;
    }

    .header .tagline {
        margin: 35px 0;
        font-size: 22px;
        line-height: 28px;
    }
}
@media (max-width: 400px){

    .header .btn{
        font-weight: 700;
        font-size: 1.2em;
        padding: 10px 40px;
    }
}

.menu {
    width: 60px;
    height: 50px;
    position: fixed;
    z-index: 21;
    top: 1%;
    right: 1%;
    background: rgba(0, 0, 0, 0.516);
    border-radius: 6px;
    transition: ease 0.5s;
}
.menu:hover{
background: #222222e2;
}
.menu span {
    position: relative;
    margin-top: 9px;
    margin-bottom: 9px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -9px;
    margin-top: -1px;
}

.menu span, .menu span::before, .menu span::after {
    display: block;
    width: 26px;
    right: 0;
    height: 3px;
    background-color: #fff;
    outline: 1px solid transparent;
    -webkit-transition-property: background-color, -webkit-transform;
    -moz-transition-property: background-color, -moz-transform;
    -o-transition-property: background-color, -o-transform;
    transition-property: background-color, transform;
    -webkit-transition-duration: 0.3s;
    -moz-transition-duration: 0.3s;
    -o-transition-duration: 0.3s;
    transition-duration: 0.3s;
}

.menu span::before, 
.menu span::after {
    position: absolute;
    content: "";
}

.menu span::before {
    top: -9px;
    width:20px
}

.menu span::after {
    top: 9px;width: 33px;

}

.menu.clicked span {
    background-color: transparent;
}

.menu.clicked span::before {
    -webkit-transform: translateY(9px) rotate(45deg);
    -moz-transform: translateY(9px) rotate(45deg);
    -ms-transform: translateY(9px) rotate(45deg);
    -o-transform: translateY(9px) rotate(45deg);
    transform: translateY(9px) rotate(45deg);    
    width: 33px;
}

.menu.clicked span::after {
    -webkit-transform: translateY(-9px) rotate(-45deg);
    -moz-transform: translateY(-9px) rotate(-45deg);
    -ms-transform: translateY(-9px) rotate(-45deg);
    -o-transform: translateY(-9px) rotate(-45deg);
    transform: translateY(-9px) rotate(-45deg);
}

.menu.clicked span:before, .menu.clicked span:after {
    background-color: #ffffff;
}

.menu:hover {
    cursor: pointer;
}

#nav {
    background: rgba(0, 0, 0, 0.915);
    position: fixed;
    z-index: 20;
    top: 0;
    right: 0;
    height: 100%;
    max-width: 250px;
    width: 100%;
    padding: 100px 40px 60px 40px;
    overflow-y: auto;
    -webkit-transform: translateX(100%);
    -moz-transform: translateX(100%);
    -ms-transform: translateX(100%);
    -o-transform: translateX(100%);
    transform: translateX(100%);
    -webkit-transition: transform 0.55s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    -moz-transition: transform 0.55s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    -o-transition: transform 0.55s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    transition: transform 0.55s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}

#nav.show {
    -webkit-transform: translateX(0px);
    -moz-transform: translateX(0px);
    -ms-transform: translateX(0px);
    -o-transform: translateX(0px);
    transform: translateX(0px);
}

#nav.show ul.main li {
    -webkit-transform: translateX(0px);
    -moz-transform: translateX(0px);
    -ms-transform: translateX(0px);
    -o-transform: translateX(0px);
    transform: translateX(0px);
    opacity: 1;
}

.menu.clicked {
    position: fixed;
    z-index: 99;
}

#nav.show ul.main li:nth-child(1) {
    transition-delay: 0.15s;
}

#nav.show ul.main li:nth-child(2) {
    transition-delay: 0.3s;
}

#nav.show ul.main li:nth-child(3) {
    transition-delay: 0.45s;
}

#nav.show ul.main li:nth-child(4) {
    transition-delay: 0.6s;
}

#nav.show ul.main li:nth-child(5) {
    transition-delay: 0.75s;
}

#nav.show ul.main li:nth-child(6) {
    transition-delay: 0.9s;
}

#nav.show ul.main li:nth-child(7) {
    transition-delay: 1.05s;
}

#nav.show ul.main li:nth-child(8) {
    transition-delay: 1.2s;
}

#nav.show ul.main li:nth-child(9) {
    transition-delay: 1.35s;
}

#nav.show .about, #nav.show .social, #nav.show ul.sub {
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
    transform: translateY(0px);
    opacity: 1;
    transition-delay: .85s;
}

@media (min-width: 667px) {
    #nav {
        padding: 120px 30px 70px 20px;
    }
}

#nav ul.main {
    list-style-type: none;
}

#nav ul.main li {
    -webkit-transform: translateX(40px);
    -moz-transform: translateX(40px);
    -ms-transform: translateX(40px);
    -o-transform: translateX(40px);
    transform: translateX(40px);
    opacity: 0;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    float: none;
    list-style: circle;
    color: #fff
}

#nav ul.main li:last-of-type {
    margin-bottom: 0px;
}

#nav ul.main li a {
    color: #ffffff;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 1rem;
    display: block;
    padding: 10px 0;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

#nav ul.main li a span {
    color: #ffff00;
}

#nav ul.main li a:hover {
    color: #ffff00;
}

#nav ul.sub {
    list-style-type: none;
    margin-top: 40px;
    -webkit-transform: translateY(30px);
    -moz-transform: translateY(30px);
    -ms-transform: translateY(30px);
    -o-transform: translateY(30px);
    transform: translateY(30px);
    opacity: 0;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

#nav ul.sub li {
    margin-bottom: 10px;
}

#nav ul.sub li:last-of-type {
    margin-bottom: 0px;
}

#nav ul.sub li a {
    color: #ffffff;
    letter-spacing: 1px;
    font-size: 0.9rem;
    text-decoration: none;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

#nav ul.sub li a:hover {
    color: #76c5b9;
}


.overlay {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 7;
    width: 100%;
    height: 100%;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    background-color: #603e82;
    opacity: 0;
    visibility: hidden;
}

.overlay.show {
    opacity: 0.8;
    visibility: visible;
}

/* ================================================= */
/* -------------- Section Header Style ------------- */
/* ================================================= */

.section-header {
    position: relative;
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    color: #222222;
    font-size: 45px;
    font-weight: 700;
}
.logo_pic{
    width: 300px;
    height: 300px;
    border-radius: 50%;
}
.section-header::before {
    position: absolute;
    content: '';
    height: 1px;
    width: 200px;
    bottom: -10px;
    left: calc(50% - 100px);
    background: rgb(0, 0, 0);
}

.section-header::after {
    position: absolute;
    content: '';
    height: 14px;
    width: 14px;
    bottom: -17px;
    left: calc(50% - 7px);
    background: rgb(0, 0, 0);
    border-radius: 10px;
}

@media (max-width: 767.98px) {
    .section-header h2 {
        font-size: 35px;
        font-weight: 600;
    }
}

@media (max-width: 575.98px) {
    .section-header h2 {
        font-size: 25px;
        font-weight: 600;
    }
}


/* ================================================= */
/* ------------------ About Style ------------------ */
/* ================================================= */

#about {
    position: relative;
    padding: 45px 0 60px 0;
    background: #f2f2f2;
}

#about .content-col p {
    font-size: 18px;
    line-height: 25px;
    font-weight: 300;
    margin-bottom: 20px;
}

#about .content-col a {
    display: inline-block;
    background-color: #f8f405;
    font-weight: 700;
    font-size: 1.3em;
    border: 2px solid #f8f405;
    color: rgb(93, 93, 93);
    padding: 10px 30px;
    border-radius: 25px;
    text-transform: uppercase;
    transition: ease 0.5s;
}

#about .content-col a:hover {
    border: 2px solid #f8f405;
    background-color: #ffffff;
    
}

#about .content-col a:focus {
    color: #fff;
}
@media screen and (max-width:500px) {
    #about .content-col a {
        font-size: 1em;
    }

    #about .content-col p {
        font-size: 16px;
        line-height: 25px;
        font-weight: 300;
        margin-bottom: 20px;
    }
    
#about .content-col h3 {
    font-size: 20px;
}
    
}

/* ================================================= */
/* ---------------- events Style ----------------- */
/* ================================================= */

#services {
    position: relative;
    padding: 50px 0 13% 0;
}

.cards{
    display: flex;
    justify-content: center;
    flex-direction: row;
    flex-wrap: wrap;
}
.card{
    text-decoration: none;
    border: #585858 solid 1px;
    
    
    width: 24.25em;
    margin: 20px;
    height: 250px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.337);
}
.card:hover .info h3{
    visibility: inherit;
    height: 250px;
}



.info h3{
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    -moz-backdrop-filter: blur(5px);
    text-decoration: none;
    color: rgb(255, 255, 255);
    font-size: 1.5em;
    font-weight: 700;
    width: 100%;
    height: 100%;
    padding-top: 100px;
    text-align: center;
    visibility: hidden;
}

/* ================================================= */
/* ----------------- Dep Style --------------------- */
/* ================================================= */

#dep{
      position: relative;
    padding: 50px 0 13% 0;
}

#dep .items_dep{
    display: flex;
    justify-content: center;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
}

.dep_info{
    text-decoration: none;
    width: 29%;
    padding: 25px;
    margin: 20px;
    transition: 0.7s ease;
}
.line_dep{
    background-color: #222222;
    width: 5px;
}
.dep_info h3{
    font-size: 2.2em;
    color: #222222;
}
.dep_info p{
    font-size: 1.5em;
}

@media only screen and (max-width: 1100px) {
    .dep_info{
        width: 40%;
    }
    .dep_info h3{
        font-size: 2em;
    }
}

@media only screen and (max-width: 950px) {
    #dep .items_dep{
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        flex-wrap: wrap;
    }
    .line_dep{
        background-color: #222222;
        height: 5px;
       width: 70%;
    }
    .dep_info{
        text-align: center;
        width: 90%;
    }
    .dep_info p{
        text-align: center;
    }
}

@media only screen and (max-width: 500px) {
    .dep_info{
        width: 100%;
        margin: 0;
    }
    .dep_info h3{
        font-size: 1.7em;
    }
    .dep_info p{
        font-size: 1.3em;
    }
}


   
/* ================================================= */
/* ---------------- Staff Style ---------------- */
/* ================================================= */
.staff {
    position: relative;
    text-align: center;
    padding: 45px 0 60px 0;
    background-image: linear-gradient(#434343, #212121);
}

.staff .section-header h2 {
    color: #ffffff;
}

.staff .section-header::before,
.staff .section-header::after {
    background: #fff;
}

.staff .container{
    width: 50%;
}
.staff .m_staff{
    margin-bottom: 10px;
    align-items: center;
    margin: 0 15px;
    position: relative;
}
.staff .img_m{
    position: relative;
    margin-bottom: 15px;
    z-index: 1;

}
.staff .img_m img {
    margin: 0 auto;
    width: 200px;
    padding: 5px;
    border: 10px inset white;
    border-style:inset;
    border-radius: 100px;
}
.staff .def_m{
    margin-left: 20px;
    margin-right: 20px;
    position: relative;
    margin-top: -70px;
    padding: 65px 35px 30px 35px;
    text-align: center;
    background-color: white;
    border-radius: 500px;
}

.staff .def_m h3{
    color: #645f05;
    font-weight: bold;
    margin-bottom: 0;
}

.staff .def_m h4{
    color: #000000;
}
.slick-dots li{
    color: white;
}
@media only screen and (max-width: 1100px) {
    .staff .container{
        width: 60%;
    }

}

@media only screen and (max-width: 950px) {
    .staff .img_m img {
        width: 180px;
    }
    .staff .def_m{
        border-radius: 300px;
    }
    .staff .container{
        width: 70%;
    }

}


@media only screen and (max-width: 800px) {
    .staff .img_m img {
        width: 150px;
    }
    .staff .def_m{
        border-radius: 300px;
    }
    .staff .container{
        width: 100%;
    }

}
@media only screen and (max-width: 650px){
    .staff .container{
        width: 100%;
    }
    .staff .def_m{
        margin-left: 10px;
        margin-right: 10px;
        position: relative;
        margin-top: -67px;
        padding: 55px 20px 15px 20px;
        text-align: center;
        background-color: white;
        border-radius: 500px;
    }
    .staff .def_m h3{
        font-size: 1.7em;
    }
    
    .staff .def_m h4{
        font-size: 1.5em;
    }
}

@media only screen and (max-width: 460px){
    .staff .container{
        width: 100%;
    }
    .staff .def_m{
        margin-left: 10px;
        margin-right: 10px;
        position: relative;
        margin-top: -67px;
        padding: 55px 20px 15px 20px;
        text-align: center;
        background-color: white;
        border-radius: 500px;
    }
    .staff .def_m h3{
        font-size: 1.5em;
    }
    
    .staff .def_m h4{
        font-size: 1.2em;
    }
}

@media only screen and (max-width: 400px){
    .staff .container{
        width: 100%;
    }
    .staff{
        padding: 10px;
    }
    .staff .def_m{
        margin-top: -67px;
        padding: 55px 20px 15px 20px;
        text-align: center;
        background-color: white;
        border-radius: 500px;
    }
    .staff .def_m h3{
        font-size: 1.3em;
    }
    
    .staff .def_m h4{
        font-size: 1em;
    }
    .staff .m_staff{
        margin-left: 0;
        margin-right: 0;
    }
}
.c1{
    background-image: url(../img/156588.jpg);
    background-repeat: no-repeat;
    background-size: cover;
}
/* ================================================= */
/* ----------------- Follow Style ----------------- */
/* ================================================= */

#follow {
    position: relative;
    text-align: center;
    padding: 45px 0 60px 0;
    background-image: linear-gradient( rgb(34, 59, 59),#09716f);
}

#follow .section-header h2 {
    color: #ffffff;
}

#follow .section-header::before,
#follow .section-header::after {
    background: #fff;
}

#follow p {
    color: #ffffff;
    font-size: 1.8em;
    font-weight: 300;
    line-height: 30px;
    letter-spacing: 1px;
    margin-top: -10px;
    margin-bottom: 30px;
}

#follow a {
    display: inline-block;
    background: #ffffff;
    color: #4e4e4e;
    padding: 10px;
    font-size: 28px;
    border: 2px solid white;
    font-weight: 800;
    border-radius: 50px;
    letter-spacing: 1px;
    margin: 20px;
    padding-left: 15px;
    padding-right: 20px;
    transition: all 0.5s;
}

#follow a i{
    margin-right: 10px;
}

#follow a:hover {
    color: #ffffff;
    border: 2px solid white;
}
#follow .f1:hover{
   background:linear-gradient(rgb(25, 0, 255),rgb(2, 44, 255));
}
#follow .f2:hover{

   background:linear-gradient(rgb(94, 11, 94),rgb(255, 0, 179),rgb(255, 238, 2));
}

@media screen and (max-width:500px) {
 #follow a{
        font-size: 20px;
        font-weight: 700;
        margin: 10px;
    }
    #follow p {
     
        font-size: 1.6em;
    }
}
/* ================================================= */
/* ------------------ Contact Style ---------------- */
/* ================================================= */
#contact{
    row-gap: 2rem;
}

#contact .container{
    padding: 50px;
    width: 100%;
}
.contact__subtitle{
    font-size: 1.5em;
    color:#272727;
    font-weight: bold;
}
.contact__text a{
    display: inline-block;
    color: #444444;
    margin-bottom: 0.5em;
    font-size: 1.1em;
}

.contact__text a:hover{
    color: #004c75;
}
.contact__inputs{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 1rem;
}
.contact__input{
    width: 100%;
    padding: .8rem;
    outline: none;
    border: 1.5px solid #2c2c2c ;
    font-size: var(--normal-font-size);
    margin-bottom: 1.6em;
    border-radius: .5rem;
}
.contact__button{
    display: block;
    background-color:#272727;
    border: 2px solid #272727;
    color: white;
    font-weight: bold;
    padding: .75rem 2.5rem;
    margin-left: auto;
    border-radius: .5rem;
    outline: none;
    font-size: 1.5em;
    cursor: pointer;
    transition: 0.5s ease all;
}
.contact__button:hover{
    background-color: white;
    color:#272727
}
.bd-grid{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    justify-items: center;
}
@media screen and (max-width:800px) {
    .bd-grid{
        display: block;
    }
    .contact__info{
        margin-bottom: 20px;
    }
    .contact__button{
        font-size: 1.2em;
    }
    
}

@media screen and (max-width:500px) {
    .contact__button{
        font-size: 1em;
    }
    
}


/* ================================================= */
/* ------------------ Footer Style ----------------- */
/* ================================================= */

#footer {
    position: relative;
    padding: 30px 0 25px 0;
    text-align: center;
    background-image: linear-gradient(rgb(26, 26, 26),#000000,#000000);
}

#footer .social {
    position: relative;
    margin-bottom: 20px;
}

#footer .social a {
    display: inline-block;
    width: 40px;
    height: 40px;
    padding: 4px 4px;
    background: #f5f504;
    border-radius: 20px;
    color: #000000;
    font-size: 20px;
}

#footer .social a:hover {
    background: #ffffff;
    color: #000000;
}

#footer p {
    margin: 0;
    font-size: 18px;
}

#footer .footer-link{
    color: #f5f504;
    transition: ease 0.5s;
}
#footer .footer-link:hover{
    color: white;
}

@media screen and (max-width:900px) {
    #footer p {
        font-size: 16px;
    }
}

@media screen and (max-width:650px) {
    #footer p {
        font-size: 14px;
    }
}
@media screen and (max-width:400px) {
    #footer p {
        font-size: 14px;
    }
}
.c0{
    background-image: url(../img/workshops/webdev.jpg);
    background-size: cover;
}
.c1{
    background-image: url(../img/workshops/python.jpg);
    background-size: cover;
}
.c2{
    background-image: url(../img/workshops/java.jpg);
    background-size: cover;
}
.c3{
    background-image: url(../img/workshops/ardiono.jpg);
    background-size: cover;
}
.c4{
    background-image: url(../img/workshops/solidworks.jpg);
    background-size: cover;
}
.c5{
    background-image: url(../img/workshops/github.jpg);
    background-size: cover;
}
.c6{
    background-image: url(../img/workshops/trivez.jpg);
    background-size: cover;
}
.c7{
    background-image: url(../img/workshops/wc.jpg);
    background-size: cover;
}
.c8{
    background-image: url(../img/workshops/flutter.jpg);
    background-size: cover;
}
.c9{
    background-image: url(../img/workshops/web.jpg);
    background-size: cover;
}

.c10{
    background-image: url(../img/workshops/trivez2.jpg);
    background-size: cover;
}


.c0 .info h3{
    background: #d840047d;
}
.c1 .info h3{
    background: #75d8047d;
}
.c2 .info h3{
    background: #0447d87d;
}
.c3 .info h3{
    background: #bf04d87d;
}
.c4 .info h3{
    background: #eef6027d;
}
.c5 .info h3{
    background: #d804807d;
}
.c6 .info h3{
    background: #5858587d;
}
.c7 .info h3{
    background: #05b6757d;
}
.c8 .info h3{
    background: #04c6d87d;
}
.c9 .info h3{
    background: #d804047d;
}

.c10 .info h3{
    background: #24d80488;
}