@import url(https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css);
@import url("https://fonts.googleapis.com/css2?family=Caveat:wght@400;500;600;700&display=swap");
@import url(https://fonts.googleapis.com/css?family=Roboto:100);
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;
  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;
}

:root {
  --text-color: #000000;
}

.grid {
  display: grid;
  grid-gap: 10%;
  width: 100%;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr;
  grid-template-areas: "text_box owl_box";
}

.text_box {
  grid-area: text_box;
}

.owl_box {
  grid-area: owl_box;
}

@media (max-width: 1200px) {
  .grid {
    display: grid;
    grid-gap: 1%;
    width: 100%;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    grid-template-areas: "text_box" "owl_box";
  }
  .text_box {
    grid-area: text_box;
  }
  .owl_box {
    grid-area: owl_box;
  }
}
.profile {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr 0.5fr;
  grid-template-areas: "sidebarly content1 content2" "sidebarly content3 content4" "mainy mainy mainy";
  grid-gap: 2rem;
  height: auto;
}

#mainy {
  grid-area: mainy;
  border-radius: var(--mainy-radius);
  padding-top: var(--mainy-padding);
}

#sidebarly {
  grid-area: sidebarly;
  border-radius: var(--mainy-radius);
  padding-top: var(--mainy-padding);
}

#content1 {
  grid-area: content1;
  border-radius: var(--mainy-radius);
  padding-top: var(--mainy-padding);
}

#content2 {
  grid-area: content2;
  border-radius: var(--mainy-radius);
  padding-top: var(--mainy-padding);
}

#content3 {
  grid-area: content3;
  border-radius: var(--mainy-radius);
  padding-top: var(--mainy-padding);
}

#content4 {
  grid-area: content4;
  border-radius: var(--mainy-radius);
  padding-top: var(--mainy-padding);
}

@media (max-width: 1200px) {
  .profile {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    grid-template-areas: "sidebarly" "content1" "content2" "content3" "content4" "mainy";
    grid-gap: 2rem;
    height: auto;
  }
}
.g-works {
  --gridGap: 1rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr 1fr;
  grid-gap: var(--gridGap);
  grid-template-rows: auto;
  grid-template-areas: "gallery1 gallery2" "gallery3 gallery4";
}

.gallery1 {
  grid-area: gallery1;
}

.gallery2 {
  grid-area: gallery2;
}

.gallery3 {
  grid-area: gallery3;
}

.gallery4 {
  grid-area: gallery4;
}

@media (max-width: 1200px) {
  .g-works {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    grid-template-areas: "gallery1" "gallery2" "gallery3" "gallery4";
    grid-gap: 2rem;
    height: auto;
  }
}
.form-container {
  display: grid;
  width: 100%;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr;
  grid-template-areas: "left-container right-container";
}

.left-container {
  grid-area: left-container;
}

.right-container {
  grid-area: right-container;
}

@media (max-width: 1200px) {
  .form-container {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    grid-template-areas: "left-container" "right-container";
    height: auto;
  }
}
.Out__content {
  display: grid;
  width: 100%;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr;
  grid-template-areas: "sl_left sl_right";
}

.sl_left {
  grid-area: sl_left;
}

.sl_right {
  grid-area: sl_right;
}

@media (max-width: 1200px) {
  .Out__content {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    grid-template-areas: "sl_left" "sl_right";
    height: auto;
  }
}
.translate_wrapper {
  z-index: 200;
  margin-left: -15px;
  font-size: 16px;
  height: 50px;
  border-radius: 50px;
  font-size: 1.8em;
}
@media (min-width: 1200px) {
  .translate_wrapper {
    margin-left: 0px;
  }
}

.current_lang {
  cursor: pointer;
  text-transform: uppercase;
  overflow: hidden;
}

.lang {
  padding: 10px 15px;
}

.lang.selected {
  display: none;
}

.lang img,
.lang span.lang-txt {
  display: inline-block;
  margin-left: 5px;
  vertical-align: middle;
}

.lang span.lang-txt {
  position: relative;
  top: 0px;
  font-weight: 700;
}

.lang img {
  width: 20px;
  margin-left: 0;
}

.lang span span {
  color: #999;
  font-weight: 400;
}

.lang span.fa {
  font-size: 20px;
  position: relative;
  top: -1px;
  margin-left: 3px;
}

/*more lang*/
.more_lang {
  transform: translateY(-20px);
  opacity: 0;
  cursor: pointer;
  display: none;
  -webkit-transition: all 0.3s cubic-bezier(0.25, 1.15, 0.35, 1.15);
  -moz-transition: all 0.3s cubic-bezier(0.25, 1.15, 0.35, 1.15);
  -o-transition: all 0.3s cubic-bezier(0.25, 1.15, 0.35, 1.15);
  -ms-transition: all 0.3s cubic-bezier(0.25, 1.15, 0.35, 1.15);
  transition: all 0.3s cubic-bezier(0.25, 1.15, 0.35, 1.15);
}

.translate_wrapper.active .more_lang {
  display: block;
}

.more_lang.active {
  opacity: 1;
  transform: translateY(0px);
}

.more_lang .lang {
  color: #bdbdbd;
}

.more_lang .lang:hover span {
  color: darkgray;
}

.Out {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  text-align: center;
}

.Out__wrapper {
  display: flex;
  width: 400vw;
  height: 100vh;
}
@media (min-width: 768px) {
  .Out__wrapper {
    width: 300vw;
  }
}

.Out__slide {
  display: flex;
  align-items: center;
  width: 100vw;
  padding: 0px;
}

.Out__content {
  width: 100%;
  display: block;
}
@media (min-width: 768px) {
  .Out__content {
    display: grid;
    height: 100vh;
  }
}

.Out__title, .Out__subtitle {
  position: relative;
}

/*
  PURE RESPONSIVE CSS3 SLIDESHOW GALLERY by Roko C. buljan
  http://stackoverflow.com/a/34696029/383904
  */
.CSSgal {
  position: relative;
  overflow: hidden;
  height: 100vh;
  /* Or set a fixed height */
}

/* SLIDER */
.CSSgal .slider {
  height: 100%;
  white-space: nowrap;
  font-size: 0;
  transition: 0.8s;
}

.CSSgal .slider img {
  width: 80%;
  margin: 0% auto;
}

@media (max-width: 1200px) {
  .CSSgal .slider img {
    margin: 15% auto;
  }
}
@media (max-width: 600px) {
  .CSSgal .slider img {
    margin: 60% auto;
  }
}
.bg {
  border-radius: 300%;
  height: 100vh;
  bottom: -60vh;
  position: fixed;
  z-index: -1;
  background-color: #eff2f5;
  width: 400%;
  display: block;
}

/* SLIDES */
.CSSgal .slider > * {
  display: inline-block;
  white-space: normal;
  vertical-align: top;
  height: 100%;
  width: 100%;
  background: none 50% no-repeat;
  background-size: cover;
}

/* PREV/NEXT, CONTAINERS & ANCHORS */
.CSSgal .prevNext {
  position: absolute;
  z-index: 1;
  top: 50%;
  width: 100%;
  height: 0;
}

.CSSgal .prevNext > div + div {
  visibility: hidden;
  /* Hide all but first P/N container */
}

.CSSgal .prevNext a {
  background: #fff;
  position: absolute;
  width: 60px;
  height: 60px;
  line-height: 60px;
  /* If you want to place numbers */
  text-align: center;
  opacity: 0.7;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 30px;
}

.CSSgal .prevNext a:hover {
  opacity: 1;
}

