* {
    box-sizing: border-box;
}

/*Global*/

ul {
    list-style-type: none;
    margin: 0px;
    padding: 0px;
    
}

a {
    text-decoration: none;
    color: black;
    cursor: pointer;
}

body {
    font-family: 'Raleway', sans-serif;
    font-size: 14px;
    line-height: 1.42857143;
    color: black;
}

.container {
    max-width: 1340px;
    margin: 0 auto;
}

img {
    width: 100%;
}


/*Header*/

.containerheader {
    position: fixed;
    z-index: 1000;
    background-color: blanchedalmond;
    width: 100%;
    max-width: 1340px;
    top: 0px;
    padding: 20px;
}

.headercontend {
    display: flex;
    align-items: center;
}

.logo {
    display: flex;
    width: 150px;
    height: 50px;
    align-items: center;
    justify-content: center;
}

header nav {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    margin-right: 50px;
}

header nav ul {
    display: flex;
}

header nav ul li {
    padding: 10px;  
}

header nav ul li a {
      color: rgb(65, 5, 121);
    font-size: 18px;
    font-weight: bold;
}

header nav ul li a:hover {
    text-shadow: rgb(199, 48, 151) 2px 2px 3px ;
    cursor: pointer;
    zoom: 103%;
}

/*Main*/

.maincontend {
    padding-top: 100px;
}



.titlepres {
    font-size: 30px;
    text-align: center;
} 
.accordion-element {
    border:1px solid grey; 
    width: 80%;
    margin: auto;
    margin-bottom: 15px;
}

.accordion-element h2 {
    color: purple;
    padding: 10px;
    margin: 0;
    border:1px solid grey;
    cursor: pointer;
    background-color: #C8E0F4;
}

.accordion-content {
    height:0;
    overflow: hidden;
    margin: 0;
    transition:2s height;
    font-size: 15px;
    
}

.accordion-content div{
    padding: 10px;
}

.ul {
 padding-left: 15px;
}

.button {
    display: flex;
    justify-content: space-between;
    margin: 25px; 
}

.button a{
    background-color: rgb(164, 66, 141);
    font-weight: bolder;
    font-size: 17px;
    cursor:pointer;
    border-style:solid;
    border-width: thin;
    padding: 10px;
}

.button :hover {
    transform: scale(1.02);
}  
/*Footer*/

.footercontend {
   display: flex;
   justify-content: space-between;
   align-items: center;
   background-color: blanchedalmond;
   text-align: center;
   padding-top: 25px;
   padding-bottom: 25px;
   font-weight: bolder;
   justify-content: space-around;
}


#icons {
    cursor: pointer;
    display: none;
}

@media screen and (max-width: 1335px) {
    header nav ul li a {
        font-size: 14px;
    }

    .logo {
        width: 75px;
        height: 25px;
    }
    
}

@media screen and (max-width:1008px) {

    #icons {
        display: block;
      
    }

    #icons:before {
        content: "\2630";
        font-size: 25px;
    }

    .logo {
        width: 150px;
    height: 50px;
    }

    nav ul {
        position: fixed;
        right: -100%;
        top:10%;
        flex-direction: column;
        background-color: rgba(255, 235, 205, 0.622);
        width: 50%;
        text-align: center;
        transition: 0.25s;
    }

    nav li {
        padding: 3px 0;
    }

    nav.active ul {
        left:50%;

    }
}

@media screen and (max-width:768px) {
    .footercontend {
    font-size: 10px;
 }

 h1 {
    font-size: 38px;
 }

  nav ul {
    top: 13%;
 }

 .button a {
    font-size: 14px;
    text-align: center;
    margin: 5px;
 }



 }
 





   