.hero h1 {
  text-align: right;
}
.hero .video {
  position: relative;
}
.hero .video .youtube-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.hero #myVideo {
  max-height: 896px;
  width: 100%;
}

.full-range .grid {
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
}
.full-range .grid .desc {
  grid-column: span 5;
}
.full-range .grid .desc h2 {
  margin-bottom: 50px;
  text-wrap: balance;
}
.full-range .grid .box-container {
  grid-column: span 7;
  display: flex;
  column-gap: 20px;
  row-gap: 10px;
  width: 100%;
}
.full-range .grid .box {
  border: 1px solid #7a7a7a;
  padding: 40px 25px;
  width: 100%;
  height: 100%;
}
.full-range .grid .box span {
  font-weight: 700;
  font-size: 20px;
  line-height: 35px;
  display: block;
  margin-bottom: 30px;
}
.full-range .grid .box ul {
  display: grid;
  gap: 20px;
  margin-left: 35px;
  color: #7a7a7a;
  font-weight: 500;
  font-size: 20px;
  line-height: 120%;
  list-style-type: disc;
}

.approach .canvas {
  position: absolute;
}
.approach .canvas-3 {
  transform: translateX(-125px);
}
.approach .canvas-4 {
  transform: translateX(125px);
}
.approach .container__100vh {
  height: 450px;
  margin-top: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.approach .container__100vh .text {
  display: flex;
  gap: 150px;
}
.approach .container__100vh h2 {
  margin: 0;
  font-weight: 600;
}

.idea-to-result .grid {
  grid-template-columns: 1fr 1fr;
  align-items: center;
  column-gap: 60px;
  row-gap: 30px;
}
.idea-to-result .grid:nth-child(3) {
  margin: 140px 0;
}
.idea-to-result .img-center img {
  margin: 0 auto;
  width: 100%;
  object-fit: cover;
}

.how-we-work p {
  margin-bottom: 50px;
}
.how-we-work img {
  height: 896px;
  width: 100%;
  object-fit: cover;
}

.results h2 {
  margin-bottom: 126px;
}
.results .grid {
  grid-template-columns: repeat(3, 1fr);
  height: 400px;
}
.results .grid .item:nth-child(2) {
  align-self: center;
}
.results .grid .item:nth-child(3) {
  align-self: end;
}
.results .grid span {
  color: #ff6600;
  font-weight: 600;
  font-size: 100px;
  line-height: 90%;
}
.results .grid span sup {
  font-size: 50%;
}
.results .grid p.orange {
  display: inline;
  color: #ff6600;
  font-weight: 600;
  font-size: 100px;
  line-height: 90%;
  margin: 0;
}
.results .grid p {
  margin-top: 25px;
}

.projects {
  overflow-x: hidden;
}
.projects .row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 20px;
  margin-bottom: 50px;
}
.projects .right {
  display: flex;
  justify-content: space-between;
  gap: 17px;
}
.projects .projectsSwiper {
  overflow: visible;
}
.projects .projectsSwiper .item {
  position: relative;
  transition: all 0.3s ease;
}
.projects .projectsSwiper .item img {
  display: block;
  width: 100%;
  height: 500px;
  object-fit: cover;
}
.projects .projectsSwiper .item p {
  position: absolute;
  right: 30px;
  bottom: 20px;
  font-weight: 600;
  font-size: 27px;
  line-height: 60px;
  color: #ffffff;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.projects .projectsSwiper .item::before {
  opacity: 0;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  transition: opacity 0.3s ease;
}
.projects .projectsSwiper .item:hover p {
  opacity: 1;
}
.projects .projectsSwiper .item:hover::before {
  opacity: 1;
}