.CSSgal .prevNext a + a {
  left: auto;
  right: 30px;
}

/* NAVIGATION */
.CSSgal .bullets {
  position: absolute;
  z-index: 1;
  bottom: 0;
  padding: 10px 0;
  width: 100%;
  text-align: center;
}

.CSSgal .bullets > a {
  display: inline-block;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-decoration: none;
  text-align: center;
  background: rgb(169, 169, 169);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.CSSgal .bullets > a + a {
  background: rgba(169, 169, 169, 0.5);
  /* Dim all but first */
}

.CSSgal .bullets > a:hover {
  background: rgba(169, 169, 169, 0.7) !important;
}

/* NAVIGATION BUTTONS */
/* ALL: */
.CSSgal > s:target ~ .bullets > * {
  background: rgba(169, 169, 169, 0.5);
}

/* ACTIVE */
#s1:target ~ .bullets > *:nth-child(1) {
  background: rgb(169, 169, 169);
}

#s2:target ~ .bullets > *:nth-child(2) {
  background: rgb(169, 169, 169);
}

#s3:target ~ .bullets > *:nth-child(3) {
  background: rgb(169, 169, 169);
}

#s4:target ~ .bullets > *:nth-child(4) {
  background: rgb(169, 169, 169);
}

#s5:target ~ .bullets > *:nth-child(5) {
  background: rgb(169, 169, 169);
}

/* More slides? Add here more rules */
/* PREV/NEXT CONTAINERS VISIBILITY */
/* ALL: */
.CSSgal > s:target ~ .prevNext > * {
  visibility: hidden;
}

/* ACTIVE: */
#s1:target ~ .prevNext > *:nth-child(1) {
  visibility: visible;
}

#s2:target ~ .prevNext > *:nth-child(2) {
  visibility: visible;
}

#s3:target ~ .prevNext > *:nth-child(3) {
  visibility: visible;
}

#s4:target ~ .prevNext > *:nth-child(4) {
  visibility: visible;
}

#s5:target ~ .prevNext > *:nth-child(5) {
  visibility: visible;
}

/* More slides? Add here more rules */
/* SLIDER ANIMATION POSITIONS */
#s1:target ~ .slider {
  transform: translateX(0%);
  -webkit-transform: translateX(0%);
}

#s2:target ~ .slider {
  transform: translateX(-100%);
  -webkit-transform: translateX(-100%);
}

#s3:target ~ .slider {
  transform: translateX(-200%);
  -webkit-transform: translateX(-200%);
}

#s4:target ~ .slider {
  transform: translateX(-300%);
  -webkit-transform: translateX(-300%);
}

#s5:target ~ .slider {
  transform: translateX(-400%);
  -webkit-transform: translateX(-400%);
}

/* More slides? Add here more rules */
/* YOU'RE THE DESIGNER! 
 ____________________
 All above was mainly to get it working :)
 CSSgal CUSTOM STYLES / OVERRIDES HERE: */
.CSSgal {
  color: #fff;
  text-align: center;
}

.CSSgal .slider h2 {
  margin-top: 40vh;
  font-weight: 200;
  letter-spacing: -0.06em;
  word-spacing: 0.2em;
}

.CSSgal a {
  border-radius: 50%;
  margin: 0 3px;
  color: #000;
  text-decoration: none;
  font-size: 2em;
  box-shadow: 0px 5px 5px 0px #e5e5e5;
}

a.backlink {
  position: fixed;
  top: 30px;
  right: 30px;
  z-index: 2000;
  border-radius: 100%;
  padding: 10px;
  font-size: 2em;
  color: #000;
  text-decoration: none;
}

.close_top {
  position: fixed;
  opacity: 1;
  top: 12px;
  right: 15px;
  font-weight: 500;
  border: 2px solid var(--text-color);
  padding: 10px;
  font-size: 15px;
  display: block;
}
@media (min-width: 768px) {
  .close_top {
    top: 20px;
    right: 30px;
  }
}
.close_top:hover {
  cursor: pointer;
}

.back-menu {
  background: var(--bg-color);
  width: 100%;
  height: 100vh;
  transition: all 0.3s ease-out;
  position: fixed;
  z-index: 20;
}
@media (min-width: 768px) {
  .back-menu {
    height: 65vh;
    width: 65vh;
    right: 0;
    position: fixed;
    bottom: 0;
    border-radius: 100% 100% 0;
    z-index: 20;
    box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.28);
  }
}
@media (min-width: 1440px) {
  .back-menu {
    height: 50vh;
    width: 50vh;
  }
}

.material-menu {
  width: auto;
  background: transparent;
  z-index: 11;
}

.material-btn {
  bottom: -2px;
  right: 0px;
  position: fixed;
  will-change: transform;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  z-index: 2;
  width: 75px;
  height: 75px;
  background: var(--bg-color);
  border-radius: 100%;
  cursor: pointer;
}
@media (min-width: 768px) {
  .material-btn {
    bottom: 7px;
    right: 7px;
  }
}
.material-btn.active:before {
  transform: scale(18);
}
@media (min-height: 800px) {
  .material-btn.active:before {
    transform: scale(25);
  }
}
.material-btn:active:before {
  opacity: 0.75;
}
.material-btn:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 75px;
  height: 75px;
  border-radius: 50%;
  cursor: pointer;
  transform-origin: center 70%;
  transform: scale(1);
  transition: all 0.35s ease-out;
}

.material-content {
  display: none;
  height: 100vh;
  top: 30%;
  position: absolute;
  right: 50px;
}
@media (min-width: 768px) {
  .material-content {
    right: 150px;
    width: 100%;
    height: 100vh;
    margin-top: 200px;
    position: absolute;
  }
}
.material-content.active {
  display: block;
  z-index: 11;
  position: absolute;
  width: 100%;
  height: 50vh;
  right: 0px;
}
@media (min-width: 768px) {
  .material-content.active {
    right: 108px;
    width: 100%;
    height: 100vh;
    margin-top: -40px;
  }
}
@media (min-width: 1440px) {
  .material-content.active {
    right: 130px;
  }
}

nav ul {
  list-style-type: none;
  padding: 0;
  text-align: center;
}
@media (min-width: 768px) {
  nav ul {
    text-align: right;
  }
}
nav li {
  will-change: transform, opacity;
  margin: 25px 0;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.4s ease-out;
}
nav li.active {
  transform: translateY(0);
  opacity: 1;
}
nav li:nth-child(1) {
  transition-delay: 0.1s;
}
nav li:nth-child(2) {
  transition-delay: 0.2s;
}
nav li:nth-child(3) {
  transition-delay: 0.3s;
}
nav li:nth-child(4) {
  transition-delay: 0.4s;
}
nav a {
  text-decoration: none;
  font-size: 2em;
  line-height: 2em;
  color: var(--text-color);
}
@media (min-width: 768px) {
  nav a {
    font-size: 3em;
    line-height: 1em;
  }
}

.material-hamburger {
  transition: all 0.3s ease-out;
}
.material-hamburger .material-patty {
  will-change: transform, opacity;
  width: 32px;
  height: 3px;
  margin: 0 0 6px 0;
  background: var(--text-color);
  opacity: 1;
  transform: translate(0) rotate(0deg);
  transition: all 0.2s ease-out;
}
.material-hamburger .material-patty:last-child {
  margin-bottom: 0;
}
.material-hamburger.material-close {
  transform: rotate(-180deg);
}
.material-hamburger.material-close .material-patty:nth-child(1) {
  transform: translate(-10px, 4px) rotate(-45deg) scale(0.5, 1);
}
.material-hamburger.material-close .material-patty:nth-child(3) {
  transform: translate(-10px, -4px) rotate(45deg) scale(0.5, 1);
}

