@import url(https://fonts.googleapis.com/css?family=Syne:regular,500,600,700&display=swap);
@import url(https://fonts.googleapis.com/css?family=Plus+Jakarta+Sans:regular,500,500italic&display=swap);
@font-face {
  font-family: CormorantUpright;
  font-display: swap;
  src: url("../fonts/CormorantUpright-Bold.woff2") format("woff2"), url("../fonts/CormorantUpright-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: CormorantUpright;
  font-display: swap;
  src: url("../fonts/CormorantUpright-Regular.woff2") format("woff2"), url("../fonts/CormorantUpright-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: CormorantUpright;
  font-display: swap;
  src: url("../fonts/CormorantUpright-SemiBold.woff2") format("woff2"), url("../fonts/CormorantUpright-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: TTTrailers;
  font-display: swap;
  src: url("../fonts/TTTrailers-Regular.woff2") format("woff2"), url("../fonts/TTTrailers-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}
*,
*::before,
*::after {
  padding: 0;
  margin: 0;
  border: 0;
  box-sizing: border-box;
}

a {
  text-decoration: none;
  color: inherit;
}

ul,
ol,
li {
  list-style: none;
}

img {
  vertical-align: top;
}

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

html,
body {
  height: 100%;
  line-height: 1.4; /* 30.8/22 */
  font-weight: 600;
  font-size: 16px;
  font-family: Syne;
}

button,
input {
  font-weight: inherit;
  font-size: inherit;
  color: inherit;
  font-family: inherit;
  outline: inherit;
}

button {
  cursor: pointer;
  background-color: inherit;
}

/*---------------------------------------*/
[class*=_container] {
  max-width: 1200px;
  margin: 0px auto;
  padding: 0px 15px;
  overflow: hidden;
}

.wrapper {
  overflow: hidden;
  min-height: 100%;
}

/*------------------------------------*/
.button-dark {
  color: #fff;
  background-color: #000;
  display: inline-flex;
  padding: 14px 26px;
  align-items: center;
  border-radius: 5px;
  transition: all 0.3s ease 0s;
  box-shadow:  1.5px 1.5px 2px rgba(29, 28, 28, 0.7725490196);
}
@media (max-width: 767.98px) {
  .button-dark {
    padding: 10px 20px;
  }
}

.button-dark p {
  margin-right: 10px;
}

.button-dark:hover {
  cursor: pointer;
  background-color: rgba(29, 28, 28, 0.7725490196);
  color: goldenrod;
  box-shadow:  -1.5px -1.5px 2px  rgba(29, 28, 28, 0.7725490196);
}

/*----------------------------*/
.caption__label {
  font-family: PlusJakartaSans;
  font-size: 14px;
  font-weight: 500;
  color: #333333;
  line-height: 1.2;
}
.caption__label:not(:last-child) {
  margin-bottom: 8px;
}
.caption__title {
  font-size: 40px;
  color: #000;
}
@media (max-width: 991.98px) {
  .caption__title {
    font-size: 32px;
  }
}
@media (max-width: 767.98px) {
  .caption__title {
    font-size: 28px;
  }
}
@media (max-width: 567.98px) {
  .caption__title {
    font-size: 24px;
  }
}
.caption__title:not(:last-child) {
  margin-bottom: 23px;
}
@media (max-width: 991.98px) {
  .caption__title:not(:last-child) {
    margin-bottom: 20px;
  }
}
@media (max-width: 767.98px) {
  .caption__title:not(:last-child) {
    margin-bottom: 15px;
  }
}
@media (max-width: 567.98px) {
  .caption__title:not(:last-child) {
    margin-bottom: 10px;
  }
}
.caption__text {
  font-weight: 400;
  font-size: 16px;
  color: #333333;
  font-family: PlusJakartaSans;
}
@media (max-width: 991.98px) {
  .caption__text {
    font-size: 14px;
  }
}
.caption__text:not(:last-child) {
  margin-bottom: 39px;
}
@media (max-width: 991.98px) {
  .caption__text:not(:last-child) {
    margin-bottom: 30px;
  }
}
@media (max-width: 767.98px) {
  .caption__text:not(:last-child) {
    margin-bottom: 15px;
  }
}

/*----------------------------*/
.header-burger {
  display: none;
}

@media (max-width: 767.98px) {
  .header-burger {
    z-index: 101;
    display: block;
    flex: 0 1 30px;
    height: 18px;
    position: relative;
  }
  .header-burger span {
    width: 100%;
    height: 2px;
    position: absolute;
    top: 0;
    right: 0;
    background-color: #000;
  }
  .header-burger span {
    top: calc(50% - 1px);
  }
  .header-burger::after {
    content: "";
    width: 100%;
    height: 2px;
    position: absolute;
    top: 0;
    left: 0;
    background-color: #000;
    transition: all 0.3s ease 0s;
  }
  .header-burger::before {
    content: "";
    width: 100%;
    height: 2px;
    position: absolute;
    bottom: 0;
    right: 0;
    background-color: #000;
    transition: all 0.3s ease 0s;
  }
  .header.open .header-burger span {
    width: 0;
  }
  .header.open .header-burger::after {
    top: calc(50% - 1px);
    background-color: #fff;
    transform: rotate(-45deg);
  }
  .header.open .header-burger::before {
    background-color: #fff;
    bottom: calc(50% - 1px);
    transform: rotate(45deg);
  }
}
/*---------------------------------*/
.header__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28.5px 0px;
  position: relative;
}
@media (max-width: 767.98px) {
  .header__content {
    padding: 15px 0px;
  }
}
.header__content::after {
  transition: all 1s ease 0s;
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 0%;
  height: 1px;
  background-color: #000;
}
.header__logo {
  transition: all 0.3s ease 0s;
  margin-right: 15px;
}
@media (hover: hover) {
  .header__logo:hover {
    cursor: pointer;
  }
}
@media (max-width: 450.98px) {
  .header__logo img {
    max-width: 100%;
    margin-right: 0px;
  }
}
.header__body {
  display: flex;
  align-items: center;
}
@media (max-width: 567.98px) {
  .header__body {
    flex-direction: column;
    row-gap: 8px;
  }
}
.header__btn {
  margin: 0px 60px;
  white-space: nowrap;
  position: relative;
  background-color: #000000;
  padding: 10px 19px 11px 18px;
  color: #fff;
  border-radius: 5px;
  transition: all 0.3s ease 0s;
}
@media (max-width: 991.98px) {
  .header__btn {
    margin: 0px 30px;
  }
}
@media (max-width: 767.98px) {
  .header__btn {
    padding: 8px 15px 8px 15px;
  }
}
@media (max-width: 450.98px) {
  .header__btn {
    margin: 0px 15px 0px 0px;
  }
}
.header__btn::after {
  content: "";
  background-color: #000000;
  height: 25px;
  width: 1px;
  position: absolute;
  top: 0;
  left: -31px;
}
@media (max-width: 991.98px) {
  .header__btn::after {
    left: -15px;
  }
}
@media (max-width: 450.98px) {
  .header__btn::after {
    display: none;
  }
}
.header__btn::before {
  content: "";
  background-color: #000000;
  height: 25px;
  width: 1px;
  position: absolute;
  top: 0;
  right: -31px;
}
@media (max-width: 991.98px) {
  .header__btn::before {
    right: -15px;
  }
}
@media (max-width: 450.98px) {
  .header__btn::before {
    display: none;
  }
}
.header__btn::after {
  top: 20%;
}
.header__btn::before {
  top: 20%;
}
.header__button {
  font-size: 16px;
  line-height: 1.2;
}
@media (max-width: 767.98px) {
  .header__button {
    font-size: 14px;
  }
}
.header__btn:hover {
  cursor: pointer;
  background-color: #777777;
  color: goldenrod;
}

.header._start-anim .header__content::after {
  width: 100%;
}

.header-menu {
  display: flex;
  flex-direction: column;
  position: relative;
  margin-right: 15px;
}
.header-menu__list {
  position: relative;
  flex-wrap: wrap;
  display: flex;
  column-gap: 35px;
  row-gap: 3px;
}
@media (max-width: 991.98px) {
  .header-menu__list {
    column-gap: 20px;
  }
}
.header-menu__link {
  position: relative;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.2; /* 19.2/16 */
  color: #444444;
  transition: all 0.3s ease 0s;
}
@media (hover: hover) {
  .header-menu__link:hover {
    cursor: pointer;
    color: goldenrod;
  }
}

@media (max-width: 767.98px) {
  .header-menu {
    z-index: 100;
    top: 0;
    position: fixed;
    left: -100%;
    overflow: hidden;
    width: 100%;
    height: 100%;
    transition: all 0.3s ease 0s;
    background-color: rgba(0, 0, 0, 0.9);
    padding: 150px 50px 50px 50px;
  }
  .header-menu__list {
    flex-direction: column;
    align-items: flex-end;
  }
  .header-menu__link {
    font-size: 24px;
    color: #fff;
    line-height: 2;
  }
  .header.open .header-menu {
    left: 0;
  }
}
.header-menu__list:not(:last-child) {
  margin-bottom: 25px;
  flex: 1 1 auto;
}

.social {
  position: relative;
  display: flex;
}
.social__image:not(:last-child) {
  margin-right: 15px;
}
@media (max-width: 991.98px) {
  .social__image:not(:last-child) {
    margin-right: 10px;
  }
}
.social__link {
  transition: all 0.3s ease 0s;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  align-items: center;
  display: flex;
  justify-content: center;
  border: 1px solid #000;
}
.social__link:hover {
  background-color: #777777;
  cursor: pointer;
  color: goldenrod;
}

@media (max-width: 567.98px) {
  .header .social {
    justify-content: flex-end;
  }
}
@media (max-width: 567.98px) {
  .header .social__link {
    color: wheat;
    border: 1px solid wheat;
  }
}

/*----------------------------------------*/
.main__title {
  margin-top: 70px;
  margin-bottom: 34px;
}
@media (max-width: 991.98px) {
  .main__title {
    margin-top: 50px;
    margin-bottom: 24px;
  }
}
@media (max-width: 767.98px) {
  .main__title {
    margin-top: 30px;
    margin-bottom: 24px;
  }
}

.main-title__image img {
  max-width: 100%;
}
.main-title__title {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
  line-height: 1.2; /* 96/80 */
  margin-top: -80px;
  margin-left: 90px;
}
@media (max-width: 1200.98px) {
  .main-title__title {
    margin-top: 0;
    font-size: 70px;
  }
}
@media (max-width: 991.98px) {
  .main-title__title {
    font-size: 60px;
  }
}
@media (max-width: 767.98px) {
  .main-title__title {
    font-size: 50px;
    margin-top: 20px;
    margin-left: 0px;
  }
}
@media (max-width: 567.98px) {
  .main-title__title {
    font-size: 40px;
  }
}
@media (max-width: 467.98px) {
  .main-title__title {
    font-size: 32px;
  }
}
.main-title__title h1 {
  text-align: center;
  max-width: 688px;
}
@media (max-width: 767.98px) {
  .main-title__title h1 {
    text-align: left;
  }
}
.main-title__title::after {
  content: url(../img/title/decor.svg);
  position: relative;
  top: -180px;
  right: 0;
  padding-left: 15px;
}
@media (max-width: 767.98px) {
  .main-title__title::after {
    top: 0;
  }
}

.main-block {
  position: relative;
  z-index: 10;
}
.main-block__body {
  position: relative;
  margin-bottom: 70px;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767.98px) {
  .main-block__body {
    flex-direction: column;
    row-gap: 20px;
    margin-bottom: 30px;
  }
}
.main-block__content {
  position: relative;
  margin-top: 46px;
  flex: 0 1 40.17094%; /* 470/1170 */
}
@media (max-width: 991.98px) {
  .main-block__content {
    margin-top: 20px;
    flex: 0 1 45.17094%;
  }
}
@media (max-width: 767.98px) {
  .main-block__content {
    margin-top: 0px;
  }
}
.main-block__text {
  margin-bottom: 39px;
  font-weight: 400;
  font-family: PlusJakartaSans;
  color: #333333;
}
@media (max-width: 991.98px) {
  .main-block__text {
    margin-bottom: 20px;
  }
}
.main-block__button i {
  margin-top: -1px;
}
.main-block__image {
  flex: 0 1 48.717949%; /* 570/1170 */
}
.main-block__image img {
  max-width: 100%;
}

.main__brand {
  position: relative;
  z-index: 12;
}

.main-brand__body {
  position: relative;
  padding: 80px 0px;
  justify-content: space-between;
  display: flex;
  align-items: center;
}
@media (max-width: 991.98px) {
  .main-brand__body {
    padding: 60px 0px;
  }
}
@media (max-width: 767.98px) {
  .main-brand__body {
    padding: 40px 0px;
    justify-content: space-between;
  }
}
@media (max-width: 420.98px) {
  .main-brand__body {
    flex-direction: column;
    row-gap: 30px;
    padding: 25px 0px;
  }
}
.main-brand__body::after {
  transition: all 1s ease 0s;
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 0%;
  height: 1px;
  background-color: #000;
}
.main-brand__body::before {
  transition: all 1s ease 0s;
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 0%;
  height: 1px;
  background-color: #000;
}
.main-brand__title {
  position: relative;
  flex: 0 1 16.153846%; /* 189/1170 */
  line-height: 1.6;
  padding-right: 10px;
}
@media (max-width: 991.98px) {
  .main-brand__title {
    font-size: 14px;
  }
}
.main-brand__content {
  justify-content: space-between;
  position: relative;
  column-gap: 54px;
  display: flex;
  row-gap: 20px;
  flex: 0 1 74.358974%; /* 870/1170 */
}
@media (max-width: 991.98px) {
  .main-brand__content {
    column-gap: 34px;
  }
}
@media (max-width: 767.98px) {
  .main-brand__content {
    column-gap: 20px;
  }
}
@media (max-width: 650.98px) {
  .main-brand__content {
    flex-direction: column;
  }
}
@media (max-width: 500.98px) {
  .main-brand__content {
    flex-direction: row;
  }
}
.main-brand__content::after {
  content: "";
  width: 1px;
  height: 100%;
  top: 0;
  z-index: 13;
  background-color: #000;
  position: absolute;
}
@media (max-width: 420.98px) {
  .main-brand__content::after {
    display: none;
  }
}
.main-brand__item img {
  max-width: 100%;
}
.main-brand__items {
  row-gap: 20px;
  display: flex;
  column-gap: 54px;
}
@media (max-width: 991.98px) {
  .main-brand__items {
    column-gap: 34px;
  }
}
@media (max-width: 767.98px) {
  .main-brand__items {
    column-gap: 20px;
  }
}
@media (max-width: 650.98px) {
  .main-brand__items {
    padding-left: 24px;
  }
}
@media (max-width: 500.98px) {
  .main-brand__items {
    flex-direction: column;
  }
}
.main-brand__items:nth-child(1) {
  padding-left: 55px;
}
@media (max-width: 991.98px) {
  .main-brand__items:nth-child(1) {
    padding-left: 24px;
  }
}
@media (max-width: 500.98px) {
  .main-brand__items:nth-child(1) {
    padding-left: 40px;
  }
}

.main__brand._start-anim .main-brand__body::after, .main__brand._start-anim .main-brand__body::before {
  width: 100%;
}

.main-services__body {
  justify-content: space-between;
  display: flex;
  position: relative;
  padding: 68px 0px 76px 0px;
}
@media (max-width: 650.98px) {
  .main-services__body {
    flex-direction: column;
    row-gap: 20px;
  }
}
@media (max-width: 991.98px) {
  .main-services__body {
    padding: 48px 0px 46px 0px;
  }
}
@media (max-width: 767.98px) {
  .main-services__body {
    padding: 38px 0px 36px 0px;
  }
}
@media (max-width: 767.98px) {
  .main-services__body {
    padding: 28px 0px 26px 0px;
  }
}
.main-services__body::after {
  transition: all 1s ease 0s;
  position: absolute;
  content: "";
  left: 0;
  width: 0%;
  height: 1px;
  background-color: #000;
  bottom: 0;
}
.main-services__caption {
  flex: 0 1 31.623932%; /* 370/1170 */
}
@media (max-width: 1200.98px) {
  .main-services__caption {
    flex: 0 1 34%;
  }
}
.main-services__content {
  position: relative;
  flex: 0 1 57.264957%; /* 670/1170 */
}
@media (max-width: 1200.98px) {
  .main-services__content {
    flex: 0 1 62%;
  }
}

.main-services._start-anim .main-services__body::after {
  width: 100%;
}

.content-services {
  position: relative;
}
.content-services__items {
  position: relative;
  justify-content: space-between;
  display: flex;
}
@media (max-width: 991.98px) {
  .content-services__items {
    justify-content: none;
  }
}
@media (max-width: 420.98px) {
  .content-services__items {
    flex-direction: column;
  }
}
.content-services__items:nth-child(1) {
  margin-bottom: 85px;
}
@media (max-width: 767.98px) {
  .content-services__items:nth-child(1) {
    margin-bottom: 55px;
  }
}
.content-services__item:nth-child(1) {
  margin-bottom: 85px;
}
@media (max-width: 767.98px) {
  .content-services__item:nth-child(1) {
    margin-bottom: 55px;
  }
}
.content-services__item {
  display: flex;
}
@media (max-width: 991.98px) {
  .content-services__item {
    flex-direction: column;
    align-items: center;
    row-gap: 20px;
  }
}
@media (max-width: 420.98px) {
  .content-services__item {
    max-width: 100%;
    flex-direction: row;
  }
}

.content-services__span {
  left: 50%;
  position: absolute;
  width: 1px;
  height: 10%;
  transition: all 0.7s ease 0s;
  background-color: #000;
}
@media (max-width: 420.98px) {
  .content-services__span {
    display: none;
  }
}

.content-services__span-top {
  top: 0;
}

.content-services__span-bottom {
  bottom: 0;
}

.content-services__span-2 {
  top: 50%;
  left: 0;
  position: absolute;
  width: 5%;
  height: 1px;
  transition: all 0.7s ease 0s;
  background-color: #000;
}

.content-services__span-22 {
  top: 50%;
  right: 0;
  position: absolute;
  transition: all 0.7s ease 0s;
  width: 5%;
  height: 1px;
  background-color: #000;
}

@media (max-width: 420.98px) {
  .content-services__span-222 {
    top: 50%;
    left: 0;
    position: absolute;
    width: 5%;
    transition: all 0.7s ease 0s;
    height: 1px;
    background-color: #000;
  }
  .content-services__span-2222 {
    top: 50%;
    right: 0;
    position: absolute;
    width: 5%;
    transition: all 0.7s ease 0s;
    height: 1px;
    background-color: #000;
  }
}
.main-services._start-anim .main-services__body::after {
  width: 100%;
}
.main-services._start-anim .main-services__body .content-services__span {
  height: 100%;
}
.main-services._start-anim .main-services__body .content-services__span-2,
.main-services._start-anim .main-services__body .content-services__span-22 {
  width: 35%;
}
@media (max-width: 420.98px) {
  .main-services._start-anim .main-services__body .content-services__span-222,
  .main-services._start-anim .main-services__body .content-services__span-2222 {
    width: 35%;
  }
}

.services-item__image {
  margin-top: 7px;
  margin-right: 21px;
}
@media (max-width: 991.98px) {
  .services-item__image {
    margin-right: 15px;
  }
}
.services-item__title {
  font-size: 30px;
  font-weight: 500;
  color: #000;
  margin-bottom: 3px;
}
@media (max-width: 991.98px) {
  .services-item__title {
    font-size: 22px;
  }
}
.services-item__text {
  font-weight: 400;
  font-size: 14px;
  color: #333;
  font-family: PlusJakartaSans;
  max-width: 148px;
  margin-bottom: 25px;
}
@media (max-width: 991.98px) {
  .services-item__text {
    margin-bottom: 15px;
    max-width: 200px;
  }
}
@media (max-width: 767.98px) {
  .services-item__text {
    max-width: 150px;
  }
}
@media (max-width: 650.98px) {
  .services-item__text {
    max-width: 200px;
  }
}
@media (max-width: 500.98px) {
  .services-item__text {
    max-width: 150px;
  }
}
@media (max-width: 420.98px) {
  .services-item__text {
    max-width: 100%;
  }
}
.services-item__link {
  font-size: 13px;
  line-height: 1.2;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: all 0.3s ease 0s;
}
@media (hover: hover) {
  .services-item__link:hover {
    cursor: pointer;
    color: goldenrod;
  }
}
.services-item__link p {
  display: inline-block;
}
.services-item__link i {
  display: inline-block;
  font-size: 12px;
  margin-top: -1px;
  transform: rotate(-135deg);
}

.main-project__body {
  padding: 80px 0px;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  position: relative;
}
@media (max-width: 991.98px) {
  .main-project__body {
    padding: 50px 0px;
  }
}
@media (max-width: 767.98px) {
  .main-project__body {
    flex-direction: column;
    padding: 30px 0px;
  }
}
.main-project__body::after {
  transition: all 1s ease 0s;
  position: absolute;
  content: "";
  left: 0;
  width: 0%;
  height: 1px;
  background-color: #000;
  bottom: 0;
}
.main-project__caption {
  flex: 0 1 31.623932%; /* 370/1170 */
}
@media (max-width: 991.98px) {
  .main-project__caption {
    flex: 0 1 38%;
  }
}
.main-project__content {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-left: 85px;
}
@media (max-width: 991.98px) {
  .main-project__content {
    margin-left: 55px;
  }
}
@media (max-width: 767.98px) {
  .main-project__content {
    gap: 10px;
  }
}
@media (max-width: 467.98px) {
  .main-project__content {
    margin-left: 0;
  }
}
.main-project__content::after {
  left: -65px;
  position: absolute;
  content: "";
  height: 0%;
  transition: all 0.7s ease 0s;
  width: 1px;
  background-color: #000;
}
@media (max-width: 991.98px) {
  .main-project__content::after {
    left: -55px;
  }
}
@media (max-width: 467.98px) {
  .main-project__content::after {
    display: none;
  }
}
.main-project__block {
  position: relative;
}
.main-project__image {
  width: 100%;
}
.main-project__image img {
  max-width: 100%;
}
.main-project__item {
  position: relative;
  border-bottom-right-radius: 12px;
  border-bottom-left-radius: 12px;
}

.main-project-span {
  width: 0%;
  height: 1px;
  position: relative;
  transition: all 0.7s ease 0s;
  z-index: 12;
  background-color: #000000;
}

.main-project._start-anim .main-project__body::after {
  width: 100%;
}
.main-project._start-anim .main-project-span {
  width: 100%;
}
.main-project._start-anim .main-project__content::after {
  height: 100%;
}

.main-project__image-1 img {
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}

.item-main-project {
  max-width: 670px;
  padding: 28px 18px;
  background-color: #000;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.item-main-project__title {
  font-size: 24px;
  color: #fff;
}
.item-main-project__btn {
  padding: 7px 15px;
  background-color: #fff;
  color: #000;
  border-radius: 3px;
  align-items: center;
  display: flex;
  transition: all 0.3s ease 0s;
}
.item-main-project__btn p {
  margin-right: 14px;
}
.item-main-project__btn:hover {
  cursor: pointer;
  background-color: #777777;
  color: goldenrod;
}

.main-scroll__body {
  padding: 60px 0px;
  justify-content: space-between;
  display: flex;
  position: relative;
}
@media (max-width: 991.98px) {
  .main-scroll__body {
    padding: 52px 0px;
  }
}
@media (max-width: 767.98px) {
  .main-scroll__body {
    padding: 45px 0px;
  }
}
@media (max-width: 567.98px) {
  .main-scroll__body {
    padding: 30px 0px;
    row-gap: 20px;
    flex-direction: column-reverse;
  }
}
.main-scroll__content {
  flex: 0 1 39.316239%; /* 460/1170 */
}
.main-scroll__text {
  overflow-y: scroll;
  max-height: 249px;
  font-size: 22px;
  font-weight: 500;
  font-style: italic;
  font-family: PlusJakartaSans;
}
.main-scroll__text::-webkit-scrollbar {
  width: 4px;
}
.main-scroll__text::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}
.main-scroll__text::-webkit-scrollbar-thumb {
  background-color: #666;
  outline: 2px solid #eee;
}
.main-scroll__caption {
  flex: 0 1 48.205128%; /* 564/1170 */
}

.main-digital__body {
  position: relative;
  padding: 36px 0px 60px 0px;
  display: flex;
  flex: 0 1 33.33333%;
}
@media (max-width: 991.98px) {
  .main-digital__body {
    padding: 30px 0px 50px 0px;
  }
}
@media (max-width: 767.98px) {
  .main-digital__body {
    padding: 25px 0px 40px 0px;
  }
}
@media (max-width: 567.98px) {
  .main-digital__body {
    padding: 20px 0px 30px 0px;
    flex-direction: column;
  }
}
.main-digital__body::after {
  transition: all 1s ease 0s;
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 0%;
  height: 1px;
  background-color: #000;
}
.main-digital__body::before {
  transition: all 1s ease 0s;
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 0%;
  height: 1px;
  background-color: #000;
}
.main-digital__item {
  position: relative;
}
.main-digital__item:not(:last-child) {
  margin-right: 30px;
}
@media (max-width: 767.98px) {
  .main-digital__item:not(:last-child) {
    margin-right: 20px;
  }
}
.main-digital__title {
  font-weight: 500;
  font-size: 30px;
  margin-bottom: 13px;
}
@media (max-width: 767.98px) {
  .main-digital__title {
    font-size: 24px;
  }
}
.main-digital__text {
  font-family: PlusJakartaSans;
  font-weight: 400;
  color: #333333;
}
@media (max-width: 767.98px) {
  .main-digital__text {
    font-size: 14px;
  }
}
.main-digital__item-2 {
  margin-top: 40px;
}
@media (max-width: 567.98px) {
  .main-digital__item-2 {
    margin-top: 10px;
  }
}
.main-digital__item-3 {
  margin-top: 80px;
}
@media (max-width: 567.98px) {
  .main-digital__item-3 {
    margin-top: 10px;
  }
}

.main-digital._start-anim .main-digital__body::after, .main-digital._start-anim .main-digital__body::before {
  width: 100%;
}

.main-latest__body {
  padding: 74px 0px;
  position: relative;
}
@media (max-width: 991.98px) {
  .main-latest__body {
    padding: 50px 0px;
  }
}
@media (max-width: 767.98px) {
  .main-latest__body {
    padding: 50px 0px;
  }
}
@media (max-width: 567.98px) {
  .main-latest__body {
    padding: 30px 0px;
  }
}
.main-latest__body::after {
  transition: all 1s ease 0s;
  position: absolute;
  content: "";
  left: 0;
  width: 0%;
  height: 1px;
  background-color: #000;
  bottom: 0;
}
.main-latest__caption {
  display: flex;
  justify-content: space-between;
  margin-bottom: 39px;
}
@media (max-width: 567.98px) {
  .main-latest__caption {
    flex-direction: column;
    row-gap: 15px;
  }
}
.main-latest__content {
  position: relative;
  justify-content: space-between;
  display: flex;
}
@media (max-width: 467.98px) {
  .main-latest__content {
    flex-direction: column;
    row-gap: 15px;
  }
}
.main-latest__content::after {
  left: 50%;
  transition: all 0.8s ease 0s;
  position: absolute;
  content: "";
  height: 0%;
  width: 1px;
  background-color: #000;
}
@media (max-width: 467.98px) {
  .main-latest__content::after {
    display: none;
  }
}
.main-latest .caption__text {
  margin-bottom: 20px;
}

.main-latest._start-anim .main-latest__body::after {
  width: 100%;
}
.main-latest._start-anim .main-latest__body .content-latest__item-2::after {
  width: 100%;
}
.main-latest._start-anim .main-latest__body .main-latest__content::after {
  height: 100%;
}

.latest-caption-1 {
  flex: 0 1 36.837607%; /* 431/1170 */
}
@media (max-width: 767.98px) {
  .latest-caption-1 {
    flex: 0 1 44%;
  }
}

.latest-caption-2 {
  flex: 0 1 40.17094%; /* 470/1170 */
}
@media (max-width: 767.98px) {
  .latest-caption-2 {
    flex: 0 1 44%;
  }
}

.content-latest__item-1 {
  position: relative;
  flex: 0 1 36.837607%; /* 431/1170 */
}
@media (max-width: 767.98px) {
  .content-latest__item-1 {
    flex: 0 1 44%;
  }
}
.content-latest__item-2 {
  position: relative;
  flex: 0 1 40.17094%;
  display: flex;
  flex-direction: column;
}
.content-latest__item-2 .content-latest__label-content:nth-child(1) {
  margin-bottom: 33px;
}
.content-latest__item-2__label-content {
  flex: 0 1 47.619048%; /* 330/693 */
}
@media (max-width: 767.98px) {
  .content-latest__item-2 {
    flex: 0 1 44%;
  }
}
.content-latest__item-2::after {
  top: 50%;
  position: absolute;
  content: "";
  height: 1px;
  width: 0%;
  transition: all 0.7s ease 0s;
  background-color: #000;
}

.label-content__image {
  margin-bottom: 12px;
}
.label-content__image img {
  max-width: 100%;
}
.label-content__sub-title {
  font-weight: 500;
  font-family: PlusJakartaSans;
  font-size: 13px;
  line-height: 1.2;
  color: #666666;
  margin-bottom: 10px;
}
.label-content__title {
  font-size: 30px;
  font-weight: 500;
  line-height: 1.2;
  transition: all 0.3s ease 0s;
}
@media (max-width: 767.98px) {
  .label-content__title {
    font-size: 22px;
  }
}
@media (hover: hover) {
  .label-content__title:hover {
    cursor: pointer;
    color: goldenrod;
  }
}

.main-get__body {
  padding: 60px 0px;
  justify-content: center;
  position: relative;
}
@media (max-width: 991.98px) {
  .main-get__body {
    padding: 50px 0px;
  }
}
@media (max-width: 767.98px) {
  .main-get__body {
    padding: 40px 0px;
  }
}
@media (max-width: 567.98px) {
  .main-get__body {
    padding: 30px 0px;
  }
}
.main-get__body::after {
  transition: all 1s ease 0s;
  position: absolute;
  content: "";
  left: 0;
  width: 0%;
  height: 1px;
  background-color: #000;
  bottom: 0;
}
.main-get__title {
  font-size: 90px;
  line-height: 1;
  display: flex;
  align-items: center;
  font-weight: 700;
  justify-content: center;
  transition: all 0.4s ease 0s;
}
@media (max-width: 991.98px) {
  .main-get__title {
    font-size: 80px;
  }
}
@media (max-width: 767.98px) {
  .main-get__title {
    font-size: 60px;
  }
}
@media (max-width: 567.98px) {
  .main-get__title {
    font-size: 32px;
  }
}
@media (max-width: 367.98px) {
  .main-get__title {
    font-size: 24px;
  }
}
@media (hover: hover) {
  .main-get__title:hover {
    cursor: pointer;
    color: goldenrod;
  }
}
.main-get .main-get__image {
  flex: 0 1 6.837607%; /* 80/1170 */
  margin-left: 20px;
}
.main-get .main-get__image img {
  max-width: 100%;
}

.main-get._start-anim .main-get__body::after {
  width: 100%;
}

/*-------------FOOTER-------------------------*/
.footer {
  padding-bottom: 40px;
}
.footer__logo {
  flex: 0 1 37.350427%; /* 437/1170 */
  border-right: 1px solid #000;
}
@media (max-width: 1200.98px) {
  .footer__logo {
    flex: 0 1 32.350427%;
  }
}
@media (max-width: 991.98px) {
  .footer__logo {
    flex: 0 1 100%;
    max-width: 100%;
    border-right: none;
  }
}
.footer__logo-image {
  margin-bottom: 32px;
}
@media (max-width: 991.98px) {
  .footer__logo-image {
    margin-bottom: 20px;
  }
}
@media (hover: hover) {
  .footer__logo-image:hover {
    cursor: pointer;
  }
}
.footer__logo-text {
  margin-right: 15px;
  max-width: 310px;
  color: #444444;
  font-weight: 400;
  font-size: 16px;
  font-family: PlusJakartaSans;
  margin-bottom: 27px;
}
@media (max-width: 991.98px) {
  .footer__logo-text {
    max-width: 100%;
    margin-bottom: 20px;
  }
}
.footer__logo-info {
  font-family: PlusJakartaSans;
  font-weight: 400;
}
.footer__bot {
  display: flex;
  justify-content: space-between;
  padding-top: 50px;
  margin-top: 66px;
  align-items: center;
  position: relative;
  gap: 15px;
}
@media (max-width: 767.98px) {
  .footer__bot {
    margin-top: 20px;
    padding-top: 20px;
  }
}
@media (max-width: 487.98px) {
  .footer__bot {
    flex-direction: column;
  }
}
.footer__bot::after {
  content: "";
  top: 0;
  width: 0;
  height: 1px;
  background-color: #000;
  left: 0;
  transition: all 1s ease 0s;
  position: absolute;
}
.footer__copy {
  font-size: 16px;
  line-height: 1.25; /* 20/16 */
  color: #444444;
}

.footer._start-anim .footer__bot::after {
  width: 100%;
}

.footer__body {
  padding-top: 80px;
  display: flex;
}
@media (max-width: 991.98px) {
  .footer__body {
    flex-direction: column;
    row-gap: 30px;
  }
}
@media (max-width: 767.98px) {
  .footer__body {
    row-gap: 0px;
  }
}

.footer-body-content {
  display: flex;
  flex-wrap: wrap;
  flex: 0 1 681px;
  margin-left: 54px;
}
@media (max-width: 1200.98px) {
  .footer-body-content {
    margin-left: 37px;
  }
}
@media (max-width: 991.98px) {
  .footer-body-content {
    flex: 0 1 100%;
    margin-left: 0px;
    justify-content: space-between;
  }
}
@media (max-width: 767.98px) {
  .footer-body-content {
    flex-direction: column;
  }
}
.footer-body-content__link {
  flex: 0 1 20.795888%; /* 128/681 */
  margin-right: 67px;
}
@media (max-width: 1200.98px) {
  .footer-body-content__link {
    margin-right: 37px;
  }
}
@media (max-width: 991.98px) {
  .footer-body-content__link {
    margin-right: 20px;
  }
}
@media (max-width: 767.98px) {
  .footer-body-content__link {
    font-size: 15px;
  }
}
.footer-body-content__contact {
  flex: 0 1 24.375918%; /* 166/681 */
  margin-right: 35px;
}
@media (max-width: 991.98px) {
  .footer-body-content__contact {
    margin-right: 20px;
  }
}
.footer-body-content__subscribe {
  flex: 0 1 39.79442%; /* 271/681 */
}

.footer-link__title {
  margin-bottom: 32px;
  font-size: 25px;
  color: #000;
  line-height: 1.2; /* 30/25 */
  font-weight: 500;
}
@media (max-width: 767.98px) {
  .footer-link__title {
    font-size: 20px;
    margin-top: 20px;
    margin-bottom: 0;
  }
}

.footer-menu__link {
  font-weight: 400;
  color: #444444;
  transition: all 0.3s ease 0s;
}
@media (hover: hover) {
  .footer-menu__link:hover {
    cursor: pointer;
    color: goldenrod;
  }
}
.footer-menu__item:not(:last-child) {
  margin-bottom: 20px;
}
.footer-menu__list {
  flex-wrap: wrap;
  row-gap: 3px;
  display: flex;
  column-gap: 20px;
}
@media (max-width: 767.98px) {
  .footer-menu__item:not(:last-child) {
    margin-bottom: 0px;
  }
}

.footer-contact__title {
  margin-bottom: 32px;
  font-size: 25px;
  color: #000;
  line-height: 1.2; /* 30/25 */
  font-weight: 500;
}
@media (max-width: 767.98px) {
  .footer-contact__title {
    font-size: 20px;
    margin-top: 20px;
    margin-bottom: 0;
  }
}
.footer-contact__item {
  color: #444444;
  font-size: 16px;
  font-weight: 400;
  transition: all 0.3s ease 0s;
}
.footer-contact__item:not(:last-child) {
  margin-bottom: 21px;
}
.footer-contact__item:hover {
  color: goldenrod;
  cursor: pointer;
}
@media (max-width: 767.98px) {
  .footer-contact__item:not(:last-child) {
    margin-bottom: 10px;
  }
}

.footer-subscribe__title {
  margin-bottom: 32px;
  font-size: 25px;
  color: #000;
  line-height: 1.2; /* 30/25 */
  font-weight: 500;
}
@media (max-width: 767.98px) {
  .footer-subscribe__title {
    font-size: 20px;
    margin-top: 20px;
    margin-bottom: 0;
  }
}
.footer-subscribe__text {
  line-height: 1.2;
  color: #444444;
  margin-bottom: 26px;
  font-weight: 400;
}
@media (max-width: 767.98px) {
  .footer-subscribe__text {
    margin-bottom: 10px;
  }
}
.footer-subscribe__form {
  display: flex;
  flex-direction: column;
  justify-content: left;
}
.footer-subscribe__input {
  border-bottom: 1px solid #000;
  padding: 5px;
  font-size: 14px;
  color: #888888;
  margin-bottom: 28px;
  line-height: 1.2;
}
@media (max-width: 767.98px) {
  .footer-subscribe__input {
    margin-bottom: 10px;
  }
}
.footer-subscribe__input::placeholder {
  color: #888888;
  font-size: 14px;
  line-height: 1.2;
}
.footer-subscribe__input:focus {
  font-size: 14px;
  line-height: 1.2;
  border-bottom: 1px solid goldenrod;
}
.footer-subscribe__btn {
  display: flex;
  font-size: 14px;
  gap: 11px;
  align-items: center;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: all 0.3s ease 0s;
}
@media (hover: hover) {
  .footer-subscribe__btn:hover {
    cursor: pointer;
    color: goldenrod;
  }
}
.footer-subscribe__btn p {
  display: inline-block;
}
.footer-subscribe__btn i {
  display: inline-block;
  font-size: 12px;
  margin-top: -1px;
  transform: rotate(-135deg);
}

.main-get._start-anim .splitting .char {
  animation: slide-in 0.45s cubic-bezier(0.5, 0, 0.5, 1) both;
  animation-delay: calc(0.1s + 100ms * var(--char-index));
}

.content-services__item._start-anim .splitting .char {
  animation: slide-in 0.45s cubic-bezier(0.5, 0, 0.5, 1) both;
  animation-delay: calc(0.1s + 100ms * var(--char-index));
}

.char-i {
  transform: rotate(-45deg);
}

@keyframes slide-in {
  from {
    transform: translateX(3em);
    opacity: 0;
  }
}
.title-animation {
  transform: translate(0px, 100%);
  transition: all 0.4s ease 0s;
  opacity: 0;
}

.title-animation._start-anim {
  opacity: 1;
  transform: translate(0px, 0px);
}