@import url(https://fonts.googleapis.com/css2?family=Passion+One:wght@400;700;900&family=Space+Grotesk:wght@300..700&display=swap);
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

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 {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
body {
  line-height: 1;
}
ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}

* {
  box-sizing: border-box;
}
html {
  font-size: calc(1vw / 14.4);
}
body {
  font-family: 'PT Root UI', Arial, Helvetica, sans-serif;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #eee;
}
main {
  height: 100%;
  display: flex;
  align-items: flex-end;
  width: 70%;
  margin: 0 auto;
  background: linear-gradient(
    135deg,
    rgba(209, 209, 209, 1) 0%,
    rgb(184, 187, 209) 20%,
    rgba(207, 207, 207, 1) 47%,
    rgb(209, 213, 231) 77%,
    rgba(224, 224, 224, 1) 100%
  );
  /* background: radial-gradient(circle at 100% 0%, #b6cde8, transparent 60%),
    linear-gradient(65deg, #dfdfdf, rgb(190, 190, 190) 50%); */
  border-radius: 30rem;
  position: relative;
}
section {
  position: relative;
  height: 100%;
}
footer {
  width: 100%;
  display: flex;
  background-color: #cccccc2f;
  border-radius: 60rem 60rem 0 0;
  gap: 20rem;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  padding: 20rem 20rem;
  margin-bottom: 0;
}
footer > * {
  width: 4%;
}
footer img {
  width: 100%;
}
.sasart {
  border-radius: 100%;
}
.arrow {
  position: absolute;
  top: 0;
  right: 0;
  width: 10%;
  height: 10%;
  background-image: url(images/40b00b2f35cb96abc7de.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right top;
  z-index: 100;
  transition: background-image 1s ease;
}
.arrow:hover {
  background-image: url(images/4f71b16ad4e14a5bcd77.svg);
  transition: background-image 1s ease;
}
#poster {
  width: 50%;
  border-radius: 30rem 0 0 30rem;
  overflow: hidden;
}
#description {
  width: 50%;
  height: 100%;
  /* padding: 20rem; */
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 20rem;
}
#description > h1,
#description > p {
  padding: 0 20rem;
}
#description h1 {
  font-size: 30rem;
  font-weight: 500;
  padding-top: 20rem;
}
#description p {
  font-size: 16rem;
}
#description .role {
  font-size: 14rem;
  color: #555;
  transform: translateY(16rem);
}
blockquote {
  width: 96%;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1rem solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8rem 32rem rgba(0, 0, 0, 0.1);
  border-radius: 20rem;
  padding: 40rem;
  position: relative;
  z-index: 2;
  margin: 30rem auto 0;
}
blockquote p {
  line-height: 1.3;
}
blockquote::before {
  font-family: 'Passion One', sans-serif;
  font-weight: 400;
  content: '"';
  font-size: 120rem;
  position: absolute;
  top: -10%;
  -webkit-text-stroke: 1rem #efefef;
  color: rgba(255, 255, 255);
  text-shadow: 4rem 2rem 5rem rgba(100, 100, 100, 0.5);
}
blockquote p:nth-of-type(2) {
  text-align: right;
  color: #69677c;
  margin-top: 10rem;
}
@media screen and (max-width: 1279px) {
  #description h1 {
    font-size: 40rem;
  }
  #description p {
    font-size: 22rem;
  }
  .blockquote::before {
    top: -6%;
  }
}
@media screen and (max-width: 768px) {
  body {
    align-items: flex-start;
  }
  main {
    flex-direction: column;
    width: 100%;
    border-radius: 0;
  }
  #poster {
    border-radius: 0 0 70rem 70rem;
  }
  section,
  #poster,
  #description {
    width: 100%;
  }
  #description > h1,
  #description > p {
    padding: 0 30rem;
  }
  #description h1 {
    font-size: 70rem;
    padding-top: 30rem;
  }
  #description p {
    font-size: 40rem;
  }
  #description .role {
    font-size: 30rem;
    transform: translateY(10rem);
  }
  .arrow {
    left: 0;
    width: 20%;
    height: 20%;
    background-image: url(images/83ebb5e3f44646517b4d.svg);
  }
  .arrow:hover {
    background-image: url(images/d209b37a1f119a4a5b34.svg);
  }
  blockquote {
    padding: 60rem 40rem 30rem;
  }
  blockquote::before {
    font-size: 190rem;
  }
}

@media screen and (max-width: 500px) {
  #poster {
    border-radius: 0 0 70rem 70rem;
  }
  #description {
    margin-top: 20rem;
    gap: 60rem;
  }
  #description > h1,
  #description > p {
    padding: 0 60rem;
  }
  #description h1 {
    font-size: 110rem;
    padding-top: 60rem;
  }
  #description p {
    font-size: 80rem;
  }
  #description .role {
    font-size: 50rem;
    transform: translateY(40rem);
  }
  blockquote {
    padding: 100rem;
    border-radius: 60rem;
  }
  blockquote::before {
    font-size: 340rem;
    top: -4%;
    text-shadow: 8rem 8rem 10rem rgba(100, 100, 100, 0.3);
  }
  blockquote p:nth-of-type(2) {
    margin-top: 40rem;
  }
  footer > * {
    width: 10%;
  }
  footer {
    gap: 40rem;
  }
}