main {
  will-change: transform, opacity;
  padding: 0vw;
  overflow: hidden;
  transition: all 0.35s ease-out;
}
main.active {
  opacity: 0;
  transform: translate(-700px, 0px);
}
main p {
  color: white;
  font-size: 4vw;
  font-weight: 300;
}

.switch {
  display: block;
  margin-top: -40px;
  z-index: 200;
  float: right;
  margin-right: 5px;
}
@media (min-width: 768px) {
  .switch {
    margin-right: 20px;
  }
 }
 #toggle{font-size: 0;}

.toggle-button:hover {
  cursor: pointer;
}

.toggle-button {
  -webkit-appearance: none;
  outline: none;
  width: 50px;
  height: 30px;
  background: rgba(255, 255, 255, 0.5);
  border: 5px solid #a9a9a9;
  border-radius: 50px;
  position: relative;
  transition: 0.4s;
}

.toggle-button:before {
  content: "";
  position: absolute;
  height: 20px;
  width: 20px;
  border-radius: 20px;
  top: 0;
  bottom: 0;
  background-color: #bdbdbd;
  transition: 0.4s;
}

.toggle-button:checked {
  background-color: #bdbdbd;
}

.toggle-button:checked:before {
  transform: translate(100%);
  background-color: #263238;
  transition: 0.4s;
}

.container4 {
  width: 70%;
  padding-top: 50px;
  margin: 0px auto;
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) {
  .container4 {
    padding: 50px 0;
  }
}

.container4:before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: -1px;
  width: 2px;
  height: 100%;
  background: dimgray;
  z-index: 1;
}

.timeline-block {
  width: -webkit-calc(50% + 8px);
  width: -moz-calc(50% + 8px);
  width: calc(50% + 8px);
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  justify-content: space-between;
  clear: both;
}

.timeline-block-right {
  float: right;
  text-align: left;
}
.timeline-block-right .marker {
  right: calc(50% - 10px);
}
.timeline-block-right .ico-edu,
.timeline-block-right .ico-work {
  float: left;
}

.timeline-block-left {
  float: left;
  text-align: right;
}
.timeline-block-left .marker {
  left: calc(50% - 10px);
}
.timeline-block-left .ico-edu,
.timeline-block-left .ico-work {
  float: right;
}

.marker {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 6px solid #fff;
  background: dimgray;
  margin-top: 10px;
  z-index: 9999;
  position: fixed;
}

.ico-edu {
  background-image: url("../images/base/edu.svg");
  background-position: 0 0;
  background-repeat: no-repeat;
  width: 40px;
  height: 40px;
  border-radius: 100%;
  background-size: 100%;
  margin-right: 0px;
  filter: var(--filter);
}

.ico-work {
  background-image: url("../images/base/work.svg");
  background-position: 0 0;
  background-repeat: no-repeat;
  width: 40px;
  height: 40px;
  border-radius: 100%;
  background-size: 100%;
  margin-right: 0px;
  filter: var(--filter);
}

.timeline-content {
  width: 100%;
  padding: 0 45px;
  color: var(--text-color);
}

.timeline-content h3 {
  margin-top: 5px;
  margin-bottom: 15px;
  font-size: 25px;
  font-weight: 500;
  margin-left: 60px;
  margin-right: 60px;
}

.timeline-content span {
  font-size: 15px;
  color: var(--text-color);
  margin-left: 60px;
  margin-right: 60px;
  display: block;
}

.timeline-content p {
  font-size: 14px;
  line-height: 1.5em;
  word-spacing: 1px;
  margin-left: 60px;
  margin-right: 60px;
}

@media (max-width: 900px) {
  .container4 {
    margin: 0;
    width: 100%;
  }
  .container4:before {
    left: 0;
    width: 2px;
  }
  .timeline-block {
    width: 100%;
    margin-bottom: 30px;
    text-align: left;
  }
  .timeline-block .ico-edu,
  .timeline-block .ico-work {
    float: left;
  }
  .timeline-content h3 {
    margin-right: 0px;
  }
  .timeline-content span {
    display: block;
    margin-right: 0px;
  }
  .timeline-content p {
    margin-right: 0px;
  }
  .timeline-block-right {
    float: none;
  }
  .timeline-block-right .marker {
    left: 3%;
  }
  .timeline-block-left {
    float: none;
  }
  .timeline-block-left .marker {
    left: 3%;
  }
}
.container3 {
  padding: 30px;
}
@media (min-width: 768px) {
  .container3 {
    padding: 50px;
  }
}

.container3 .avatar {
  text-align: center;
  margin: auto;
}

.container3 .avatar img {
  width: 120px;
  aspect-ratio: 1;
  border-radius: 50%;
  object-fit: cover;
}

.container3 .username {
  grid-column: span 2;
  margin-block-start: 0.75rem;
  margin-block-end: 2rem;
  color: #fff;
}

.container3 .username h3 {
  text-align: center;
}

.container3 .button {
  width: 120px;
  background-color: transparent;
  color: black;
  border: 1.5px solid #fff;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 0.5rem;
  padding: 5px 10px;
  border-radius: 5px;
  cursor: pointer;
  transition: color 0.3s, background-color 0.8s;
}

.container3 .button:hover {
  color: #1d1e22;
  background-color: #fff;
}

.page {
  position: fixed;
  inset: 0;
  overflow-y: auto;
  transform: translateY(100vh);
  transition: transform 0.3s;
  background-color: var(--bg-color);
  color: var(--text-color);
  z-index: 220;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.page__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 5vw;
  background-color: #fff;
  font-weight: bold;
  box-shadow: 0px 5px 5px 0px #e5e5e5;
}

.page__title {
  font-size: 1.5rem;
}

.page__close {
  display: flex;
  cursor: pointer;
  font-size: 2em;
  position: fixed;
  right: 50px;
  top: 100px;
  z-index: 100;
}

@media (max-width: 900px) {
  .page__close {
    top: 80px;
    right: 15px;
  }
}
.close_bottom {
  position: fixed;
  display: none;
  top: 20px;
  right: 23px;
  font-weight: 500;
  border: 2px solid var(--text-color);
  background: var(--bg-color);
  padding: 10px;
  z-index: 2000;
}
.close_bottom:hover {
  cursor: pointer;
}
@media (min-width: 768px) {
  .close_bottom {
    top: 30px;
    right: 50px;
  }
}

.page__body {
  padding: 2rem 5vw;
  overflow-y: auto;
}

.page--active {
  transform: scale(1);
  opacity: 1;
}

.close--active {
  transform: scale(1);
  opacity: 1;
}

h4 {
  margin-block: 10px;
}

p {
  margin-block: 15px;
}

.container {
  text-align: center;
  margin: auto;
  width: 200px;
  height: 200px;
}

.container div {
  position: absolute;
}

.container .owl {
  margin-left: 60px;
  width: 80px;
  margin-top: 38px;
  height: 160px;
}
@media (min-width: 768px) {
  .container .owl {
    margin-left: 90px;
  }
}
@media (min-width: 1200px) {
  .container .owl {
    margin-top: 148px;
  }
}

