@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
    font-family: "Oswald", sans-serif;
}
html {
    scroll-behavior: smooth;
  }
body{
    /* background-color: #F1EBE8; */
    background: linear-gradient(#0199AF, #72D360);
}
.container{
    width: 100%;
    min-height: 100vh;
    height: auto;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    align-items: center;
}
/* HEAD */
header{
    height: 10vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1000;
    position: sticky;
    top: 0;
    background-color: #009BAD;
}
img.logo{
    margin-right: 50px;
    height: 10vh;
}
ul.navbar{
    display: flex;
    padding: 0 80px;
}
ul.navbar li{
    margin-left: 80px;
}
ul.navbar li a:hover{
    color: white;
}
.menu-btn{
    display: none;
    transition: 200ms;
}
/* HEAD */

/* MAIN */
main{
    min-height: 60vh;
    margin-top: 50px;
    display: flex;
    justify-content: space-between;
}
img.main{
    height: 60vh;
}
.main-info{
    width: 35%;
    padding: 20px;
    background-color: white;
    border-radius: 10px;
}
p.main-tag{
    display: flex;
    width: 100%;
    align-items: center;
    height: 15vh;
    justify-content: center;
    /* background-color: #C9CCD8; */
    background-color: white;
    text-align: center;
    margin: 30px 0;
}
/* MAIN */
footer{
    width: 100%;
    height: 15vh;
    /* background-color: #C9CCD8; */
    background-color: #009BAD;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
}








ul.edu{
    min-height: 100vh;
    height: auto;
    width: 100%;
   display: flex;
   align-items: center;
   flex-direction: column;
}
ul.edu li{
    width: 80%;
    height: 60h;
     display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 50px;
}
img.content-img{
    height: 50vh;
}
.content-text{
    background-color: white;
    padding: 20px;
    border-radius: 10px;
}






























@media (min-width:1025px) and (max-width:1700px){
    header{
        width: 100%;
    }
    ul.edu li{
        width: 100%;
    }
}
/* Laptop and Others */
@media (min-width:1025px) {
    header{
        width: 100%;
        padding: 0 20px;
    }
    main{
        width: 100%;
        max-width: 1350px;
    }
    ul.edu{
        width: 100%;
        max-width: 1550px;
    }
    ul.edu li:nth-child(2){
    flex-direction: row-reverse;
}
}
/* Phone version */
@media(max-width:599px){
    header{
        width: 100%;
        display: flex;
        align-items: center;
        height: 10vh;
        padding: 0 20px;
        justify-content: space-between;
        position: sticky;
        top: 0;
        z-index: 1000;
    }
    img.logo{
        height: 7vh;
    }
    ul.navbar{
        width: 100%;
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        line-height: 60px;
        margin: 0;
        background-color: #009BAD;
    }
    ul.navbar li{
        margin: 0;
        text-align: center;
    }
    ul.navbar.active {
        display: block;
      }
    .menu-btn{
        display: block;
        font-size: 1.5rem;
        color: white;
    }
    main{
        width: 100%;
        margin: 0;
        flex-direction: column;
    }
    img.main{
        width: 100%;
        height: auto;
    }
    .main-info{
        width: 95%;
        height: auto;
        text-align: center;
        margin: 50px auto;
    }
    ul.edu{
        flex-direction: column;
    }
    ul.edu li{
        flex-direction: column;
        width: 100%;
        text-align: center;
    }
    img.content-img{
        width: 100%;
        height: auto;
    }
    .content-text{
        width: 95%;
    }
    footer{
        flex-direction: column;
        padding: 20px 0;
    }
}
/* Tablet version */
@media (max-width:1024px) and (min-width: 600px) {
    header{
        width: 100%;
        display: flex;
        align-items: center;
        height: 15vh;
        padding: 0 20px;
        justify-content: space-between;
        position: relative;
    }
    ul.navbar{
        width: 100%;
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        line-height: 60px;
        background-color: #009BAD;
        margin: 0;
    }
    ul.navbar li{
        margin: 0;
        text-align: center;
    }
    ul.navbar.active {
        display: block;
      }
    .menu-btn{
        display: block;
        font-size: 1.5rem;
        color: white;
    }
    main{
        width: 100%;
        margin-top: 50px;
        flex-direction: column;
    }
    img.main{
        width: 100%;
        height: auto;
    }
    .main-info{
        width: 95%;
        height: auto;
        margin: 20px auto;
        text-align: center;
    }
    ul.edu li{
        flex-direction: column;
        width: 100%;
        text-align: center;
    }
    img.content-img{
        width: 100%;
        height: auto;
    }
    .content-text{
        width: 95%;
    }
}




































.title{
    font-size:  clamp(2.8rem, 3.5vw, 4rem);
    font-weight: normal;
}
.title-sm {
    font-size: clamp(1.5rem, 2.8vw, 3.2rem);
    font-weight: 300;
}

.link{
    font-size: clamp(1.4rem, 2.5vw, 2.1rem);
    font-weight: 100;
    color: white;
    transition: 200ms;
    text-align: none;
}
.icon{
    font-size: clamp(1.4rem, 2.0vw, 1.8rem);
    color: white;
}
.text{
    font-size: clamp(1.12rem, 2vw, 1.6rem);
    font-weight: 300;
}
.terms{
    color: white;
    font-size: clamp(1.12rem, 2vw, 1.2rem);
}