@charset "UTF-8";
@font-face {
  font-family: 'Helvetica';
  src: url("fonts/Helvetica.eot");
  src: local("Helvetica"), url("fonts/Helvetica.eot?#iefix") format("embedded-opentype"), url("fonts/Helvetica.woff2") format("woff2"), url("fonts/Helvetica.woff") format("woff"), url("fonts/Helvetica.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap; }
@font-face {
  font-family: 'TT Travels';
  src: url("fonts/TTTravels-Bold.eot");
  src: local("TT Travels Bold"), local("TTTravels-Bold"), url("fonts/TTTravels-Bold.eot?#iefix") format("embedded-opentype"), url("fonts/TTTravels-Bold.woff2") format("woff2"), url("fonts/TTTravels-Bold.woff") format("woff"), url("fonts/TTTravels-Bold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal; }
:root {
  font-size: 30px; }

ul, li {
  margin: 0;
  padding: 0;
  display: block; }

a {
  transition: .3s all;
  outline: none;
  text-decoration: none; }
  a:hover {
    text-decoration: none; }

button {
  transition: .6s all;
  border: none;
  outline: none;
  background: none;
  padding: 0; }

h1, h2, h3, h4, h5, p {
  margin: 0; }

input {
  outline: none;
  border-radius: 0; }
  input.error {
    color: red !important;
    border-color: red !important; }

html {
  scroll-behavior: smooth; }

body {
  font-family: 'Helvetica', sans-serif;
  font-size: 1.1rem;
  color: #212121;
  background: #fff; }

::-webkit-scrollbar {
  width: .5rem;
  height: 0.5rem; }

::-webkit-scrollbar-track {
  background: #ddd; }

::-webkit-scrollbar-thumb {
  background: #212121;
  border: 1px solid #ddd; }

.lazy {
  opacity: 0; }

.disabled {
  pointer-events: none; }

.container {
  padding: 0 6rem;
  width: 100%; }

.section-title {
  font-size: 2.8rem;
  font-family: 'TT Travels', sans-serif;
  font-weight: bold; }
.section-text {
  font-size: 1.2rem; }

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: .5rem;
  font-size: 1.2rem;
  font-family: 'TT Travels', sans-serif;
  font-weight: bold;
  overflow: hidden;
  position: relative;
  z-index: 1; }
  .btn::before {
    content: '';
    background: rgba(255, 255, 255, 0.5);
    filter: blur(2rem);
    left: 0;
    top: 0;
    border-radius: 50%;
    height: 5rem;
    width: 5rem;
    position: absolute;
    transition: .2s transform ease-in-out; }
  .btn:hover::before {
    transform: translateX(15rem); }
  .btn-blue {
    color: #fff;
    border-radius: .75rem;
    background: linear-gradient(135deg, #6bb6ff 0%, #4fa3ff 30%, #2f7de1 60%, #1f5fbf 100%); }
  .btn-white {
    background: #fff;
    border: 1px solid #3BA1FF;
    color: #3BA1FF;
    height: 3.3rem;
    gap: .5rem; }
    .btn-white::before {
      transition: .6s all; }

.toggle-anim {
  overflow: hidden;
  display: flex;
  flex-direction: column; }
  .toggle-anim span {
    line-height: 1.5em;
    transition: .3s transform ease-in-out; }
  .toggle-anim:hover span {
    transform: translateY(-100%); }

.form {
  font-size: 0.9rem; }
  .form-wrap {
    display: flex;
    gap: .5rem;
    margin-bottom: 0.5rem; }
    .form-wrap .form-input {
      width: calc(50% - .25rem); }
  .form-input {
    width: 100%;
    display: flex;
    align-items: center;
    position: relative; }
    .form-input input {
      width: 100%;
      height: 4.4rem;
      background: #fff;
      border-radius: .8rem;
      padding: .3rem 1.6rem 0;
      border: none;
      appearance: none; }
      .form-input input:focus ~ p, .form-input input:not(:placeholder-shown) ~ p {
        transform: translateY(-100%) scale(0.8); }
    .form-input p {
      position: absolute;
      left: 1.6rem;
      transition: .2s all ease-in-out;
      color: #B0B0B0;
      transform-origin: top left; }
  .form-file {
    margin: 1.25rem 0; }
    .form-file input {
      appearance: none;
      display: none; }
    .form-file__label {
      display: inline-flex;
      justify-content: center;
      align-items: center;
      transition: .6s all;
      cursor: pointer;
      user-select: none;
      gap: .75rem; }
      .form-file__label:hover .form-file__ico {
        background: #00000012; }
    .form-file__ico {
      width: 2.8rem;
      height: 2.8rem;
      border-radius: .6rem;
      transition: .6s all;
      background: #EBEBEB; }
      .form-file__ico img {
        width: 100%; }
  .form-choose {
    display: flex;
    margin: 1.25rem 0;
    gap: .5rem;
    font-size: 0.9rem;
    flex-wrap: wrap; }
    .form-choose label {
      display: inline-flex; }
      .form-choose label input {
        appearance: none;
        display: none; }
        .form-choose label input:checked + span {
          background: #B2DAFF; }
      .form-choose label span {
        background: #EBEBEB;
        display: inline-flex;
        justify-content: center;
        align-items: center;
        transition: .6s all;
        cursor: pointer;
        user-select: none;
        height: 2.5rem;
        padding: 0 1.5rem;
        border-radius: .5rem; }
  .form .btn {
    width: 13rem;
    height: 3.3rem; }

.breadcrumbs {
  margin-bottom: 2.5rem; }
  .breadcrumbs .container {
    display: flex;
    gap: .7rem;
    font-size: 0.9rem; }
    .breadcrumbs .container a {
      color: #B0B0B0; }
      .breadcrumbs .container a:hover {
        color: #212121; }
      .breadcrumbs .container a:nth-child(2) {
        pointer-events: none; }
        .breadcrumbs .container a:nth-child(2)::before {
          content: '•';
          margin-right: 0.7rem; }
      .breadcrumbs .container a.active {
        pointer-events: auto !important; }

@keyframes infiniteRotate {
  from {
    transform: rotate(0deg); }
  to {
    transform: rotate(360deg); } }
@keyframes marquee {
  0% {
    transform: translateX(0); }
  100% {
    transform: translateX(-100%); } }
@keyframes activeTimeline {
  to {
    width: 100%; } }
.preloader {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 99;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center; }
  .preloader__logo {
    width: 5.5rem; }
    .preloader__logo svg {
      width: 100%;
      height: auto; }
    .preloader__logo g {
      animation: infiniteRotate 5s linear infinite;
      width: 100%;
      height: 100%;
      transform-origin: center; }

.mobile-menu {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 8;
  display: none;
  background: #fff; }
  .mobile-menu .container {
    padding-bottom: 4rem;
    height: 100dvh;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    width: 100%; }
  .mobile-menu__head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 5rem; }
  .mobile-menu__logo {
    width: 10rem;
    display: inline-block; }
    .mobile-menu__logo img {
      width: 100%;
      display: block; }
  .mobile-menu__close {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    transition: .6s all;
    cursor: pointer;
    user-select: none;
    height: 3rem;
    width: 3.5rem;
    border-radius: .5rem;
    background: #3BA1FF; }
    .mobile-menu__close img {
      width: 1rem; }
  .mobile-menu__list {
    font-size: 1.7rem;
    text-align: center;
    font-weight: 500; }
    .mobile-menu__list li {
      margin-bottom: 2rem; }
    .mobile-menu__list a {
      color: #212121; }
  .mobile-menu .main-contacts {
    position: static; }

.header {
  padding: 2rem 0; }
  .header .container {
    display: flex;
    justify-content: space-between;
    align-items: center; }
  .header__logo {
    display: block;
    width: 10rem; }
    .header__logo img {
      width: 100%;
      display: block; }
  .header-menu {
    display: flex;
    gap: .7rem; }
    .header-menu li {
      display: inline-flex; }
    .header-menu a {
      display: inline-flex;
      justify-content: center;
      align-items: center;
      height: 2.6rem;
      background: #fff;
      color: #212121;
      border-radius: .5rem;
      padding: 0 1.75rem; }
      .header-menu a:hover {
        background: #F2F8FF; }
  .header-mobile {
    display: none; }

.main {
  height: calc(100svh - 4rem);
  padding-left: 4.5rem;
  padding-top: 3rem;
  margin-top: -3rem; }
  .main .container {
    height: 100%; }
  .main-content {
    position: relative;
    height: 100%;
    padding-top: 10vh; }
  .main-wrap {
    display: flex;
    align-items: center; }
  .main-info {
    height: 100%;
    width: calc(100% - 32rem); }
  .main__title {
    font-size: 3.2rem;
    font-family: 'TT Travels', sans-serif;
    font-weight: bold;
    margin-bottom: 2rem; }
  .main .section-text {
    margin-bottom: 2rem;
    max-width: 35rem; }
  .main__btn {
    height: 3.3rem;
    width: 16.6rem; }
  .main__img {
    width: 32rem;
    flex-shrink: 0;
    position: absolute;
    right: 0;
    top: 3vh; }
    .main__img img {
      width: 100%; }
  .main-contacts {
    position: absolute;
    left: 0;
    bottom: 3rem;
    z-index: 1;
    display: flex;
    gap: 2.5rem;
    align-items: center; }
    .main-contacts a {
      display: inline-flex;
      align-items: center;
      gap: .5rem;
      color: #212121; }
      .main-contacts a:hover {
        color: #3BA1FF; }
      .main-contacts a img {
        width: 1.4rem; }

.services {
  background: #fafafa;
  padding-top: 6rem; }
  .services .section-title {
    margin-bottom: 1.1rem; }
  .services .section-text {
    max-width: 45rem;
    margin-bottom: 3.5rem; }
  .services-list {
    display: flex;
    flex-wrap: wrap;
    border-top: 1px solid #EBEBEB; }
  .services-item {
    overflow: hidden;
    width: 50%;
    border-bottom: 1px solid #EBEBEB;
    padding: 3.8rem 4rem 3.8rem 6rem;
    transition: .6s all;
    font-size: 0.9rem;
    position: relative;
    z-index: 1;
    background: #fafafa; }
    .services-item:hover {
      background: #F2F9FF; }
      .services-item:hover .services-item__wrap {
        transform: translateX(1rem); }
      .services-item:hover .services-item__tags li {
        background: #E0F0FF; }
    .services-item:nth-child(2n) {
      border-left: 1px solid #EBEBEB;
      padding-left: 3.3rem;
      padding-right: 6rem; }
    .services-item__wrap {
      transition: .6s all; }
    .services-item__title {
      font-size: 1.6rem;
      font-family: 'TT Travels', sans-serif;
      font-weight: bold;
      margin-bottom: 1rem; }
      .services-item__title span, .services-item__title strong {
        background: #B2DAFF;
        border-radius: .5rem;
        padding: .1rem 0.5rem; }
    .services-item__text {
      color: #B0B0B0;
      overflow: hidden;
      text-overflow: ellipsis;
      -webkit-box-orient: vertical;
      display: -webkit-box;
      -webkit-line-clamp: 3;
      line-height: 1.1rem;
      height: 3.3rem;
      margin-bottom: 1rem; }
    .services-item__tags {
      display: flex;
      flex-wrap: wrap;
      gap: .5rem;
      margin-bottom: 1rem; }
      .services-item__tags li {
        display: inline-flex;
        justify-content: center;
        align-items: center;
        background: #EBEBEB;
        height: 2.25rem;
        border-radius: .5rem;
        padding: 0 0.85rem;
        transition: .6s all; }
    .services-item__time span {
      font-family: 'TT Travels', sans-serif;
      font-weight: bold; }

.video {
  padding: 7rem 0;
  background: #fafafa; }
  .video-head {
    text-align: center;
    margin-bottom: 2.5rem; }
  .video .section-title {
    margin-bottom: 1rem; }
  .video__main {
    width: 100%;
    height: calc(56vw - 10rem);
    overflow: hidden;
    border-radius: .5rem; }
    .video__main .plyr, .video__main video {
      width: 100%;
      height: 100%;
      display: block;
      object-fit: cover; }

.portfolio {
  padding: 5rem 0 6rem; }
  .portfolio-wrap {
    display: flex;
    align-items: flex-start;
    gap: 2rem; }
  .portfolio-info {
    width: 100%;
    position: sticky;
    top: 3rem; }
  .portfolio .section-title {
    margin-bottom: 1rem; }
  .portfolio .section-text {
    font-size: 1.6rem;
    margin-bottom: 1.75rem; }
  .portfolio__btn {
    padding: 0 1.8rem; }
    .portfolio__btn img {
      width: 1rem; }
  .portfolio-list {
    width: 37.5rem;
    flex-shrink: 0; }
  .portfolio-item {
    position: sticky;
    top: 3rem;
    width: 100%;
    height: 28.3rem;
    overflow: hidden;
    border-radius: .75rem; }
    .portfolio-item__img {
      width: 100%;
      height: 100%; }
      .portfolio-item__img img {
        width: 100%;
        height: 100%;
        display: block;
        object-fit: cover;
        object-position: top left; }
    .portfolio-item__btn {
      position: absolute;
      bottom: 1.2rem;
      right: 1.2rem;
      padding: 0 2.2rem; }
      .portfolio-item__btn img {
        width: 0.65rem; }
    .portfolio-item:nth-child(2) {
      transform: rotate(2deg);
      top: 3.5rem; }
    .portfolio-item:nth-child(3) {
      transform: rotate(-2deg);
      top: 4rem;
      margin-top: -0.5rem; }
    .portfolio-item:nth-child(4) {
      top: 4.25rem;
      transform: rotate(3deg);
      margin-top: -0.75rem; }
    .portfolio-item:nth-child(5) {
      transform: rotate(-1deg);
      top: 3.5rem; }

.partners {
  padding: 7.5rem 0; }
  .partners .container {
    display: flex;
    align-items: flex-start;
    gap: .7rem; }
  .partners-info {
    width: 100%;
    padding-top: 2rem; }
  .partners__subtitle {
    display: inline-flex;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    background: #EBEBEB;
    height: 2.25rem;
    border-radius: .5rem;
    padding: 0 0.85rem;
    align-items: center; }
  .partners .section-title {
    margin-bottom: 1rem; }
  .partners .section-text {
    max-width: 20rem; }
  .partners-list {
    flex-shrink: 0;
    width: 55rem;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap; }
  .partners-item {
    background: #FAFAFA;
    border-radius: .75rem;
    width: 13rem;
    height: 13rem; }
    .partners-item:hover .partners-item__img {
      opacity: 1; }
    .partners-item__img {
      width: 100%;
      height: 100%;
      transition: .6s all;
      opacity: .3; }
      .partners-item__img img {
        width: 100%;
        height: 100%;
        display: block;
        object-fit: contain; }

.stack {
  padding: 4.25rem 0; }
  .stack .container {
    display: flex;
    gap: 3.3rem; }
  .stack-left {
    flex-shrink: 0; }
  .stack-right {
    width: 100%; }
  .stack__title {
    font-size: 1.2rem;
    margin-bottom: 1rem; }
  .stack-list {
    padding-top: 1rem; }
    .stack-list .toggle-anim {
      font-family: 'TT Travels', sans-serif;
      font-weight: bold;
      font-size: 2.4rem;
      height: 3rem;
      margin-bottom: 2.8rem; }
      .stack-list .toggle-anim:last-child {
        margin-bottom: 0; }
  .stack-block {
    margin-bottom: 2rem; }
    .stack-block__list {
      display: flex;
      flex-wrap: wrap;
      gap: .5rem;
      font-size: 0.9rem; }
      .stack-block__list li {
        display: inline-flex;
        justify-content: center;
        align-items: center;
        height: 2.5rem;
        padding: 0 1.25rem;
        background: #EBEBEB;
        border-radius: .5rem;
        gap: .5rem; }
        .stack-block__list li img {
          height: 0.8rem; }
    .stack-block:last-child {
      margin-bottom: 0; }

.about-head {
  padding: 3rem 0 5rem; }
.about__title {
  margin: 0 auto 2rem;
  text-align: center;
  max-width: 63rem;
  font-family: 'TT Travels', sans-serif;
  font-weight: bold;
  font-size: 2.4rem; }
.about-images {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 3rem; }
  .about-images__item {
    overflow: hidden;
    width: 17.5rem;
    border-radius: 1.2rem; }
    .about-images__item img {
      width: 100%;
      height: 100%;
      display: block;
      object-fit: cover;
      transition: .6s all; }
    .about-images__item:hover img {
      transform: scale(1.1); }
    .about-images__item:nth-child(1) {
      transform: rotate(-2.45deg); }
    .about-images__item:nth-child(2) {
      width: 28rem;
      border: .6rem solid #fff;
      margin-left: -2rem;
      margin-right: -2rem;
      position: relative;
      z-index: 2; }
    .about-images__item:nth-child(3) {
      transform: rotate(2.45deg); }
.about__text {
  display: flex;
  justify-content: flex-end;
  font-size: 1.3rem; }
  .about__text p {
    max-width: 26rem; }
.about-main {
  padding: 9rem 0 7.5rem;
  background: #fafafa; }
.about-info {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 6rem; }
  .about-info__percent {
    position: sticky;
    top: 5rem;
    max-width: 19rem;
    font-family: 'TT Travels', sans-serif;
    font-weight: bold; }
    .about-info__percent div {
      margin-bottom: 0.5rem;
      font-size: 6.2rem; }
    .about-info__percent p {
      font-size: 2rem;
      color: #B0B0B0; }
  .about-info__list {
    display: flex;
    flex-shrink: 0;
    flex-wrap: wrap;
    width: 52rem;
    gap: 5rem; }
  .about-info__item {
    width: calc(50% - 2.5rem); }
  .about-info__title {
    font-family: 'TT Travels', sans-serif;
    font-weight: bold;
    font-size: 2rem;
    margin-bottom: 1rem; }
.about-video {
  margin-bottom: 7.5rem; }
.about-perfect__title {
  font-family: 'TT Travels', sans-serif;
  font-weight: bold;
  font-size: 3.2rem;
  margin-bottom: 2rem;
  max-width: 33rem; }
.about-perfect__list {
  display: flex;
  gap: 1rem; }
.about-perfect__item {
  display: flex;
  width: 25%;
  height: 10rem;
  padding-left: 2rem;
  padding-top: 1.25rem;
  background: #fff;
  overflow: hidden;
  border-radius: .75rem;
  position: relative;
  z-index: 1; }
  .about-perfect__item:hover .about-perfect__ico {
    transform: scale(1.1); }
.about-perfect__text {
  font-size: 0.9rem;
  max-width: 10rem; }
  .about-perfect__text div {
    font-size: 3.2rem;
    font-family: 'TT Travels', sans-serif;
    font-weight: bold; }
.about-perfect__ico {
  height: 100%;
  width: 10rem;
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
  transition: .6s all;
  max-width: 9vw; }
  .about-perfect__ico img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover; }

.team {
  padding-top: 2rem; }
  .team-slogan {
    overflow: hidden;
    color: #EBEBEB;
    font-family: 'TT Travels', sans-serif;
    font-weight: bold;
    font-size: 6.2rem;
    margin-bottom: 8rem; }
    .team-slogan__wrap {
      gap: 5rem;
      animation: marquee 30s linear infinite;
      white-space: nowrap;
      display: flex;
      gap: 5rem; }
  .team__title {
    max-width: 56rem;
    font-family: 'TT Travels', sans-serif;
    font-weight: bold;
    font-size: 3.2rem;
    margin-bottom: 2rem; }
  .team-choose {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    font-size: 1.2rem;
    margin-bottom: 2rem; }
    .team-choose li {
      display: inline-flex;
      justify-content: center;
      align-items: center;
      transition: .6s all;
      cursor: pointer;
      user-select: none;
      height: 2.6rem;
      border-radius: .6rem;
      padding: 0 0.85rem;
      background: #EBEBEB; }
      .team-choose li:hover {
        color: #3BA1FF; }
      .team-choose li.active {
        color: #fff;
        background: #3BA1FF;
        pointer-events: none; }
  .team-list {
    display: none; }
  .team-item {
    width: 13rem;
    margin: 0 0.5rem;
    font-size: 1.2rem;
    text-align: center; }
    .team-item__img {
      width: 13rem;
      height: 13rem;
      border-radius: 2.5rem;
      overflow: hidden;
      margin-bottom: 0.75rem; }
      .team-item__img img {
        width: 100%;
        height: 100%;
        display: block;
        object-fit: cover;
        object-position: top; }
    .team-item__pos {
      margin-top: 0.75rem;
      color: #B0B0B0; }
  .team-slider {
    display: none; }
    .team-slider.owl-loaded {
      display: block; }
    .team-slider-second {
      margin-top: 2rem; }
  .team-block {
    display: flex;
    justify-content: center; }

.blog-stories {
  margin-bottom: 2.5rem; }
.blog-search {
  background: #fafafa;
  border-radius: 1rem;
  padding: 3.5rem;
  margin-bottom: 3.5rem; }
  .blog-search__title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-family: 'TT Travels', sans-serif;
    font-weight: bold; }
.blog-list {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem 4rem;
  margin-bottom: 4rem; }
.blog-item {
  width: calc(50% - 2rem);
  position: relative; }
  .blog-item:hover .blog-item__title {
    color: #3BA1FF; }
  .blog-item__img {
    height: 26.5rem;
    border-radius: 1rem;
    overflow: hidden;
    margin-bottom: 1.5rem; }
    .blog-item__img img {
      width: 100%;
      height: 100%;
      display: block;
      object-fit: cover; }
  .blog-item__title {
    font-family: 'TT Travels', sans-serif;
    font-weight: bold;
    transition: .6s all;
    font-size: 1.6rem;
    margin-bottom: 0.5rem; }
  .blog-item__link {
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    position: absolute;
    z-index: 2; }
.blog-more {
  text-align: center; }
  .blog-more .btn {
    width: 16rem;
    gap: .5rem;
    border-radius: .75rem; }
    .blog-more .btn img {
      width: 0.6rem; }
.blog-single .container {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 1rem; }
.blog-main {
  width: 100%;
  max-width: 48.5rem; }
.blog__title {
  font-size: 2.4rem;
  margin-bottom: .75rem;
  font-family: 'TT Travels', sans-serif;
  font-weight: bold; }
.blog__tag {
  height: 2.5rem;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background: #EBEBEB;
  font-size: 0.9rem;
  border-radius: .5rem;
  padding: 0 1.5rem;
  margin-bottom: 0.75rem; }
.blog__date {
  font-size: 0.9rem;
  color: #B0B0B0;
  margin-bottom: 2rem; }
.blog__img {
  width: 100%;
  border-radius: .75rem;
  overflow: hidden;
  margin-bottom: 2.5rem; }
  .blog__img img {
    width: 100%;
    display: block; }
.blog-content h2, .blog-content h3, .blog-content h4 {
  font-family: 'TT Travels', sans-serif;
  font-weight: bold;
  margin-bottom: 1rem; }
.blog-content h2, .blog-content h3 {
  font-size: 2rem; }
.blog-content h4 {
  font-size: 1.5rem; }
.blog-content ul, .blog-content ol {
  padding-left: 1.5rem; }
  .blog-content ul li, .blog-content ol li {
    display: list-item; }
    .blog-content ul li::marker, .blog-content ol li::marker {
      color: #3BA1FF; }
.blog-content figure {
  margin: 1rem 0; }
.blog-side {
  width: 27.5rem;
  flex-shrink: 0;
  border-radius: .75rem;
  background: #fafafa;
  padding: 3.5rem 2.5rem;
  position: sticky;
  top: 1rem; }
  .blog-side__title {
    font-family: 'TT Travels', sans-serif;
    font-weight: bold;
    margin-bottom: 1.5rem;
    font-size: 1.6rem; }
  .blog-side__list li {
    margin-bottom: 1.5rem; }
    .blog-side__list li:last-child {
      margin-bottom: 0; }
  .blog-side__list a {
    color: #212121; }
    .blog-side__list a:hover {
      color: #3BA1FF; }

.stories-list__item {
  width: 7.5rem;
  height: 7.5rem;
  padding: 0.55rem;
  position: relative;
  z-index: 1;
  margin-right: 0.75rem;
  cursor: pointer;
  user-select: none; }
  .stories-list__item img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    border-radius: 50%; }
  .stories-list__item svg {
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    position: absolute;
    z-index: -1;
    transform: rotate(-90deg); }
  .stories-list__item circle {
    fill: none;
    stroke: #3BA1FF;
    stroke-width: 8;
    stroke-linecap: round; }
.stories-popup {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 8;
  background: rgba(0, 0, 0, 0.75);
  cursor: pointer;
  display: none; }
.stories-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  cursor: default;
  margin-top: -.5rem; }
.stories-slider {
  width: 48vh;
  display: block !important;
  opacity: 1 !important; }
.stories-head {
  margin-bottom: 0.6rem; }
.stories-buttons {
  display: flex;
  justify-content: space-between;
  align-items: center; }
  .stories-buttons__time, .stories-buttons__close {
    width: 2rem;
    height: 2rem;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    transition: .6s all;
    cursor: pointer;
    user-select: none; }
    .stories-buttons__time:hover, .stories-buttons__close:hover {
      opacity: .8; }
    .stories-buttons__time img, .stories-buttons__close img {
      width: 100%;
      display: block; }
  .stories-buttons__time {
    position: relative; }
    .stories-buttons__time img {
      position: absolute;
      left: 0;
      top: 0; }
      .stories-buttons__time img:nth-child(2) {
        opacity: 0; }
    .stories-buttons__time.active img:nth-child(1) {
      opacity: 0; }
    .stories-buttons__time.active img:nth-child(2) {
      opacity: 1; }
.stories-item__count {
  display: flex;
  margin-bottom: 0.75rem;
  gap: .4rem; }
  .stories-item__count div {
    height: 0.35rem;
    flex-grow: 1;
    border-radius: .5rem;
    background: rgba(255, 255, 255, 0.5);
    position: relative; }
    .stories-item__count div::after {
      width: 100%;
      height: 100%;
      left: 0;
      top: 0;
      position: absolute;
      border-radius: .5rem;
      left: 0;
      height: 100%;
      width: 0%;
      background: #fff;
      content: ''; }
    .stories-item__count div.active::after {
      animation: activeTimeline 5s linear forwards; }
    .stories-item__count div.paused::after {
      animation-play-state: paused; }
    .stories-item__count div.passed::after {
      width: 100%;
      animation: none; }
.stories-item__images {
  width: 48vh;
  height: 85vh;
  position: relative; }
  .stories-item__images img {
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    position: absolute;
    opacity: 0;
    object-fit: cover; }
    .stories-item__images img.active {
      opacity: 1; }
.stories-arrows {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 2;
  width: calc(48vh + 8.2rem);
  justify-content: space-between;
  display: flex; }
  .stories-arrows span {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    transition: .6s all;
    cursor: pointer;
    user-select: none;
    pointer-events: auto;
    width: 3.1rem;
    color: #fff;
    border-radius: 50%; }
    .stories-arrows span:hover {
      color: #B2DAFF; }
    .stories-arrows span svg {
      width: 100%;
      height: auto; }

.projects__title {
  font-size: 2.4rem;
  font-family: 'TT Travels', sans-serif;
  font-weight: bold;
  margin-bottom: 1rem; }
.projects__text {
  max-width: 45rem;
  border-radius: .6rem;
  background: #EBEBEB;
  padding: 1.1rem 1.3rem;
  margin-bottom: 2.5rem; }
.projects-more {
  text-align: center; }
  .projects-more .btn {
    width: 16rem;
    gap: .5rem;
    border-radius: .75rem; }
    .projects-more .btn img {
      width: 0.6rem; }
.projects-list {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
  margin-bottom: 3.5rem; }
.projects-item {
  width: calc(50% - 1.25rem);
  height: 30rem;
  overflow: hidden;
  border-radius: .75rem;
  position: relative; }
  .projects-item__img {
    width: 100%;
    height: 100%; }
    .projects-item__img img {
      width: 100%;
      height: 100%;
      display: block;
      object-fit: cover;
      object-position: top left; }
  .projects-item__btn {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    padding: 0 2.2rem; }
    .projects-item__btn img {
      width: 0.65rem; }

.project .container {
  display: flex;
  align-items: flex-start;
  gap: 1rem; }
.project-side {
  width: 33%;
  border-radius: .75rem;
  background: #fafafa;
  padding: 2.5rem;
  position: sticky;
  top: 2.5rem; }
.project__title {
  font-family: 'TT Travels', sans-serif;
  font-weight: bold;
  font-size: 1.6rem;
  margin-bottom: 0.55rem; }
.project__text {
  font-size: 0.9rem;
  margin-bottom: 6rem; }
.project__btn {
  height: 3.5rem;
  width: 17.3rem; }
.project-images {
  width: 67%; }
.project__img {
  width: 100%;
  border-radius: .75rem;
  overflow: hidden;
  margin-bottom: 1.5rem; }
  .project__img:last-child {
    margin-bottom: 0; }
  .project__img img {
    width: 100%;
    display: block; }

.contact-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2.5rem;
  font-size: 0.9rem; }
.contact__title {
  font-size: 2.4rem;
  font-family: 'TT Travels', sans-serif;
  font-weight: bold;
  margin-bottom: 0.75rem; }
.contact__text {
  max-width: 35rem;
  border-radius: .6rem;
  background: #EBEBEB;
  padding: 0.7rem 1.3rem; }
.contact__discuss {
  display: flex;
  align-items: center;
  gap: 1.5rem; }
  .contact__discuss span {
    text-align: right;
    max-width: 15.3rem; }
  .contact__discuss img {
    width: 4rem; }
.contact-item {
  padding: 2rem 0;
  border-top: 1px solid #EBEBEB;
  display: flex;
  align-items: flex-start;
  gap: 1rem; }
  .contact-item:last-child {
    padding-bottom: 0; }
  .contact-item__name {
    width: 15.5rem;
    flex-shrink: 0;
    font-size: 0.9rem;
    color: #B0B0B0; }
  .contact-item__wrap {
    flex-grow: 1; }
.contact-info li {
  margin-bottom: 1.5rem; }
  .contact-info li:last-child {
    margin-bottom: 0; }
.contact-info .toggle-anim {
  font-family: 'TT Travels', sans-serif;
  font-weight: bold;
  font-size: 2.4rem;
  height: 3rem;
  color: #212121; }
  .contact-info .toggle-anim:last-child {
    margin-bottom: 0; }
.contact-social li {
  margin-bottom: 0.5rem; }
  .contact-social li:last-child {
    margin-bottom: 0; }
.contact-social a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 11.4rem;
  height: 2.4rem;
  font-size: 0.9rem;
  border-radius: .5rem;
  background: #EBEBEB;
  color: #212121; }
  .contact-social a:hover {
    background: #B2DAFF; }
.contact__address {
  display: inline-flex;
  flex-direction: column;
  margin-bottom: 0.25rem;
  color: #212121;
  font-size: 1.2rem; }
  .contact__address:hover {
    color: #3BA1FF; }
.contact__worktime {
  font-size: 1.2rem;
  color: #B0B0B0; }

.footer {
  padding: 5rem 0 2rem; }
  .footer-feedback {
    padding: 6rem;
    background: #fafafa;
    border-radius: 1rem;
    margin-bottom: 5rem; }
  .footer__title {
    max-width: 45rem;
    font-family: 'TT Travels', sans-serif;
    font-weight: bold;
    font-size: 2.4rem;
    margin-bottom: 1.4rem;
    line-height: 1; }
    .footer__title a {
      color: #2AABEE;
      display: inline-flex;
      gap: .4rem;
      transform: translateY(0.75rem); }
      .footer__title a img {
        width: 2.2rem; }
      .footer__title a span {
        text-decoration: underline;
        transition: .6s all; }
      .footer__title a:hover span {
        text-decoration-color: #fafafa; }
  .footer-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.8rem; }
  .footer-social {
    display: flex;
    gap: .25rem; }
    .footer-social li {
      display: inline-flex; }
    .footer-social a {
      display: inline-flex;
      width: 4.4rem; }
      .footer-social a:hover {
        opacity: .8; }
      .footer-social a img {
        width: 100%; }
  .footer-menu {
    display: flex;
    gap: 3rem;
    font-size: 1.2rem;
    font-family: 'TT Travels', sans-serif;
    font-weight: bold; }
    .footer-menu li {
      display: inline-flex; }
    .footer-menu a {
      color: #212121;
      height: 1.5rem; }
  .footer-info a {
    color: #212121; }
    .footer-info a:hover {
      color: #3BA1FF; }
  .footer-info__contacts {
    margin-top: 0.75rem;
    display: flex;
    gap: 1rem; }
  .footer__welcome {
    height: 2.8rem;
    background: #fafafa;
    display: flex;
    align-items: center;
    padding-left: 1.2rem;
    padding-right: 1.6rem;
    border-radius: 2rem;
    font-size: 0.9rem;
    gap: .6rem;
    transition: .6s all;
    color: #212121; }
    .footer__welcome img {
      width: 1.4rem; }
    .footer__welcome:hover {
      background: #EBEBEB; }
  .footer-copy {
    border-top: 1px solid #EBEBEB;
    color: #B0B0B0;
    padding-top: 1.1rem;
    font-size: 0.9rem; }

.form-done {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 8;
  background: rgba(0, 0, 0, 0.75);
  cursor: pointer;
  display: none; }
  .form-done__content {
    width: 17rem;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 1.5rem;
    background: #fff;
    height: 20rem;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    cursor: default; }
  .form-done__loading {
    width: 4rem; }
    .form-done__loading img {
      width: 100%;
      display: block; }
  .form-done__wrap {
    display: none;
    text-align: center;
    padding: 0 2rem; }
  .form-done__title {
    font-family: 'TT Travels', sans-serif;
    font-weight: bold;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    line-height: 1; }
  .form-done__img {
    margin-bottom: 2rem; }
    .form-done__img img {
      width: 8rem;
      display: inline-block; }
  .form-done__text {
    font-size: 1rem; }

@media (max-width: 2800.98px) {
  :root {
    font-size: 26px; } }
@media (max-width: 2600.98px) {
  :root {
    font-size: 24px; } }
@media (max-width: 2300.98px) {
  :root {
    font-size: 22px; } }
@media (max-width: 2100.98px) {
  :root {
    font-size: 20px; } }
@media (max-width: 1800.98px) {
  :root {
    font-size: 19px; } }
@media (max-width: 1700.98px) {
  :root {
    font-size: 18px; } }
@media (max-width: 1600.98px) {
  :root {
    font-size: 17px; }

  .container {
    padding: 0 5rem; }

  .main {
    padding-left: 3.5rem; }

  .services-item {
    padding-left: 5rem; }
    .services-item:nth-child(2n) {
      padding-right: 5rem; }

  .footer-feedback {
    padding: 5rem; } }
@media (max-width: 1500.98px) {
  :root {
    font-size: 16px; } }
@media (max-width: 1400.98px) {
  :root {
    font-size: 15px; } }
@media (max-width: 1300.98px) {
  :root {
    font-size: 14px; } }
@media (max-width: 1200.98px) {
  :root {
    font-size: 13px; } }
@media (max-width: 1100.98px) {
  :root {
    font-size: 12px; } }
@media (max-width: 1000.98px) {
  :root {
    font-size: 11px; } }
@media (max-width: 900.98px) {
  :root {
    font-size: 10px; } }
@media (max-width: 767.98px), (max-width: 1080px) and (orientation: portrait) {
  :root {
    font-size: 17px; }

  body {
    padding-top: 5rem; }

  .container {
    padding: 0 3rem; }

  .header {
    position: fixed;
    height: 5rem;
    left: 0;
    top: 0;
    width: 100%;
    background: #fff;
    box-shadow: 0 0 1rem rgba(0, 0, 0, 0.1);
    z-index: 5;
    padding: 0; }
    .header .container {
      height: 100%; }
    .header-menu {
      display: none; }
    .header-mobile {
      display: inline-flex;
      justify-content: center;
      align-items: center;
      transition: .6s all;
      cursor: pointer;
      user-select: none;
      height: 3rem;
      width: 3.5rem;
      border-radius: .5rem;
      background: #3BA1FF;
      color: #fff; }
      .header-mobile svg {
        width: 1.5rem; }

  .breadcrumbs {
    padding-top: 1rem; }

  .main {
    padding-left: 0;
    padding-top: 0;
    margin-top: 0;
    height: calc(100svh - 5rem); }
    .main-content {
      position: relative;
      height: 100%;
      padding-top: 10vh; }
    .main-wrap {
      display: flex;
      align-items: center; }
    .main-info {
      width: 100%; }
    .main__img {
      width: 22rem;
      top: 30rem; }

  .services-item {
    width: 100%;
    padding: 3rem; }
    .services-item:nth-child(2n) {
      padding: 3rem; }

  .video {
    padding: 6rem 0; }
    .video__main {
      height: calc(56vw - 3rem); }

  .portfolio {
    padding-bottom: 3rem; }
    .portfolio-wrap {
      flex-direction: column;
      gap: 4rem; }
    .portfolio-info {
      position: static; }
    .portfolio-list {
      align-self: center; }
    .portfolio-item {
      top: 6rem; }
      .portfolio-item:nth-child(2) {
        top: 6.5rem; }
      .portfolio-item:nth-child(3) {
        top: 7rem; }
      .portfolio-item:nth-child(4) {
        top: 7.25rem; }
      .portfolio-item:nth-child(5) {
        top: 6.5rem; }

  .partners {
    padding: 6rem 0 3rem; }
    .partners .container {
      flex-direction: column;
      gap: 3rem; }
    .partners-list {
      width: 100%;
      justify-content: center; }

  .stack {
    padding: 3rem 0; }
    .stack .container {
      flex-direction: column; }

  .about__title br {
    display: none; }
  .about-main {
    padding: 6rem 0; }
  .about-info {
    flex-direction: column; }
    .about-info__percent {
      position: static;
      display: flex;
      align-items: center;
      gap: 2rem;
      max-width: none; }
      .about-info__percent div {
        margin-bottom: 0;
        line-height: 1; }
    .about-info__list {
      width: 100%;
      gap: 3rem; }
    .about-info__item {
      width: calc(50% - 1.5rem); }
  .about-video {
    margin-bottom: 6rem; }
  .about-perfect__list {
    flex-wrap: wrap; }
  .about-perfect__item {
    width: calc(50% - .5rem); }
  .about-perfect__ico {
    max-width: none; }

  .team-slogan {
    font-size: 5rem;
    margin-bottom: 5rem; }
    .team-slogan__wrap {
      gap: 3rem; }

  .blog-search {
    padding: 2rem;
    margin-bottom: 2rem; }
  .blog-list {
    gap: 2rem;
    margin-bottom: 2rem; }
  .blog-item {
    width: calc(50% - 1rem); }
    .blog-item__img {
      height: 15rem; }
    .blog-item__title {
      font-size: 1.2rem; }
    .blog-item__text {
      font-size: 1rem; }
  .blog-side {
    display: none; }

  .stories-list__item {
    width: 5.5rem;
    height: 5.5rem;
    padding: 0.5rem;
    margin-right: 0.65rem; }
  .stories-slider {
    width: 35vh; }
  .stories-arrows {
    width: calc(35vh + 8.2rem); }
  .stories-item__images {
    width: 35vh;
    height: 62vh; }

  .contact-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem; }

  .projects-item {
    width: 100%; }

  .project .container {
    flex-direction: column; }
  .project-side {
    position: static;
    width: 100%; }
  .project__text {
    margin-bottom: 3rem; }
  .project-images {
    width: 100%; }

  .footer-feedback {
    padding: 3rem; }
  .footer-wrap {
    flex-direction: column;
    align-items: flex-start; }
    .footer-wrap:nth-child(1) {
      flex-direction: column-reverse; }
  .footer-menu {
    gap: 0;
    justify-content: space-between;
    width: 100%; } }
@media (max-width: 767.98px) {
  :root {
    font-size: 16px; }

  body {
    padding-top: 4rem;
    font-size: 0.9rem; }

  .container {
    padding: 0 1rem; }

  .section-title {
    font-size: 1.8rem; }
  .section-text {
    font-size: .95rem; }

  .btn {
    font-size: 1.1rem; }

  .form-wrap {
    flex-direction: column; }
    .form-wrap .form-input {
      width: 100%; }
  .form-input input {
    height: 4rem;
    padding-left: 1rem;
    padding-top: 0.4rem; }
  .form-input p {
    left: 1rem; }
  .form-choose {
    gap: .4rem;
    font-size: 0.83rem; }
    .form-choose label span {
      height: 2rem;
      border-radius: .4rem;
      padding: 0 0.6rem; }
  .form .btn {
    width: 100%; }

  .breadcrumbs {
    padding-top: 1rem;
    margin-bottom: 1.5rem; }

  .preloader__logo {
    width: 4rem; }

  .mobile-menu .container {
    padding-bottom: 1.5rem; }
  .mobile-menu__head {
    height: 4rem; }
  .mobile-menu__logo {
    width: 8rem; }
  .mobile-menu__close {
    width: 2.5rem;
    height: 2.2rem; }
    .mobile-menu__close img {
      width: 0.8rem; }
  .mobile-menu__list {
    font-size: 1.4rem; }
    .mobile-menu__list li {
      margin-bottom: 1.3rem; }

  .header {
    height: 4rem; }
    .header__logo {
      width: 8rem; }
    .header-mobile {
      height: 2.2rem;
      width: 2.5rem; }
      .header-mobile svg {
        width: 1.2rem; }

  .main {
    height: calc(100svh - 4rem); }
    .main-content {
      padding-top: 8svh; }
    .main__title {
      font-size: 2rem;
      margin-bottom: 1rem; }
    .main__img {
      width: 15rem;
      top: 23.5rem; }
    .main-contacts {
      bottom: 1.5rem;
      flex-wrap: wrap;
      gap: .5rem 2rem;
      justify-content: center; }
      .main-contacts a:nth-child(2) {
        order: 5; }

  .services {
    padding-top: 5rem; }
    .services .section-text {
      margin-bottom: 3rem; }
    .services-item {
      padding: 2rem 1rem; }
      .services-item:hover .services-item__wrap {
        transform: none; }
      .services-item:nth-child(2n) {
        padding: 2rem 1rem; }
      .services-item__title {
        font-size: 1.3rem; }
      .services-item__text {
        display: block;
        height: auto; }

  .video {
    padding: 5rem 0; }
    .video-head {
      margin-bottom: 2rem; }
    .video__main {
      height: 70vw; }

  .portfolio {
    padding-bottom: 2rem; }
    .portfolio .section-text {
      font-size: 0.95rem; }
    .portfolio-list {
      width: 100%; }
    .portfolio-item {
      height: 15rem; }
      .portfolio-item__btn {
        font-size: 1rem;
        height: 3rem;
        padding: 0 1rem; }

  .partners {
    padding-top: 3rem; }
    .partners-list {
      gap: .6rem; }
    .partners-item {
      width: calc(33.333vw - 1.066rem);
      height: calc(33.333vw - 1.066rem);
      border-radius: .5rem; }

  .stack {
    padding-bottom: 1rem; }
    .stack .container {
      gap: 2rem; }
    .stack__title {
      font-size: 1.1rem; }
    .stack-list {
      padding-top: 0; }
      .stack-list .toggle-anim {
        font-size: 1.8rem;
        height: 2.2rem;
        margin-bottom: 1rem; }

  .about-head {
    padding: 1.5rem 0 3rem; }
  .about__title {
    font-size: 5.7vw; }
  .about-images {
    flex-wrap: wrap;
    gap: .5rem; }
    .about-images__item {
      border-radius: .75rem;
      width: calc(50% - .25rem); }
      .about-images__item:nth-child(1) {
        transform: none; }
      .about-images__item:nth-child(2) {
        order: -1;
        width: calc(100% + 2rem);
        margin: 0;
        border: none;
        z-index: -1; }
      .about-images__item:nth-child(3) {
        transform: none; }
  .about__text {
    font-size: 1.1rem;
    max-width: 22rem; }
  .about-main {
    padding: 5rem 0; }
  .about-info {
    margin-bottom: 3rem; }
    .about-info__percent {
      gap: 1rem; }
      .about-info__percent div {
        font-size: 4.5rem; }
      .about-info__percent p {
        font-size: 1.2rem; }
    .about-info__list {
      gap: 2rem; }
    .about-info__item {
      width: 100%; }
    .about-info__title {
      font-size: 1.5rem;
      margin-bottom: 0.5rem; }
  .about-video {
    margin-bottom: 4rem; }
  .about-perfect__title {
    font-size: 1.8rem; }
  .about-perfect__item {
    width: 100%;
    padding-left: 1.5rem; }
  .about-perfect__text div {
    font-size: 3rem; }

  .team-slogan {
    font-size: 3rem;
    margin-bottom: 3rem; }
    .team-slogan__wrap {
      gap: 1.8rem;
      animation-duration: 10s; }
  .team__title {
    font-size: 1.8rem;
    margin-bottom: 1.5rem; }
  .team-choose {
    gap: .4rem;
    font-size: .83rem; }
    .team-choose li {
      height: 2rem;
      border-radius: .4rem;
      padding: 0 0.4rem; }
  .team-item {
    width: 8rem;
    margin: 0 0.4rem;
    font-size: .9rem; }
    .team-item__img {
      width: 8rem;
      height: 8rem;
      border-radius: 1.2rem;
      margin-bottom: 0.5rem; }
    .team-item__pos {
      margin-top: 0.5rem; }
  .team-slider-second {
    margin-top: 1.5rem; }

  .blog-stories {
    margin-bottom: 1.5rem; }
  .blog-search {
    margin-bottom: 1.5rem;
    padding: 1.5rem 1rem;
    border-radius: .75rem; }
    .blog-search__title {
      font-size: 1.6rem;
      margin-bottom: 1rem; }
  .blog-item {
    width: 100%; }
    .blog-item__img {
      margin-bottom: 1rem;
      height: 65vw; }
  .blog__title {
    font-size: 1.5rem; }
  .blog__img {
    border-radius: .5rem;
    margin-bottom: 1.5rem; }
  .blog-content h2, .blog-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.6rem; }
  .blog-content h4 {
    font-size: 1.15rem;
    margin-bottom: 0.6rem; }
  .blog-content p {
    line-height: 1.4; }

  .stories-slider {
    width: calc(100vw - 2rem); }
  .stories-content {
    margin-top: 0; }
  .stories-arrows {
    width: 100%;
    bottom: 0;
    height: calc(100svh - 6rem);
    transform: none;
    left: 0;
    top: auto; }
    .stories-arrows span {
      width: 50%;
      height: 100%;
      opacity: 0; }
  .stories-item__images {
    width: calc(100vw - 2rem);
    height: calc(100svh - 6rem); }

  .contact__title {
    font-size: 1.8rem; }
  .contact__text {
    padding: 0.75rem 1rem; }
  .contact-item {
    flex-direction: column;
    padding: 1.5rem 0; }
    .contact-item__name {
      width: 100%; }
  .contact-info li {
    margin-bottom: 1rem; }
  .contact-info .toggle-anim {
    font-size: 1.8rem;
    height: 2.2rem; }
  .contact__address {
    font-size: 1.1rem; }
  .contact__worktime {
    font-size: 1.1rem; }

  .projects__title {
    font-size: 1.8rem; }
  .projects__text {
    padding: 0.75rem 1rem;
    margin-bottom: 1.5rem; }
  .projects-list {
    gap: 1.5rem;
    margin-bottom: 2rem; }
  .projects-item {
    height: 67vw; }
    .projects-item__btn {
      font-size: 1rem;
      height: 3rem;
      padding: 0 1rem;
      right: 1rem;
      bottom: 1rem; }

  .project-side {
    padding: 1.5rem 1rem; }
  .project__title {
    font-size: 1.3rem; }
  .project__text {
    margin-bottom: 2rem; }
  .project__btn {
    width: 100%; }
  .project__img {
    margin-bottom: 1rem; }

  .footer {
    padding-top: 3rem; }
    .footer-feedback {
      border-radius: .75rem;
      padding: 2.2rem 1rem;
      margin-bottom: 3rem; }
    .footer__title {
      font-size: 1.5rem; }
      .footer__title a {
        align-items: center;
        transform: none;
        margin-top: 0.5rem; }
        .footer__title a img {
          width: 2rem; }
    .footer-menu {
      flex-direction: column;
      margin-top: 1rem; }
      .footer-menu li {
        margin-bottom: .5rem; }
    .footer-wrap:nth-child(1) {
      flex-direction: column; }
    .footer-copy {
      font-size: 3.5vw; } }
@media (max-width: 400px) {
  .main__img {
    top: 22.5rem;
    width: 13rem; } }
@media (max-width: 389.98px) {
  :root {
    font-size: 15px; } }
@media (max-width: 375.98px) {
  :root {
    font-size: 14px; } }
@media (max-width: 345.98px) {
  :root {
    font-size: 13px; } }
@media (max-width: 330.98px) {
  :root {
    font-size: 12px; } }
@media (max-width: 320.98px) {
  :root {
    font-size: 11px; } }
@media (max-width: 300.98px) {
  :root {
    font-size: 10px; } }
@media (max-width: 1000px) and (orientation: landscape) {
  :root {
    font-size: 8.5px; } }
@media (max-width: 700px) and (orientation: landscape) {
  :root {
    font-size: 8px; } }

/*# sourceMappingURL=main.css.map */