.owl_box .branch {
  margin-left: -235px;
  width: 800px;
  margin-top: -200px;
  z-index: -1;
  position: absolute;
}
@media (min-width: 768px) {
  .owl_box .branch {
    margin-top: -190px;
  }
}
@media (min-width: 1200px) {
  .owl_box {
    padding-top: 0px;
  }
  .owl_box .branch {
    margin-top: -90px;
  }
}
@media (min-width: 1200px) and (min-width: 1440px) {
  .owl_box {
    padding-top: 20%;
  }
  .owl_box .branch {
    width: 800px;
    margin-right: -250px;
  }
}

.moon {
  position: absolute;
  z-index: -10;
  width: 100px;
  height: 100px;
  background: white;
  border-radius: 100%;
  left: -256px;
  top: -125px;
  -moz-transition: top, left 0.5s ease;
  -o-transition: top, left 0.5s ease;
  -webkit-transition: top, left 0.5s ease;
  box-shadow: var(--box-shadow);
}
@media (max-width: 1200px) {
  .moon {
    left: 305px;
    top: -45px;
  }
}
@media (max-width: 800px) {
  .moon {
    left: 192px;
    top: -40px;
    width: 75px;
    height: 75px;
  }
}

.container .owl .head {
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  width: 84px;
  height: 72px;
  background: #999999;
  -moz-border-radius: 100px;
  -webkit-border-radius: 100px;
  border-radius: 100px;
  top: 40px;
  left: 0px;
}

.forwards {
  -moz-transition: all 1s ease;
  -o-transition: all 1s ease;
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
  -webkit-animation-fill-mode: forwards !important;
  animation: head 1s;
  animation-delay: 1s;
  top: 40px;
  left: 0px;
}

@keyframes head {
  to {
    top: 18px;
    left: -3px;
  }
}
.container .owl .head:before {
  content: "";
  position: absolute;
  width: 40px;
  height: 40px;
  -moz-border-radius: 100%;
  -webkit-border-radius: 100%;
  border-radius: 100%;
  top: 18px;
  background: var(--background);
  left: 8px;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  filter: var(--filter);
}

.container .owl .head:after {
  content: "";
  position: absolute;
  width: 40px;
  height: 40px;
  -moz-border-radius: 100%;
  -webkit-border-radius: 100%;
  border-radius: 100%;
  top: 18px;
  background: var(--background);
  left: 36px;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  filter: var(--filter);
}

.container .owl .head .eyes.left {
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  height: var(--height);
  width: var(--width);
  background: #534f4d;
  content: "";
  position: absolute;
  -moz-border-radius: 100%;
  -webkit-border-radius: 100%;
  border-radius: 100%;
  left: var(--left);
  top: var(--top);
  z-index: 10;
}

.container .owl .head .eyes.right {
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  height: var(--height);
  width: var(--width);
  background: #444;
  content: "";
  position: absolute;
  -moz-border-radius: 100%;
  -webkit-border-radius: 100%;
  border-radius: 100%;
  left: var(--left);
  top: var(--top);
  z-index: 10;
}

.container .owl .head .feathers {
  position: absolute;
  width: 120px;
  height: 30px;
  z-index: 10;
  top: 0px;
  left: 30px;
}

.container .owl .head .feathers:before,
.container .owl .head .feathers:after {
  position: absolute;
  content: "";
  left: 12px;
  top: -20px;
  width: 12px;
  height: 44px;
  background: #534f4d;
  border-radius: 100%;
  transform: rotate(-60deg);
  transform-origin: 0 100%;
}

.container .owl .head .feathers:after {
  left: 0px;
  transform: rotate(60deg);
  transform-origin: 100% 100%;
}

.container .owl .look-left.head {
  left: -15px;
}

.container .owl .look-right.head {
  left: 10px;
}

.container .owl .look-down.head {
  top: 40px;
  left: 0px;
}

.container .owl .look-up.head {
  top: 10px;
  left: 0px;
}

.container .owl .look-down-right.head {
  top: 40px;
  left: 25px;
}

.container .owl .look-up-right.head {
  top: 0px;
  left: 15px;
}

.container .owl .look-down-left.head {
  top: 40px;
  left: -25px;
}

.container .owl .look-up-left.head {
  top: 0px;
  left: -25px;
}

.beak {
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 12px solid rgb(235, 129, 7);
  border-radius: 50%;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  position: absolute;
  left: 34px;
  top: 40px;
  z-index: 1;
}

.container .owl .body {
  display: block;
  width: 80px;
  top: 50px;
  height: 110px;
  background-color: #999999;
  border-radius: 50% 50% 50% 50%/60% 60% 40% 40%;
}

.container .owl .body:after {
  display: block;
  position: absolute;
  content: "";
  width: 60px;
  top: 20px;
  left: 11px;
  height: 70px;
  background-color: #ccc;
  border-radius: 50% 50% 50% 50%/80% 80% 40% 40%;
}

.container .owl .wingleft {
  content: "";
  position: absolute;
  width: 80px;
  height: 20px;
  -moz-border-radius: 0 50%/0 100%;
  -webkit-border-radius: 0 50%/0 100%;
  border-radius: 0 50%/0 100%;
  background: #534f4d;
  border: 3px solid #534f4d;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  left: -40px;
  top: 90px;
  transform: rotate(90deg);
}

.container .owl .wingright {
  content: "";
  position: absolute;
  width: 20px;
  height: 80px;
  -moz-border-radius: 0 100%/0 50%;
  -webkit-border-radius: 0 100%/0 50%;
  border-radius: 0 100%/0 50%;
  background: #534f4d;
  border: 3px solid #534f4d;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  left: 65px;
  top: 62px;
}

.container .owl .wingleft.look-left {
  left: -20px;
  top: 100px;
  transform: rotate(85deg);
  transform-origin: top;
}

.container .owl .wingleft.look-right {
  left: -20px;
  top: 100px;
  transform: rotate(85deg);
  transform-origin: top;
}

.container .owl .wingleft.look-down {
  left: -20px;
  top: 100px;
  transform: rotate(90deg);
  transform-origin: top;
}

.container .owl .wingleft.look-up {
  left: -30px;
  top: 110px;
  transform: rotate(100deg);
  transform-origin: top;
}

.container .owl .wingright.look-left {
  left: 60px;
  top: 60px;
  transform: rotate(5deg);
}

.container .owl .wingright.look-right {
  left: 60px;
  top: 60px;
  transform: rotate(5deg);
}

.container .owl .wingright.look-down {
  left: 60px;
  top: 60px;
  transform: rotate(0deg);
}

.container .owl .wingright.look-up {
  left: 70px;
  top: 65px;
  transform: rotate(-10deg);
}

.container .owl .tail {
  display: block;
  width: 35px;
  height: 80px;
  background-color: #ccc;
  border-radius: 50% 50% 50% 50%/0% 0% 80% 80%;
  top: 120px;
  left: 22px;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  position: absolute;
  z-index: -1;
}

.container .owl .tail.look-left {
  left: 30px;
  transform: rotate(-15deg);
}

.container .owl .tail.look-right {
  left: 12px;
  transform: rotate(15deg);
}

.container .owl .tail.look-down {
  border-radius: 100% 100% 100% 100%/40% 40% 80% 80%;
  top: 100px;
}

.container .owl .pawslf {
  position: absolute;
  top: 95%;
  left: 20px;
  height: 18px;
  width: 8px;
  border-radius: 30px;
  background-color: rgb(235, 129, 7);
}

.container .owl .pawslf:before {
  position: absolute;
  content: "";
  left: 9px;
  height: 18px;
  width: 8px;
  border-radius: 30px;
  background-color: rgb(235, 129, 7);
}