.partners h2 {
  margin-bottom: 61px;
}
.partners .row {
  display: flex;
  flex-wrap: wrap;
  column-gap: 15px;
  row-gap: 50px;
}
.partners .row .item {
  height: 160px;
  display: flex;
  flex-grow: 1;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.partners .row .item img {
  object-fit: cover;
  max-height: 120px;
}

@media (width <= 1280px) {
  .full-range .grid {
    gap: 30px;
  }
  .full-range .grid .desc {
    grid-column: span 12;
  }
  .full-range .grid .desc h2 {
    margin-bottom: 30px;
  }
  .full-range .grid .box-container {
    grid-column: span 12;
    gap: 10px;
  }
  .full-range .grid .box {
    padding: 30px;
  }
  .full-range .grid .box span {
    font-size: 16px;
    line-height: 27px;
    margin-bottom: 23px;
  }
  .full-range .grid .box ul {
    gap: 20px;
    margin-left: 25px;
    font-size: 16px;
  }
  .approach .canvas {
    position: absolute;
  }
  .approach .canvas-3 {
    transform: translateX(-125px);
  }
  .approach .canvas-4 {
    transform: translateX(125px);
  }
  .approach .container__100vh {
    height: 390px;
    margin-top: 120px;
  }
  .approach .container__100vh .text {
    gap: 80px;
  }
  .approach .container__100vh h2 {
    font-size: 38px;
  }
  .idea-to-result .grid {
    column-gap: 60px;
  }
  .idea-to-result .grid p {
    text-wrap: pretty;
  }
  .idea-to-result .grid p br {
    display: none;
  }
  .idea-to-result .grid:nth-child(3) {
    margin: 47px 0;
  }
  .idea-to-result .img-center img {
    max-width: 706px;
    height: auto;
  }
  .how-we-work p {
    margin-bottom: 35px;
  }
  .how-we-work img {
    height: 614px;
  }
  .results h2 {
    margin-bottom: 120px;
  }
  .results .grid {
    height: 413px;
  }
  .results .grid span {
    font-size: 70px;
    line-height: 90%;
  }
  .results .grid span sup {
    font-size: 50%;
  }
  .results .grid p.orange {
    font-size: 70px;
    line-height: 90%;
  }
  .projects .row {
    margin-bottom: 32px;
  }
  .projects .row h2 {
    margin-bottom: 0;
  }
  .projects .row h2 br {
    display: none;
  }
  .projects .right {
    justify-content: flex-end;
  }
  .projects .right p {
    width: 305px;
  }
  .projects .right br {
    display: none;
  }
  .projects .projectsSwiper .swiper-slide {
    max-width: 790px;
  }
  .projects .projectsSwiper p {
    font-size: 25px;
    line-height: 45px;
  }
  .partners h2 {
    margin-bottom: 35px;
  }
  .partners .row {
    display: grid;
    grid-template-columns: repeat(5, auto);
    column-gap: 15px;
    row-gap: 40px;
  }
  .partners .row .item {
    height: 160px;
    display: flex;
    flex-grow: 1;
    align-items: center;
    justify-content: center;
    padding: 20px;
  }
  .partners .row .item img {
    object-fit: cover;
    max-height: 120px;
  }
}
@media (max-width: 1024px) {
  .full-range .grid .box {
    padding: 25px;
  }
  .full-range .grid .box span {
    font-size: 16px;
    line-height: 22px;
    margin-bottom: 15px;
  }
  .full-range .grid .box ul {
    gap: 15px;
  }
  .approach p {
    text-wrap: balance;
  }
  .approach br {
    display: none;
  }
  .how-we-work img {
    height: 500px;
  }
  .results h2 {
    margin-bottom: 52px;
  }
  .results .grid span {
    font-size: 58px;
    line-height: 40px;
  }
  .projects .row h2 br {
    display: block;
  }
}
@media (width <= 640px) {
  h1 {
    font-size: 26px;
  }
  h1 br {
    display: none;
  }
  .youtube-btn {
    width: 80px;
    height: auto;
  }
  .full-range .grid {
    grid-template-columns: 1fr;
  }
  .full-range .grid .desc br {
    display: none;
  }
  .full-range .grid .box-container {
    flex-direction: column;
  }
  .idea-to-result .grid {
    grid-template-columns: 1fr;
    align-items: center;
    margin-bottom: 30px;
  }
  .idea-to-result .grid.reversed {
    text-align: right;
    justify-items: start;
    margin-bottom: 116px;
  }
  .idea-to-result .grid.reversed .text {
    order: -1;
  }
  .idea-to-result .grid:nth-child(2) p {
    order: -1;
  }
  .idea-to-result .img-center img {
    height: 203px;
  }
  .how-we-work p {
    margin-bottom: 30px;
  }
  .how-we-work p br {
    display: none;
  }
  .how-we-work img {
    height: 210px;
  }
  .results h2 {
    margin-bottom: 34px;
  }
  .results .grid {
    grid-template-columns: 1fr;
    row-gap: 60px;
    height: unset;
  }
  .results .grid .item:nth-child(2) {
    justify-self: center;
  }
  .results .grid .item:nth-child(3) {
    justify-self: end;
  }
  .results .grid span {
    font-weight: 600;
    font-size: 50px;
    line-height: 49px;
  }
  .results .grid p.orange {
    font-weight: 600;
    font-size: 50px;
    line-height: 49px;
  }
  .projects .row {
    grid-template-columns: 1fr;
    margin-bottom: 20px;
  }
  .projects .right {
    justify-content: space-between;
  }
  .projects .right p {
    width: 206px;
    text-wrap: balance;
  }
  .projects .projectsSwiper .swiper-slide {
    max-width: 90%;
  }
  .projects .projectsSwiper .item img {
    height: 190px;
  }
  .projects .projectsSwiper .item p {
    right: 20px;
    bottom: 10px;
    font-size: 16px;
    line-height: 20px;
  }
  .partners h2 {
    margin-bottom: 20px;
  }
  .partners .row {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(3, 1fr);
    column-gap: 0;
    row-gap: 55px;
  }
  .partners .row .item {
    height: 55px;
    padding: 0 10px;
  }
  .partners .row .item img {
    max-height: 55px;
  }
  .partners .row .item:nth-child(1) {
    grid-area: 1/1/2/5;
  }
  .partners .row .item:nth-child(2) {
    grid-area: 1/5/2/9;
  }
  .partners .row .item:nth-child(3) {
    grid-area: 1/9/2/13;
  }
  .partners .row .item:nth-child(4) {
    grid-area: 2/1/3/5;
  }
  .partners .row .item:nth-child(5) {
    grid-area: 2/5/3/9;
  }
  .partners .row .item:nth-child(6) {
    grid-area: 2/9/3/13;
  }
  .partners .row .item:nth-child(7) {
    grid-area: 3/1/4/4;
  }
  .partners .row .item:nth-child(8) {
    grid-area: 3/4/4/7;
  }
  .partners .row .item:nth-child(9) {
    grid-area: 3/7/4/10;
  }
  .partners .row .item:nth-child(10) {
    grid-area: 3/10/4/13;
  }
}/*# sourceMappingURL=home.css.map */