#poster {
  width: calc(1190rem / 2.3);
  height: calc(1660rem / 2.3);
  position: relative;
  font-family: 'Courier New', Courier, monospace;
  background-color: rgb(163, 163, 163);
}
video {
  width: 100%;
  padding-top: 20%;
  border: none;
}
#poster h1 {
  color: #666eb4;
  font-size: 90rem;
  text-align: center;
  font-weight: 400;
  position: absolute;
  bottom: 0;
  width: 100%;
  display: block;
}
#govorun {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  perspective-origin: calc(50% + 10rem) calc(50% - 10rem);
  perspective: 32em;
  background: linear-gradient(225deg, rgb(231, 231, 231), rgb(163, 163, 163));
  display: flex;
  flex-direction: column;
}

[type='checkbox'] {
  position: absolute;
  left: -100vw;
}

[type='checkbox'] + label {
  --s: 0;
  position: relative;
  border: solid 0.625rem #f0f0f0;
  width: 10rem;
  height: 5rem;
  border-radius: 5rem;
  transform-style: preserve-3d;
  transform: rotatex(90deg) rotate(20deg) rotatey(15deg);
  box-shadow: 0.5rem 0.875rem 0 -0.25rem #e0e0e0,
    0.625rem 0.625rem 0 -0.25rem #e0e0e0,
    0.5rem 0.875rem 0.625rem -0.125rem rgba(191, 191, 191, 0.75),
    inset 0.125rem -0.125rem 0.5rem rgba(245, 245, 245, 0.5),
    inset 0.75rem 0.75rem #dfdfdf,
    inset 0.75rem 0.75rem 0.75rem rgba(191, 191, 191, 0.85),
    inset 0 1rem 0.75rem rgba(191, 191, 191, 0.65);
  color: transparent;
  font-size: 0;
  -webkit-tap-highlight-color: transparent;
  cursor: pointer;
}

[type='checkbox'] + label:before,
[type='checkbox'] + label:after {
  position: absolute;
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  transition: 0.35s cubic-bezier(0.21, 0.61, 0.35, 1);
  content: '';
}

[type='checkbox'] + label:before {
  top: calc(50% + 0.875rem);
  transform-origin: 100% 0;
  transform: translate(calc(var(--s) * (100% + 1rem))) scale(0.8)
    skewx(-22.5deg);
  background: radial-gradient(
    at 50% 25%,
    rgba(160, 160, 160, 0.65),
    transparent 70%
  );
  filter: blur(3px);
}

[type='checkbox'] + label:after {
  top: 0.875rem;
  left: 0.75rem;
  transform: translate(calc(var(--s) * (100% + 1rem))) rotatey(-22.5deg)
    rotate(-22.5deg) rotatex(-90deg) translatey(-50%) rotate(45deg);
  box-shadow: -1px 1px 0.125rem rgba(210, 206, 255, 0.5);
  background: radial-gradient(at 0 50%, #525aa0, transparent 2.5rem) 0 50% / 65%
      50% no-repeat,
    radial-gradient(at 50% 0%, #8891d1 15%, #6876b4 35%, #666eb4, #7777c2 65%)
      50% / 200%;
  filter: grayscale(calc(1 - var(--s)));
}

[type='checkbox']:checked + label {
  --s: 1;
}

.circle {
  display: block;
  overflow: visible;
  width: 90%;
  font-size: 2.1vw;
  fill: #666eb4;
  transform-style: preserve-3d;
  transform-origin: center;
  position: absolute;
  /* animation: rotate 10s infinite alternate; */
}
.circle:nth-of-type(1) {
  transform: rotatex(60deg) rotate(20deg) rotatey(8deg);
}
.circle:nth-of-type(2) {
  transform: rotatex(44deg) rotate(20deg) rotatey(146deg);
}
.circle:nth-of-type(3) {
  transform: rotatex(75deg) rotate(20deg) rotatey(56deg);
}

@keyframes rotate {
  from {
    transform: rotatex(60deg) rotate(20deg) rotatey(8deg);
  }
  to {
    transform: rotatex(60deg) rotate(20deg) rotatey(8deg);
  }
}

.circle path {
  fill: none;
  box-shadow: 0 1vw 1vw 0 rgba(100, 100, 100, 0.3);
}
.background {
  padding-top: 20%;
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
}

@media screen and (max-width: 1279px) {
  main {
    width: 96%;
  }
  #poster {
    width: calc(1190rem / 1.6);
    height: calc(1684rem / 1.6);
  }
}

@media screen and (max-width: 768px) {
  main {
    width: 100%;
  }
  #poster {
    width: 100%;
    height: 141.42vw;
  }
}

