/* Reset style*/
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}
:root {
  --main_color: #7c20ac;
  --secondary_color: #27306b;
}
/* Fonts */
@font-face {
  font-family: AdelleSansARA-Thin;
  src: url("../webfonts/AdelleSansARA-Thin.otf");
}
@font-face {
  font-family: AdelleSansARA-Light;
  src: url("../webfonts/AdelleSansARA-Light.otf");
}
@font-face {
  font-family: AdelleSansARA-Regular;
  src: url("../webfonts/AdelleSansARA-Regular.otf");
}
@font-face {
  font-family: AdelleSansARA-Bold;
  src: url("../webfonts/AdelleSansARA-Bold.otf");
}
@font-face {
  font-family: AdelleSansARA-Extrabold;
  src: url("../webfonts/AdelleSansARA-Extrabold.otf");
}
body {
  font-family: AdelleSansARA-Regular;
  font-weight: 400;
  background-color: #f9faff;
}
ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
a {
  display: block;
  text-decoration: none;
}
img {
  max-width: 100%;
  height: auto;
}
::-webkit-scrollbar {
  width: 10px;
  height: 5px;
}
::-webkit-scrollbar-track {
  background-color: transparent;
}
::-webkit-scrollbar-thumb {
  background: var(--main_color);
  border-radius: 10px;
}
header {
  background-image: url("../images/pngwing.com.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: left top;
  min-height: 100vh;
}
header .header_wrapper {
  width: 50%;
  margin-left: auto;
}
header .logo img {
  max-width: 150px;
}

header .content .title {
  color: var(--main_color);
}
header ul li {
  margin-bottom: 10px;
  text-align: center;
  transition: all 0.3s linear;
}
header ul li:nth-child(1) {
  background-color: var(--main_color);
}
header ul li:nth-child(1):hover {
  background-color: #7c20ac80;
}
header ul li:nth-child(2) {
  background-color: rgb(7, 120, 189);
}
header ul li:nth-child(2):hover {
  background-color: rgba(7, 119, 189, 0.5);
}
header ul li:nth-child(3) {
  background-color: rgb(33, 211, 102);
}
header ul li:nth-child(3):hover {
  background-color: rgba(33, 211, 101, 0.5);
}
header ul li:nth-child(4) {
  background-color: #000;
  box-shadow: rgba(40, 40, 40, 0.1) 0px 2px 4px;
}
header ul li:nth-child(4):hover {
  background-color: #00000052;
  box-shadow: rgba(40, 40, 40, 0.1) 0px 2px 4px;
}
header ul li .icon {
  left: 20px;
  top: 5px;
  background-color: #fff;
  border-radius: 50%;
  font-size: 20px;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 767px) {
  header {
    background-position: left bottom;
  }
  header .header_wrapper {
    width: 100%;
  }
}

@media (min-width: 576px) and (max-width: 767px) {
  header {
    background-size: 70%;
  }
  header .header_wrapper {
    width: 100%;
    margin-left: auto;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  header {
    background-size: 60%;
    background-position: left bottom;
  }
}
