/* RESET///////////////////////// */
* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    font-family: sans-serif;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
       color: white;
}

/* CONTAINER */

.container {
    width: 70%;
    max-width: 1000px;
    margin: 0 auto;
      }

/* Header////////////// */
header {
    display: flex;
    height: 80px;
    background-image:url(../img/jumbo.png);

}


.link-black {
    color:black;
}

.list {
     display: flex;
    width: 40%;
    gap: 20px;
    text-align: center;
    gap: 20px;
}

.logo {
    width: 15%;
}

.login {

    width: 15%;
    text-align: right;
    padding-left: 10px;
}

.button-white-h{
    display: inline-block;
    background-color: white;
    padding: 5px 10px;
    border-radius: 30%

}

/* ////FLEX/////////////////// */
.flex {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.flex-column{
    display: flex;
    flex-direction: column;
   justify-content: center;
    align-items: center;
    width: 100%;
}

/* HERO SECTION/////////////// */
.hero{
    display: flex;
    background-image:url(../img/jumbo.png);
    background-size: 100%;
    height: 450px;
    justify-content: center;
    align-items: center;
    text-align: center;

}
.hero-text{
    width: 50%;
}

/* ACTIVITIES SECTION//////////////// */
.activities{
    height: 450px;
    
}


/* uTILITIES */
.py-20 {
    padding-bottom: 20px;
    padding-top: 20px;
}

.text-white {
    color: white;
    font-weight: 800%;
}

.text-black{
    color: black;
      font-weight: 800%;
}

.text-title{
    font-size: 40px;
}
.text-par{
    display: inline-block;
    font-size: 20px;
    padding-top: 5%;
    padding-bottom:2%;
}

.button-black{
      display: inline-block;
    background-color: black;
    padding: 5px 10px;
    border-radius: 30%;
      font-size: 20px;
}
    
   
.button-white{
    display: inline-block;
    background-color: white;
    padding: 5px 10px;
    border-radius: 30%;
    font-size: 20px;

} 

.cont-main-1 {
    height: 600px;
 
    background-color: rgb(10, 10, 126);
    border-bottom: 1px solid rgb(93, 160, 227);

}

.cont-main-2 {
    height: 700px;
    width: 100%;
}

.cont-main-3 {
    height: 1000px;
    width: 100%;
}



.square-img1 {
    height: 80%;
    background-image: url(../img/item1.svg);
    background-position: center;
    background-position: right;
    background-size:cover;
    border: 1px dashed black; 
}

.square-img2 {
    height: 80%;
    background-image: url(../img/item2.svg);
    background-position: center;
    background-position: right;
    background-size: cover;
    border: 1px dashed black; 
}
.square-img3 {
    height: 80%;
    background-image: url(../img/item3.svg);
    background-position: center;
    background-position: right;
    background-size:cover;
    border: 1px dashed black; 
}
.square-green {
    width: 70%;
    height: 90%;
    background-color: green;
    border: 1px dashed black;
}

.square-big {
    height: 90%;
    width: 45%;
}

.square-small {
    height: 80%;
    width: 25%;
    border: 1px dashed black;
}

.bg-white {
    background-color: white;
}

.bg-gray {
    background-color: lightgray;
}







/* FOOTER////////////////// */
footer {
    height: 900px;
    width: 100%;
    background-color: black;
}

.footer-start {
    height: 90%;
    width: 100%;
    border-bottom: 1px solid gray;
}

.square-coral {
    background-color: lightcoral;
    height: 90%;
    width: calc(70%/3);
}

.square-light-green {
    background-color: lightgreen;
    height: 90%;
    width: calc(70%/6);
    border: 1px dashed white;
}

.footer-end {
    width: 100%;
    height: 10%;
    border-bottom: 1px solid gray;
}

.end-square {
    display: flex;
    justify-content: space-between;
    height: 80%;
    width: 70%;
    background-color: lightgreen;

}

.sub-end-square {
    height: calc(100%/3);
    width: 100px;
    background-color: coral;
    border: 1px dashed black;
}