@import url("https://fonts.googleapis.com/css2?family=Source+Sans+Pro:wght@400;700&display=swap");

/*start of hero*/

.leftRightContainer {
  padding: 2% 8%;
  padding-top: 4%;
  height: fit-content;
  display: grid;
  grid-auto-columns: minmax(auto, 1fr);
  align-items: center;
  justify-content: center;
  grid-template-areas: "col1 col2";
  background: radial-gradient(#eaa1d2, #f1b7c6);
  transition: background 0.4s ease;
  width: 100%;
}
.textColumn {
  padding: 5% 0;
  grid-area: col1;
}
.title {
  position: relative;
  color: #0a0a0a;
  font-size: 56px;
  line-height: 70px;
  font-family: "Galano Grotesque";
  font-weight: 700;
  margin-bottom: 1rem;
}
.subTitle {
  margin-bottom: 2rem;
  color: #0a0a0a;
  font-size: 20px;
  font-weight: 400;
  line-height: 27px;
  max-width: 700px;
}
.imageColumn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  grid-area: col2;
  overflow: "hidden";
}
.heroImage {
  z-index: 3;
  width: 40%;
}



/*end of hero*/

a {
  text-decoration: none;
}

img[alt] {
  text-indent: -10000px;
}

.box {
  padding: 3% 8%;
}

/*User informations*/
.userinfos-container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.title-style {
  font-size: 1.3rem;
  font-weight: 400;
}
.boldtitle-style {
  font-weight: 500;
}

/*end of user informations*/

/*Slider*/

/* Slideshow container */
.slideshow-container {
  position: relative;
  width: 100%;
}
.slide {
  height: 200px;
  width: 100%;
  border-radius: 0.5rem;
}

.slide__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 0.5rem;
}

/* Number text (1/3 etc) */
.slide__text {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* The dots/bullets/indicators */
.dot {
  height: 8px;
  width: 8px;
  margin: 0 2px;
  background-color: rgba(209, 208, 206, 1);
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active {
  background-color: rgba(82, 88, 102, 1);
}

/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {
    opacity: 0.4;
  }
  to {
    opacity: 1;
  }
}

/*cards*/

.card {
  flex: 1 0 250px;
  height: fit-content;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.card__header {
  width: 100%;
  margin-bottom: 0.2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  gap: 1rem;
}

.card__header .header__img {
  height: 3rem;
  width: 3rem;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid rgba(209, 208, 206, 1);
}

.card__header .header__title {
  font-size: 1.2rem;
  line-height: 1.375rem;
  color: #0e1217;
  font-weight: 700;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}

.card__body {
  margin: 0;
}

.card__body .body__text {
  color: #525866;
  font-size: 0.9rem;
  margin: 0.2rem 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  min-height: 2.5rem;
}

.card__body .body__img {
  height: 11rem;
  margin: 0.5rem 0;
  width: 100%;
}

.card__body .body__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  margin: auto;
  border-radius: 0.2rem;
}

.card__footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0.2rem 0 0 0;
  gap: 0.5rem;
}

.card__footer .footer__catacteristic {
  color: #525866;
  font-size: 0.8rem;
  font-weight: 500;
  border-radius: 5px;
  min-width: 30%;
  text-align: center;
}

.card:hover {
  border-color: rgba(82, 88, 102, 0.4);
  opacity: 1;
  transform: scale(1.02);
}

/*Categories*/
.category {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-pack: distribute;
  justify-content: flex-start;
  align-items: center;
  height: fit-content;
  width: fit-content;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  cursor: pointer;
}

.category .category__header {
  height: 4rem;
  width: 4rem;
  border-radius: 50%;
  /*border: 1px solid rgba(209,208,206,1);*/
  padding: 0.9rem;
}

