/* @import url('https://fonts.googleapis.com/css?family=Roboto&display=swap'); */

:root {
    --color-100: #ffffff;
    --color-200: #ececec;
    --color-300: #dddddd;
    --color-400: #d6d6d6;
    --color-500: #c4c5c5;
    --color-600: #9e9e9e;
    /* rgb(0, 0, 0, 0.65) */
    --color-700: #535353;
    --color-800: #4d4d4d;
    --color-900: #222222;

    --color-test-0: green;
    --color-test-1: red;

    /* top right bottom left */
    --main-page-padding: 3.125rem 6.25rem 3.125rem 6.25rem;

    --switch-circle-pos: 3rem;
    --default-transition: color .3s ease-in-out, background-color .3s ease-in-out,
     border-color .3s ease-in-out, fill .3s ease-in-out, transform .3s ease-in-out;
}

:root[data-theme="light"] {
    --page-bg: var(--color-100);
    --primary-text: var(--color-900);
    --muted-text: var(--color-700);
    --muted-text-hover: var(--color-900);

    /* --icon-sun: var(--color-100); */
    --icon-sun: var(--color-test-0);
    --icon-sun-position: 0;
    /* --icon-moon: var(--color-900); */
    --icon-moon: var(--color-test-1);
    --icon-moon-position: 5rem;

    --card-color: None;

    --m-color-scheme: light;
}

:root[data-theme="dark"] {
    --page-bg: var(--color-900);
    --primary-text: var(--color-100);
    --muted-text: var(--color-300);
    --muted-text-hover: var(--color-100);


    /* --icon-sun: var(--color-100); */
    --icon-sun: var(--color-test-1);
    --icon-sun-position: 5rem;
    /* --icon-moon: var(--color-900); */
    --icon-moon: var(--color-test-0);
    --icon-moon-position: 0;

    --card-color: invert(97%) sepia(97%) saturate(10%) hue-rotate(224deg) brightness(104%) contrast(103%);

    --m-color-scheme: dark;
}

body, html {
    overflow-x: hidden;
}

body {
    background-color: var(--page-bg);
    color: var(--primary-text);

    color-scheme: var(--m-color-scheme);
}

::-webkit-scrollbar {
    width: 0;
}

section {
    padding: var(--main-page-padding);
    height: 100vh;
    width: 100%;
}

.container {
    padding: 0;
    max-width: none;
    display: flex;
    height: 100%;
}

p {
    margin: 0;
}

.navbar {
    padding: var(--main-page-padding);
    user-select: none;

    .navbar-nav {
        color: var(--muted-text);
        align-items: center;
        padding: 0;
    }

    .navbar-nav a {
        font-family: "Ogg Light";
        font-size: 1.875rem;
        color: var(--muted-text);
    }

    .navbar-nav a:hover {
        color: var(--muted-text-hover) ;
    }

    .navbar-nav a.active {
        font-family: "Ogg Bold Italic";
        color: var(--muted-text-hover);
    }

}

.navbar-expand-lg .navbar-nav .nav-link {
    padding: 0;
}

.navbar-left {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    gap:  0.625rem;

}

.navbar-right {
    padding-left: 0.625rem;
    padding-right: 0.625rem;
    gap:  1.25rem;
}

.theme-switcher {
    content: '';
    height: 100%;
    line-height: 1.5rem;
    cursor: pointer;
    position: relative;
}

/* .theme-switcher::before {
    content: '';
    height: 100%;
    line-height: 1.5rem;
    cursor: pointer;
    position: absolute;
} */

/* #icon-sun {
    fill: var(--icon-sun);
    top: var(--icon-sun-position);

    #icon-sun::after {
        transform: translateX(var(--switch-circle-pos));
        transition: var(--default-transition);
        transform: perspective(50px);
        transform: scale(5rem);
    }

    #icon-sun::before {
        transform: translateX(var(--switch-circle-pos));
        transition: var(--default-transition);
        transform: perspective(50px) scale(5rem);
    }

} */

/* #icon-moon {
    fill: var(--icon-moon);
    top: var(--icon-moon-position);
    transition: var(--default-transition);
    transform: translateX(var(--switch-circle-pos));
} */

.home-container {
    justify-content: center;
    align-items: center;
}

.homel {
    word-wrap: break-word;
    font-size: 4rem;
    user-select: none;
    position: absolute;
}

