/* Global CSS file */
* {
  font-family: var(--font);
}

*::-moz-selection {
  background-color: var(--main-color);
}

*::selection {
  background-color: var(--main-color);
}

html,
body {
  font-family: var(--font);
  background-color: #fff;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  overflow-x: hidden;
}

#navbar {
  border-bottom: 1px solid #f1f1f1;
}

nav {
  background-color: transparent;
  border: none;
}
nav #menu {
  outline: none;
}
nav ul li a:hover {
  color: var(--main-color);
}

#banner {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.553), rgba(0, 0, 0, 0.935) 55%), url("../img/img (3).jpg");
  background-size: cover;
  background-attachment: fixed;
  height: 850px;
}
#section1{
  margin-left: 40%;
}

#news-courses {
  background-image: linear-gradient(to top, rgb(255, 255, 255), rgb(250, 225, 210));
}

#video img {
  transition: var(--t);
}
#video img:hover {
  transform: scale(1.1);
}

.choice #cardChoice {
  border: 2px solid #ddd;
  border-style: dashed;
  border-radius: 15px;
  cursor: pointer;
  padding-bottom: 50px;
  transition: all 0.2s ease-in 0s;
  width: 300px;
}
.choice #cardChoice:hover {
  border: 2px solid var(--main-color);
}

.form #cover {
  background-image: linear-gradient(to bottom, rgba(4, 2, 1, 0.914), rgba(133, 53, 6, 0.919)), url("../img/img (1).jpg");
  background-size: cover;
}

footer ul li a {
  text-decoration: none;
  transition: var(--t);
}
footer ul li a:hover {
  color: var(--main-color);
  text-decoration-line: none;
  transition: var(--t);
}/*# sourceMappingURL=main.css.map */