.category__header .header__img {
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.category .category__text {
  color: #0a0a0a;
  font-size: 0.9rem;
  margin: 0.2rem 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-align: center;
  min-width: 3rem;
}

/*Selection filters*/
.inlinefilters {
  padding: 1rem 0;
  border-radius: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  width: 100%;
  margin: 2rem 0 0.5rem 0;
}
.filterwrapper {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}

.filterwrapper:nth-child(1) {
  flex-basis: 60%; /*  make first take full width  */
}
.filterlabel {
  margin-bottom: 0.5rem;
  margin-left: 0.8rem;
  margin-right: 0.8rem;
  font-size: 1rem;
  color: #525866;
  display: none;
}
input {
  border-radius: 4px;
  width: 100%;
  color: #0a0a0a;
  background-color: #fff;
  border: thin solid rgba(209, 208, 206, 1);
  display: inline-block;
  line-height: 1.5em;
  padding: 0.8em 3.5em 0.8em 1em;
}
input:focus {
  outline: none !important;
  border: thin solid rgb(96, 190, 180);
}

select.filterselect {
  width: 100%;
  padding: 0.8em 3.5em 0.8em 1em;
  border-radius: 4px;
  background-image: linear-gradient(45deg, transparent 50%, gray 50%),
    linear-gradient(135deg, gray 50%, transparent 50%),
    linear-gradient(to right, #ccc, #ccc);
  background-position: calc(100% - 20px) calc(1em + 6px),
    calc(100% - 15px) calc(1em + 6px), calc(100% - 2.5em) 0.8em;
  background-size: 5px 5px, 5px 5px, 1px 1.5em;
  background-repeat: no-repeat;
}

select.filterselect:focus {
  background-image: linear-gradient(
      45deg,
      rgb(96, 190, 180) 50%,
      transparent 50%
    ),
    linear-gradient(135deg, transparent 50%, rgb(70, 190, 176) 50%),
    linear-gradient(to right, #ccc, #ccc);
  background-position: calc(100% - 15px) 1.3em, calc(100% - 20px) 1.3em,
    calc(100% - 2.5em) 0.8em;
  background-size: 5px 5px, 5px 5px, 1px 1.5em;
  background-repeat: no-repeat;
  border-color: rgb(70, 190, 176);
  outline: 0;
}
.filteroption {
  padding: 1rem;
}

@media screen and (max-width: 960px) {
  .leftRightContainer {
    grid-template-areas: "col1 col1" "col2 col2";
    padding: 10% 8%;
  }
  .inlinefilters {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 1rem;
    border: 1px solid rgba(209, 208, 206, 1);
  }
  .filterlabel {
    display: block;
  }
}

@media screen and (max-width: 480px) {
  .title {
    font-size: 2rem;
    line-height: 1.5;
    margin-bottom: 0.5rem;
  }
  .subTitle {
    font-size: 1rem;
    margin-bottom: 1rem;
    line-height: 1.5;
  }
  .card {
    flex: 1 0 100%;
  }
  .title-style {
    font-size: 1rem;
  }
  .inlinefilters {
    grid-template-columns: 1fr;
  }

  .categories-container {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    overflow-y: hidden;
    overflow-x: scroll;
  }
  .category .category__text {
    font-size: 0.8rem;
  }
}








@font-face {
  font-family: "Kurye";
  font-weight: 100;
  src: url("./fonts/Kurye-Thin.otf") format("truetype");
}
@font-face {
  font-family: "Kurye";
  font-weight: 300;
  src: url("./fonts/Kurye-Light.otf") format("truetype");
}

@font-face {
  font-family: "Kurye";
  font-weight: 400;
  src: url("./fonts/Kurye-Regular.otf") format("truetype");
}

@font-face {
  font-family: "Kurye";
  font-weight: 500;
  src: url("./fonts/Kurye-Medium.otf") format("truetype");
}

@font-face {
  font-family: "Kurye";
  font-weight: 600;
  src: url("./fonts/Kurye-SemiBold.otf") format("truetype");
}

@font-face {
  font-family: "Kurye";
  font-weight: 700;
  src: url("./fonts/Kurye-Bold.otf") format("truetype");
}

@font-face {
  font-family: "Kurye";
  font-weight: 900;
  src: url("./fonts/Kurye-Black.otf") format("truetype");
}

@font-face {
  font-family: "Galano Grotesque";
  font-weight: 100;
  src: url("./fonts/GalanoGrotesqueThin.otf") format("truetype");
}

@font-face {
  font-family: "Galano Grotesque";
  font-weight: 400;
  src: url("./fonts/GalanoGrotesqueRegular.otf") format("truetype");
}

@font-face {
  font-family: "Galano Grotesque";
  font-weight: 500;
  src: url("./fonts/GalanoGrotesqueMedium.otf") format("truetype");
}

@font-face {
  font-family: "Galano Grotesque";
  font-weight: 700;
  src: url("./fonts/GalanoGrotesqueBold.otf") format("truetype");
}

@font-face {
  font-family: "Galano Grotesque";
  font-weight: 900;
  src: url("./fonts/GalanoGrotesqueBlack.otf") format("truetype");
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-size: 15px;
  font-family: "Galano Grotesque", sans-serif;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  min-height: 100vh;
}

select {
  /* styling */
  padding: 0.5em 3.5em 0.5em 1em;
  background-color: white;
  border: thin solid rgba(209,208,206,1);
  border-radius: 4px;
  display: inline-block;
  font: inherit;
  line-height: 1.5em;
  /* reset */
  margin: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-appearance: none;
  -moz-appearance: none;
}

select:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #000;
}

/* width */
::-webkit-scrollbar {
  width: 8px;
  height: 3px;
}

/* Track */
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 10px #f9f9f9;
  border-radius: 50px;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #eab4cf;
  border-radius: 50px;
}

::placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #0a0a0a;
  opacity: 1; /* Firefox */
}

:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #0a0a0a;
}

::-ms-input-placeholder {
  /* Microsoft Edge */
  color: #0a0a0a;
}



.boxcontainer{
  background-color: #fff;
  -webkit-box-shadow: 0 0 transparent, 0 0 transparent,
    0 0.375rem 0.375rem -0.125rem rgba(193, 201, 221, 0.2);
  box-shadow: 0 0 transparent, 0 0 transparent,
    0 0.375rem 0.375rem -0.125rem rgba(193, 201, 221, 0.2);
  padding: 1rem;
  border-radius: 0.5rem;
  border: 1px solid rgba(209,208,206,1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-pack: distribute;
  justify-content: space-between;
}

.cardcontainer{
  background-color: #fff;
  /*-webkit-box-shadow: 0 0 transparent, 0 0 transparent,
    0 0.375rem 0.375rem -0.125rem rgba(193, 201, 221, 0.2);
  box-shadow: 0 0 transparent, 0 0 transparent,
    0 0.375rem 0.375rem -0.125rem rgba(193, 201, 221, 0.2);*/
  /*padding: 1rem;*/
  border-radius: 0.5rem;
  /*border: 1px solid rgba(209,208,206,1);*/
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-pack: distribute;
  justify-content: space-between;
}

.container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: flex-start;
  -ms-flex-pack: flex-start;
  justify-content: flex-start;
  -webkit-box-align: flex-start;
  -ms-flex-align: flex-start;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 2rem;
  margin-top: 1rem;
}


.hSlidercontainer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow-x: scroll;
  overflow-y:hidden;
  -webkit-box-pack: flex-start;
  -ms-flex-pack: flex-start;
  justify-content: flex-start;
  -webkit-box-align: flex-start;
  -ms-flex-align: flex-start;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 2rem;
  margin-top: 1rem;
}

/* Skeleton Animation*/
.skeleton {
  -webkit-animation: skeleton-loading 1s linear infinite alternate;
  animation: skeleton-loading 1s linear infinite alternate;
}

