/*=============== GOOGLE FONTS ===============*/
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap");
/*=============== VARIABLES CSS ===============*/
:root {
  /*========== Colors ==========*/
  /*Color mode HSL(hue, saturation, lightness)*/
  /*
        Blue: hsl(207, 90%, 61%)
        Purple: hsl(250, 66%, 75%)
        Pink: hsl(356, 66%, 75%)
        Teal: hsl(174, 63%, 62%)
    */
  --hue: 207;
  --sat: 90%;
  --lig: 61%;
  --first-color: hsl(var(--hue), var(--sat), var(--lig));
  --first-color-alt: hsl(var(--hue), var(--sat), 57%);
  /* -4% */
  --title-color: hsl(var(--hue), 12%, 15%);
  --text-color: hsl(var(--hue), 12%, 45%);
  --text-color-light: hsl(var(--hue), 8%, 75%);
  --text-color-lighten: hsl(var(--hue), 8%, 92%);
  --text-color-unique: hsl(168, 100%, 59%, 1);
  --body-color: hsl(var(--hue), 100%, 99%);
  --container-color: #fff;
  --circle-background: hsla(0, 0%, 85%, 2.24);
  /*========== Font and typography ==========*/
  /*.5rem = 8px | 1rem = 16px ...*/
  --body-font: 'Poppins', sans-serif;
  --h2-font-size: 1.25rem;
  --h3-font-size: 1rem;
  --normal-font-size: .938rem;
  --small-font-size: .813rem;
  --smaller-font-size: .75rem;
}

@media screen and (min-width: 882px) {
  :root {
    --h2-font-size: 2.81rem;
    --h3-font-size: 1.25rem;
    --normal-font-size: 1rem;
    --small-font-size: .875rem;
    --smaller-font-size: .813rem;
  }
}

/*=============== BASE ===============*/
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  position: relative;
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  background-color: var(--body-color);
  color: var(--text-color);
  -webkit-transition: .3s;
  transition: .3s;
  /* For animation dark mode */
  overflow: hidden;
  min-height: 100%;
}

