@import url("https://fonts.googleapis.com/css2?family=Inter:wght@200..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Rubik:wght@500&display=swap");
:root {
  --color-black: #1c1c1c;
  --color-orange: #fd9962;
  --color-peach: #fd807a;
  --font-rubik: 'Rubik', arial, helvetica, sans-serif;
  --box-shadow: 3px 3px 0 var(--color-black);
}

body::-webkit-scrollbar {
  width: 0.6rem;
}

body::-webkit-scrollbar-track {
  background: var(--color-black);
}

Body::-webkit-scrollbar-thumb {
  background: var(--color-peach);
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: -webkit-gradient(linear, left top, right top, from(var(--color-orange)), to(var(--color-peach)));
  background: linear-gradient(90deg, var(--color-orange), var(--color-peach));
  width: 100%;
  min-height: 100vh;
  font-family: Inter, arial, Arial, Helvetica, sans-serif;
  line-height: 1.5;
}

img {
  max-width: 100%;
}

a {
  text-decoration: none;
  color: var(--color-black);
}

section a {
  border-bottom: 2px solid rgba(0, 0, 0, 0);
  font-weight: 800;
  letter-spacing: 0.5px;
  -webkit-transition: border 600ms;
  transition: border 600ms;
}

section a:hover, section a:focus {
  border-bottom: 2px solid black;
}

h3 {
  font-family: var(--font-rubik);
  font-weight: 500;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 1px;
}

.container {
  max-width: 890px;
  margin: 0 auto;
  padding: 0 2rem;
}

.text-list {
  font-size: 1rem;
  margin-left: 0;
  padding-left: 0;
  list-style: none;
}

.text-list li {
  margin-bottom: 0.6rem;
}

.text-list li::before {
  content: '+ ';
}

.text-list--large {
  font-family: var(--font-rubik);
  font-size: 1.6rem;
  line-height: 1.6;
  font-weight: 500;
  margin-left: -2.4rem;
  margin-bottom: 1rem;
  list-style: none;
}

.text-list--large li::before {
  content: '+ ';
}

.header {
  padding: 2rem 0;
}

.header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.header__logo {
  width: 100%;
  max-width: 230px;
}

.header__nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 1px;
}

.header__nav-item {
  margin-left: 1rem;
  border-bottom: 2px solid rgba(0, 0, 0, 0);
  -webkit-transition: border 300ms;
  transition: border 300ms;
}

.header__nav-item:hover {
  border-bottom: 2px solid black;
}

.header__nav-item .selected {
  padding: 0.6em 1em;
  background: var(--color-black);
  color: white;
  pointer-events: none;
}

.home {
  min-height: 80vh;
  padding: 4rem 0;
}

.home p {
  font-family: var(--font-rubik);
  font-size: 1.6rem;
}

.home__text--centered {
  text-align: center;
}

.modal-button {
  position: fixed;
  top: 1rem;
  right: 1rem;
  cursor: pointer;
  background: whitesmoke;
  padding: 0.6em 1em;
  font-weight: 700;
  border: none;
  outline: none;
  -webkit-box-shadow: 3px 3px 0 var(--color-black), -3px -3px 0 var(--color-peach);
          box-shadow: 3px 3px 0 var(--color-black), -3px -3px 0 var(--color-peach);
  -webkit-transition: -webkit-box-shadow 300ms;
  transition: -webkit-box-shadow 300ms;
  transition: box-shadow 300ms;
  transition: box-shadow 300ms, -webkit-box-shadow 300ms;
}

.modal-button:hover {
  -webkit-box-shadow: 5px 5px 0 var(--color-black);
          box-shadow: 5px 5px 0 var(--color-black);
}

.modal {
  visibility: hidden;
  opacity: 0;
  width: 100%;
  min-height: 100vh;
  height: 900%;
  background: rgba(0, 0, 0, 0.7);
  position: absolute;
  z-index: 666;
  top: 0;
  left: 0;
  right: 0;
  -webkit-transition: opacity 400ms ease, visibility 200ms ease;
  transition: opacity 400ms ease, visibility 200ms ease;
}

.modal-active {
  visibility: visible;
  opacity: 1;
}

.body-active {
  overflow: hidden;
}

