/* Colors */
/* Rainy theme 5 -Green Digitalization Course and Students Apps-:
Navbar (background): #8bbbd9
Navbar (a hover): #466fa6
Navbar (logo): #568c63
Navbar (a menu): #2a4359
*/

/* Google fonts Roboto  */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;400&display=swap');



body {
  font-family: 'Roboto', sans-serif;
  line-height: 1.6;
  background-color: #000000d3;
}

.container {
  margin: auto;
}

ul { 
  list-style: none;
  font-size: 400;
}
a {
  color: #333;
  text-decoration: none;
}
h1, h2 {
  font-weight: 400;
  line-height: 1.2;
}
p {
  margin: 10px 0;
  font-size: 14px;
}
img {
  width: 100%;
}

/* Navbar  */
.section_carbon_app_navbar {
  background-color: #000000b2;
}

.carbon_app_navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
  padding: px;
}

.carbon_app_navbar_left {
  display: flex;
  align-items: center;
  margin-right: auto; 
}

.carbon_app_navbar_right {
  display: flex;
  align-items: center;
}

.carbon_app_navbar a {
  color: #ffffff99;
  font-size: 30px;
  padding: 10px;
  text-decoration: none;
}

.carbon_app_navbar ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
}

.carbon_app_navbar ul li {
  padding-right: 20px;
}

.carbon_app_navbar ul li a {
  color: #568c63;
  font-size: 20px;
  text-decoration: none;
  position: relative;
}

.carbon_app_navbar ul li:hover a::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #568c63;
  transition: transform 0.5s ease;
  transform-origin: bottom right;
  transform: scaleX(0);
}

.carbon_app_navbar ul li:hover a:hover::before {
  transform-origin: bottom left;
  transform: scaleX(1);
}

.text-logo {
  color: #568c63;
  font-size: 40px;
}

.carbon_app_navbar .login {
  margin-left: auto;
  color: #568c63;
  font-size: 20px;
}

/* her */
.section_carbon_app_navbar {
  background-color:#000000b2;
  z-index: 10;
}
.carbon_app_navbar {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  height: 70px;
  align-items: center;
  padding: 0 0px;
}
.carbon_app_navbar a{
  color: #ffffff99;
  font-size: 30px;
  padding: 10px 20px;
}

.carbon_app_navbar ul li {
  position: relative;
  list-style: none;
  display: inline-block;
  padding: 10px;
}

.carbon_app_navbar ul li a {
  text-decoration: none;
  color: #568c63; 
  position: relative;
  font-size: 20px;
}

.carbon_app_navbar ul li:hover a::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #568c63;
  transition: transform 0.5s ease;
  transform-origin: bottom right;
  transform: scaleX(0);
}

.carbon_app_navbar ul li:hover a:hover::before {
  transform-origin: bottom left;
  transform: scaleX(1);
}

.text-logo {
  color: #568c63;
  font-size: 40px;
}
/* Footer  */
.section_footer{
  background-color:#000000b2;
  color: #568c63;
  flex: 1;
}
.footer {
  display: flex;
  flex-direction: row;
  justify-content: center;
  height: 70px;
  align-items: center;
  padding: 0 0px;
}


/* Media query */
@media(max-width:768px){
  .carbon_app_navbar {
    height: 180px;
    flex-direction: column;
  }
  .carbon_app_navbar a {
    font-size: 15px;
    padding: 5px 20px;
  }
  .carbon_app_navbar ul {
    display: flex;
    flex-direction: column;
  }
  .carbon_app_navbar a:hover{
    color: #568c63;
    border-bottom: #2a4359 2px solid;
  }
}
