body {
  background: #050505;
  overflow-x: hidden;
}
body a {
  text-decoration: none;
}

.container {
  width: 95%;
  max-width: 1440px;
  gap: 10px;
  margin: 0 auto;
}

.header {
  display: flex;
  padding: 12px 16px;
  justify-content: space-between;
  align-items: center;
  align-self: stretch;
  background: #000;
  z-index: 20;
  border-radius: 12px;
  margin: 12px 0 20px 0;
}
.header-logo {
  width: 130px;
  height: 40px;
}
.header__navbar-links {
  display: flex;
  flex-direction: row;
  align-items: baseline;
  margin: 0;
  list-style: none;
  gap: 40px;
}
.header__nav-links a {
  color: #FFF;
  font-family: roc-grotesk, sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%;
  text-decoration: none;
}
.header__nav-links::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 4px;
  background-color: green;
  transition: width 0.2s;
}
.header__nav-links:hover::before {
  width: 100%;
}
.header__nav-links {
  display: inline-block;
  padding-bottom: 0.25rem;
  position: relative;
  text-decoration: none;
  color: inherit;
}
.header-btn {
  display: flex;
  width: 180px;
  padding: 10px 24px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 38px;
  background: #FFCE34;
}
.header-btn-mobile {
  height: 56px;
  padding: 0px 32px;
  justify-content: center;
  align-items: center;
  gap: 12px;
  background: #FFCE34;
  border: none;
  display: none;
}
.header__btn-text {
  color: #000;
  font-family: roc-grotesk, sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 145%;
  letter-spacing: 0.42px;
  text-transform: uppercase;
  text-decoration: none;
}

.menu-item,
.menu-open-button {
  border-radius: 16px;
  border: none;
  width: 45px;
  height: 45px;
  color: #FFFFFF;
  text-align: center;
  transform: translate3d(0, 0, 0);
  transition: transform ease-out 200ms;
  display: none;
}

.lines {
  width: 24px;
  height: 2px;
  background: #FFF;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -12.5px;
  margin-top: -1.5px;
  transition: transform 200ms;
  display: none;
}

.bar-1 {
  transform: translate3d(0, -8px, 0);
}

.bar-2 {
  transform: translate3d(0, 0, 0);
}

.bar-3 {
  transform: translate3d(0, 8px, 0);
}

.menu-open:checked + .menu-open-button .bar-1 {
  transform: translate3d(0, 0, 0) rotate(45deg);
}

.menu-open:checked + .menu-open-button .bar-2 {
  transform: translate3d(0, 0, 0) scale(0.1, 1);
}

.menu-open:checked + .menu-open-button .bar-3 {
  transform: translate3d(0, 0, 0) rotate(-45deg);
}

.menu-open {
  display: none;
}

@media screen and (min-width: 1181px) and (max-width: 1280px) {
  .header__navbar-links {
    gap: 25px;
  }
}
@media screen and (min-width: 769px) and (max-width: 1180px) {
  .header {
    background-color: #000;
    color: #000;
    border-radius: 50px;
    padding-top: 38px;
    z-index: 20;
    display: block;
    top: 0;
    border: none;
  }
  .header-fd {
    display: flex;
    justify-content: space-between;
  }
  .header__toggle-button {
    width: 45px;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .header__navbar-link {
    padding-top: 35px;
    display: none;
    width: 100%;
  }
  .header__navbar-links {
    gap: 20px;
  }
  .header__navbar-link.open {
    display: flex;
    width: 100%;
    justify-content: center;
  }
  .header-btn {
    display: none;
  }
  .header-btn-mobile {
    height: 56px;
    padding: 0px 32px;
    justify-content: center;
    align-items: center;
    gap: 12px;
    border-radius: 24px;
    display: flex;
  }
  .header__btn-text {
    font-size: 14px;
  }
  .header__btn-text {
    font-size: 14px;
  }
  .header__navbar-link ul {
    width: 100%;
    flex-direction: column;
    text-align: center;
  }
  .header__navbar-link ul li a {
    color: #000;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
  }
  .header__navbar-link ul li a {
    color: #fff;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
  }
  .header__toggle-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid green;
    border-radius: 16px;
  }
  .header__toggle-button .bar-1 {
    height: 2px;
    width: 25px;
    background-color: red;
    border-radius: 10px;
  }
  .header__toggle-button .bar-2 {
    height: 2px;
    width: 25px;
    background-color: #000;
    border-radius: 10px;
  }
  .header__toggle-button .bar-3 {
    height: 2px;
    width: 25px;
    background-color: #000;
    border-radius: 10px;
  }
  .lines {
    display: block;
  }
  .menu-item,
  .menu-open-button {
    display: block;
  }
  ul {
    padding: 0;
  }
}
@media screen and (max-width: 768px) {
  .header {
    background-color: #000;
    color: #000;
    border-radius: 20px;
    z-index: 20;
    display: block;
    top: 0;
    border: none;
  }
  .header-fd {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .header__navbar-link {
    padding-top: 35px;
    display: none;
    width: 100%;
  }
  .header__navbar-links {
    gap: 20px;
  }
  .header__navbar-link.open {
    display: flex;
    width: 100%;
    justify-content: center;
  }
  .header-btn {
    display: none;
  }
  .header-btn-mobile {
    height: 56px;
    padding: 0px 32px;
    justify-content: center;
    align-items: center;
    gap: 12px;
    border-radius: 24px;
    display: flex;
  }
  .header__btn-text {
    font-size: 14px;
  }
  .header__navbar-link ul {
    width: 100%;
    flex-direction: column;
    text-align: start;
  }
  .header__navbar-link ul li a {
    color: #fff;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
  }
  .header__toggle-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid green;
    border-radius: 16px;
  }
  .header__toggle-button .bar-1 {
    height: 2px;
    width: 25px;
    background-color: red;
    border-radius: 10px;
  }
  .header__toggle-button .bar-2 {
    height: 2px;
    width: 25px;
    background-color: #000;
    border-radius: 10px;
  }
  .header__toggle-button .bar-3 {
    height: 2px;
    width: 25px;
    background-color: #000;
    border-radius: 10px;
  }
  .lines {
    display: block;
  }
  .menu-item,
  .menu-open-button {
    display: block;
  }
  ul {
    padding: 0;
  }
}
.hero {
  border-radius: 32px;
  background: #0DB14B;
  height: 760px;
  position: relative;
}
.hero__top {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  width: 814px;
  margin-left: 64px;
  margin-top: 80px;
}
.hero__top-title {
  color: #FFF;
  font-family: roc-grotesk-wide, sans-serif;
  font-size: 136px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%;
  letter-spacing: -6.8px;
  text-transform: uppercase;
}
.hero__top-paragraph {
  color: #FFF;
  font-family: roc-grotesk, sans-serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%;
  text-transform: uppercase;
}
.hero__center {
  margin-top: 70px;
  margin-left: 64px;
  width: 432px;
}
.hero__center-paragraph {
  color: #FFF;
  font-family: roc-grotesk, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
.hero__center-paragraph-bold {
  color: #FFF;
  font-family: roc-grotesk, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
}
.hero__center-btn {
  margin-top: 24px;
  display: flex;
  width: 183px;
  padding: 10px 24px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 38px;
  border: 1px solid #FFF;
  color: #FFF;
  font-family: roc-grotesk, sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 145%;
  letter-spacing: 0.42px;
  text-transform: uppercase;
  background: transparent;
  margin-bottom: 64px;
}
.hero__bottom {
  height: 85px;
  display: flex;
  background: #FFCE34;
  position: relative;
}
.hero__bottom::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: url("/img/hero-text.svg");
  background-position: -10%;
  background-repeat: repeat no-repeat;
  animation: animBg 55s linear infinite;
}
@keyframes animBg {
  to {
    background-position: 500%;
  }
}
.hero__bottom-mobile {
  display: none;
  padding: 0px 0px 0px 32px;
  justify-content: flex-end;
  align-items: center;
  background: #FFCE34;
  gap: 40px;
  overflow: hidden;
  white-space: nowrap;
}
.hero__bottom-text {
  color: #000;
  font-family: roc-grotesk, sans-serif;
  font-size: 64px;
  font-style: normal;
  font-weight: 350;
  line-height: 110%;
  letter-spacing: 0.64px;
  text-transform: uppercase;
  margin: 0;
  padding: 0px 20px;
}
.hero__image {
  position: absolute;
  top: 184px;
  right: 0;
}

