@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800;900&display=swap");
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.container {
  width: 80%;
  margin: 0 auto;
}

body {
  font-family: "Montserrat", sans-serif;
}
body header {
  width: 100%;
  height: 15vh;
  background-color: #2C2C2C;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
body header .header__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
body header .header__content .header__logo img {
  width: 78px;
  height: 65px;
  margin-left: 150px;
}
body header .header__content nav {
  margin-right: 50px;
}
body header .header__content nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  display: flex;
  list-style: none;
}
body header .header__content nav ul a {
  text-decoration: none;
}
body header .header__content nav ul a button {
  padding: 10px 15px;
  border: 0px;
  background-color: #2C2C2C;
  border: 1.5px solid #fff;
  border-radius: 12px;
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  color: #fff;
}
body header .header__content nav ul a button:hover {
  background-color: #fff;
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  color: #248277;
  cursor: pointer;
}
body header .header__content nav ul a .flag {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  padding: 10px;
}
body header .header__content nav ul a .flag:hover {
  color: #fff;
  background-color: #2C2C2C;
}
body header .header__content .burger {
  display: none;
}
body header .header__content .burger div {
  width: 40px;
  height: 4px;
  background-color: #fff;
  margin: 10px;
}
body main .main__content {
  background-color: #F1F3F4;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
body main .main__content .active {
  display: none;
}
body main .main__content .left__side {
  -webkit-transition: 0.5s ease-in;
  transition: 0.5s ease-in;
  width: 250px;
  background-color: #2c2c2c;
  padding: 40px 20px;
}
body main .main__content .left__side a {
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 15px;
     -moz-column-gap: 15px;
          column-gap: 15px;
  padding-left: 15px;
}
body main .main__content .left__side a i {
  color: rgb(255, 255, 255);
}
body main .main__content .left__side a p {
  font-weight: 600;
  font-size: 16px;
  line-height: 120%;
  color: #9E9E9E;
}
body main .main__content .left__side .side__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
body main .main__content .left__side .side__logo span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
}
body main .main__content .left__side .side__logo span h3 {
  font-weight: 600;
  font-size: 22px;
  line-height: 120%;
  color: #FFFFFF;
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  -ms-flex-positive: 0;
      flex-grow: 0;
}
body main .main__content .left__side .side__logo span img {
  width: 25px;
}
body main .main__content .left__side .search {
  width: 100%;
  height: 50px;
  background: #333333;
  border-radius: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 30px 0;
}
body main .main__content .left__side nav ul {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 30px;
}
body main .main__content .left__side nav ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
body main .main__content .left__side nav ul li .eye {
  width: 30px;
  height: 20px;
  background: #BFB2FF;
  border-radius: 4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
body main .main__content .left__side .user {
  width: 100%;
  background: #333333;
  border-radius: 8px;
  padding: 20px 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  margin-top: 50px;
}
body main .main__content .left__side .user h4 {
  font-weight: 600;
  font-size: 14px;
  line-height: 120%;
  color: #FFFFFF;
}
body main .main__content .left__side .user p {
  font-weight: 600;
  font-size: 12px;
  line-height: 120%;
  color: #808080;
}
body main .main__content .right__side {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  position: relative;
}
body main .main__content .right__side .burger1 {
  width: 60px;
  height: 40px;
  background: #1E1E1E;
  border-radius: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 35px;
  position: absolute;
  left: 0;
}
body main .main__content .right__side .burger1 div {
  width: 25px;
  height: 3px;
  margin: 1px;
  background: #9E9E9E;
  border: 1px solid #9E9E9E;
}
body main .main__content .right__side .side__content .input {
  background-color: #fff;
  border-radius: 12px;
  margin: 25px 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0px 30px;
}
body main .main__content .right__side .side__content .input a {
  text-decoration: none;
}
body main .main__content .right__side .side__content .input a h3 {
  font-weight: 600;
  font-size: 20px;
  line-height: 27px;
  color: #333333;
}
body main .main__content .right__side .side__content .full__article {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
  row-gap: 40px;
  margin-bottom: 50px;
}
body main .main__content .right__side .side__content .full__article article {
  width: 450px;
  height: 250px;
  background-color: rgb(36, 130, 119);
  border-radius: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
body main .main__content .right__side .side__content .full__article article img {
  margin-top: 30px;
}
body main .main__content .right__side .side__content .full__article article p {
  margin-top: 20px;
  margin-bottom: 40px;
  font-weight: 500;
  font-size: 18px;
  line-height: 20px;
  color: #FFFFFF;
}
body main .main__content .right__side .side__content .full__article article:hover {
  background-color: rgb(64, 65, 63);
}
body main .main__content .right__side .side__content .full__article article:hover p {
  color: #248277;
}
body footer {
  background-color: #2C2C2C;
}
body footer .user__developer {
  padding: 20px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: 100px;
}
body footer .user__developer h2 {
  font-size: 16px;
  font-weight: 500;
  color: #969696;
}/*# sourceMappingURL=Anmin.css.map */