.homel1 {
    font-family: Ogg Medium;
    letter-spacing: 6px;
    z-index: 100;
    /* animation: homel1 15s infinite cubic-bezier(1,-3,1,3); */
    left: -550px;
    top: -250px;
    /* transform: translateX(-550px) translateY(-250px); */
    animation: moveCloud 20s infinite cubic-bezier(0.42, 0, 0.58, 1);
}
/* .cloud-text {
    font-size: 48px;
    font-weight: bold;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
    position: absolute;

} */

@keyframes moveCloud {
    0% {
        transform: translate(0%, 0%);
    }
    20% {
        transform: translate(-1.2%, 1.2%);
    }
    40% {
        transform: translate(-2.4, 2.4%);
    }
    60% {
        transform: translate(-3.6%, 3.6%);
    }
    80% {
        transform: translate(-4.8%, 4.8%);
    }
    100% {
        transform: translate(-6%, 6%);
    }

}

.homel2 {
    font-family: Helvetica oblique;
    min-width: 20rem;
    z-index: 100;
    transform: translateX(300px) translateY(-250px);
}

.homel3 {
    font-family: Times New Roman;
    z-index: 100;
    min-width: 40rem;
    transform: translateX(-600px) translateY(140px);
}

.homel4 {
    font-family: Proxima Nova;
    z-index: 100;
    min-width: 40rem;
    transform: translateX(300px) translateY(140px);
}

.toast-success {
    background: var(--primary-text);
    color: var(--page-bg);
}


.card {
    object-fit: contain;
    position: relative;
    transition: transform 0.1s ease;
    transform-style: preserve-3d;
    border: 0px;
    height: 45%;
    width: 45%;
    z-index: 0;
    background-color: transparent;
    filter: var(--card-color);




    .card:hover .content {
        transform: translateZ(12px);
    }
}

.content {
    color: var(--primary-text);
    position: absolute;
    z-index: 1;
    transition: transform 0.3s ease;
}

.page-content {
    display: flex;
}

.column {
    padding-left: 8.125rem;
    padding-right: 8.125rem;
    align-self: center;
    width: 100%;
}

.label-frame {
    height: 18.75rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    align-content: space-between;
}

.about-text-title {
    font-size: 3rem;
    transform: translate(0, -20px);
    /* margin-bottom: 2em; */
}

.about-text {
    font-size: 1.75rem;
}

.line-container {
    position: relative;
    align-content: center;
}

.vertical-line {
    content: '';
    border-left: 1px solid var(--primary-text);
    /* border-right: 1px solid var(--primary-text); */
    /* position:absolute; */
    height: 48.75rem;
    right: 50%;
    /* z-index: 100; */
    /* translate: 0% -50%; */
    background-color: var(--primary-text);
}

/* section > .container {
    position: fixed;
    top: 50%;
    translate: 0% -50%;
    max-width: 100%;
    padding: 1rem;
    background-color: white;
} */

.videoframe {
    z-index: 0;
    width: 37.5rem;
    height: 18.75rem;
    text-align: center;
    align-content: center;
    background-color: var(--page-bg);
    margin: auto;
    position: relative;
    border: var(--primary-text) solid 2px;

    /* text-align: center;
    align-items: center;
    align-self: center;
    align-content: center;
    justify-content: center;
    justify-items: center;
    justify-self: center; */
    /* vertical-align: middle; */
}

.video-title {
    font-size: 3rem;
    position: absolute;
    z-index: 1;
    width: 100%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.video-background {
    position: absolute;
}


/* Report view */

  /* .wrapper,
  .content {
    position: relative;
    width: 100%;
    z-index: 1;
  }

  .content {
    overflow-x: hidden;
  }

  .content .section.hero {
    background-image: url(https://images.unsplash.com/photo-1589848315097-ba7b903cc1cc?q=80&w=2070&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
  }

  .image-container {
    width: 100%;
    height: 100vh;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 2;
    perspective: 500px;
    overflow: hidden;
  }

  .image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
  } */


.reports-frame {
    content: ' ';
    position: relative;
}

#report1, #report2, #report3 {
    position: absolute;
}

#report1 {
    z-index: 1000;
}
#report2 {
    transform: translateX(-1rem) translateY(-1rem);
    z-index: 900;
}
#report3 {
    z-index: 800;
    transform: translateX(-2rem) translateY(-2rem);
}