.container .owl .pawsrt {
  position: absolute;
  top: 95%;
  left: 45px;
  height: 18px;
  width: 8px;
  border-radius: 30px;
  background-color: rgb(235, 129, 7);
}

.container .owl .pawsrt:before {
  position: absolute;
  content: "";
  left: 9px;
  height: 18px;
  width: 8px;
  border-radius: 30px;
  background-color: rgb(235, 129, 7);
}

/* Basic Card */
.basic-card {
  position: relative;
  background: var(--bg-color);
  box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.28);
}

.basic-card .card-content {
  padding: 30px;
}

.basic-card .card-title {
  font-size: 25px;
}

.basic-card .card-text {
  line-height: 1.6;
}

.basic-card ul li {
  color: var(--text-color);
  margin: 10px;
}

.basic-card .card-link {
  padding: 25px;
  width: -webkit-fill-available;
}

.basic-card .card-link a,
.basic-card .card-link .button {
  text-decoration: none;
  position: relative;
  padding: 10px 0px;
}

.basic-card .card-link a:after,
.basic-card .card-link .button:after {
  top: 30px;
  -webkit-transition: width 0.3s ease 0s, left 0.3s ease 0s;
  -moz-transition: width 0.3s ease 0s, left 0.3s ease 0s;
  -o-transition: width 0.3s ease 0s, left 0.3s ease 0s;
  transition: width 0.3s ease 0s, left 0.3s ease 0s;
}
@media (min-width: 768px) {
  .basic-card .card-link a:after,
  .basic-card .card-link .button:after {
    top: 30px;
    content: "";
    display: block;
    height: 2px;
    left: 50%;
    position: absolute;
    width: 0;
  }
}

.basic-card .card-link a:hover:after,
.basic-card .card-link .button:hover:after {
  width: 100%;
  left: 0;
}

.basic-card-light .card-link a {
  color: var(--text-color);
}

.basic-card-light .card-link {
  border-top: 1px solid #eee;
}

.basic-card-light .card-link a:after {
  background: #8a2be2;
}

.info {
  background: DarkGray;
  box-shadow: 0 0 1px rgba(169, 169, 169, 0.25);
  color: #fff;
}

.alert {
  background: DarkRed;
  box-shadow: 0 0 1px rgba(139, 0, 0, 0.25);
  color: #fff;
}

.success {
  background: DarkGreen;
  box-shadow: 0 0 1px rgba(0, 100, 0, 0.25);
  color: #fff;
}

[data-theme=dark] {
  --bg-color: #263238;
  --text-color: #e0e0e0;
}
[data-theme=dark] .eyes.left {
  --width: 20px;
  --height: 20px;
  --top: 27px;
  --left: 17px;
}
[data-theme=dark] .eyes.right {
  --width: 20px;
  --height: 20px;
  --top: 27px;
  --left: 47px;
}
[data-theme=dark] .head:before,
[data-theme=dark] .head:after {
  --background: rgb(246, 246, 2);
  --filter: drop-shadow(0 0 0.75rem rgb(255, 242, 0));
}
[data-theme=dark] .moon {
  --box-shadow: 0 0 60px 20px #fff,
    /* inner white */
    0 0 100px 30px #f0f,
    /* middle magenta */
    0 0 80px 30px #0ff;
}
@media (max-width: 600px) {
  [data-theme=dark] .moon {
    --box-shadow: 0 0 50px 10px #fff,
      /* inner white */
      0 0 90px 30px #f0f,
      /* middle magenta */
      0 0 90px 40px #0ff;
    /* outer cyan */
  }
}
[data-theme=dark] .back-menu {
  --bg-color: #263238;
}
@media (min-width: 768px) {
  [data-theme=dark] .back-menu {
    --bg-color: rgba(38, 50, 56, 0.8);
  }
}
[data-theme=dark] .top-bar {
  --bg-color: #263238 ;
}
[data-theme=dark] .home a {
  --background-color: #bdbdbd;
  --border: 5px solid darkgray;
}
[data-theme=dark] .home a svg {
  --fill: #263238;
}
[data-theme=dark] nav a {
  --text-color: #a573ff;
}
[data-theme=dark] .mockup--desktop {
  --bg-color:#1c2427;
}
[data-theme=dark] .back {
  --bg-color:#1c2427;
}
[data-theme=dark] #about .profile .box, [data-theme=dark] .basic-card {
  --bg-color:#263238;
  --text-color:#e0e0e0 ;
}
[data-theme=dark] .right-container {
  --bg-color: #263238 ;
}
[data-theme=dark] #about .profile .box .title, [data-theme=dark] .basic-card-light .card-title, [data-theme=dark] .basic-card ul li {
  --text-color:#fff ;
}
[data-theme=dark] .left-container, [data-theme=dark] .right-container #submit {
  --bg-color:#a573ff;
}
[data-theme=dark] .right-container form p, [data-theme=dark] .basic-card-light .card-link a {
  --text-color:#a573ff;
}
[data-theme=dark] .item i {
  --text-color:#a573ff;
}
[data-theme=dark] .material-btn {
  --bg-color:#263238;
}
[data-theme=dark] .page {
  --text-color:#eff2f5;
  --bg-color:#1d1e22;
}
[data-theme=dark] .timeline-content {
  --text-color:#fff;
}
[data-theme=dark] .timeline-content span {
  --text-color:#eff2f;
}
[data-theme=dark] .ico-edu,
[data-theme=dark] .ico-work {
  --filter:brightness(5);
}
[data-theme=dark] .close_bottom {
  --text-color:#eff2f5;
  --bg-color: rgba(38, 50, 56, 0.8);
}
[data-theme=dark] .quote {
  --text-color:#eff2f5;
}
[data-theme=dark] .mouse {
  --bg-color:#e0e0e0;
}
[data-theme=dark] .mouse::before {
  --bg-color: #e0e0e0 ;
}

.top-bar {
  --bg-color: #fff;
}

.back-menu {
  --bg-color: #fff;
}
@media (min-width: 768px) {
  .back-menu {
    --bg-color: rgba(255, 255, 255, .8) ;
  }
}

.head:before,
.head:after {
  --background: #fff;
}

.eyes.left {
  --width: 10px;
  --height: 10px;
  --top: 30px;
  --left: 22px;
}

.eyes.right {
  --width: 10px;
  --height: 10px;
  --top: 30px;
  --left: 50px;
}

.home a {
  --background-color: rgba(255, 255, 255, .9);
  --border: 5px solid darkgray;
}
.home a svg {
  --fill: #bdbdbd;
}

nav a {
  --text-color: #8a2be2;
}

.mockup--desktop {
  --bg-color:#eff2f5;
}

.back {
  --bg-color:#eff2f5;
}

#about .profile .box, .basic-card {
  --bg-color:#fff;
  --text-color:dimgray ;
}

.right-container {
  --bg-color:#fff;
}

#about .profile .box .title, .basic-card-light .card-title, .basic-card ul li {
  --text-color:#3a3a3a ;
}

.left-container, .right-container #submit {
  --bg-color:#8a2be2 ;
}

.right-container form p, .basic-card-light .card-link a {
  --text-color:#8a2be2 ;
}

.item i {
  --text-color:#8a2be2;
}

.material-btn {
  --bg-color:#fff;
}

.page {
  --bg-color:#eff2f5;
  --text-color:#1d1e22 ;
}

.timeline-content {
  --text-color:#3a3a3a;
}

.timeline-content span {
  --text-color:#a4a4a4;
}

.ico-edu,
.ico-work {
  --filter:brightness(1);
}