@media screen and (min-width: 769px) and (max-width: 1180px) {
  .hero {
    height: 825px;
    flex-shrink: 0;
    border-radius: 24px;
    background: #0DB14B;
    margin: 12px;
  }
  .hero__top {
    width: -moz-fit-content;
    width: fit-content;
  }
  .hero__top-paragraph {
    width: 591px;
  }
  .hero__center-paragraph {
    width: 394px;
  }
  .hero__image {
    position: absolute;
    top: 323px;
    right: 0;
  }
  .hero__img {
    width: 356px;
    height: 334px;
    flex-shrink: 0;
  }
}
@media screen and (min-width: 425px) and (max-width: 768px) {
  .hero {
    width: -moz-fit-content;
    width: fit-content;
    height: 555px;
    flex-shrink: 0;
    border-radius: 24px;
    background: #0DB14B;
    margin: 12px;
  }
  .hero__top {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    margin: 10px;
  }
  .hero__top-title {
    font-size: 56px;
    letter-spacing: -2.8px;
  }
  .hero__top-paragraph {
    font-size: 24px;
    line-height: 110%;
  }
  .hero__center {
    width: 95%;
    margin: 10px;
    gap: 24px;
  }
  .hero__center-btn {
    font-size: 14px;
  }
  .hero__image {
    position: absolute;
    top: 220px;
    right: 0;
  }
  .hero__img {
    width: 356px;
    height: 334px;
    flex-shrink: 0;
  }
  .hero__bottom {
    display: none;
  }
  .hero__bottom-mobile {
    display: flex;
    margin-top: 71px;
    margin-bottom: 71px;
  }
  .hero__bottom-text {
    font-size: 48px;
    letter-spacing: 0.48px;
  }
}
@media screen and (max-width: 425px) {
  .hero {
    width: 100%;
    height: 704px;
    flex-shrink: 0;
    border-radius: 24px;
    background: #0DB14B;
    margin: 0;
  }
  .hero__top {
    display: flex;
    width: 95%;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    margin: 10px;
  }
  .hero__top-title {
    font-size: 56px;
    letter-spacing: -2.8px;
  }
  .hero__top-paragraph {
    font-size: 24px;
    line-height: 110%;
  }
  .hero__center {
    width: 95%;
    margin: 10px;
    gap: 24px;
  }
  .hero__center-btn {
    font-size: 14px;
  }
  .hero__image {
    position: absolute;
    top: 370px;
    right: 0;
  }
  .hero__img {
    width: 356px;
    height: 334px;
    flex-shrink: 0;
  }
  .hero__bottom {
    display: none;
  }
  .hero__bottom-mobile {
    display: flex;
    margin-top: 71px;
    margin-bottom: 71px;
  }
  .hero__bottom-text {
    font-size: 48px;
    letter-spacing: 0.48px;
  }
}
.services {
  padding-top: 96px;
}
.services__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0 40px;
}
.services__top-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}
.services__top-title {
  color: #0DB14B;
  font-family: roc-grotesk-wide, sans-serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%;
  text-transform: uppercase;
}
.services__top-paragraph {
  color: #BBB;
  font-family: roc-grotesk, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  width: 768px;
}
.services__top-right {
  display: flex;
  width: 173px;
  padding: 10px 24px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 38px;
  border: 1px solid #FFCE34;
}
.services__top-right a {
  width: 100%;
  height: 100%;
  text-align: center;
  color: #FFF;
  font-family: roc-grotesk, sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 145%;
  letter-spacing: 0.42px;
  text-transform: uppercase;
}
.services__center {
  padding: 64px 40px 96px 40px;
}
.services__center .services__link {
  display: flex;
  padding: 64px 40px;
  justify-content: space-between;
  align-items: center;
  align-self: stretch;
  border-radius: 24px;
  color: #FFF;
  font-family: roc-grotesk-wide, sans-serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: 110%;
  text-transform: uppercase;
}
.services__center .services__link:hover {
  background: #222;
}
.services__bottom-img {
  width: 100%;
  border-radius: 32px;
}
.services__box {
  border-radius: 32px;
  background: #FFF;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 265px;
  margin-top: 20px;
}
.services__box-image {
  position: relative;
  top: -30px;
}
.services__box-img {
  width: 227px;
  height: 326px;
}
.services__box-paragraph {
  color: #000;
  font-family: roc-grotesk-wide, sans-serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 350;
  line-height: 110%;
  text-transform: uppercase;
  width: 939px;
  margin-left: 40px;
}
.services__box-paragraph-bold {
  color: #000;
  font-family: roc-grotesk-wide, sans-serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 800;
  line-height: 110%;
  text-transform: uppercase;
}

