/* Null styles */

:root {
  --main-font: "Unbounded", sans-serif;
  --second-font: "IBM Plex Sans", sans-serif;
  --white: #ffffff;
  --black: #000000;
  --blue: #15abda;
  --dark: #021115;
}

* {
  padding: 0;
  margin: 0;
  border: 0;
}
*,
*:before,
*:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
:focus,
:active {
  outline: none;
}
a:focus,
a:active {
  outline: none;
}

nav,
footer,
header,
aside {
  display: block;
}

html,
body {
  font-size: 100%;
  line-height: 1 !important;
  font-size: 14px !important;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

@media (max-width: 1600px), (max-height: 900px) {
  html,
  body {
    font-size: 13px !important;
  }
}
@media (max-width: 1300px), (max-height: 800px) {
  html,
  body {
    font-size: 11px !important;
  }
}

@media (max-width: 1200px), (max-height: 700px) {
  html,
  body {
    font-size: 10px !important;
  }
}

@media (max-width: 1024px), (max-height: 700px) {
  html,
  body {
    font-size: 9px !important;
  }
}

@media (max-width: 600px) and (orientation: portrait),
  (max-height: 600px) and (orientation: landscape) {
  html,
  body {
    font-size: 8px !important;
  }
}

@media (max-width: 360px) and (orientation: portrait),
  (max-height: 360px) and (orientation: landscape) {
  html,
  body {
    font-size: 7px !important;
  }
}

body {
  overflow: hidden;
  color: #000;
  block-size: auto !important;
}

input,
button,
textarea {
  font-family: inherit;
}

input::-ms-clear {
  display: none;
}
button {
  cursor: pointer;
}
button::-moz-focus-inner {
  padding: 0;
  border: 0;
}
a,
a:visited {
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}
ul li {
  list-style: none;
}
img {
  vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: 400;
}
/*--------------------*/

* {
  font-family: "Unbounded", sans-serif;
}

.container {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
  max-width: 1680px;
  margin: auto;
  padding: 90px 4em;
}

@media (max-width: 1024px) {
  .container {
    padding: 90px 25px;
  }
}

@media (max-width: 600px) and (orientation: portrait),
  (max-height: 600px) and (orientation: landscape) {
  .container {
    padding: 45px 25px;
  }
}

@media (max-width: 360px) and (orientation: portrait),
  (max-height: 360px) and (orientation: landscape) {
  .container {
    padding: 45px 10px;
  }
}

.main-container {
  height: 100vh;
  width: 100vw;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
}

.subtitle {
  font-size: 1.78em;
  line-height: 4em;
  margin-bottom: 0;
  text-transform: uppercase;
}

@media (max-width: 1600px), (max-height: 900px) {
  .subtitle {
    line-height: 2em;
  }
}

h1,
.h1-style {
  font-size: 5.7em;
  line-height: 1.14em;
  font-weight: 400;
  text-transform: uppercase;
}

@media (max-width: 600px) and (orientation: portrait),
  (max-height: 600px) and (orientation: landscape) {
  h1,
  .h1-style {
    font-size: 3.8em;
  }
}

@media (max-width: 375px) and (orientation: portrait),
  (max-height: 375px) and (orientation: landscape) {
  h1,
  .h1-style {
    font-size: 3.2em;
  }
}

h2 {
  font-size: 5em;
  font-weight: 400;
  line-height: 1.15em;
  text-transform: uppercase;
}

@media (max-width: 600px) and (orientation: portrait),
  (max-height: 600px) and (orientation: landscape) {
  h2 {
    font-size: 3.09em;
  }
}

@media (max-width: 375px) and (orientation: portrait),
  (max-height: 375px) and (orientation: landscape) {
  h2 {
    font-size: 2.4em;
  }
}

.white-button-2,
.black-button-2 {
  font-size: 1.43em;
  font-weight: 400;
  line-height: 1em;
  text-align: left;
  color: #ffffff;
  padding: 1.125em 1.35em;
  border: 1px solid #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 27px;
  width: fit-content;
  text-transform: uppercase;
}

@media (max-width: 1600px), (max-height: 900px) {
  .white-button-2,
  .black-button-2 {
    padding: 0.625em 1.05em;
  }
}

@media (max-width: 1024px), (max-height: 700px) {
  .white-button-2,
  .black-button-2 {
    gap: 10px;
  }
}

.white-button-2 svg,
.black-button-2 svg {
  width: 14%;
  height: auto;
  display: block;
}

.white-button-2:hover,
.black-button-2:hover {
  background-color: #15abde;
  border-color: #15abde;
}

.white-button-2 span {
  display: block;
}

.black-button-2 {
  color: #000000;
  border: 1px solid #000000;
}

.bold {
  font-weight: 600;
}

.section {
  width: 100vw;
  height: 100vh;
  top: 0;
  transform: translate(100%, 0);
  position: fixed;
  overflow: hidden;
}

.section__container {
  position: relative;
  z-index: 1;
}

.scroller {
  position: relative;
  top: 0;
  left: 0;
  width: 100px;
  z-index: -1;
  height: 700vh;
}

.intro-block {
  width: 100vw;
  position: relative;
  background: #021115;
  z-index: 1;
  transform: none;
}

.intro-block__container {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 0 !important;
  max-width: 100%;
}

.intro-block__img {
  display: block;
  width: 37.5%;
  height: 37.5%;
  object-fit: cover;
}

.intro-block__bg {
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  width: 100%;
  height: 100%;
  background-color: rgba(215, 214, 214, 0.782);
  z-index: 1;
  opacity: 0;
}

.intro-block__box-title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.intro-block__title {
  position: absolute;
  transform: scale(0.5);
  width: 100%;
  color: #fff;
  padding: 0 15px;
  font-size: 10.14em;
  line-height: 1.24em;
  text-align: center;
  text-transform: uppercase;
  opacity: 0;
}

@media (max-width: 1400px), (max-height: 800px) {
  .intro-block__title {
    font-size: 8.64em;
  }
}

@media (max-width: 768px) {
  .intro-block__title {
    font-size: 6.04em;
  }
}

@media (max-width: 600px) and (orientation: portrait),
  (max-height: 600px) and (orientation: landscape) {
  .intro-block__title {
    font-size: 5.04em;
  }
}

@media (max-width: 360px) and (orientation: portrait),
  (max-height: 360px) and (orientation: landscape) {
  .intro-block__title {
    font-size: 4em;
  }
}

.intro-block__title:nth-child(1) {
  position: static;
  opacity: 1;
  transform: none;
}

.responsibility {
  width: 100vw;
  position: fixed;
  top: 0;
  background-color: #fff;
  transform: translate(100%, 0);
  overflow: visible;
}

.responsibility__container {
  padding-left: 32%;
  display: flex;
  justify-content: flex-end;
  padding-top: 0;
  padding-bottom: 0;
  padding-right: 0;
}

@media (max-width: 1024px) {
  .responsibility__container {
    align-items: center;
    justify-content: center;
    padding-left: 0;
    padding-bottom: 0 !important;
  }
}

@media (max-width: 600px) and (orientation: portrait),
  (max-height: 600px) and (orientation: landscape) {
  .responsibility__container {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}

.responsibility__img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 145%;
  max-width: 1438px;
  z-index: -1;
  max-height: 385px;
  height: 35%;
  object-fit: cover;
  object-position: top center;
}

@media (max-width: 600px) and (orientation: portrait),
  (max-height: 600px) and (orientation: landscape) {
  .responsibility__img {
    position: static;
    width: 100%;
    height: auto;
    max-height: 100%;
  }
}

@media (max-width: 600px) and (orientation: portrait) {
  .responsibility__img--desktop {
    display: none;
  }
}

@media (max-height: 390px) and (orientation: landscape) {
  .responsibility__img--desktop {
    max-height: 100px;
    object-position: center bottom;
  }
}

.responsibility__img--mobile {
  display: none;
}

@media (max-width: 600px) and (orientation: portrait) {
  .responsibility__img--mobile {
    display: block;
  }
}

@media (max-height: 600px) and (orientation: landscape) {
  .responsibility__img--desktop {
    display: none;
  }
}

.responsibility__box {
  padding-top: 12.5%;
  max-width: 945px;
  position: relative;
}

@media (max-width: 1024px) {
  .responsibility__box {
    max-width: 100%;
    height: 100%;
    padding-top: 0;
    display: flex;
    align-items: center;
    padding-bottom: 10%;
  }
}

@media (max-width: 600px) and (orientation: portrait),
  (max-height: 600px) and (orientation: landscape) {
  .responsibility__box {
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    padding-bottom: 0;
  }
}

.responsibility__left {
  padding-right: 4em;
}

@media (max-width: 1024px) {
  .responsibility__left {
    max-width: 700px;
    padding-right: 25px;
    padding-left: 25px;
  }
}

.responsibility__title {
  margin-bottom: 30px;
  color: #15abda;
}

@media (max-width: 1400px), (max-height: 800px) {
  .responsibility__title {
    margin-bottom: 15px;
  }
}

.responsibility__text p {
  margin-bottom: 30px;
  font-size: 1.36em;
  line-height: 1.53em;
  font-family: "IBM Plex Sans", sans-serif;
}

@media (max-width: 1400px), (max-height: 800px) {
  .responsibility__text p {
    margin-bottom: 15px;
  }
}

.responsibility__text p:last-of-type {
  margin-bottom: 0;
}

.responsibility__innovation {
  position: absolute;
  top: 0;
  left: -56px;
}

.about {
  width: 100vw;
  position: fixed;
  top: 0;
  transform: translate(100%, 0);
  overflow: visible;
}

.about__container {
  padding-top: 9%;
  padding-right: 42%;
}

@media (max-width: 1024px) {
  .about__container {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 20%;
  }
}

@media (max-width: 600px) and (orientation: portrait),
  (max-height: 600px) and (orientation: landscape) {
  .about__container {
    flex-direction: column;
    gap: 20px;
    padding-right: 25px;
    padding-bottom: 0;
    padding-top: 0;
  }
}

.about__text {
  max-width: 620px;
}

@media (max-width: 1024px) {
  .about__text {
    max-width: 700px;
  }
}

.about__text p {
  font-size: 1.36em;
  line-height: 1.53em;
  font-family: "IBM Plex Sans", sans-serif;
}

.about__text p {
  margin-bottom: 30px;
}

@media (max-width: 1400px), (max-height: 800px) {
  .about__text p {
    margin-bottom: 15px;
  }
}

.about__text p:last-of-type {
  margin-bottom: 0;
}

.about__bg {
  height: 148%;
  width: 41%;
  max-width: 690px;
  position: absolute;
  top: 0;
  right: 0;
  background: #0000001a;
  z-index: -1;
}

@media (max-width: 600px) and (orientation: portrait),
  (max-height: 600px) and (orientation: landscape) {
  .about__bg {
    position: static;
    width: 55%;
    height: auto;
  }
}

@media (max-height: 600px) and (orientation: landscape) {
  .about__bg {
    display: none;
  }
}

.about__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

@media (max-width: 600px) and (orientation: portrait),
  (max-height: 600px) and (orientation: landscape) {
  .about__bg-img--desktop {
    display: none;
  }
}

.about__bg-img--mobile {
  display: none;
}

@media (max-width: 600px) and (orientation: portrait),
  (max-height: 600px) and (orientation: landscape) {
  .about__bg-img--mobile {
    display: block;
  }
}


.workplace {
  width: 100vw;
  position: fixed;
  top: 0;
  transform: translate(0, 100%);
  overflow: visible;
}

.workplace__container {
  padding-top: 11%;
  display: flex;
  justify-content: space-between;
  gap: 25px;
}

@media (max-width: 600px) and (orientation: portrait),
  (max-height: 600px) and (orientation: landscape) {
  .workplace__container {
    gap: 20px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 90px;
  }
}

.workplace__left {
  max-width: 836px;
  width: 60%;
}

@media (max-width: 600px) and (orientation: portrait),
  (max-height: 600px) and (orientation: landscape) {
  .workplace__left {
    width: 100%;
    max-width: 700px;
  }
}

.workplace__title {
  color: #15abda;
  margin-bottom: 38px;
}

@media (max-width: 1400px), (max-height: 800px) {
  .workplace__title {
    margin-bottom: 20px;
  }
}

@media (max-width: 600px) and (orientation: portrait),
  (max-height: 600px) and (orientation: landscape) {
  .workplace__title {
    margin-bottom: 15px;
  }
}

.workplace__text p {
  margin-bottom: 30px;
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 1.36em;
  line-height: 1.53em;
}

@media (max-width: 1400px), (max-height: 800px) {
  .workplace__text p {
    margin-bottom: 15px;
  }
}

@media (max-width: 600px) and (orientation: portrait),
  (max-height: 600px) and (orientation: landscape) {
  .workplace__text p {
    margin-bottom: 10px;
  }
}

.workplace__text p:last-of-type {
  margin-bottom: 0px;
}

.workplace__right {
  max-width: 605px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 4%;
  width: 40%;
}

@media (max-width: 1400px), (max-height: 800px) {
  .workplace__right {
    padding-bottom: 1%;
  }
}

@media (max-width: 600px) and (orientation: portrait),
  (max-height: 600px) and (orientation: landscape) {
  .workplace__right {
    padding-bottom: 0;
    max-width: 700px;
    width: 100%;
  }
}

.workplace__right-text {
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 1.9em;
  line-height: 1.73em;
  height: fit-content;
}

@media (max-width: 1400px), (max-height: 800px) {
  .workplace__right-text {
    font-size: 1.7em;
    padding-bottom: 0%;
  }
}

@media (max-width: 1024px) {
  .workplace__right-text {
    font-size: 1.7em;
    padding-bottom: 5%;
  }
}

@media (max-width: 600px) and (orientation: portrait),
  (max-height: 600px) and (orientation: landscape) {
  .workplace__right-text {
    font-size: 1.5em;
  }
}

.product {
  transform: translate(0, 200%);
  overflow: visible;
}

.product__container {
  display: flex;
  align-items: center;
  padding-bottom: 5%;
  padding-left: 0;
}

@media (max-width: 1024px) {
  .product__container {
    padding-bottom: 90px;
  }
}

@media (max-width: 600px) and (orientation: portrait),
  (max-height: 600px) and (orientation: landscape) {
  .product__container {
    padding-left: 25px;
  }
}

.product__content {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  position: relative;
  width: 100%;
  padding-left: 57%;
}

@media (max-width: 1024px) {
  .product__content {
    justify-content: center;
  }
}

@media (max-width: 600px) and (orientation: portrait),
  (max-height: 600px) and (orientation: landscape) {
  .product__content {
    padding-left: 0;
    gap: 20px;
    flex-direction: column;
  }
}

.product__img {
  position: absolute;
  bottom: 0;
  left: 0;
  max-width: 865px;
  width: 54%;
  height: 150%;
  left: 0;
  max-height: 1150px;
  object-fit: cover;
  object-position: center top;
  z-index: -1;
}

@media (max-width: 600px) and (orientation: portrait),
  (max-height: 600px) and (orientation: landscape) {
  .product__img {
    position: static;
    order: 1;
    height: auto;
    width: 45%;
    max-width: 300px;
    max-height: 100%;
  }
}

@media (max-width: 600px) and (orientation: portrait) {
  .product__img--desktop {
    display: none;
  }
}

@media (max-height: 390px) and (orientation: landscape) {
  .product__img--desktop {
    max-height: 100px;
    object-position: center bottom;
  }
}

.product__img--mobile {
  display: none;
}

@media (max-width: 600px) and (orientation: portrait) {
  .product__img--mobile {
    display: block;
  }
}

@media (max-height: 600px) and (orientation: landscape) {
  .product__img--desktop {
    display: none;
  }
}

.product__box {
  max-width: 700px;
}

@media (max-width: 1024px) {
  .product__box {
    max-width: 730px;
    width: 100%;
  }
}

.product__title {
  color: #15abda;
  margin-bottom: 49px;
}

@media (max-width: 1400px), (max-height: 800px) {
  .product__title {
    margin-bottom: 29px;
  }
}

@media (max-width: 600px) and (orientation: portrait),
  (max-height: 600px) and (orientation: landscape) {
  .product__title {
    margin-bottom: 15px;
  }
}

.product__text {
  padding-right: 12%;
}

@media (max-width: 600px) and (orientation: portrait),
  (max-height: 600px) and (orientation: landscape) {
  .product__text {
    padding-right: 0%;
  }
}

.product__text p {
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 1.43em;
  line-height: 1.5em;
}

.product__text p:first-of-type {
  margin-bottom: 30px;
}

@media (max-width: 1400px), (max-height: 800px) {
  .product__text p:first-of-type {
    margin-bottom: 15px;
  }
}

.management {
  transform: translate(100%, 0);
  background-color: #02111533;
  color: #fff;
  background: url(../assets/cr-gov/last.jpg) no-repeat center;
  background-size: cover;
}

.management__container {
  display: flex;
  align-items: center;
}

@media (max-width: 1024px) {
  .management__container {
    justify-content: center;
  }
}

.management__box {
  max-width: 990px;
}

@media (max-width: 1024px) {
  .management__box {
    max-width: 730px;
    width: 100%;
  }
}

.management__title {
  margin-bottom: 35px;
}

@media (max-width: 1400px), (max-height: 800px) {
  .management__title {
    margin-bottom: 20px;
  }
}

@media (max-width: 600px) and (orientation: portrait),
  (max-height: 600px) and (orientation: landscape) {
  .management__title {
    margin-bottom: 15px;
  }
}

.management__text {
  margin-bottom: 40px;
  font-family: var(--second-font);
  font-size: 1.43em;
  line-height: 1.5em;
}

@media (max-width: 1400px), (max-height: 800px) {
  .management__text {
    margin-bottom: 20px;
  }
}

.management__btn {
  background-color: #fff;
  color: #000;
}

.management__btn path {
  stroke: #000;
}