.close_bottom {
  --text-color:#3a3a3a;
  --bg-color:rgba(255, 255, 255, .9);
}

.quote {
  --text-color:#3a3a3a;
}

.mouse {
  --bg-color:darkgray;
}
.mouse::before {
  --bg-color: darkgray ;
}

#myVideo {
  position: fixed;
  right: 0;
  min-width: 100%;
  min-height: 100%;
  z-index: -10;
}

.glass {
  background: radial-gradient(rgba(255, 255, 255, 0.1333333333) 30%, rgba(255, 255, 255, 0.2666666667));
  border-radius: 10px;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.4666666667), -1px -1px 2px #fff, 1px 1px 2px #555;
  backdrop-filter: blur(2px);
  width: 80vw;
  height: 50vh;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  position: absolute;
  margin-top: 15vh;
  margin-left: 10vw;
}
@media (min-width: 768px) {
  .glass {
    border-radius: 100%;
    backdrop-filter: blur(5px);
    margin-left: calc((100% - 500px) / 2);
    margin-top: calc((100vh - 500px) / 2);
    width: 500px;
    height: 500px;
  }
}

.shine {
  width: 5%;
  height: 150%;
  position: absolute;
  transform: rotate(45deg);
  background: rgba(255, 255, 255, 0.3333333333);
  animation: shine 20s infinite linear;
  right: 200%;
  filter: blur(15px);
}

@keyframes shine {
  5% {
    transform: translate(1400px) rotate(35deg);
  }
  5.000001% {
    transform: rotate(45deg);
  }
}
.seal {
  background-image: url("../images/login/seal.png");
  display: block;
  width: 83px;
  height: 83px;
  background-size: 83px;
  background-repeat: no-repeat;
  margin: 10px auto;
  margin-top: -30px;
  border-radius: 100%;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.47), -1px -1px 2px #fff, 1px 1px 2px #555;
}

form input[type=password]#password, form input[type=text]#password {
  text-align: center;
}
form input[type=password],
form input[type=text] {
  background-color: white;
  height: 40px;
  width: 200px;
  line-height: 40px;
  padding: 0;
}
form input[type=button] {
  background-color: #8a2be2;
}
form .mdl-textfield {
  width: auto;
}
form .mdl-textfield__label {
  padding: 10px 0 10px 0;
}

.material-icons {
  color: #8a2be2 !important;
}

.mdl-textfield__input {
  border: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  display: block;
  font-size: 16px;
  margin: 0;
  padding: 4px 0;
  width: 100%;
  background: 0 0;
  text-align: left;
  color: inherit;
}

.mdl-textfield--floating-label .mdl-textfield__label {
  transition-duration: 0.2s;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

.mdl-textfield__label {
  bottom: 0;
  color: rgba(0, 0, 0, 0.26);
  font-size: 16px;
  left: 0;
  right: 0;
  pointer-events: none;
  position: absolute;
  display: block;
  top: 24px;
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  text-align: left;
}

span.field-icon {
  float: right;
  position: absolute;
  right: 5px;
  top: 28px;
  cursor: pointer;
  z-index: 2;
  color: #8a2be2;
}

.mdl-textfield {
  position: relative;
  font-size: 16px;
  box-sizing: border-box;
  width: 300px;
  max-width: 100%;
  margin: 0;
  padding: 20px 0;
}

.mdl-button--raised.mdl-button--colored {
  background: #8a2be2;
  color: #fff;
  letter-spacing: 2px;
}

.mdl-button--raised {
  background: rgba(158, 158, 158, 0.2);
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
}

.mdl-button {
  background: 0 0;
  border: none;
  border-radius: 2px;
  color: #000;
  position: relative;
  height: 40px;
  margin: 0;
  min-width: 200px;
  padding: 0 16px;
  display: inline-block;
  font-family: "Roboto", "Helvetica", "Arial", sans-serif;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0;
  overflow: hidden;
  will-change: box-shadow;
  transition: box-shadow 0.2s cubic-bezier(0.4, 0, 1, 1), background-color 0.2s cubic-bezier(0.4, 0, 0.2, 1), color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  outline: none;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  line-height: 36px;
  vertical-align: middle;
}

a,
.mdl-accordion,
.mdl-button,
.mdl-card,
.mdl-checkbox,
.mdl-dropdown-menu,
.mdl-icon-toggle,
.mdl-item,
.mdl-radio,
.mdl-slider,
.mdl-switch,
.mdl-tabs__tab {
  -webkit-tap-highlight-color: transparent;
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
}

.mdl-textfield--floating-label.is-focused .mdl-textfield__label,
.mdl-textfield--floating-label.is-dirty .mdl-textfield__label,
.mdl-textfield--floating-label.has-placeholder .mdl-textfield__label {
  color: #8a2be2;
  font-size: 12px;
  top: -4px;
  visibility: visible;
}

.mdl-textfield__label:after {
  background-color: #8a2be2;
  bottom: 20px;
  content: "";
  height: 2px;
  left: 45%;
  position: absolute;
  transition-duration: 0.2s;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  visibility: hidden;
  width: 10px;
}

.mdl-textfield.is-focused .mdl-textfield__label:after {
  left: 0;
  visibility: visible;
  width: 100%;
}

.mdl-textfield.is-invalid .mdl-textfield__label:after {
  background-color: #d50000;
}

input:focus-visible {
  outline-offset: 0px;
}

.mdl-textfield.is-focused .mdl-textfield__input {
  outline: none;
}

input[type=password i] {
  -webkit-text-security: disc !important;
  padding: 1px 2px;
}

body {
  color: var(--text-color);
  background-color: var(--bg-color);
  font-family: "Roboto", sans-serif;
  overflow-x: hidden;
  font-size: 1em;
}

.overflow_hidden {
  overflow: hidden;
}

.top-bar {
  height: 55px;
  width: 100%;
  display: block;
  box-shadow: none;
  position: fixed;
  top: 0;
  z-index: 220;
}

a,
a:hover {
  color: var(--text-color);
}

.shadow {
  box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.28);
  transition: all 0.5s ease-out;
  background: var(--bg-color);
}

.home {
  width: auto;
  z-index: 200;
  position: fixed;
  left: 40px;
  bottom: 70px;
}
@media (min-width: 768px) {
  .home {
    left: 45px;
    bottom: 75px;
    transition: all 0.3s ease-out;
  }
}
.home a {
  position: absolute;
  left: -40px;
  background-color: var(--background-color);
  border: var(--border);
  border-radius: 100%;
  width: 60px;
  height: 60px;
  font-size: 0;
}
.home a svg {
  width: 40px;
  height: 40px;
  fill: var(--fill);
  padding: 10px;
}

section {
  text-align: center;
  margin-left: 10px;
  margin-right: 10px;
  height: auto;
}
@media (min-width: 390px) {
  section {
    margin-bottom: 50px;
    margin: 0 50px;
    height: auto;
  }
}
@media (min-width: 1200px) {
  section {
    height: auto;
    margin: 0 100px;
  }
}
@media (min-width: 1440px) {
  section {
    margin: 0 200px;
  }
}

.back {
  background: var(--bg-color);
  height: auto;
}
@media (min-width: 768px) {
  .back {
    height: auto;
  }
}
@media (min-width: 1400px) {
  .back {
    height: 100vh;
  }
}