@media screen and (min-width: 769px) and (max-width: 1180px) {
  .services__top {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    margin: 0px 10px;
  }
  .services__top-paragraph {
    width: 95%;
  }
  .services__link {
    margin-top: 32px;
    margin-bottom: 72px;
    padding: 24px;
    font-size: 24px;
  }
  .services__box-image {
    display: none;
  }
  .services__bottom {
    padding: 24px;
    justify-content: center;
    align-items: center;
    gap: 10px;
  }
  .services__box {
    margin-bottom: 77px;
  }
  .services__box-paragraph {
    font-size: 24px;
    font-weight: 350;
  }
  .services__box-paragraph-bold {
    font-size: 24px;
    font-weight: 700;
  }
}
@media screen and (min-width: 425px) and (max-width: 768px) {
  .services__top {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    margin: 0px 10px;
  }
  .services__top-paragraph {
    width: 95%;
  }
  .services__link {
    margin-top: 32px;
    margin-bottom: 72px;
    padding: 24px;
    font-size: 24px;
  }
  .services__box-image {
    display: none;
  }
  .services__bottom {
    padding: 24px;
    justify-content: center;
    align-items: center;
    gap: 10px;
  }
  .services__box {
    margin-bottom: 77px;
  }
  .services__box-paragraph {
    font-size: 24px;
    font-weight: 350;
  }
  .services__box-paragraph-bold {
    font-size: 24px;
    font-weight: 700;
  }
}
@media screen and (max-width: 425px) {
  .services__top {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    margin: 0px 10px;
  }
  .services__top-paragraph {
    width: 95%;
  }
  .services__link {
    margin-top: 32px;
    margin-bottom: 72px;
    padding: 24px;
    font-size: 24px;
  }
  .services__box-image {
    display: none;
  }
  .services__bottom {
    padding: 24px;
    justify-content: center;
    align-items: center;
    gap: 10px;
  }
  .services__box {
    margin-bottom: 77px;
  }
  .services__box-paragraph {
    font-size: 24px;
    font-weight: 350;
  }
  .services__box-paragraph-bold {
    font-size: 24px;
    font-weight: 700;
  }
}
.project {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 72px;
  padding-top: 96px;
}
.project__container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}
.project__box {
  display: flex;
  padding: 16px;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  align-self: stretch;
  border-radius: 16px;
  background: #FFCE34;
}
.project__box-img {
  width: 620px;
  height: 576px;
}
.project__box-title {
  color: #000;
  font-family: roc-grotesk-wide, sans-serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%;
  text-transform: uppercase;
}
.project__box-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  align-self: stretch;
}
.project__box-left {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.project__box-green {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 1px 14px;
  border-radius: 14px;
  background: #0DB14B;
  color: #F1F1F1;
  font-family: roc-grotesk, sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
}
.project__box-right {
  color: #000;
  font-family: roc-grotesk, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
}
.project__top-text {
  display: flex;
  width: 1328px;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  margin: 0 auto;
  margin-top: 40px;
  margin-bottom: 96px;
}
.project__top-title {
  color: #FFF;
  text-align: center;
  font-family: roc-grotesk, sans-serif;
  font-size: 72px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%;
  text-transform: uppercase;
}
.project__top-paragraph {
  color: #FFF;
  text-align: center;
  font-family: roc-grotesk, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  width: 880px;
}
.project__top-blog-button {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.project__section {
  display: flex;
  width: 1360px;
  padding: 40px;
  justify-content: center;
  align-items: flex-start;
  gap: 32px;
  border-radius: 24px;
  background: #252525;
}
.project__section-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  flex: 1 0 0;
}
.project__section-left-top {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  align-self: stretch;
}
.project__section-left-text {
  color: #FFF;
  font-family: roc-grotesk, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
.project__section-left-number {
  color: #0DB14B;
  font-family: roc-grotesk, sans-serif;
  font-size: 64px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%;
  text-transform: uppercase;
}
.project__section-right {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  flex: 1 0 0;
  align-self: stretch;
}
.project__section-right-box {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 24px;
  align-self: stretch;
}
.project__section-right-text {
  display: flex;
  padding: 2px;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  flex: 1 0 0;
}
.project__section-right-title {
  color: #FFF;
  font-family: roc-grotesk, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
.project__section-right-paragraph {
  color: #FFF;
  font-family: roc-grotesk, sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
}
.project__section-right-button {
  display: flex;
  padding: 14px 16px 14px 24px;
  justify-content: space-between;
  align-items: center;
  align-self: stretch;
  border-radius: 40px;
  background: #FFCE34;
  color: #000;
  font-family: roc-grotesk, sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 145%;
  letter-spacing: 0.42px;
  text-transform: uppercase;
}
.project__text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 64px;
}
.project__text-top {
  color: #BBB;
  font-family: roc-grotesk, sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  width: 1104px;
  border-bottom: 1px solid #333;
  padding: 64px 0px;
}
.project__text-center {
  display: flex;
  width: 1326px;
  justify-content: space-between;
  align-items: flex-start;
  margin: 0 auto;
}
.project__text-left {
  color: #FFF;
  font-family: roc-grotesk, sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
}
.project__text-center-right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}
.project__text-center-text {
  display: flex;
  width: 900px;
  gap: 16px;
}
.project__text-center-paragraph {
  color: #FFF;
  gap: 16px;
  font-family: roc-grotesk, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
.project__text-bottom {
  display: flex;
  width: 1326px;
  justify-content: space-between;
  align-items: flex-start;
  margin: 0 auto;
}
.project__big-box {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 64px;
}
.project__big-box-text {
  display: flex;
  width: 1326px;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}
.project__big-title {
  color: #FFF;
  font-family: roc-grotesk, sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
}
.project__big-paragraph {
  width: 768px;
  color: #BBB;
  font-family: roc-grotesk, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
.project__image-box {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.project__image-box-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}
.project__image-box-inner-1 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding-top: 64px;
}
.project__image-title {
  color: #FFF;
  font-family: roc-grotesk, sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
}
.project__box-img {
  width: 656px;
  height: 567px;
  border-radius: 12px;
}
.project__container-mobile {
  display: none;
}
.project-swiper {
  width: 100%;
  position: relative;
}
.project-swiper-nav {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: #0DB14B;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
  position: absolute;
  bottom: 65px;
  right: 45px;
  z-index: 2;
}
.project-swiper-nav_prev, .project-swiper-nav_next {
  cursor: pointer;
}

@media screen and (min-width: 769px) and (max-width: 1180px) {
  .project-swiper {
    display: none;
  }
  .project__box-img {
    width: 500px;
    height: auto;
    margin: 0 auto;
  }
  .project__box-title {
    font-size: 20px;
  }
  .project__box-green {
    font-size: 12px;
  }
  .project__box-right {
    font-size: 14px;
  }
  .project__container-mobile {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .project__top-text {
    width: 94%;
    gap: 24px;
    padding-left: 24px;
  }
  .project__top-title {
    font-size: 32px;
    text-align: left;
  }
  .project__top-paragraph {
    width: 100%;
    text-align: left;
  }
  .project__section {
    flex-direction: column;
    gap: 32px;
    width: 100%;
    padding: 0px;
  }
  .project__section-left {
    gap: 24px;
    padding-left: 12px;
  }
  .project__section-left-number {
    font-size: 56px;
    font-weight: 300;
  }
  .project__section-right {
    gap: 24px;
    padding-left: 12px;
  }
  .project__section-right-box {
    flex-direction: column;
    justify-content: center;
  }
  .project__section-right-button {
    padding: 14px 16px 14px 16px;
    margin: 20px 20px 20px 15px;
  }
  .project__text {
    margin-top: 50px;
    margin-left: 12px;
  }
  .project__text-top {
    width: 100%;
    padding: 0px;
  }
  .project__text-center {
    flex-direction: column;
    width: 100%;
  }
  .project__text-center-text {
    width: 100%;
    gap: 16px;
  }
  .project__text-bottom {
    flex-direction: column;
    width: 100%;
  }
  .project__big-box-text {
    width: 96%;
    padding-left: 12px;
  }
  .project__big-paragraph {
    width: 100%;
  }
  .project__image-box {
    flex-direction: column;
  }
}
@media screen and (min-width: 425px) and (max-width: 768px) {
  .swiper {
    display: none;
  }
  .project-swiper {
    display: none;
  }
  .project__box-img {
    width: 320px;
    height: 276px;
    margin: 0 auto;
  }
  .project__box-title {
    font-size: 20px;
  }
  .project__box-green {
    font-size: 12px;
  }
  .project__box-right {
    font-size: 14px;
  }
  .project__container-mobile {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .project__top-text {
    width: 94%;
    gap: 24px;
    padding-left: 24px;
  }
  .project__top-title {
    font-size: 32px;
    text-align: left;
  }
  .project__top-paragraph {
    width: 100%;
    text-align: left;
  }
  .project__section {
    flex-direction: column;
    gap: 32px;
    width: 100%;
    padding: 0px;
  }
  .project__section-left {
    gap: 24px;
    padding-left: 12px;
  }
  .project__section-left-number {
    font-size: 56px;
    font-weight: 300;
  }
  .project__section-right {
    gap: 24px;
    padding-left: 12px;
  }
  .project__section-right-box {
    flex-direction: column;
    justify-content: center;
  }
  .project__section-right-button {
    padding: 14px 16px 14px 16px;
    margin: 20px 20px 20px 15px;
  }
  .project__text {
    margin-top: 50px;
    margin-left: 12px;
  }
  .project__text-top {
    width: 100%;
    padding: 0px;
  }
  .project__text-center {
    flex-direction: column;
    width: 100%;
  }
  .project__text-center-text {
    width: 100%;
    gap: 16px;
  }
  .project__text-bottom {
    flex-direction: column;
    width: 100%;
  }
  .project__big-box-text {
    width: 96%;
    padding-left: 12px;
  }
  .project__big-paragraph {
    width: 100%;
  }
  .project__image-box {
    flex-direction: column;
  }
  .project__box-img {
    width: 358px;
    height: 332px;
    border-radius: 12px;
  }
}
@media screen and (max-width: 425px) {
  .swiper {
    display: none;
  }
  .project__box-img {
    width: 320px;
    height: 276px;
    margin: 0 auto;
  }
  .project__box-title {
    font-size: 20px;
  }
  .project__box-green {
    font-size: 12px;
  }
  .project__box-right {
    font-size: 14px;
  }
  .project__container-mobile {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .project__top-text {
    width: 94%;
    gap: 24px;
    padding-left: 24px;
  }
  .project__top-title {
    font-size: 32px;
    text-align: left;
  }
  .project__top-paragraph {
    width: 100%;
    text-align: left;
  }
  .project__section {
    flex-direction: column;
    gap: 32px;
    width: 100%;
    padding: 0px;
  }
  .project__section-left {
    gap: 24px;
    padding-left: 12px;
  }
  .project__section-left-number {
    font-size: 56px;
    font-weight: 300;
  }
  .project__section-right {
    gap: 24px;
    padding-left: 12px;
  }
  .project__section-right-box {
    flex-direction: column;
    justify-content: center;
  }
  .project__section-right-button {
    padding: 14px 16px 14px 16px;
    margin: 20px 20px 20px 15px;
  }
  .project__text {
    margin-top: 50px;
    margin-left: 12px;
  }
  .project__text-top {
    width: 100%;
    padding: 0px;
  }
  .project__text-center {
    flex-direction: column;
    width: 100%;
  }
  .project__text-center-text {
    width: 100%;
    gap: 16px;
  }
  .project__text-bottom {
    flex-direction: column;
    width: 100%;
  }
  .project__big-box-text {
    width: 96%;
    padding-left: 12px;
  }
  .project__big-paragraph {
    width: 100%;
  }
  .project__image-box {
    flex-direction: column;
  }
  .project__box-img {
    width: 358px;
    height: 332px;
    border-radius: 12px;
  }
}
.work {
  margin-top: 224px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 96px;
}
.work-line {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 155px;
}
.work__top-text {
  display: flex;
  width: 1328px;
  flex-direction: column;
  align-items: flex-start;
  gap: 64px;
  margin-top: 52px;
  margin-bottom: 64px;
}
.work__top-text-title {
  color: #FFF;
  font-family: Roc Grotesk;
  font-size: 80px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%;
  text-transform: uppercase;
}
.work__top-button {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.work__top-btn {
  display: flex;
  height: 32px;
  padding: 9px 12px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 6px;
  background: #333;
  border: none;
  color: #999;
  font-family: Roc Grotesk;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
}
.work-grid {
  display: flex;
  flex-flow: row wrap;
  gap: 64px;
  justify-content: center;
}
.work__client {
  display: flex;
  flex-flow: row wrap;
  gap: 14px;
  justify-content: center;
}
.work__client-box-white {
  display: flex;
  width: 656px;
  height: 448px;
  padding: 16px;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  flex-shrink: 0;
  border-radius: 16px;
  background: #FFF;
  position: relative;
}
.work__client-box-black {
  display: flex;
  width: 656px;
  height: 448px;
  padding: 16px;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  flex-shrink: 0;
  border-radius: 16px;
  background: #252525;
  position: relative;
}
.work__clinet-title {
  color: #000;
  font-family: Roc Grotesk;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%;
  text-transform: uppercase;
}
.work__clinet-title-black {
  color: #F1F1F1;
  font-family: Roc Grotesk;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%;
  text-transform: uppercase;
}
.work__client-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  align-self: stretch;
}
.work__client-category {
  display: flex;
  padding: 9px 4px;
  align-items: flex-start;
  gap: 10px;
  border-radius: 4px;
  background: #0DB14B;
  color: #F1F1F1;
  font-family: Roc Grotesk;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
}
.work__client-text {
  color: #050505;
  font-family: Roc Grotesk;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
.work__client-img {
  position: absolute;
  left: 263px;
  top: 137px;
}
.work__client-img-dark {
  position: absolute;
  left: 270px;
  top: 205px;
}

@media screen and (min-width: 1181px) and (max-width: 1280px) {
  .work__top-text {
    width: -moz-fit-content;
    width: fit-content;
    margin-left: 24px;
  }
}
@media screen and (min-width: 769px) and (max-width: 1180px) {
  .work-line {
    flex-wrap: wrap;
    gap: 64px;
    margin: 0 10px;
    justify-content: center;
  }
  .work__top-text {
    width: 93%;
    padding-left: 24px;
  }
  .work__top-text-title {
    font-size: 32px;
  }
  .work__top-button {
    flex-wrap: wrap;
  }
}
@media screen and (min-width: 425px) and (max-width: 768px) {
  .work-line {
    flex-wrap: wrap;
    gap: 64px;
    margin: 0 10px;
    justify-content: center;
  }
  .work__top-text {
    width: 93%;
    padding-left: 24px;
  }
  .work__top-text-title {
    font-size: 32px;
  }
  .work__top-button {
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 425px) {
  .work-line {
    flex-wrap: wrap;
    gap: 64px;
    margin: 0 10px;
  }
  .work__top-text {
    width: 93%;
    padding-left: 24px;
  }
  .work__top-text-title {
    font-size: 32px;
  }
  .work__top-button {
    flex-wrap: wrap;
  }
}
.blog {
  display: flex;
  padding: 56px;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
  border-radius: 32px;
  background: #252525;
  margin-top: 200px;
}
.blog__top {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
}
.blog__top-title {
  color: #0DB14B;
  font-family: roc-grotesk-wide, sans-serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%;
  text-transform: uppercase;
}
.blog__top-right {
  display: flex;
  width: 160px;
  padding: 10px 24px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  border-radius: 38px;
  border: 1px solid #FFCE34;
}
.blog__top-right a {
  width: 100%;
  height: 100%;
  text-align: center;
  color: #FFF;
  font-family: roc-grotesk, sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 145%;
  letter-spacing: 0.42px;
  text-transform: uppercase;
}
.blog__container {
  display: flex;
  padding: 24px 0px;
  align-items: center;
  gap: 128px;
  align-self: stretch;
}
.blog__box {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
  flex: 1 0 0;
}
.blog__box-top {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  align-self: stretch;
}
.blog__box-data {
  color: #FFF;
  font-family: roc-grotesk, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
.blog__box-title {
  color: #F9F9F9;
  font-family: roc-grotesk-wide, sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.blog__box-category {
  display: flex;
  padding: 3px 10px;
  align-items: flex-start;
  border-radius: 4px;
  background: #FFCE34;
  color: #000;
  font-family: roc-grotesk, sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
}
.blog__box-paragraph {
  color: #BBB;
  font-family: roc-grotesk, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
.blog__top-box {
  display: flex;
  width: 1328px;
  flex-direction: column;
  align-items: flex-start;
  gap: 64px;
}
.blog__top-box-text {
  display: flex;
  width: 768px;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}
.blog__top-box-title {
  color: #FFF;
  font-family: roc-grotesk, sans-serif;
  font-size: 80px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%;
  text-transform: uppercase;
}
.blog__top-box-paragraph {
  color: #FFF;
  font-family: roc-grotesk, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
.blog__top-blog-box-button {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.blog__top-blog-box-btn {
  display: flex;
  height: 32px;
  padding: 9px 12px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 6px;
  background: #333;
  color: #999;
  font-family: roc-grotesk, sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
}
.blog__section {
  border-radius: 24px;
  padding: 24px;
}
.blog__box-swiper {
  display: flex;
  width: 968px;
  padding: 24px;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
  position: absolute;
  bottom: 48px;
  margin-left: 24px;
  border-radius: 12px;
  background: #151515;
}
.blog__container-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  align-self: stretch;
  margin-bottom: 46px;
}
.blog__container-title {
  color: #0DB14B;
  font-family: roc-grotesk, sans-serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%;
  text-transform: uppercase;
}
.blog__container-btn {
  display: flex;
  padding: 10px 24px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 38px;
  border: 1px solid #FFCE34;
  color: #FFF;
  font-family: roc-grotesk, sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 145%;
  letter-spacing: 0.42px;
  text-transform: uppercase;
  background: transparent;
}
.blog__section-img {
  width: 1375px;
}

.swiper-button-next {
  border-radius: 12px;
  background: #333;
  right: 10px;
  padding: 16px;
  color: #FFCE34 !important;
  fill: #FFCE34 !important;
  stroke: #FFCE34 !important;
}

.swiper-button-prev {
  border-radius: 12px;
  background: #333;
  left: 0px;
  padding: 16px;
  color: #FFCE34 !important;
  fill: #FFCE34 !important;
  stroke: #FFCE34 !important;
}

@media screen and (min-width: 1181px) and (max-width: 1280px) {
  .blog__top-box {
    width: -moz-fit-content;
    width: fit-content;
    margin-left: 24px;
  }
  .blog__section-img {
    width: 100%;
  }
  .blog__box-swiper {
    bottom: 10px;
    margin-left: 50px;
  }
}
@media screen and (min-width: 769px) and (max-width: 1180px) {
  .blog {
    padding: 16px 16px 32px 16px;
    gap: 24px;
  }
  .blog__top {
    width: 100%;
  }
  .blog__top-right {
    display: none;
  }
  .blog__container {
    padding: 24px 0px;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 32px;
    border: none;
    width: -moz-fit-content;
    width: fit-content;
    margin: 12px;
  }
  .blog__box {
    gap: 24px;
  }
  .blog__top-box {
    width: -moz-fit-content;
    width: fit-content;
  }
  .blog__top-box-text {
    width: -moz-fit-content;
    width: fit-content;
    padding-left: 12px;
  }
  .blog__top-blog-box-button {
    flex-flow: wrap;
    padding-left: 12px;
  }
  .blog-img {
    width: 100%;
  }
  .blog__section-img {
    width: 100%;
  }
  .blog__box-swiper {
    width: -moz-fit-content;
    width: fit-content;
    bottom: 0px;
    margin: 0;
    margin-right: 24px;
  }
  .blog__container-img {
    width: 100%;
  }
  .blog__container-top {
    padding-left: 12px;
  }
  .blog__container-btn {
    display: none;
  }
  .blog__top-box-text {
    width: -moz-fit-content;
    width: fit-content;
  }
  .blog__top-box-title {
    font-size: 44px;
  }
  .swiper {
    width: 100%;
    height: 650px;
    margin-bottom: 200px;
  }
  .swiper-button-next {
    display: none;
  }
  .swiper-button-prev {
    display: none;
  }
}
@media screen and (min-width: 425px) and (max-width: 768px) {
  .blog {
    padding: 16px 16px 32px 16px;
    gap: 24px;
  }
  .blog__top {
    width: 100%;
  }
  .blog__top-right {
    display: none;
  }
  .blog__container {
    padding: 24px 0px;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 32px;
    border: none;
    width: -moz-fit-content;
    width: fit-content;
    margin: 12px;
  }
  .blog__box {
    gap: 24px;
  }
  .blog__top-box {
    width: -moz-fit-content;
    width: fit-content;
  }
  .blog__top-box-text {
    width: -moz-fit-content;
    width: fit-content;
    padding-left: 12px;
  }
  .blog__top-blog-box-button {
    flex-flow: wrap;
    padding-left: 12px;
  }
  .blog-img {
    width: 100%;
  }
  .blog__section-img {
    width: 100%;
  }
  .blog__box-swiper {
    width: -moz-fit-content;
    width: fit-content;
    bottom: 0px;
    margin: 0;
    margin-right: 24px;
  }
  .blog__container-img {
    width: 100%;
  }
  .blog__container-top {
    padding-left: 12px;
  }
  .blog__container-btn {
    display: none;
  }
  .blog__top-box-text {
    width: -moz-fit-content;
    width: fit-content;
  }
  .blog__top-box-title {
    font-size: 32px;
  }
  .swiper {
    width: 100%;
    height: 650px;
    margin-bottom: 200px;
  }
  .swiper-button-next {
    display: none;
  }
  .swiper-button-prev {
    display: none;
  }
}
@media screen and (max-width: 425px) {
  .blog {
    padding: 16px 16px 32px 16px;
    gap: 24px;
  }
  .blog__top {
    width: 100%;
  }
  .blog__top-right {
    display: none;
  }
  .blog__container {
    padding: 24px 0px;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 32px;
    border: none;
    width: -moz-fit-content;
    width: fit-content;
    margin: 12px;
  }
  .blog__box {
    gap: 24px;
  }
  .blog__top-box {
    width: -moz-fit-content;
    width: fit-content;
  }
  .blog__top-box-text {
    width: -moz-fit-content;
    width: fit-content;
    padding-left: 12px;
  }
  .blog__top-blog-box-button {
    flex-flow: wrap;
    padding-left: 12px;
  }
  .blog-img {
    width: 100%;
  }
  .blog__section-img {
    width: 100%;
  }
  .blog__box-swiper {
    width: -moz-fit-content;
    width: fit-content;
    bottom: 0px;
    margin: 0;
    margin-right: 24px;
  }
  .blog__container-img {
    width: 100%;
  }
  .blog__container-top {
    padding-left: 12px;
  }
  .blog__container-btn {
    display: none;
  }
  .blog__top-box-text {
    width: -moz-fit-content;
    width: fit-content;
  }
  .blog__top-box-title {
    font-size: 32px;
  }
  .swiper {
    width: 100%;
    height: 650px;
    margin-bottom: 200px;
  }
  .swiper-button-next {
    display: none;
  }
  .swiper-button-prev {
    display: none;
  }
}
.ready {
  display: flex;
  height: 370px;
  padding: 64px;
  gap: 84px;
  flex-shrink: 0;
  border-radius: 32px;
  background: #FFF;
  justify-content: center;
  margin-top: 224px;
}
.ready__box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 24px;
}
.ready__box-title {
  color: #000;
  font-family: roc-grotesk-wide, sans-serif;
  font-size: 40px;
  font-style: normal;
  font-weight: 800;
  line-height: 110%;
  text-transform: uppercase;
  width: 544px;
}
.ready__box-paragraph {
  color: #000;
  font-family: roc-grotesk, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  width: 644px;
  line-height: 150%;
}
.ready__box-botton {
  display: flex;
  align-items: center;
  gap: 10px;
}
.ready__box-btn {
  display: flex;
  padding: 5px 10px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 38px;
  background: #000;
  color: #FFF;
  font-family: roc-grotesk, sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 145%;
  letter-spacing: 0.42px;
  text-transform: uppercase;
  width: 350px;
}
.ready__box-bottom-text {
  color: #000;
  font-family: roc-grotesk, sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
.ready__box-btn-2 {
  background: #000;
  color: #FFF;
  font-family: roc-grotesk, sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 145%;
  letter-spacing: 0.42px;
  text-transform: uppercase;
  display: flex;
  padding: 10px 24px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border-radius: 38px;
  background: #FFCE34;
  border: none;
}
.ready__img {
  position: relative;
  top: -111px;
}

@media screen and (min-width: 1181px) and (max-width: 1280px) {
  .ready__box-paragraph {
    width: 100%;
  }
  .ready__box-btn {
    width: 268px;
  }
  .ready__box-btn-2 {
    width: 268px;
  }
}
@media screen and (min-width: 769px) and (max-width: 1180px) {
  .ready {
    padding: 16px;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    height: 700px;
  }
  .ready__box {
    width: 100%;
  }
  .ready__img {
    width: 278px;
    height: auto;
  }
  .ready__box-title {
    font-weight: 700;
    width: 100%;
  }
  .ready__box-paragraph {
    width: 100%;
  }
  .ready__box-botton {
    flex-direction: column;
    justify-content: center;
    width: 100%;
    margin: 0 auto;
  }
  .ready__box-btn {
    padding: 10px 24px;
    width: 100%;
  }
}
@media screen and (min-width: 425px) and (max-width: 768px) {
  .ready {
    padding: 16px;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    height: 100%;
  }
  .ready__box {
    width: 100%;
  }
  .ready__img {
    width: 278px;
    height: auto;
  }
  .ready__box-title {
    font-weight: 700;
    width: 100%;
  }
  .ready__box-paragraph {
    width: 100%;
  }
  .ready__box-botton {
    flex-direction: column;
    justify-content: center;
    width: 100%;
    margin: 0 auto;
  }
  .ready__box-btn {
    padding: 10px 24px;
    width: 100%;
  }
}
@media screen and (max-width: 425px) {
  .ready {
    padding: 16px;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    height: 100%;
  }
  .ready__box {
    width: 100%;
  }
  .ready__img {
    width: 278px;
    height: auto;
  }
  .ready__box-title {
    font-weight: 700;
    width: 100%;
  }
  .ready__box-paragraph {
    width: 100%;
  }
  .ready__box-botton {
    flex-direction: column;
    justify-content: center;
    width: 100%;
    margin: 0 auto;
  }
  .ready__box-btn {
    padding: 10px 24px;
    width: 100%;
  }
}
.footer {
  display: flex;
  padding: 56px 0px;
  align-items: flex-start;
  gap: 56px;
  margin-top: 200px;
  border-radius: 32px 32px 0px 0px;
  background: #111;
}
.footer__box-1 {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  align-self: stretch;
  border-right: 1px solid #333;
  padding-right: 40px;
  margin-left: 40px;
}
.footer__box-1-socials {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}
.footer__box-1-socials-title {
  color: #F9F9F9;
  font-family: roc-grotesk, sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
}
.footer__box-1-socials-link {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.footer__box-2 {
  display: flex;
  padding-left: 0px;
  align-items: flex-start;
  gap: 40px;
  align-self: stretch;
  border-right: 1px solid #333;
  padding-right: 40px;
}
.footer__box-2-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  align-self: stretch;
}
.footer__box-2-text a {
  color: #F9F9F9;
  font-family: roc-grotesk, sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  text-decoration: none;
}
.footer__box-3 {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  flex: 1 0 0;
  align-self: stretch;
}
.footer__box-3-email {
  color: #0DB14B;
  font-family: roc-grotesk-wide, sans-serif;
  font-size: 60px;
  font-style: normal;
  font-weight: 900;
  line-height: 110%;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}
.footer__box-3-bottom {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  align-self: stretch;
}
.footer__box-3-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 13px;
}
.footer__box-3-text {
  color: #F9F9F9;
  font-family: roc-grotesk, sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
}
.footer__box-3-number {
  color: #F9F9F9;
  font-family: roc-grotesk, sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
}
.footer__box-3-right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 13px;
}
.footer__box-3-text-r {
  color: #F9F9F9;
  font-family: roc-grotesk, sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
}
.footer__box-3-address {
  color: #F9F9F9;
  font-family: roc-grotesk, sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

p {
  margin: 0;
  padding: 0;
}

@media screen and (min-width: 1181px) and (max-width: 1280px) {
  .footer__box-3-email {
    font-size: 44px;
  }
}
@media screen and (min-width: 769px) and (max-width: 1180px) {
  .footer {
    display: flex;
    padding: 24px 16px 18px 16px;
    flex-direction: column;
    gap: 32px;
  }
  .footer__box-1 {
    gap: 16px;
    margin-left: 24px;
    border: none;
  }
  .footer__box-2 {
    gap: 16px;
    border: none;
    border-top: 1px solid #333;
    padding-right: 0px;
    padding-top: 32px;
    margin-left: 24px;
  }
  .footer__box-3 {
    margin-left: 24px;
  }
  .footer__box-3-email {
    font-size: 40px;
    font-weight: 700;
    letter-spacing: 0.2px;
  }
  .footer__box-3-bottom {
    padding: 24px 16px 48px 0px;
    flex-direction: column;
    gap: 32px;
  }
}
@media screen and (min-width: 425px) and (max-width: 768px) {
  .footer {
    display: flex;
    padding: 24px 16px 18px 16px;
    flex-direction: column;
    gap: 32px;
  }
  .footer__box-1 {
    gap: 16px;
    margin-left: 24px;
    border: none;
  }
  .footer__box-2 {
    gap: 16px;
    border: none;
    border-top: 1px solid #333;
    padding-right: 0px;
    padding-top: 32px;
    margin-left: 24px;
  }
  .footer__box-3 {
    margin-left: 24px;
  }
  .footer__box-3-email {
    font-size: 40px;
    font-weight: 700;
    letter-spacing: 0.2px;
  }
  .footer__box-3-bottom {
    padding: 24px 16px 48px 0px;
    flex-direction: column;
    gap: 32px;
  }
}
@media screen and (max-width: 425px) {
  .footer {
    display: flex;
    padding: 24px 16px 18px 16px;
    flex-direction: column;
    gap: 32px;
  }
  .footer__box-1 {
    gap: 16px;
    margin-left: 24px;
    border: none;
  }
  .footer__box-2 {
    gap: 16px;
    border: none;
    border-top: 1px solid #333;
    padding-right: 0px;
    padding-top: 32px;
    margin-left: 24px;
  }
  .footer__box-3 {
    margin-left: 24px;
  }
  .footer__box-3-email {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.2px;
  }
  .footer__box-3-bottom {
    padding: 24px 16px 48px 0px;
    flex-direction: column;
    gap: 32px;
  }
}
.main {
  display: flex;
  height: 424px;
  border-radius: 32px;
  background: #0DB14B;
  margin-top: 190px;
}
.main-text {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 768px;
  margin-left: 40px;
  justify-content: center;
}
.main-title {
  color: #FFF;
  font-family: roc-grotesk-wide, sans-serif;
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%;
  text-transform: uppercase;
}
.main-paragraph {
  color: #FFF;
  font-family: roc-grotesk, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
.main-paragraph-bold {
  color: #FFF;
  font-family: roc-grotesk, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
}
.main-image {
  position: relative;
  top: -152px;
}
.main-image-1 {
  position: relative;
  top: -90px;
}
.main-image-mobile {
  display: none;
}

@media screen and (min-width: 769px) and (max-width: 1180px) {
  .main {
    align-items: flex-start;
    padding-left: 24px;
    margin-top: 0px;
    height: 555px;
  }
  .main-text {
    display: flex;
    gap: 24px;
    width: 100%;
    margin-left: 0;
    margin-top: 40px;
  }
  .main-title {
    font-size: 24px;
  }
  .main-image {
    top: 9px;
    left: 50%;
    transform: translateX(-100%);
  }
  .main__dog-img {
    width: 400px;
    height: auto;
  }
  .main-img {
    width: 400px;
    height: auto;
  }
  .main-img-1 {
    width: 400px;
    height: auto;
  }
  .main-image-1 {
    position: relative;
    top: 69px;
    left: 50%;
    transform: translateX(-100%);
  }
  .main-image-about {
    display: none;
  }
  .main-image-mobile {
    display: block;
  }
  .main-mobile {
    position: relative;
    top: 123px;
    left: 100%;
    transform: translateX(-100%);
  }
}
@media screen and (min-width: 425px) and (max-width: 768px) {
  .main {
    flex-direction: column;
    align-items: flex-start;
    padding-left: 24px;
    margin-top: 0px;
    height: 555px;
  }
  .main-text {
    display: flex;
    gap: 24px;
    width: 100%;
    margin-left: 0;
    margin-top: 40px;
  }
  .main-title {
    font-size: 24px;
  }
  .main-image {
    top: 9px;
    left: 50%;
    transform: translateX(-50%);
  }
  .main__dog-img {
    width: 356px;
    height: 334px;
  }
  .main-img {
    width: 380px;
    height: 295px;
  }
  .main-img-1 {
    width: 320px;
    height: 292px;
  }
  .main-image-1 {
    position: relative;
    top: 69px;
    left: 50%;
    transform: translateX(-50%);
  }
  .main-image-about {
    display: none;
  }
  .main-image-mobile {
    display: block;
  }
  .main-mobile {
    position: relative;
    top: 123px;
    left: 100%;
    transform: translateX(-50%);
  }
}
@media screen and (max-width: 425px) {
  .main {
    flex-direction: column;
    align-items: flex-start;
    padding-left: 24px;
    margin-top: 0px;
    height: 704px;
  }
  .main-text {
    display: flex;
    gap: 24px;
    width: 100%;
    margin-left: 0;
    margin-top: 40px;
  }
  .main-title {
    font-size: 24px;
  }
  .main-image {
    top: 35px;
    right: -33px;
  }
  .main__dog-img {
    width: 356px;
    height: 334px;
  }
  .main-img {
    width: 330px;
    height: 245px;
  }
  .main-img-1 {
    width: 320px;
    height: 292px;
  }
  .main-image-1 {
    position: relative;
    top: 80px;
    right: -20px;
  }
  .main-image-about {
    display: none;
  }
  .main-image-mobile {
    display: block;
  }
  .main-mobile {
    position: relative;
    top: 176px;
  }
}
.what__section {
  display: flex;
  width: 1328px;
  justify-content: space-between;
  align-items: flex-start;
  margin: 0 auto;
  margin-top: 128px;
}
.what__section-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
}
.what__section-left ul {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.what__section-button {
  color: #999;
  font-family: roc-grotesk-wide, sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 110%;
  border: none;
  background-color: transparent;
}
.what__section-right {
  display: flex;
  width: 768px;
  flex-direction: column;
  align-items: flex-start;
  gap: 48px;
  flex-shrink: 0;
}
.what__section-right-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  align-self: stretch;
}
.what__section-title {
  color: #F1F1F1;
  font-family: roc-grotesk-wide, sans-serif;
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%;
  text-transform: uppercase;
}
.what__section-paragraph {
  color: #BBB;
  font-family: roc-grotesk, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
.what__section-btn {
  display: flex;
  padding: 10px 24px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 38px;
  background: #FFCE34;
  color: #000;
  font-family: roc-grotesk, sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 145%;
  letter-spacing: 0.42px;
  text-transform: uppercase;
  text-decoration: none;
}

@media screen and (min-width: 1181px) and (max-width: 1280px) {
  .what__section {
    width: -moz-fit-content;
    width: fit-content;
    gap: 50px;
  }
}
@media screen and (min-width: 769px) and (max-width: 1180px) {
  .what__section {
    width: 100%;
    padding-bottom: 32px;
    flex-direction: column;
    gap: 48px;
  }
  .what__section-right {
    width: 100%;
    align-items: center;
  }
  .what__section-title {
    font-size: 32px;
  }
}
@media screen and (min-width: 426px) and (max-width: 768px) {
  .what__section {
    width: 100%;
    padding-bottom: 32px;
    flex-direction: column;
    gap: 48px;
  }
  .what__section-right {
    width: 100%;
    align-items: center;
  }
  .what__section-title {
    font-size: 32px;
  }
}
@media screen and (max-width: 425px) {
  .what__section {
    width: 100%;
    padding-bottom: 32px;
    flex-direction: column;
    gap: 48px;
  }
  .what__section-right {
    width: 100%;
    align-items: center;
  }
  .what__section-title {
    font-size: 32px;
  }
}
.services-tabs li {
  display: flex;
  align-items: center;
  gap: 6px;
}
.services-tabs li::before {
  content: "";
  display: block;
  width: 0px;
  height: 2px;
  background-color: transparent;
  transition: 0.2s linear;
}
.services-tabs .active-tab p {
  color: #FFCE34;
}
.services-tabs .active-tab::before {
  width: 40px;
  background-color: #FFCE34;
}

.work__section {
  display: flex;
  align-items: flex-start;
  gap: 64px;
  margin-top: 128px;
  overflow: hidden;
}
.work__section-button {
  display: flex;
  gap: 10px;
  align-items: center;
}
.work__section-button .work__section-btn-next,
.work__section-button .work__section-btn-prev {
  cursor: pointer;
}
.work__section-left {
  display: flex;
  width: 320px;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  align-self: stretch;
}
.work__section-top {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
  width: 320px;
}
.work__section-title {
  color: #0DB14B;
  font-family: roc-grotesk-wide, sans-serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%;
  text-transform: uppercase;
}
.work__section-btn {
  border: none;
  border-radius: 12px;
  background: #333;
  padding: 16px;
}
.work__section-bottom {
  display: flex;
  padding: 10px 24px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 38px;
  border: 1px solid #FFCE34;
  color: #FFF;
  font-family: roc-grotesk, sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 145%;
  letter-spacing: 0.42px;
  text-transform: uppercase;
}
.work__section-bottom-mobile {
  display: none;
  padding: 10px 24px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 38px;
  border: 1px solid #FFCE34;
  color: #FFF;
  font-family: roc-grotesk, sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 145%;
  letter-spacing: 0.42px;
  text-transform: uppercase;
}
.work__section-box {
  display: flex;
  padding: 16px;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  border-radius: 16px;
  background: #FFCE34;
  width: 406px;
  margin-top: 16px;
}
.work__section-box-title {
  color: #000;
  font-family: roc-grotesk-wide, sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%;
  text-transform: uppercase;
}
.work__section-box-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  align-self: stretch;
}
.work__section-box-left {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.work__section-green {
  display: flex;
  padding: 9px 4px;
  align-items: flex-start;
  gap: 10px;
  border-radius: 8px;
  background: #0DB14B;
  color: #F1F1F1;
  font-family: roc-grotesk, sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
}
.work__section-box-right {
  color: #000;
  font-family: roc-grotesk, sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
}
.work__section-swiper {
  width: 1440px;
}
.work__section-swiper .swiper-slide {
  width: auto !important;
}
.work__section-swiper .swiper-slide .work__section-container {
  width: 432px;
  height: auto;
}
.work__section-swiper .swiper-slide .work__section-container-img {
  width: 100%;
  height: 512px;
  overflow: hidden;
}
.work__section-swiper .swiper-slide .work__section-container-img img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media screen and (min-width: 769px) and (max-width: 1180px) {
  .work__section {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .work__section-swiper {
    display: none;
  }
  .work__section-button {
    display: none;
  }
  .work__section-bottom {
    display: none;
  }
  .work__section-bottom-mobile {
    display: flex;
  }
  .work__section-title {
    padding-left: 24px;
  }
}
@media screen and (min-width: 426px) and (max-width: 768px) {
  .work__section {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .work__section-swiper {
    display: none;
  }
  .work__section-button {
    display: none;
  }
  .work__section-bottom {
    display: none;
  }
  .work__section-bottom-mobile {
    display: flex;
  }
  .work__section-title {
    padding-left: 24px;
  }
}
@media screen and (max-width: 425px) {
  .work__section {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .work__section-swiper {
    display: none;
  }
  .work__section-button {
    display: none;
  }
  .work__section-bottom {
    display: none;
  }
  .work__section-bottom-mobile {
    display: flex;
  }
  .work__section-title {
    padding-left: 24px;
  }
}
.about {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 144px;
  margin-bottom: 360px;
}
.about__top {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
}
.about__top-title {
  color: #F1F1F1;
  font-family: Roc Grotesk;
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%;
  text-transform: uppercase;
}
.about__top-container {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  flex-flow: row wrap;
}
.about__top-box {
  display: flex;
  height: 512px;
  width: 433px;
  padding: 12px;
  align-items: flex-end;
  gap: 10px;
  flex: 1 0 0;
  border-radius: 16px;
  background: #FFCE34;
  position: relative;
  justify-content: center;
}
.about__top-img {
  width: 432px;
  height: 512px;
  margin: 0 auto;
}
.about__top-info {
  position: absolute;
  display: flex;
  padding: 16px;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  flex: 1 0 0;
  align-self: stretch;
  border-radius: 12px;
  background: #000;
  color: #FFF;
  font-family: Roc Grotesk;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%;
  text-transform: uppercase;
  width: 400px;
  bottom: 12px;
}
.about__center {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 48px;
  align-self: stretch;
}
.about__center-top-title {
  color: #F1F1F1;
  font-family: Roc Grotesk;
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%;
  text-transform: uppercase;
}
.about__center-container {
  display: flex;
  align-items: flex-start;
  gap: 48px;
  align-self: stretch;
}
.about__center-box {
  display: flex;
  width: 296px;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
}
.about__center-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 13px;
  align-self: stretch;
}
.about__center-title {
  color: #F9F9F9;
  font-family: Roc Grotesk;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
}
.about__center-paragraph {
  color: #BBB;
  font-family: Roc Grotesk;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
.about__middel {
  display: flex;
  width: 1328px;
  padding: 64px;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  border-radius: 32px;
  background: #FFCE34;
  position: relative;
}
.about__middel-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  align-self: stretch;
  width: 594px;
}
.about__middel-title {
  color: #000;
  font-family: Roc Grotesk;
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%;
  text-transform: uppercase;
}
.about__middel-paragraph {
  color: #000;
  font-family: Roc Grotesk;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
.about__middel-image {
  position: absolute;
  right: 80px;
  top: -108px;
}
.about__bottom {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 48px;
  align-self: stretch;
}
.about__bottom-title {
  color: #F1F1F1;
  font-family: Roc Grotesk;
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%;
  text-transform: uppercase;
}
.about__bottom-container {
  display: flex;
  align-items: flex-start;
  gap: 48px;
  align-self: stretch;
}
.about__bottom-box {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 13px;
  flex: 1 0 0;
}
.about__bottom-box-title {
  color: #F9F9F9;
  font-family: Roc Grotesk;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
}
.about__bottom-box-paragraph {
  color: #BBB;
  font-family: Roc Grotesk;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}

@media screen and (min-width: 1181px) and (max-width: 1280px) {
  .about__middel {
    width: 1000px;
    margin: 0 auto;
  }
  .about__middel-text {
    width: 530px;
  }
  .about__bottom {
    margin-left: 24px;
  }
}
@media screen and (min-width: 769px) and (max-width: 1180px) {
  .about__middel {
    width: -moz-fit-content;
    width: fit-content;
    flex-direction: column-reverse;
    padding: 10px 0px 10 12px;
  }
  .about__middel-image {
    position: inherit;
    top: 0px;
    left: 50%;
    transform: translateX(-50%);
  }
  .about__middel-img {
    width: 224px;
    height: 214px;
    margin: 0 auto;
  }
  .about__middel-text {
    width: -moz-fit-content;
    width: fit-content;
    padding-left: 12px;
  }
  .about__bottom {
    width: -moz-fit-content;
    width: fit-content;
    margin: 0px 10px;
  }
}
@media screen and (min-width: 425px) and (max-width: 768px) {
  .about__top-box {
    width: 317px;
    height: 382px;
    align-items: flex-end;
  }
  .about__top-img {
    width: 310px;
    height: 379px;
    margin: 0 auto;
  }
  .about__top-info {
    width: 320px;
    margin: 0 auto;
  }
  .about__center-container {
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px;
    padding-left: 12px;
  }
  .about__center-top-title {
    padding-left: 12px;
    font-size: 32px;
  }
  .about__middel {
    width: -moz-fit-content;
    width: fit-content;
    flex-direction: column-reverse;
    padding: 10px 0px 10 12px;
  }
  .about__middel-image {
    position: inherit;
    top: 0px;
    right: -75px;
  }
  .about__middel-img {
    width: 224px;
    height: 214px;
    margin: 0 auto;
  }
  .about__middel-text {
    width: -moz-fit-content;
    width: fit-content;
    padding-left: 12px;
  }
  .about__bottom-title {
    padding-left: 12px;
  }
  .about__middel-paragraph {
    width: -moz-fit-content;
    width: fit-content;
  }
  .about__bottom-container {
    flex-direction: column;
  }
  .about__bottom-box {
    padding-left: 12px;
  }
}
@media screen and (max-width: 425px) {
  .about__top-box {
    width: 317px;
    height: 382px;
    align-items: flex-end;
  }
  .about__top-img {
    width: 310px;
    height: 379px;
    margin: 0 auto;
  }
  .about__top-info {
    width: 320px;
    margin: 0 auto;
  }
  .about__center-container {
    flex-direction: column;
    gap: 32px;
    padding-left: 12px;
  }
  .about__center-top-title {
    padding-left: 12px;
    font-size: 32px;
  }
  .about__middel {
    width: -moz-fit-content;
    width: fit-content;
    flex-direction: column-reverse;
    padding: 10px 0px 10 12px;
  }
  .about__middel-image {
    position: inherit;
    top: 0px;
    right: -75px;
  }
  .about__middel-img {
    width: 224px;
    height: 214px;
    margin: 0 auto;
  }
  .about__middel-text {
    width: -moz-fit-content;
    width: fit-content;
    padding-left: 12px;
  }
  .about__bottom-title {
    padding-left: 12px;
  }
  .about__middel-paragraph {
    width: -moz-fit-content;
    width: fit-content;
  }
  .about__bottom-container {
    flex-direction: column;
  }
  .about__bottom-box {
    padding-left: 12px;
  }
}
.article__top {
  display: flex;
  width: 992px;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
  margin-top: 40px;
  margin-bottom: 64px;
}
.article__top-button {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.article__top-btn {
  color: #F1F1F1;
  font-feature-settings: "clig" off, "liga" off;
  font-family: Roc Grotesk;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 145%;
  letter-spacing: 0.42px;
  text-transform: uppercase;
  border: none;
  background: transparent;
  text-decoration: none;
}
.article__top-title {
  color: #FFF;
  font-family: Roc Grotesk;
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%;
  text-transform: uppercase;
}
.article__box {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  align-self: stretch;
  padding-bottom: 24px;
  margin-top: 32px;
  margin-bottom: 64px;
  border-bottom: 1px solid #444;
}
.article__box-text {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.article__box-info {
  display: flex;
  padding: 2px;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}
.article__box-info-top {
  color: #FFF;
  font-family: Roc Grotesk;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
.article__box-info-bottom {
  color: #FFF;
  font-family: Roc Grotesk;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
}
.article__paragrpaph {
  width: 992px;
  color: #FFF;
  font-family: Roc Grotesk;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  margin-bottom: 128px;
}

@media screen and (min-width: 769px) and (max-width: 1180px) {
  .article__top {
    width: -moz-fit-content;
    width: fit-content;
    padding-left: 12px;
  }
  .article__top-title {
    font-size: 32px;
  }
  .article__box {
    flex-direction: column;
    gap: 32px;
    padding-left: 12px;
  }
  .article__box-text {
    flex-direction: column;
  }
  .article__paragrpaph {
    width: -moz-fit-content;
    width: fit-content;
    padding-left: 12px;
  }
}
@media screen and (min-width: 425px) and (max-width: 768px) {
  .article__top {
    width: -moz-fit-content;
    width: fit-content;
    padding-left: 12px;
  }
  .article__top-title {
    font-size: 32px;
  }
  .article__box {
    flex-direction: column;
    gap: 32px;
    padding-left: 12px;
  }
  .article__box-text {
    flex-direction: column;
  }
  .article__paragrpaph {
    width: -moz-fit-content;
    width: fit-content;
    padding-left: 12px;
  }
}
@media screen and (max-width: 425px) {
  .article__top {
    width: -moz-fit-content;
    width: fit-content;
    padding-left: 12px;
  }
  .article__top-title {
    font-size: 32px;
  }
  .article__box {
    flex-direction: column;
    gap: 32px;
    padding-left: 12px;
  }
  .article__box-text {
    flex-direction: column;
  }
  .article__paragrpaph {
    width: -moz-fit-content;
    width: fit-content;
    padding-left: 12px;
  }
}
.contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 80px;
  width: 1328px;
  margin: 0 auto;
  margin-top: 50px;
}
.contact__bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 1328px;
}
.contact__info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  align-self: stretch;
}
.contact__info-top {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 44px;
}
.contact__info-box {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}
.contact__info-box-top {
  color: #F9F9F9;
  font-family: Roc Grotesk;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
}
.contact__info-box-bottom {
  color: #F9F9F9;
  font-family: Roc Grotesk;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
}
.contact__info-bottom {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 40px;
}
.contact__info-button {
  color: #F9F9F9;
  font-family: Roc Grotesk;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%;
  text-transform: uppercase;
}
.contact__info-btn {
  display: flex;
  padding: 10px 24px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 38px;
  background: #FFF;
  color: #000;
  font-family: Roc Grotesk;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 145%;
  letter-spacing: 0.42px;
  text-transform: uppercase;
}
.contact__form-container {
  display: flex;
  width: 768px;
  padding: 32px;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
  flex-shrink: 0;
  border-radius: 16px;
  background: #151515;
}
.contact__form-box-title {
  color: #F9F9F9;
  font-family: Roc Grotesk;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%;
  text-transform: uppercase;
}
.contact__form {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  align-self: stretch;
}
.contact__form-box {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  align-self: stretch;
}
.contact__form-text {
  color: #FFF;
  font-family: Roc Grotesk;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  text-transform: uppercase;
}
.contact__form-input {
  display: flex;
  padding: 20px;
  align-items: center;
  gap: 10px;
  align-self: stretch;
  color: #FFF;
  font-family: Roc Grotesk;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  border-radius: 12px;
  background: #222;
  border: none;
}
.contact__form-textarea {
  display: flex;
  height: 160px;
  padding: 20px;
  align-items: flex-start;
  gap: 10px;
  align-self: stretch;
  border-radius: 12px;
  background: #222;
  border: none;
}
.contact__form-botton {
  display: flex;
  justify-content: space-between;
  align-items: center;
  align-self: stretch;
}
.contact__form-check {
  display: flex;
  align-items: center;
  gap: 8px;
}
.contact__check-text {
  color: #FFF;
  font-family: Roc Grotesk;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
.contact__form-btn {
  display: flex;
  width: 256px;
  padding: 18px 24px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 38px;
  background: #FFCE34;
  color: #000;
  font-family: Roc Grotesk;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 145%;
  letter-spacing: 0.42px;
  text-transform: uppercase;
}

@media screen and (min-width: 1181px) and (max-width: 1280px) {
  .contact {
    width: -moz-fit-content;
    width: fit-content;
  }
  .contact__bottom {
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 12px;
  }
}
@media screen and (min-width: 769px) and (max-width: 1180px) {
  .contact {
    width: -moz-fit-content;
    width: fit-content;
    padding-left: 12px;
  }
  .contact__bottom {
    flex-direction: column;
    width: -moz-fit-content;
    width: fit-content;
    padding: 0px 12px;
  }
  .contact__form-container {
    width: -moz-fit-content;
    width: fit-content;
  }
  .contact__info-button {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-bottom: 32px;
  }
  .contact__form-botton {
    flex-direction: column;
    gap: 32px;
  }
}
@media screen and (min-width: 426px) and (max-width: 768px) {
  .contact {
    width: -moz-fit-content;
    width: fit-content;
    padding-left: 12px;
    width: 425px;
  }
  .contact__bottom {
    flex-direction: column;
    width: -moz-fit-content;
    width: fit-content;
    padding: 0px 12px;
  }
  .contact__form-container {
    width: -moz-fit-content;
    width: fit-content;
  }
  .contact__info-button {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-bottom: 32px;
  }
  .contact__form-botton {
    flex-direction: column;
    gap: 32px;
  }
}
@media screen and (max-width: 425px) {
  .contact {
    width: -moz-fit-content;
    width: fit-content;
    padding-left: 12px;
  }
  .contact__bottom {
    flex-direction: column;
    width: -moz-fit-content;
    width: fit-content;
    padding: 0px 12px;
  }
  .contact__form-container {
    width: -moz-fit-content;
    width: fit-content;
  }
  .contact__info-button {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-bottom: 32px;
  }
  .contact__form-botton {
    flex-direction: column;
    gap: 32px;
  }
}
.form {
  display: flex;
  width: 640px;
  height: 736px;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  flex-shrink: 0;
  margin: 0 auto;
  margin-top: 90px;
  background: #000;
}
.form__top {
  display: flex;
  height: 522px;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
  flex-shrink: 0;
  align-self: stretch;
}
.form__top-title {
  color: #F9F9F9;
  font-family: Roc Grotesk;
  font-size: 24px;
  font-style: normal;
  font-weight: 350;
  line-height: 110%;
  text-transform: uppercase;
}
.form__top-title-bold {
  color: #F9F9F9;
  font-family: Roc Grotesk;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%;
  text-transform: uppercase;
}
.form__top-line {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  align-self: stretch;
}
.form__box {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-self: stretch;
}
.form-title {
  color: #F9F9F9;
  font-family: Roc Grotesk;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
}
.form__check {
  display: flex;
  padding: 24px 40px;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  align-self: stretch;
  border-radius: 12px;
  background: #353535;
}
.form__text {
  display: flex;
  gap: 24px;
  align-self: stretch;
  border-radius: 12px;
  flex-direction: column;
}
.form__check-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  align-self: stretch;
  color: #FFF;
  font-family: Roc Grotesk;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 110%;
}
.form__btn-text {
  display: flex;
  padding: 20px;
  align-items: center;
  gap: 10px;
  align-self: stretch;
  color: #FFF;
  font-family: Roc Grotesk;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  border-radius: 12px;
  background: #222;
  width: 100%;
  border: none;
}
.form__bottom {
  display: flex;
  padding-top: 24px;
  justify-content: space-between;
  align-items: center;
  align-self: stretch;
  border-top: 1px solid #333;
}
.form__btn {
  display: flex;
  width: 224px;
  padding: 18px 24px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 38px;
  background: #FFCE34;
  color: #000;
  font-family: Roc Grotesk;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 145%;
  letter-spacing: 0.42px;
  text-transform: uppercase;
  text-decoration: none;
}
.form__form-label {
  color: #FFF;
  font-family: Roc Grotesk;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  text-align: left;
}
.form__btn-pr {
  display: flex;
  width: 224px;
  padding: 18px 24px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 38px;
  background: transparent;
  border: none;
  color: #FFF;
  font-family: Roc Grotesk;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 145%;
  letter-spacing: 0.42px;
  text-transform: uppercase;
  text-decoration: none;
}
.form__textarea {
  display: flex;
  height: 160px;
  padding: 20px;
  align-items: flex-start;
  gap: 10px;
  align-self: stretch;
  border-radius: 12px;
  background: #222;
  border: none;
}
.form__btn-pr-1 {
  display: flex;
  width: 224px;
  padding: 18px 24px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 38px;
  background: transparent;
  border: none;
  color: #FFF;
  font-family: Roc Grotesk;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 145%;
  letter-spacing: 0.42px;
  text-transform: uppercase;
  opacity: 0.2;
  text-decoration: none;
}
.form__top-button-back {
  display: flex;
  justify-content: flex-start;
  margin-top: 60px;
}

.checkbox-btn {
  display: block;
  position: relative;
  padding-left: 30px;
  margin-bottom: 10px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

/* Hide the browser's default checkbox */
.checkbox-btn input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkbox-btn label {
  cursor: pointer;
  font-size: 14px;
}

/* Create a custom checkbox */
.checkmark {
  position: absolute;
  top: -10px;
  left: 0;
  height: 24px;
  width: 24px;
  border-radius: 8px;
  border: 2px solid #444444;
}

.checkbox-btn input:checked ~ .checkmark {
  background-color: #FFCE34;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  visibility: hidden;
  opacity: 0;
  left: 8.5px;
  top: 2.5px;
  width: 6px;
  height: 13px;
  border: 2.5px solid black;
  border-width: 0 2.5px 2.5px 0;
  transition: 0.1s ease-in-out;
  transform: rotate(45deg);
}

/* Show the checkmark when checked */
.checkbox-btn input:checked ~ .checkmark:after {
  visibility: visible;
  opacity: 1;
}

@media screen and (min-width: 426px) and (max-width: 768px) {
  .form {
    width: 90%;
    padding: 12px;
  }
  .form__top {
    width: -moz-fit-content;
    width: fit-content;
  }
  .form__box {
    align-items: flex-start;
  }
  .form__bottom {
    flex-direction: column-reverse;
  }
  .form__btn {
    width: 100%;
  }
  .form__btn-pr {
    width: 100%;
  }
  .form__btn-pr-1 {
    width: 100%;
  }
}
@media screen and (max-width: 425px) {
  .form {
    width: 90%;
    padding: 12px;
  }
  .form__top {
    width: -moz-fit-content;
    width: fit-content;
  }
  .form__box {
    align-items: flex-start;
  }
  .form__bottom {
    flex-direction: column-reverse;
  }
  .form__btn {
    width: 100%;
  }
  .form__btn-pr {
    width: 100%;
  }
  .form__btn-pr-1 {
    width: 100%;
  }
}/*# sourceMappingURL=main.css.map */