.modal-close {
  line-height: 1;
  font-size: 3rem;
  color: whitesmoke;
  cursor: pointer;
  position: fixed;
  top: 0;
  right: 0;
  padding: 0 1rem;
  -webkit-transform: rotate(0);
          transform: rotate(0);
  -webkit-transition: -webkit-transform 400ms ease-out;
  transition: -webkit-transform 400ms ease-out;
  transition: transform 400ms ease-out;
  transition: transform 400ms ease-out, -webkit-transform 400ms ease-out;
  -webkit-transform-origin: 50% 60%;
          transform-origin: 50% 60%;
}

.modal-close-active {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.calculator {
  -webkit-transform: translateY(10%);
          transform: translateY(10%);
  margin: 3rem auto;
  background: white;
  padding: 3rem;
  width: 100%;
  max-width: 940px;
  -webkit-transition: -webkit-transform 300ms ease-out;
  transition: -webkit-transform 300ms ease-out;
  transition: transform 300ms ease-out;
  transition: transform 300ms ease-out, -webkit-transform 300ms ease-out;
}

@media (max-width: 600px) {
  .calculator {
    padding: 1.6rem;
  }
}

.calculator-active {
  -webkit-transform: translateY(0%);
          transform: translateY(0%);
}

.cc {
  font-family: var(--font-rubik);
  font-size: 1rem;
}

.cc h2 {
  color: var(--color-orange);
}

.cc h6 {
  font-size: 0.9rem;
}

.cc__element-title.hdHQJp {
  text-align: center;
  font-size: 1.2rem;
  margin: 0 1rem 2rem;
}

.cc__flex-container.sc-iRbamj.kCLQhg {
  display: -ms-grid;
  display: grid;
  gap: 10px;
  background-color: white;
  -ms-grid-columns: (minmax(200px, 1fr))[auto-fit];
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.cc__box.sc-jlyJG.descwZ,
.cc .CVpsf {
  max-width: 100% !important;
  padding: 1rem !important;
  border: 1px solid var(--color-black);
}

@media (max-width: 600px) {
  .cc__box.sc-jlyJG.descwZ,
  .cc .CVpsf {
    padding: 0.4rem !important;
    border: none;
  }
}

.cc__buttonGroup-question {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.cc__buttonGroup-question > * {
  width: 48%;
}

.cursor {
  -webkit-animation: blink 1000ms steps(2) infinite;
          animation: blink 1000ms steps(2) infinite;
}

@-webkit-keyframes blink {
  0% {
    visibility: hidden;
  }
  100% {
    visibility: show;
  }
}

@keyframes blink {
  0% {
    visibility: hidden;
  }
  100% {
    visibility: show;
  }
}

.partners {
  margin: 0 auto;
  padding: 1rem 0 6rem;
}

.partners__inner {
  display: -ms-grid;
  display: grid;
  gap: 1rem;
  -ms-grid-columns: (minmax(260px, 1fr))[auto-fit];
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.partners__single {
  background: whitesmoke;
  height: 100%;
  padding: 1rem 1.4rem 1.6rem;
  border-radius: 0.2rem;
  -webkit-box-shadow: var(--box-shadow);
          box-shadow: var(--box-shadow);
}

.partners__logo-holder {
  width: 100%;
  max-width: 300px;
  max-height: 100%;
  margin: 0 auto;
  padding-bottom: 0.4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.partners__logo {
  mix-blend-mode: multiply;
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
}

.partners__title {
  margin: 0.8rem 0 0;
  line-height: 1.2;
}

.partners__text {
  font-size: 0.8rem;
  font-weight: 400;
}

.partners__link {
  -webkit-transition: -webkit-transform 400ms ease-out;
  transition: -webkit-transform 400ms ease-out;
  transition: transform 400ms ease-out;
  transition: transform 400ms ease-out, -webkit-transform 400ms ease-out;
  border: none;
}

.partners__link:hover {
  -webkit-transform: scale(1.03);
          transform: scale(1.03);
  border: none;
}

.spacelamp {
  height: 140px;
  width: 120px;
}

.section__title-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.section__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  white-space: nowrap;
}

.section__title:after {
  margin-left: 1rem;
  content: '';
  display: block;
  background: var(--color-black);
  height: 2px;
  width: 100%;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.space {
  min-height: 100vh;
  padding: 1rem 0 8rem;
  background-color: #fff;
  background-image: url(img/twofiveseven-our-cowork-space-whiteout.jpg);
  background-position: 100% 80%;
  background-size: contain;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: 55vmax auto;
}

.space__text-intro {
  text-shadow: 5px 5px 20px whitesmoke;
  font-weight: 700;
  font-size: 2.6rem;
  max-width: 44%;
  line-height: 1.25;
  margin-left: -2.4rem;
}

.space__info-top {
  margin: 6rem 0 8rem 0;
}

.space__text-intro-list {
  max-width: 30%;
}

.single-column {
  max-width: 45%;
}

.text--large {
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.42;
  margin: 4.2rem 0;
}

.text--shadow {
  text-shadow: 0 2px 10px whitesmoke;
}

.two-columns {
  display: -ms-grid;
  display: grid;
  gap: 40px;
  -ms-grid-columns: (1fr)[2];
      grid-template-columns: repeat(2, 1fr);
}

section {
  min-height: 80vh;
  padding: 1rem 2rem 6rem;
}

.private-office {
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #f7726b;
}

.private-office__img {
  margin: 2rem 0 1rem 0;
}

.furniture {
  min-height: 100vh;
  padding: 1rem 0 8rem;
  background-color: #fff;
  background-image: url("img/257-furniture.jpg");
  background-position: 100% 80%;
  background-size: contain;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: 55vmax auto;
}

.contact__form {
  max-width: 420px;
  margin: 0 auto;
}

.contact__form label {
  display: block;
  margin-bottom: 0.6rem;
}

.contact__form input,
.contact__form textarea {
  display: block;
  width: 100%;
  margin-bottom: 1rem;
  background: var(--color-black);
  color: whitesmoke;
  border: none;
  padding: 0.8rem 0.8rem;
}

.contact__form textarea {
  min-height: 240px;
  resize: vertical;
}

.contact__form [type='submit'] {
  background: var(--color-black);
  color: whitesmoke;
  border: none;
  padding: 0.6rem 1rem;
  margin-top: 0.4rem;
}

.footer {
  text-align: center;
  display: block;
  padding-bottom: 2rem;
}

@media (max-width: 900px) {
  html {
    font-size: 13px;
  }
  .container {
    max-width: 420px;
    padding: 0 1rem;
  }
  .header {
    padding: 1.6rem 0 0 0;
  }
  .home {
    padding: 2rem 0;
    min-height: auto;
  }
  .header__nav {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: mistyrose;
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  .modal-button {
    position: fixed;
    top: unset;
    bottom: 10px;
    right: 10px;
    z-index: 555;
  }
  .header__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .header__nav-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  h3 {
    font-size: 0.78rem;
  }
  section {
    padding: 2rem 1rem;
  }
  .single-column {
    max-width: 420px;
    width: 100%;
  }
  .two-columns {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    gap: 0;
  }
  .text--large {
    font-size: 1.42rem;
    margin: 3rem 0;
  }
  .full-office__inner {
    padding: 1rem;
  }
  .space,
  .furniture {
    padding-top: 2rem;
  }
  .private-office,
  .story {
    padding-bottom: 6rem;
  }
  .space {
    background-position: 50% 270px;
    background-size: contain;
    background-attachment: unset;
    background-repeat: no-repeat;
    background-size: 100%;
  }
  .space__info-top {
    margin-top: 3rem;
  }
  .space__text-intro {
    font-size: 1.8rem;
    max-width: 420px;
    width: 100%;
    margin: 1rem 0 25rem;
  }
  .space__text-intro-list {
    width: 100%;
    max-width: 420px;
  }
  .space__text-list {
    margin: 3rem 0;
  }
  .furniture {
    padding-bottom: 20rem;
    background-position: 50% 100%;
    background-size: contain;
    background-attachment: unset;
    background-repeat: no-repeat;
    background-size: 100%;
  }
  .section__title {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    margin-right: 1rem;
  }
  .section__title:after {
    margin: 0 1rem 0 -10rem;
  }
}
/*# sourceMappingURL=letslightthiscandle.css.map */