@import url("https://fonts.googleapis.com/css?family=Open+Sans:600&display=swap");
@import url("https://fonts.googleapis.com/css?family=Montserrat:600&display=swap");
* {
    box-sizing: border-box;
    font-family: "Open Sans", sans-serif;
    margin: 0;
    padding: 0;
}

.header{
    height: 80px;
    background-color: rgb(167, 180, 224);
}
.title{
    align-items: center;
    color: black;
    cursor: pointer;
    display: flex;
    justify-content: space-evenly;
    padding: 20px 0px;
}
.mini-image {
    width: 50px;
    height: 50px;
}
.menu{
    cursor: pointer;
    
}
@media(min-width: 900px){
    .menu{
        display: none;
    }
    .title{
        display: none;
    }
}
main{
    align-items: center;
    display: flex;
    justify-content: center;
}
.container {
    background: linear-gradient(to bottom, rgb(167, 180, 224), #fff);
    width: 100%;
    display: block;
}
.nav-bar{
    align-items: center;
    background: linear-gradient(to bottom, rgb(167, 180, 224), #fff);
    display: flex;
    flex-direction: column;
    height: calc(100vh - 80px);
    justify-content: stretch;
    left: 0;
    position: absolute;
    transform: translateX(-100%);
    transition: all 0.5s ease-out;
    width: 100%;
    position: relative;
    display: inline-block;
}
.dropbtn {
    border: none;
    cursor: pointer;
}
.dropdown-content {
    display: none;
    position: absolute;
    border: transparent;
    border-radius: 5px;
    font-size: 26px;
    height: 70px;
    margin: 10px 0px;
    width: 100%;
    z-index: 1;
  }
  
.dropdown-content a {
    background-color: rgb(60, 80, 140);
    color: #fff;
    padding: 12px;
    text-decoration: none;
    display: block;
}
.show {
    display: block;
}
.iframe {
    background: linear-gradient(to bottom, rgb(167, 180, 224), #fff);
    height: calc(100vh - 80px);
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    display: none;
}

.video{
    margin-top: 50%;
    width: 100%;
    height: 40%;
}
.text {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;  
    height: 100%;
}

.list{
    list-style-type: decimal; 
    width: 80%;   
}

.list li {
    margin: 5px 0px;
    font-size: 18px;
}
.title-container {
    display: none;
}
.image {
    display: none;
}
  
@media(min-width: 900px){
    .nav-bar{
        background: rgb(167, 180, 224);
        display: flex;
        flex-direction: row;
        height: 80px;
        transform: translateX(0);
    }
    .dropdown-content{
        width: 20%;
    }
    .dropdown-content a:hover{
        background-color: rgb(29, 39, 95);
    }
    .iframe {
        background: linear-gradient(to bottom, rgb(167, 180, 224), #fff);
        height: calc(100vh - 80px);
        width: 100%;
        display: none;
    }
    .video{
        margin: 0px 20%;
        width: 60%;
        height: 80%;
    }
    .text {
        display: none;
    }
    .title-container {
        font-family: "Montserrat", sans-serif;
        font-size: 32px;
        margin: 10px;
        display: block;
        text-align: center;
    }
    .image{
        display: block;
        margin: 20px 15%;
    }
}
.nav-btn{
    background-color: transparent;
    border: transparent;
    border-radius: 5px;
    color: #333;
    font-size: 26px;
    height: 70px;
    margin: 5px 0px;
    width: 100%;
}
.nav-btn:active,
.nav-btn:hover {
    border: rgb(29, 39, 95);
    background-color: rgb(29, 39, 95);
    color: #fff;
}
.menu-open{
    transform: translateX(0);
}
.hamburguer{
    height: 3px;
    margin-left: 30px;
    position: relative;
    width: 28px;
}
.hamburguer::before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: -8px;
    left: 0;
}
.hamburguer::after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 8px;
    left: 0;
    transition: all 0.4s ease-out;
}
.max-hamburguer,
.max-hamburguer::before,
.max-hamburguer::after {
    background-color: rgb(29, 39, 95);
    transition: all 0.4s ease-out;
}
.hamburguer-x {
    width: 32px;
    transform: rotateZ(45deg);
}
.hamburguer-x::before,
.hamburguer-x::after {
    top: 0;
    transform: rotateZ(90deg);
}
