@font-face {
  font-family: Underdog;
  src: url(../fonts/Hedvig/Hedvig_Letters_Serif/HedvigLettersSerif-Regular-VariableFont_opsz.ttf);
}

:root {
  --myBlack: rgb(25, 25, 25);
}

* {
  box-sizing: border-box;
  opacity: 1;
  -webkit-opacity: 1;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  position: relative;
  background-color: rgb(211, 33, 44);
  background-color: var(--myBlack);
  background-image: url(../images/Artboard11.png);
  background-image: -webkit-image-set(url(../images/Artboard11.png));
  background-image: image-set(url(../images/Artboard11.png));
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
  min-height: 100vh;
  padding: 0;
  margin: 0;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 500px) {
}
/*.heroBody {
  background-image: url(../images/backgroundDarkHero.png);
  background-image: -webkit-image-set(url(../images/backgroundDarkHero.png));
  background-image: image-set(url(../images/backgroundDarkHero.png));
  background-size: 100%;
}*/
.contentContainerFrame {
  padding: 1rem 1.125rem;
  border: 1px solid white;
  box-shadow: 0px 0px 5px 3px rgba(255, 255, 255, 0.5) inset;
  animation: opacity 1s ease-in;
  margin: 4rem auto;
}
.contentContainer {
  color: white;
  opacity: 1;
  -webkit-text-fill-color: rgb(255, 255, 255);
  -webkit-opacity: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 500px;
  padding: 4rem 3rem;
  border: 1px solid white;
  box-shadow: 0px 0px 5px 3px rgba(255, 255, 255, 0.5) inset;
}
@keyframes opacity {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.contentButtons {
  margin-top: 1rem;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.contentLink {
  font-size: 1rem;
  color: white;
  opacity: 1;
  -webkit-text-fill-color: rgb(255, 255, 255);
  -webkit-opacity: 1;
}
.contentButton {
  width: 150px;
  height: 50px;
  border: 1px solid white;
  margin: 1rem;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  box-shadow: 0px 0px 5px 3px rgba(255, 255, 255, 0.25) inset;
}
.contentButton:hover {
  background-color: rgba(255, 255, 255, 0.1);
}
.contentButtonArrowLeft {
  width: 1rem;
  height: auto;
  margin-right: 10px;
}
.contentButtonArrowRight {
  width: 1rem;
  height: auto;
  margin-left: 10px;
  transform: rotate(180deg);
}
@media screen and (max-width: 768px) {
  .contentContainerFrame {
    border: none;
    box-shadow: none;
    padding: 0;
    margin: 2rem;
  }
  .contentContainer {
    border: none;
    box-shadow: none;
    padding: 4rem 0.25rem;
  }
}
@media screen and (max-width: 500px) {
  .contentButtons {
    margin-top: 2rem;
    flex-direction: column;
  }
  .contentButton {
    width: 150px;
    height: 35px;
    border: 1px solid white;
    margin: 0.5rem;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }
}

/*hero*/
.heroTitle {
  font-size: 3.25rem;
  color: white;
  opacity: 1;
  -webkit-text-fill-color: rgb(255, 255, 255);
  -webkit-opacity: 1;
}
.heroSubtitle {
  font-size: 1.25rem;
  font-style: italic;
  color: white;
  opacity: 1;
  -webkit-text-fill-color: rgb(255, 255, 255);
  -webkit-opacity: 1;
  margin-bottom: 1.125rem;
}
.heroButtons {
  margin-top: 1rem;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.heroLink {
  font-size: 1.0625rem;
  color: white;
  opacity: 1;
  -webkit-text-fill-color: rgb(255, 255, 255);
  -webkit-opacity: 1;
}
.heroButton {
  width: 150px;
  height: 50px;
  border: 1px solid white;
  margin: 1rem;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  box-shadow: 0px 0px 5px 3px rgba(255, 255, 255, 0.25) inset;
}
.heroButton:hover {
  background-color: rgba(255, 255, 255, 0.1);
}
.heroButtonArrowLeft {
  width: 1rem;
  height: auto;
  margin-right: 10px;
}
.heroButtonArrowRight {
  width: 1rem;
  height: auto;
  margin-left: 10px;
  transform: rotate(180deg);
}
@media screen and (max-width: 500px) {
  .heroTitle {
    font-size: 2.125rem;
  }
  .heroButtons {
    margin-top: 2rem;
    flex-direction: column;
  }
}

/*contact*/
.contactTitle {
  font-size: 3rem;
  color: white;
  opacity: 1;
  -webkit-text-fill-color: rgb(255, 255, 255);
  -webkit-opacity: 1;
  margin-bottom: 2rem;
}
.contactHolder {
  font-size: 1.0625rem;
  display: flex;
  flex-direction: row;
  margin: 0.5rem;
}
.contactIcon {
  height: 1.0625rem;
  width: 1.0625rem;
  object-fit: contain;
  object-position: center;
  margin-right: 10px;
}
.contactText {
  font-size: 1.0625rem;
  color: white;
  opacity: 1;
  -webkit-text-fill-color: rgb(255, 255, 255);
  -webkit-opacity: 1;
}
@media screen and (max-width: 500px) {
  .contactTitle {
    font-size: 2.125rem;
    margin-bottom: 1rem;
  }
}

/*portfolio*/
.portfolioTitle {
  font-size: 3rem;
  color: white;
  opacity: 1;
  -webkit-text-fill-color: rgb(255, 255, 255);
  -webkit-opacity: 1;
  margin-bottom: 2rem;
}
.portfolioHolder {
  margin-bottom: 2rem;
}
.portfolioSubtitle {
  font-size: 1.5rem;
  color: white;
  opacity: 1;
  -webkit-text-fill-color: rgb(255, 255, 255);
  -webkit-opacity: 1;
  margin-bottom: 0.75rem;
}
.portfolioLinkHolder {
  margin-bottom: 0.25rem;
}
.portfolioLink {
  font-size: 1.0625rem;
  color: white;
  opacity: 1;
  -webkit-text-fill-color: rgb(255, 255, 255);
  -webkit-opacity: 1;
  font-style: italic;
}
@media screen and (max-width: 500px) {
  .portfolioTitle {
    font-size: 2.125rem;
    margin-bottom: 0.5rem;
  }
  .portfolioHolder {
    margin-bottom: 0.5rem;
  }
}

header {
  position: absolute;
  top: 1rem;
  right: 0;
  left: 0;
  z-index: 100;
}
footer {
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  position: absolute;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: opacity 333ms ease-in;
}
.footer_text {
  padding: 10px;
  font-size: 0.75rem;
  color: white;
  opacity: 0.75;
  -webkit-text-fill-color: rgb(255, 255, 255);
  -webkit-opacity: 0.75;
}
.languageBoxDesktop {
  display: flex;
  flex-direction: row;
  align-items: start;
  justify-content: center;
}
.languageButtonsContainer {
  padding: 8px 1rem;
  height: 8rem;
  background-color: rgb(11, 11, 11);
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
  border-radius: 5px 0 5px 5px;
}
.languageButtonsContainerDesktopSmall {
  height: 2rem;
  border-radius: 5px 0 0 5px;
}
.languageButtonsContainerMobile {
  display: none;
}
.languageButton {
  cursor: pointer;
  height: 1rem;
  width: 1rem;
}
.languageButtonDesktop {
  display: none;
}
.languageButtonDesktopShow {
  display: block;
}
.languageArrowContainer {
  background-color: rgb(11, 11, 11);
  padding: 8px 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  border-radius: 0 5px 5px 0;
}
.languageArrow {
  height: 1rem;
  width: 1rem;
}
.languageArrowRotation {
  transform: rotate(0deg);
  animation: arrowRotation 250ms ease-in-out;
}
.languageArrowRotationBack {
  transform: rotate(180deg);
  animation: arrowRotationBack 250ms ease-in-out;
}
@keyframes arrowRotation {
  0% {
    transform: rotate(180deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
@keyframes arrowRotationBack {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(180deg);
  }
}
#hrButtonDesktop,
#hrButtonMobile {
  background-image: url(../icons/HRflag.svg);
  background-image: -webkit-image-set(url(../icons/HRflag.svg));
  background-image: image-set(url(../icons/HRflag.svg));
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
#enButtonDesktop,
#enButtonMobile {
  background-image: url(../icons/ENflag.svg);
  background-image: -webkit-image-set(url(../icons/ENflag.svg));
  background-image: image-set(url(../icons/ENflag.svg));
  background-size: cover;
  background-repeat: no-repeat;
}
#esButtonDesktop,
#esButtonMobile {
  background-image: url(../icons/ESflag.svg);
  background-image: -webkit-image-set(url(../icons/ESflag.svg));
  background-image: image-set(url(../icons/ESflag.svg));
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
#ruButtonDesktop,
#ruButtonMobile {
  background-image: url(../icons/RUflag.svg);
  background-image: -webkit-image-set(url(../icons/RUflag.svg));
  background-image: image-set(url(../icons/RUflag.svg));
  background-size: cover;
  background-repeat: no-repeat;
}
.languageActive {
  display: block;
}
.hr,
.en,
.es,
.ru {
  display: none;
}