.contact-me {
    font-size: 10rem;
    font-family: Helvetica;
    font-weight: bold;
}

.mail-frame {
    display: block;
    flex-wrap: wrap;
    /* position: relative; */
    z-index: 0;
    width: 37.5rem;
    height: 30rem;
    text-align: center;
    align-content: center;
    margin: auto;

    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    align-content: space-between;
}

.social-icons {
    overflow: hidden;
    /* display: flex; */
    justify-content: space-between;
    flex-wrap: wrap;
    margin: 1rem;

}

.svg-item {
    filter: drop-shadow(0px 100px 0 var(--primary-text));
    transform: translateY(-100px);
}

/* .input-fields { */
    /* display: flexbox; */
    /* align-items: center;
    flex-wrap: wrap; */
/* } */

.input-field {
    background-color: var(--color-400);
    color: var(--color-700);
    font-size: 1.25rem;
    width: 100%;
    margin-bottom: 2rem;
    border-radius: 5px;
}

input[placeholder="Hey, let's work together!"] {
    height: 10rem;
}

/* .submit-btn { */
    /* border-radius: 5px;
    color: var(--page-bg);
    background-color: var(--muted-text);
} */


.submit-btn {
  background-color: #FFFFFF;
  border: 1px solid #222222;
  border-radius: 0.3rem;
  box-sizing: border-box;
  color: #222222;
  cursor: pointer;
  display: inline-block;
  /* font-family: Circular,-apple-system,BlinkMacSystemFont,Roboto,"Helvetica Neue",sans-serif; */
  font-size: 1rem;
  font-weight: 600;
  line-height: 20px;
  margin: 0;
  outline: none;
  padding: 13px 23px;
  position: relative;
  text-align: center;
  text-decoration: none;
  touch-action: manipulation;
  transition: box-shadow .2s,-ms-transform .1s,-webkit-transform .1s,transform .1s;
  user-select: none;
  -webkit-user-select: none;
  width: auto;
}

.submit-btn:focus-visible {
  box-shadow: #222222 0 0 0 2px, rgba(255, 255, 255, 0.8) 0 0 0 4px;
  transition: box-shadow .2s;
}

.submit-btn:active {
  background-color: var(--primary-text);
  border-color: var(--page-bg);
  transform: scale(.96);
}

.submit-btn:disabled {
  border-color: #DDDDDD;
  color: #DDDDDD;
  cursor: not-allowed;
  opacity: 1;
}

/* .submit-btn {
  appearance: none;
  background-color: transparent;
  border: 2px solid var(--primary-text);
  border-radius: 15px;
  box-sizing: border-box;
  color: var(--primary-text);
  cursor: pointer;
  display: inline-block;
  font-family: Roobert,-apple-system,BlinkMacSystemFont,"Segoe UI",Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";
  font-size: 16px;
  font-weight: 600;
  line-height: normal;
  margin: 0;
  min-height: 60px;
  min-width: 0;
  outline: none;
  padding: 16px 24px;
  text-align: center;
  text-decoration: none;
  transition: all 300ms cubic-bezier(.23, 1, 0.32, 1);
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  width: 100%;
  will-change: transform;
}

.submit-btn:disabled {
  pointer-events: none;
}

.submit-btn:hover {
  color: #fff;
  background-color: #1A1A1A;
  box-shadow: rgba(0, 0, 0, 0.25) 0 8px 15px;
  transform: translateY(-2px);
}

.submit-btn:active {
  box-shadow: none;
  transform: translateY(0);
} */


@media screen and (max-width: 2265px) {
    html {
        font-size: 14px;
    }
}

@media screen and (max-width: 1990px) {
    html {
        font-size: 13px;
    }
}

@media screen and (max-width: 1850px) {
    html {
        font-size: 12px;
    }
}

@media screen and (max-width: 1705px) {
    html {
        font-size: 11px;
    }
}

@media screen and (max-width: 1565px) {
    html {
        font-size: 10px;
    }
}

@media screen and (max-width: 1420px) {
    html {
        font-size: 9px;
    }
}

@media screen and (max-width: 1280px) {
    html {
        font-size: 8px;
    }
}

@media screen and (max-width: 1135px) {
    html {
        font-size: 7px;
    }
}