@font-face {
  font-family: "Inerta";
  src: url(".assets/fonts/Inerta.woff2") format("woff2"), url("./assets/fonts/Inerta.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inerta-Bold";
  src: url(".assets/fonts/Inerta-Bold.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url(".assets/fonts/Inter-SemiBold.woff2") format("woff2"), url(".assets/fonts/Inter-SemiBold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

* {
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
  line-height: 120%;
}
body {
  overflow-x: hidden;
}
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video,
button {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
}

header {
  z-index: 100 !important;
}

button {
  background: none;
}

a {
  text-decoration: none;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
padding:0;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}
a:hover {
color: #000;
}
.ed-container {
  margin: 0 auto;
  max-width: 1190px;
  padding: 0 15px;
  width: 100%;
}
.ed-btn {
  display: block;
  margin: 80px auto;
  font-size: 30px;
  font-weight: bold;
  text-align: center;
  text-decoration: none; 
  border-radius: 8px;
  padding: 9px 26px;  
  color: #FFFFFF;
  width: fit-content;
}
.ed-btn:hover {
  background-color: #FFD200;
  border-color: #FFD200;
  transition: 0.5s ease;
}
.ed-flex {
  display: flex;
  align-items: center;
}
.ed-container h2 {
  font-size: 60px;
}
.section-title {
font-size: 24px;
margin-top: 30px;
}
@media (max-width: 768px) {
  .ed-container h2 {
      font-size: 46px;
  }
}
@media (max-width: 600px) {
  .ed-btn {
      font-size: 24px;
  }
  .ed-container h2 {
      font-size: 36px;
  }
}
@media (max-width: 500px) {
  .ed-container h2 {
      font-size: 30px;
  }
}
@media (max-width: 420px) {
  .ed-btn {
      font-size: 22px;
  }
}

/* #region Materials */
.materials-list {
  margin-top: 45px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.material-download {
  display: block;
  transition: all 0.3s ease;
  width:0;
  opacity:0;
}
.material-download svg{
  width:100%;
  fill: #333;
}
.material-download svg path {
  transition: all 0!important;
}
.material-download:hover svg path {
  fill: var(--ed-primary);
}
.material {
  margin: 29px 20px;
  display:flex;
  flex-direction:column;
  align-items:stretch;
  width:190px;
  transition: all 0.3s ease;
}
.material *{
  transition: all 0.3s ease;
}
.material:hover {
  margin: 1px 0;
  width: 230px;
}
.material:hover .material-download {
  width: 40px;
  opacity:1;
  display:flex;
  align-items:center;
  justify-content:center;
}
.material-details {
  display: flex;
  margin-top: 20px;
  align-items: center;
  width:190px;
  color: #000;
}
.material .poster {
  display: block;
  margin: 0 auto;
  border-radius: 15px;
  box-shadow: -1px 1px 2px 1px rgba(201, 201, 201, 0.404);
  width:100%;
}
.material:hover .material-details {
  width: 230px;
}
.material p {
  font-size: 16px;
  margin-top: 11px;
  width: 190px;
  text-align: center;
}
.hidden {
  display: none;
}

.ed-buttons {
  display: flex;
}

@media (max-width: 530px) {
  .ed-load-all-btn {
    margin-left: 0;
    margin-top: 30px;
  }
  .ed-buttons {
    display: flex;
    justify-items: center;
    align-items: center;
    flex-direction: column;
    margin: 0 auto;
  }
}

.ed-btn-container {
	position: relative;
}
.ed-yellow-btn {
    background: #FFD200;
    color: #000;
}
.ed-yellow-btn:hover {
    background: #702282;
    color: #fff;
}
.arrow-text svg {
    position: absolute;
    right: 30%;
    top: 80px;
}
.arrow-text p {
    font-size: 24px;
    width: 50%;
  margin-right: 0;
  margin-left: auto;
  margin-bottom: 100px;
}
@media (max-width: 1000px) {
    .arrow-text p {
        font-size: 18px;
    }    
}
@media (max-width: 420px) {
    .ed-yellow-btn {
        font-size: 20px;
    }
    .arrow-text p {
        font-size: 16px;
		width: 80%;
    }
}