@-webkit-keyframes skeleton-loading {
  0% {
    background-color: #c2cfd6;
  }
  100% {
    background-color: #f0f3f5;
  }
}

@keyframes skeleton-loading {
  0% {
    background-color: #c2cfd6;
  }
  100% {
    background-color: #f0f3f5;
  }
}

.skeleton-text {
  width: 100%;
  height: 0.7rem;
  margin-bottom: 0.5rem;
  border-radius: 0.25rem;
}

.skeleton-text__body {
  width: 75%;
}

.skeleton-footer {
  width: 30%;
}



/*************/
/* Nav Style */
/*************/

/* Select language */
select.lang__select {
  background-image: linear-gradient(45deg, transparent 50%, gray 50%),
    linear-gradient(135deg, gray 50%, transparent 50%),
    linear-gradient(to right, #ccc, #ccc);
  background-position: calc(100% - 20px) calc(1em + 2px),
    calc(100% - 15px) calc(1em + 2px), calc(100% - 2.5em) 0.5em;
  background-size: 5px 5px, 5px 5px, 1px 1.5em;
  background-repeat: no-repeat;
}

select.lang__select:focus {
  background-image: linear-gradient(
      45deg,
      rgb(96, 190, 180) 50%,
      transparent 50%
    ),
    linear-gradient(135deg, transparent 50%, rgb(70, 190, 176) 50%),
    linear-gradient(to right, #ccc, #ccc);
  background-position: calc(100% - 15px) 1em, calc(100% - 20px) 1em,
    calc(100% - 2.5em) 0.5em;
  background-size: 5px 5px, 5px 5px, 1px 1.5em;
  background-repeat: no-repeat;
  border-color: rgb(70, 190, 176);
  outline: 0;
}

/* Nav Bar */

nav {
  background: #fff;
  box-shadow: 2px 2px 2px 1px rgba(153, 153, 153, 0.1);
  height: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 10;
}

.navbarContainer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
  z-index: 1;
  width: 100%;
  padding: 0 24px;
  margin: 0 7%;
}
.navLogo {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-self: center;
  height: 3rem;
  object-fit: contain;
}

/* Copyrights */
.copyrightscontainer {
  margin-top: auto;
  padding: 20px 10px;
  background-color: #0a0a0a;
  width: 100%;
  display: flex;
  justify-content: center;
}
.copyrights {
  margin: 0;
  padding: 0;
  font-size: 1rem;
  font-weight: 400;
  color: #fff;
}

/*footer*/
.footerLogo {
  cursor: pointer;
  height: 3rem;
  object-fit: contain;
  align-self: start;
  justify-self: center;
  margin-bottom: 10px;
}

.footerBox {
  padding: 3% 5%;
  margin: auto;
  width: 100%;
  background: #211f1f;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
}

.footerColumn {
  display: flex;
  flex-direction: column;
  text-align: left;
  width: 100%;
}

.social-links {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: flex-end;
}

.social-links a {
  display: inline-block;
  height: 40px;
  width: 40px;
  background-color: rgba(255, 255, 255, 0.2);
  margin: 0 10px 10px 0;
  text-align: center;
  line-height: 40px;
  border-radius: 50%;
  color: #ffffff;
  transition: all 0.5s ease;
}
.social-links a:hover {
  color: #24262b;
  background-color: #ffffff;
}

.footerP {
  color: #fff;
  padding: 0;
  margin: 0;
}

/* Responsive sized */
@media screen and (max-width: 960px) {
  nav {
    transition: 0.8 all ease;
  }

  .navLogo,
  .footerLogo {
    height: 2rem;
  }
  .footerBox {
    padding: 10% 5%;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 20px;
  }
}
/* Responsive sized */
@media screen and (max-width: 480px) {
  .displayornot {
    display: none;
  }
}