h1, h2, h3 {
  color: var(--title-color);
  font-weight: 600;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

/*=============== THEME ===============*/
.change-theme {
  right: 0;
  font-size: 1.25rem;
  color: var(--title-color);
  cursor: pointer;
  -webkit-transition: .3s;
  transition: .3s;
}

.change-theme:hover {
  color: var(--first-color);
}

/*========== Variables Dark theme ==========*/
body.dark-theme {
  --title-color: hsl(var(--hue), 12%, 95%);
  --text-color: hsl(var(--hue), 12%, 75%);
  --body-color: hsl(var(--hue), 40%, 8%);
  --container-color: hsl(var(--hue), 24%, 12%);
  --circle-background: hsla(0, 0%, 85%, 0.247);
}

body.dark-theme .logo-dark {
  display: none;
}

body.dark-theme .logo-white {
  display: block;
}

.logo-dark {
  display: block;
}

.logo-white {
  display: none;
}

/*==========
    Color changes in some parts of
    the website, in light theme
==========*/
.dark-theme .button__gray {
  background-color: var(--container-color);
}

.dark-theme .button__gray:hover {
  background-color: hsl(var(--hue), 24%, 16%);
}

.dark-theme .filters__content {
  background-color: var(--container-color);
}

.dark-theme::-webkit-scrollbar {
  background-color: hsl(var(--hue), 8%, 16%);
}

.dark-theme::-webkit-scrollbar-thumb {
  background-color: hsl(var(--hue), 8%, 24%);
}

.dark-theme::-webkit-scrollbar-thumb:hover {
  background-color: hsl(var(--hue), 8%, 32%);
}

@-webkit-keyframes shake-animation {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  1.78571% {
    -webkit-transform: translate(5px, 0);
            transform: translate(5px, 0);
  }
  3.57143% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  5.35714% {
    -webkit-transform: translate(5px, 0);
            transform: translate(5px, 0);
  }
  7.14286% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  8.92857% {
    -webkit-transform: translate(5px, 0);
            transform: translate(5px, 0);
  }
  10.71429% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}

@keyframes shake-animation {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  1.78571% {
    -webkit-transform: translate(5px, 0);
            transform: translate(5px, 0);
  }
  3.57143% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  5.35714% {
    -webkit-transform: translate(5px, 0);
            transform: translate(5px, 0);
  }
  7.14286% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  8.92857% {
    -webkit-transform: translate(5px, 0);
            transform: translate(5px, 0);
  }
  10.71429% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}

/*=============== show and hide contact ===============*/
body.show .contact-btn {
  display: none;
}

body.show .back-to-contact-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

body.show .back-to-contact-btn i {
  -webkit-animation: shake-animation 6s ease infinite;
          animation: shake-animation 6s ease infinite;
  -webkit-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
}

body.show .filters.container {
  display: none;
}

body.show .filters.contact {
  display: block;
}

body .consent-wrapper {
  display: none;
  position: absolute;
  z-index: 99;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  background-color: rgba(0, 0, 0, 0.712);
}

body .consent-wrapper .consent-message {
  padding: 1.5rem;
  width: 100%;
  max-width: 400px;
  border-radius: 5px;
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background-color: var(--body-color);
  margin-left: 0.5rem;
  margin-right: 1rem;
}

body .consent-wrapper .consent-message h2 {
  text-align: center;
  margin-bottom: 1rem;
  color: var(--title-color);
}

body .consent-wrapper .consent-message .cookie-image {
  display: block;
  margin-block: 1rem;
  margin-inline: auto;
  max-width: 100px;
  width: 100%;
}

body .consent-wrapper .consent-message p {
  text-align: center;
  margin-bottom: 1.5rem;
  color: var(--text-color);
}

body .consent-wrapper .consent-message .buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

body .consent-wrapper .consent-message .buttons button {
  padding: 0.7rem 2rem;
  cursor: pointer;
  border-radius: 5px;
  font-size: 1rem;
  font-weight: 700;
  border-color: var(--first-color);
  margin-inline: auto;
}

body .consent-wrapper .consent-message .buttons button.main {
  background-color: var(--first-color);
  color: white;
}

body .consent-wrapper .consent-message .buttons button.second {
  background-color: transparent;
  color: var(--text-color);
}

body.show-cookie-notification {
  overflow: hidden !important;
}

body.show-cookie-notification .consent-wrapper {
  display: initial;
}

.filters.contact {
  display: none;
}

@media screen and (min-width: 882px) {
  .filters.container {
    display: block;
  }
  .filters.contact {
    display: block;
  }
}

/*=============== REUSABLE CSS CLASSES ===============*/
.container {
  max-width: 968px;
  padding-inline: 1.5rem;
  margin-inline: auto;
}

.grid {
  display: -ms-grid;
  display: grid;
  gap: 1.5rem;
}

.flex {
  margin-top: 2rem;
}

.flex .desktop-image {
  display: none;
}

.profile {
  position: relative;
  padding-top: 2rem;
}

.profile__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.profile__nav .profile__container {
  width: 100%;
}

.profile__nav ul {
  width: 100%;
  min-width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding-right: 4rem;
  gap: 1rem;
}

.profile__nav ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.profile__nav ul a {
  color: var(--title-color);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  display: none;
}

.profile__nav ul a:hover {
  opacity: 0.8;
}

.profile__nav ul a.logo-link {
  padding: 0.5rem 0;
  display: block;
}

.profile .logo-link {
  min-width: 120px;
  margin-right: auto;
}

.profile .logo-link img {
  width: 100%;
  max-width: 120px;
}

.profile__container {
  row-gap: 2rem;
}

@media screen and (min-width: 576px) {
  .profile__nav ul li:nth-child(2) {
    width: 115px;
  }
  .profile__nav ul li:nth-child(3) {
    width: 70px;
  }
  .profile__nav ul li:nth-child(4) {
    width: 100px;
  }
  .profile__nav ul li:nth-child(5) {
    width: 130px;
  }
  .profile__nav ul li:nth-child(6) {
    width: 90px;
  }
}

/*=============== decoration ===============*/
.geometric-decor div {
  position: absolute;
  width: 808px;
  height: 808px;
  -webkit-filter: blur(199.5px);
          filter: blur(199.5px);
  z-index: -1;
}

.geometric-decor .first {
  left: 55%;
  top: -12%;
}

.geometric-decor .second {
  left: -10%;
  top: 40%;
}

.geometric-decor .third {
  left: 55%;
  top: 65%;
}

.geometric-decor .first {
  background: rgba(20, 204, 127, 0.096);
}

.geometric-decor .second {
  background: rgba(0, 45, 157, 0.075);
}

.geometric-decor .third {
  background: rgba(26, 179, 123, 0.096);
}

.dark-theme .geometric-decor .first {
  background: rgba(62, 198, 239, 0.13);
}

.dark-theme .geometric-decor .second {
  background: rgba(0, 82, 157, 0.17);
}

.dark-theme .geometric-decor .third {
  background: rgba(57, 160, 255, 0.11);
}

/*=============== FOOTER ===============*/
.footer__copy {
  display: block;
  margin: 2.5rem 0 2rem;
  text-align: center;
  font-size: var(--smaller-font-size);
  color: var(--text-color-light);
}

/*=============== SCROLL BAR ===============*/
::-webkit-scrollbar {
  width: .6rem;
  border-radius: .5rem;
  background-color: hsl(var(--hue), 8%, 66%);
}

::-webkit-scrollbar-thumb {
  background-color: hsl(var(--hue), 8%, 54%);
  border-radius: .5rem;
}

::-webkit-scrollbar-thumb:hover {
  background-color: hsl(var(--hue), 8%, 44%);
}
/*# sourceMappingURL=global-style.css.map */