#home {
  margin-bottom: 75px;
}
@media (min-width: 768px) {
  #home {
    margin-bottom: 300px;
  }
}
@media (min-width: 1200px) {
  #home {
    margin-bottom: 200px;
  }
}
@media (min-width: 1440px) {
  #home {
    margin-bottom: 0px;
    height: 100vh;
  }
}
#home .text_box {
  padding-top: 120px;
}
#home .text_box .welcome {
  font-size: 2em;
  line-height: 1.5em;
  font-style: italic;
}
#home .text_box .quote {
  margin-top: 30px;
  font-size: 1.2em;
  line-height: 1.5em;
  text-align: left;
  color: var(--text-color);
  text-align: center;
}
@media (min-width: 768px) {
  #home .text_box {
    padding-top: 20%;
  }
  #home .text_box .welcome {
    font-size: 2.5em;
    line-height: 1.5em;
    font-style: italic;
    text-align: left;
  }
  #home .text_box .quote {
    font-size: 1.5em;
    margin-left: 0px;
    text-align: left;
  }
}
@media (min-width: 1440px) {
  #home .text_box .welcome {
    font-size: 3em;
    line-height: 1.5em;
  }
  #home .text_box .quote {
    font-size: 1.5em;
    margin-left: 0px;
  }
}
@media (min-width: 1200px) {
  #home .text_box {
    padding-top: 40%;
  }
}
@media (min-width: 1440px) {
  #home .text_box {
    padding-top: 50%;
  }
}

#work {
  margin: 0 !important;
  height: auto;
  padding-bottom: 50px;
  background: #000;
}
@media (min-width: 768px) {
  #work {
    height: 100vh;
    background: #fff;
  }
}
#work iframe {
  height: 100%;
  height: 100vh;
}
@media (min-width: 768px) {
  #work iframe {
    height: 100vh;
    width: 100%;
    margin-top: 0;
  }
}

#more {
  margin: 0;
  margin-bottom: 50px;
}
@media (min-width: 768px) {
  #more {
    height: auto;
    margin: 0 20%;
  }
}
@media (min-width: 1200px) {
  #more {
    margin: 100px;
    padding-bottom: 100px;
    height: auto;
  }
}
@media (min-width: 1400px) {
  #more {
    margin: 100px 200px;
  }
}

.gallery-ext01.mockup--desktop {
  display: block;
  width: 80%;
  margin: 5% auto;
  background-color: transparent;
}

.gallery-ext01.mockup--desktop .ufo-mockup--scroller {
  margin-top: 18%;
}
@media (min-width: 1400px) {
  .gallery-ext01.mockup--desktop .ufo-mockup--scroller {
    margin-top: 100px;
  }
}

.mockup--desktop {
  display: inline-block;
  position: relative;
  background-color: var(--bg-color);
  border-radius: 5px;
  padding: 20px;
}

.ufo-mockup--display::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -51%);
  background-image: url(../images/base/mockup_desktop_shadow.svg);
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
}

.ufo-mockup--display {
  display: inline-block;
  position: relative;
  width: 100%;
}

.ufo-mockup--screen {
  width: 75.2%;
  height: 82%;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  margin-top: 34px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 1400px) {
  .ufo-mockup--screen {
    margin-top: 68px;
  }
}

.ufo-mockup--scroller {
  overflow: auto;
  position: relative;
  height: calc(100% - 25px);
  width: calc(100% - 1px);
  border-radius: 10px;
}

.ufo-mockup--frame {
  position: relative;
  pointer-events: none;
  width: 100%;
  height: auto;
}

.image img {
  margin-left: 4%;
}

.image.ns img {
  margin-left: 0px;
}

.image:hover {
  cursor: pointer;
}

#about {
  padding-top: 50px;
  height: auto;
  padding-bottom: 50px;
}
#about i {
  margin-right: 10px;
}
@media (min-width: 768px) {
  #about {
    padding-top: 50px;
    height: auto;
    padding-bottom: 0px;
  }
}
@media (min-width: 1200px) {
  #about {
    padding-bottom: 150px;
  }
}
@media (min-width: 1400px) {
  #about {
    padding-top: 150px;
    height: 100vh;
  }
}
#about .profile .box {
  line-height: 1.5em;
  text-align: left;
  display: block;
  padding: 30px;
  background: var(--bg-color);
  color: var(--text-color);
  box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.28);
}
@media (min-width: 768px) {
  #about .profile .box {
    text-align: justify;
  }
}
#about .profile .box .title {
  color: var(--text-color);
  font-size: 25px;
  padding: 20px 0;
}
#about .profile em {
  font-style: italic;
}
#about .profile .emoji {
  width: 25px;
  float: right;
  margin-top: -50px;
}

#contact {
  margin: 0;
  height: auto;
}
@media (min-width: 768px) {
  #contact {
    margin: 0 50px;
  }
}
@media (min-width: 1200px) {
  #contact {
    margin-top: 0px;
  }
}
@media (min-width: 1440px) {
  #contact {
    height: 100vh;
    margin: 0px 200px;
  }
}
#contact h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}
#contact .form-container {
  height: auto;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding-top: 50px;
  padding-bottom: 50px;
}
@media (min-width: 1240px) {
  #contact .form-container {
    margin-bottom: 100px;
    padding-top: 35px;
    filter: drop-shadow(0px 2px 5px rgba(0, 0, 0, 0.28));
  }
}
@media (min-width: 1440px) {
  #contact .form-container {
    padding-top: 150px;
  }
}
#contact .left-container {
  color: #ffffff;
  background-color: var(--bg-color);
}
@media (min-width: 1200px) {
  #contact .left-container {
    border-radius: 10px 0 0 10px;
    height: 90vh;
  }
}
@media (min-width: 1440px) {
  #contact .left-container {
    height: 70vh;
  }
}
#contact .left-container img {
  border-radius: 10px;
  width: 120px;
  height: 120px;
  margin-top: -70px;
  margin-bottom: 50px;
}
@media (min-width: 1200px) {
  #contact .left-container img {
    border-radius: 10px;
    width: 120px;
    height: 120px;
    float: right;
    margin-right: 70px;
    margin-top: 0;
  }
}
#contact .right-container {
  background-color: var(--bg-color);
}
@media (min-width: 1200px) {
  #contact .right-container {
    border-radius: 0 10px 10px 0;
    height: 90vh;
  }
}
@media (min-width: 1440px) {
  #contact .right-container {
    height: 70vh;
  }
}
#contact .left-container p {
  text-align: center;
}
#contact .right-inner-container {
  margin: 0 auto;
  width: 80%;
  height: 80%;
  padding-top: 50px;
  padding-bottom: 50px;
}
#contact .left-inner-container {
  margin: 0 auto;
  height: 50%;
  width: 80%;
  padding-top: 50px;
  padding-bottom: 50px;
  line-height: 22px;
}
#contact label {
  display: none;
}
#contact textarea {
  resize: none;
}
#contact input,
#contact textarea {
  background-color: #eff2f5;
  border: none;
  padding: 12px 15px;
  margin: 8px 0;
  width: 80%;
  font-family: "Roboto", sans-serif;
}
#contact input:focus,
#contact textarea:focus {
  outline: 1px solid #8a2be2;
}
#contact #submit {
  border-radius: 5px;
  border: 1px solid var(--bg-color);
  background-color: var(--bg-color);
  color: #FFFFFF;
  font-weight: bold;
  padding: 12px 45px;
  letter-spacing: 1px;
  transition: transform 80ms ease-in;
  cursor: pointer;
  margin-top: 20px;
  width: auto;
}
#contact #submit:hover {
  opacity: 0.7;
}
#contact form p {
  text-align: left;
  color: var(--text-color);
}
@media (min-width: 768px) {
  #contact form p {
    width: 80%;
    margin: auto;
  }
}
#contact .legal {
  height: 80px;
  font-size: 12px;
  text-align: center;
  width: 60%;
  margin-left: 20%;
  display: block;
  line-height: 16px;
}
@media (min-width: 768px) {
  #contact .legal {
    height: 5vh;
    margin-top: 16vh;
    font-size: 16px;
    margin-left: 0;
    width: 100%;
  }
}
#contact .contact-me {
  width: 80%;
  margin-left: 10%;
}

