/* Light Mode */
[theme="light"] {
}

/* Default Dark Mode */
:root {
  --background-color: #0D0D0D;
  --text-color: #F0F0F2;
  --blue-color: #00B7D8;
  --spleen-green: #D7F205;
}

* {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Montserrat", sans-serif;
  margin: 0;
  overflow-x: hidden;
  color: var(--text-color);
  background: linear-gradient(-160deg, rgb(3, 58, 66) 0%, rgba(0, 0, 0, 1) 10%, rgb(0, 18, 19) 40%, rgba(0, 0, 0, 1) 85%,rgba(6, 38, 43, 1) 100%);
}


html {
  scroll-behavior: smooth;
}

p {
  color: var(--text-color);
}


.btn {
  transition: all 300ms ease;
  cursor: pointer;
  font-size: 1rem;
  border: none;
  max-width: max-content;
  color: var(--background-color);
}

section {
  padding: 8vh;
  height: 100vh;
  max-height: 100vh;
  display: flex;
  justify-content: space-between;
  box-sizing: border-box;
  z-index: 1;
}

.custom-col{
  display: flex;
  gap: 24px;
  flex-direction: column;
  justify-content: space-between;
}

.flex-end {
  align-items: end;
}

.res-col {
  height: 100%;
}

#sub-info, #communication-info {
  align-self: center;
  justify-content: center;
  gap: 60px;
}

#communication-info {
  align-items: center;
  text-align: center;
}

.logo-img {
  width: 10vw;
  min-width: 34%;
  pointer-events: none;
}

.media-row {
  width: max-content;
  display: flex;
  flex-direction: row;
  justify-content: end;
  gap: 16px;
}

.media-icon {
  width: 3vh;
  min-width: 2vw;
  cursor: pointer;
  pointer-events: none;
}

.btn-pri{
  background-color: var(--blue-color);
  padding: 16px;
}

.btn-pri:hover{
  background-color: var(--spleen-green);
}

.text-blue {
  color: var(--blue-color);
}

.text-xxl {
  font-size: 4vw;
  font-weight: 600;
}

.text-xl {
  font-size: clamp(1.8rem, 3.2vw, 3.6rem);
  font-weight: 200;
}

.text-l {
  font-size: clamp(1.2rem, 2vw, 2.4rem);
  font-weight: 200;
}

.text-m {
  font-size: clamp(1.1rem, 1.5vw, 2.2rem);
  font-weight: 200;
}

.text-s {
  font-size: clamp(1rem, 1.3vw, 2rem);
  font-weight: 200;
}

.text-bold {
  font-weight: 500;
}

.text-light {
  font-weight: 200;
}

.text-start {
  text-align: start;
}

.text-end{
  text-align: end;
}

@media screen and (max-width: 600px) {
  section{
    flex-direction: column;
    padding: 4vh;
  }

  .res-col {
    height: 50%;
  }
}

/* ScrollBarTheme */
body::-webkit-scrollbar {
  width: 14px;
}

body::-webkit-scrollbar-track {
  background: var(--background-color);
  border-radius: 0;
}

body::-webkit-scrollbar-thumb {
  background: var(--blue-color);
  border-radius: 13px;
  border: 4px solid var(--background-color);
  cursor: grab;
}

@supports not selector(::-webkit-scrollbar) {
  body {
    scrollbar-color: var(--blue-color)
    var(--background-color);
  }
}