.item {
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
}

.item i {
  float: left;
  display: block;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  font-size: 34px;
  width: 60px;
  height: 60px;
  line-height: 60px;
  background: #ffffff;
  color: var(--text-color);
  transform: translate(0%, 0%) scale(0.5);
  transition: transform 300ms 100ms cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.item * {
  transition: all 0.35s ease-in-out;
}

.item:hover i {
  transform: translate(0%, 0%) scale(0.8);
  transition: transform 300ms 100ms cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.item a {
  float: left;
  height: 60px;
  display: flex;
  color: #ffffff;
  margin-left: 20px;
  text-decoration: none;
  justify-content: space-around;
  flex-direction: column;
}

.item a:hover {
  cursor: pointer;
}

.item a:after {
  margin-top: -40px;
  content: "";
  background: #ffffff;
  display: block;
  height: 2px;
  left: 50%;
  width: 0;
  -webkit-transition: width 0.3s ease 0s, left 0.3s ease 0s;
  -moz-transition: width 0.3s ease 0s, left 0.3s ease 0s;
  -o-transition: width 0.3s ease 0s, left 0.3s ease 0s;
  transition: width 0.3s ease 0s, left 0.3s ease 0s;
}

.item a:hover:after {
  width: 100%;
  left: 0;
}

.thanks {
  display: flex;
  justify-content: center;
  height: 100vh;
  align-items: center;
}
.thanks img {
  width: auto;
  height: 50vh;
}

#Changer {
  height: 5px;
  width: 0;
  transition: 0.1s linear;
  margin-bottom: 40px;
}

.pad {
  left: 0;
  position: absolute;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.5);
}
@media (min-width: 768px) {
  .pad {
    width: 50%;
    height: 90vh;
    margin-left: 25%;
  }
}

.pad:hover {
  cursor: pointer;
}

.inter {
  position: absolute;
  color: #fff;
  font-size: 2em;
  text-align: center;
  transform: translateY(60%);
  width: 100%;
  height: 100vh;
  opacity: 0.5;
  pointer-events: none;
}

.inner {
  border: 3px solid #fff;
  padding: 10px;
  width: 200px;
  margin-left: calc((100% - 230px) / 2);
  height: auto;
  text-align: center;
}

a.pad + .inter {
  display: block;
}
@media (min-width: 768px) {
  a.pad + .inter {
    display: none;
  }
}

a.pad:hover + .inter {
  display: block;
}

.pad:hover:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  display: block;
  transform-origin: center;
  border: 0 solid #fff;
  border-radius: 100%;
  -webkit-animation-name: tapAnime;
  -webkit-animation-duration: 0.5s;
  -webkit-animation-timing-function: linear;
  -webkit-animation-iteration-count: 1;
}

@-webkit-keyframes tapAnime {
  0% {
    width: 0;
    height: 0;
    border-width: 1px;
    border-radius: 1px;
  }
  50% {
    width: 0;
    height: 0;
    margin: -20px 0 0 -20px;
    border-width: 20px;
    border-radius: 20px;
  }
  100% {
    width: 80px;
    height: 80px;
    margin: -40px 0 0 -40px;
    border-width: 0;
    border-radius: 80px;
  }
}
.social .fa {
  font-size: 1.5em;
}

.top-hide {
  top: -100px;
}

.box_animation {
  position: fixed;
  bottom: 2px;
  width: 100%;
  left: 0;
  z-index: -1;
  text-align: center;
}
@media (min-width: 768px) {
  .box_animation {
    bottom: 10px;
  }
}

.field {
  display: flex;
  align-items: center;
  justify-content: space-around;
  justify-content: center;
}

.mouse {
  width: 30px;
  height: 55px;
  border: 3px solid var(--bg-color);
  border-radius: 30px;
  opacity: 0;
  position: relative;
  animation: mouse 2s;
  -webkit-animation: mouse 2s infinite;
  animation-delay: 3s;
}
.mouse::before {
  content: "";
  width: 12px;
  height: 12px;
  position: absolute;
  bottom: 0px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--bg-color);
  border-radius: 50%;
  opacity: 0;
  animation: wheel 2s;
  -webkit-animation: wheel 2s infinite;
  animation-delay: 3s;
}
@media (min-width: 768px) {
  .mouse::before {
    top: 0px;
  }
}

@keyframes wheel {
  to {
    opacity: 1;
    bottom: 35px;
  }
}
@-webkit-keyframes wheel {
  to {
    opacity: 1;
    bottom: 35px;
  }
}
@media (min-width: 768px) {
  @keyframes wheel {
    to {
      opacity: 1;
      top: 35px;
    }
  }
  @-webkit-keyframes wheel {
    to {
      opacity: 1;
      top: 35px;
    }
  }
}
@keyframes mouse {
  to {
    opacity: 1;
  }
}
@-webkit-keyframes mouse {
  to {
    opacity: 1;
  }
}
.hi {
  font-size: 5em;
  font-weight: 700;
  line-height: 1.5em;
  text-align: center;
  padding: 0 50px;
  font-family: "Caveat", cursive;
}
@media (min-width: 768px) {
  .hi {
    font-size: 6em;
    text-align: left;
    padding: 0 100px;
  }
}
@media (min-width: 1440px) {
  .hi {
    padding: 0 200px;
  }
}

.intro {
  font-size: 1.3em;
  line-height: 1.5em;
  padding: 0 50px;
  text-align: justify;
}
@media (min-width: 768px) {
  .intro {
    font-size: 1.5em;
    padding: 0 100px;
  }
}
@media (min-width: 1440px) {
  .intro {
    padding: 0 200px;
  }
}

.img00 {
  height: 100%;
  display: none;
}
@media (min-width: 768px) {
  .img00 {
    display: block;
  }
}

.img01 {
  width: 100%;
  display: block;
}
@media (min-width: 768px) {
  .img01 {
    display: none;
  }
}

.img02 {
  width: 100%;
  display: none;
}
@media (min-width: 768px) {
  .img02 {
    display: block;
    width: 100vw;
  }
}

.img03 {
  height: 100%;
  display: block;
}
@media (min-width: 768px) {
  .img03 {
    display: none;
  }
}

.img04 {
  width: 100%;
  display: none;
}
@media (min-width: 768px) {
  .img04 {
    display: block;
    width: 125vw;
  }
}

.img05 {
  width: 100%;
  display: none;
}
@media (min-width: 768px) {
  .img05 {
    display: none;
  }
}

.slide_hide {
  display: flex;
}
@media (min-width: 768px) {
  .slide_hide {
    display: none;
  }
}

@media (min-width: 1440px) {
  .sl_left {
    padding-top: 150px;
  }
}

#div-cookies {
  position: fixed;
  bottom: 0px;
  left: 0px;
  width: 100%;
  background-color: white;
  box-shadow: 0px -5px 15px gray;
  padding: 7px;
  text-align: center;
  z-index: 99; }

/*# sourceMappingURL=main.css.map */
