@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;400;600;900&display=swap");
:root {
  --main-bg-black-color: #272727;
  --main-bg-dark-color: #333333;
  --main-primary-color: #cd2628;
  --main-text-color: ;
  --main-paragraph-color: #888888;
}

@-webkit-keyframes slideRight {
  from {
    -webkit-transform: translateX(-10px);
            transform: translateX(-10px);
    opacity: 0;
  }
  to {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideRight {
  from {
    -webkit-transform: translateX(-10px);
            transform: translateX(-10px);
    opacity: 0;
  }
  to {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}
@-webkit-keyframes slideLeft {
  from {
    -webkit-transform: translateX(10px);
            transform: translateX(10px);
    opacity: 0;
  }
  to {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}
@keyframes slideLeft {
  from {
    -webkit-transform: translateX(10px);
            transform: translateX(10px);
    opacity: 0;
  }
  to {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}
@-webkit-keyframes slideTop {
  from {
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
    opacity: 0;
  }
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}
@keyframes slideTop {
  from {
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
    opacity: 0;
  }
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes textSlideDown {
  0.01% {
    display: none;
  }
  1% {
    display: flex;
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
    opacity: 0;
  }
  100% {
    display: flex;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}
@keyframes textSlideDown {
  0.01% {
    display: none;
  }
  1% {
    display: flex;
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
    opacity: 0;
  }
  100% {
    display: flex;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}
@-webkit-keyframes textSlideScale {
  0.01% {
    display: none;
  }
  1% {
    display: flex;
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
    opacity: 0;
  }
  100% {
    display: flex;
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}
@keyframes textSlideScale {
  0.01% {
    display: none;
  }
  1% {
    display: flex;
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
    opacity: 0;
  }
  100% {
    display: flex;
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}
.page {
  position: relative;
  right: 0;
  z-index: 2;
  background-color: #fff;
  transition: all 0.3s ease-in-out;
}
.page_slide-left {
  right: 250px;
}

.content_textpage {
  padding-top: 150px;
}
.content_textpage h1,
.content_textpage h2,
.content_textpage h3,
.content_textpage h4,
.content_textpage h5,
.content_textpage h6 {
  margin: 20px 0 0;
  font-weight: 600;
}
.content_textpage h1 {
  margin-bottom: 40px;
  font-size: 32px;
}
.content_textpage h2 {
  font-size: 28px;
}
.content_textpage h3 {
  font-size: 24px;
}
.content_textpage h4 {
  font-size: 22px;
}
.content_textpage h5 {
  font-size: 20px;
}
.content_textpage h6 {
  font-size: 16px;
}
.content_textpage p {
  margin: 20px 0 0;
  font-size: 14px;
}

.c-icon {
  display: flex;
  flex: 1;
}
.c-icon svg {
  width: 24px;
  height: 24px;
}
.c-icon path {
  transition: all 0.5s ease;
  fill: #fff;
}
.c-icon--small svg {
  width: 16px;
  height: 16px;
}
.c-icon--medium svg {
  width: 24px;
  height: 24px;
}
.c-icon--large svg {
  width: 48px;
  height: 48px;
}

.c-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 350px;
  height: 50px;
  padding: 0;
  text-transform: uppercase;
  text-decoration: none;
  background-color: #cd2628;
  border: none;
  cursor: pointer;
  transition: all 0.5s ease;
}
.c-button:hover {
  background-color: #a21e20;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.c-button:hover::after {
  margin-left: 18px;
  opacity: 1;
}
.c-button__text {
  color: #fff;
  font-size: 16px;
  text-decoration: none;
  -webkit-transform: translateX(10px);
          transform: translateX(10px);
  transition: all 0.5s ease;
}
.c-button::after {
  width: 20px;
  height: 20px;
  background-image: url(../images/icons/right-arrow.svg);
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0;
  transition: all 0.5s ease;
  content: "";
}

.root {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  font-family: Inter, sans-serif;
  background: #fff;
  transition: all 0.3s ease-in-out;
}
.root_transition_out {
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
  opacity: 0;
}
.root_transition_in {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}

.logo {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  transition: all 0.5s ease;
  position: relative;
}
.logo:hover {
  opacity: 0.6;
}
/*ng*/
/* .logo::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 17px;
  width: 41px;
  height: 41px;
  background-image: url(../images/christmas-tree-gr.png);
  transition: all 0.3s ease-in-out;
} */
.header_fixed .logo::before {
  scale: 0.8;
  left: 4px;
}
@media screen and (max-width: 575.98px) {

  .logo::before {
    left: 3px;
    width: 38px;
    height: 28px;
    object-fit: cover;
  }
  
}
.logo__image {
  width: 150px;
  height: 50px;
  transition: all 0.5s ease;
}

.logo__text {
  max-width: 300px;
  margin: 18px 0 0;
  padding: 0;
  color: var(--main-paragraph-color);
  font-size: 14px;
}
.social {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.social__item {
    margin-bottom: 6px;
    width: 100%;
}
.social__link {
  text-decoration: none;
}
.social__icon svg {
  fill: #fff;
}
.social__icon:hover svg {
  fill: #fff;
}

.header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 4;
  background-color: #000;
  transition: all 0.3s ease-in-out;
}
.header_fixed {
  position: fixed;
  box-shadow: 0 5px 5px -5px rgba(34, 60, 80, 0.6);
}
.header_fixed .logo__image {
  width: 100px;
  height: 40px;
}
.logo__image-call {
  display: none;
}
@media (max-width:400px) {
  .logo__image-call {
    display: block;
  }
}
.header__link-call {
  text-decoration: none;
  margin-right: 5px;
}
.header__link-call:last-child {
  margin-right: 0;
}
.header__link-block {
  display: none;
  align-items: center;
  margin-right: 45px;
}
.header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.header__contacts {
  display: flex;
  align-items: center;
  padding: 9px 0;
  background-color: #fff;
}
.header__contacts-list {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.header__contacts-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header__contacts-icon {
  margin-right: 8px;
}
.header__contacts-icon svg {
  fill: #cd2628;
}
.header__contacts-link {
  color: #fff;
  font-weight: 400;
  font-size: 16px;
  text-decoration: none;
}
.header__contacts .header__contacts-link {
color: #000;
}
.header__contacts-link:hover {
    color: #cd2628;
}
.header__main {
  margin: 0;
  padding: 20px 0;
  background-color: var(--main-bg-black-color);
  transition: all 0.5s ease;
}
.header_fixed .header__main {
  padding: 8px 0;
}
.header__menu {
  display: flex;
  align-items: center;
}
.header__button {
  width: fit-content;
  height: auto;
  background-color: transparent;
}
.header__button span {
  font-size: 14px;
  color: #cd2628;
  text-decoration: underline;
  text-transform: uppercase;
}
.header_fixed .header__button span {
  font-size: 13px;
}
.header__button:hover span {
    color: #000;
}
.header__toggle {
  display: none;
  justify-content: flex-end;
  width: 36px;
  max-width: 36px;
  height: 36px;
  padding: 0;
  background-color: transparent;
  border: none;
  cursor: pointer;
  transition: all 0.5s ease;
}
.header__toggle svg {
  width: 36px;
  height: 36px;
}
.header__toggle:hover {
  opacity: 0.8s;
}
.header .hc-nav-trigger {
  top: 50%;
  right: 7px;
  left: auto;
  transform: translate(0, -50%);
}
@media screen and (max-width: 991.98px) {
  .header__menu {
    display: none;
  }
  .header__toggle {
    display: flex;
    margin-left: 18px;
  }
  .header__toggle svg {
    fill: #fff;
  }
  .social {
      margin-right: 70px;
  }
  .header__container {
      position: relative;
  }
}
@media screen and (max-width: 767.98px) {
  .header .social {
    /*display: none;*/
  }
  .header__contacts-list {
    justify-content: space-between;
    width: 50%;
  }

  .reviews__list {
    flex-wrap: wrap;
    gap: 20px;
  }
}
@media screen and (max-width: 575.98px) {
  .header__contacts {
    display: none;
  }
  .header__main {
    padding: 8px 0;
  }
  .logo__image, 
  .header_fixed .logo__image {
    width: 100px;
    height: auto;
  }
  .header__contacts-list {
    display: none;
  }
  .social__item {
     width: fit-content;
        min-width: 150px;
  }
  .header__contacts-link {
      font-size: 14px;
  }
}
@media screen and (max-width: 400px) {
 .social {
        margin-right: 50px;
    }
    .header .hc-nav-trigger {
        right: 0;
    }
    .header__toggle svg {
    width: 30px;
    height: 30px;
}
.header__contacts-icon {
    display: none;
}
.social__item {
    justify-content: flex-end;
    min-width: 0;
}
}
.page_slide-left .header, .page_slide-left .header_fixed {
  right: 250px;
}
.page_slide-left .header_fixed {
  right: 250px;
}

.footer {
  margin-top: 100px;
}
.footer__info {
  padding-top: 50px;
  padding-bottom: 50px;
  background-color: var(--main-bg-dark-color);
}
.footer__container {
  display: flex;
  justify-content: space-between;
}
.footer__menu {
  margin-right: auto;
}
.footer__menu .menu {
  flex-direction: column;
  align-items: flex-start;
  margin: 0;
}
.footer__menu .menu__item {
  width: 100%;
}
.footer__menu .menu__item:not(:first-child) {
  margin-top: 9px;
  margin-left: 0;
}
.footer__menu .menu__link {
  display: flex;
  align-items: center;
  color: #fff;
  font-size: 16px;
}
.footer__menu .menu__link::before {
  content: none;
}
.footer__menu .menu__link:hover, .footer__menu .menu__link_active {
  color: #cd2628;
}
.footer__title {
  margin: 18px 0;
  padding: 0;
  color: #fff;
  font-weight: 600;
  font-size: 18px;
}
.footer__contacts-text {
  max-width: 250px;
  margin: 9px 0 0;
  color: var(--main-paragraph-color);
  font-size: 16px;
}
.footer__contacts-link {
  margin-left: 10px;
  color: var(--main-primary-color);
  font-size: 16px;
}
.footer__copyright {
  padding: 8px 0;
  background-color: var(--main-bg-black-color);
}
.footer__copyright-text {
  margin: 0;
  color: #fff;
  font-size: 12px;
}
.footer__copyright-link {
  margin-left: 5px;
  color: var(--main-primary-color);
  font-size: 12px;
  text-decoration: none;
}
@media screen and (max-width: 767.98px) {
  .footer__menu {
    display: none;
  }
  .footer__title {
      font-size: 16px;
  }
   .footer__contacts-text, .footer__contacts-link {
      font-size: 14px;
  }
  
}
@media screen and (max-width: 575.98px) {
  .footer__container {
    flex-direction: column;
  }
  .footer .logo__text {
    max-width: 100%;
  }
  .footer__copyright .footer__container {
    align-items: center;
  }
  .footer__copyright .social {
    display: none;
  }
  .footer__copyright-text {
    font-size: 10px;
    text-align: center;
  }
}

.container {
  max-width: 1337px;
  margin: 0 auto;
  transition: all 0.5s ease;
}
@media screen and (max-width: 1499.98px) {
  .container {
    max-width: 1124px;
  }
}
@media screen and (max-width: 1199.98px) {
  .container {
    max-width: 928px;
  }
}
@media screen and (max-width: 991.98px) {
  .container {
    max-width: calc(100% - 32px);
  }
}

.menu {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.menu__item:not(:first-child) {
  margin-left: 36px;
}
.menu__link {
  position: relative;
  color: #fff;
  text-decoration: none;
  transition: all 0.5s ease;
}
.menu__link::before {
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 3px;
  background: #cd2628;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: right;
          transform-origin: right;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
  content: "";
}
.menu__link:hover::before, .menu__link_active::before {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
  -webkit-transform-origin: left;
          transform-origin: left;
}

.main-banner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  padding-top: 60px;
}
.main-banner__overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background-color: black;
  opacity: 0.6;
}
.main-banner__bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.main-banner__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 100px);
}
.main-banner__title {
  max-width: 1200px;
  margin: 0;
  padding: 0;
  color: #fff;
  font-weight: 900;
  font-size: 80px;
  line-height: 1.3;
  text-align: center;
  opacity: 0;
  -webkit-animation: slideRight 0.8s ease-in-out 0.2s forwards;
          animation: slideRight 0.8s ease-in-out 0.2s forwards;
}
.main-banner__text {
  margin: 36px 0 0;
  padding: 0;
  color: #fff;
  font-size: 45px;
  line-height: 50px;
  opacity: 0;
  -webkit-animation: slideLeft 0.8s ease-in-out 0.6s forwards;
          animation: slideLeft 0.8s ease-in-out 0.6s forwards;
}
.main-banner__button {
  width: 300px;
  height: 50px;
  margin: 36px 0 0;
  font-size: 18px;
  text-transform: uppercase;
  opacity: 0;
  -webkit-animation: slideTop 0.8s ease-in-out 1.3s forwards;
          animation: slideTop 0.8s ease-in-out 1.3s forwards;
}
@media screen and (max-width: 991.98px) {
  .main-banner__title {
    max-width: 1200px;
    font-size: 60px;
    line-height: 1.3;
  }
  .main-banner__text {
    margin: 36px 0 0;
    font-size: 35px;
    line-height: 50px;
  }
  .main-banner__button {
    width: 260px;
    height: 40px;
    margin: 36px 0 0;
    font-size: 16px;
  }
}
@media screen and (max-width: 767.98px) {
  .main-banner__title {
    max-width: 1200px;
    font-size: 45px;
    line-height: 1.3;
  }
  .main-banner__text {
    margin: 36px 0 0;
    font-size: 30px;
    line-height: 50px;
  }
  .main-banner__button {
    width: 260px;
    height: 40px;
    margin: 36px 0 0;
    font-size: 16px;
  }
  
}
@media screen and (max-width: 575.98px) {
  .main-banner__container {
    min-height: calc(100vh - 100px);
  }
  .main-banner__title {
    max-width: 1200px;
    font-size: 40px;
    line-height: 1.3;
  }
  .main-banner__text {
    margin: 36px 0 0;
    font-size: 26px;
    line-height: 50px;
    text-align: center;
  }
  .main-banner__button {
    width: 260px;
    height: 40px;
    margin: 36px 0 0;
    font-size: 16px;
  }
}

.main-about {
  margin-top: 100px;
  -webkit-animation: slideTop 0.3s ease-in-out forwards;
          animation: slideTop 0.3s ease-in-out forwards;
}
.main-about__container {
  display: flex;
  align-items: flex-start;
}
.main-about__col {
  display: flex;
  flex-basis: 50%;
  flex-direction: column;
  align-items: flex-start;
}
.main-about__col:not(:first-child) {
  margin-left: 36px;
}
.main-about__title {
  margin: 0;
  padding: 0;
  color: #000;
  font-weight: 600;
  font-size: 50px;
  line-height: 1;
}
.main-about__text {
  margin: 19px 0 0;
  padding: 0;
  color: #000;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.5;
}
.main-about__button {
  width: 220px;
  height: 50px;
  margin-top: 19px;
  font-size: 18px;
}
.main-about__image {
  width: 700px;
  max-width: 100%;
  height: 450px;
  max-height: 100%;
}
@media screen and (max-width: 1199.98px) {
  .main-about__container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  .main-about__image {
    display: none;
  }
  .main-about__title {
    font-size: 45px;
  }
  .main-about__text {
    margin: 19px 0 0;
    font-size: 16px;
  }
  .main-about__button {
    width: 220px;
    height: 50px;
    margin-top: 19px;
    font-size: 18px;
  }
}
@media screen and (max-width: 767.98px) {
  .main-about__title {
    font-size: 30px;
  }
  .main-about__text {
    margin: 19px 0 0;
    font-size: 14px;
    text-align: justify;
  }
  .main-about__button {
    width: 200px;
    height: 40px;
    margin-top: 19px;
    font-size: 16px;
  }
  
}

.line {
  width: 100px;
  height: 2px;
  margin-bottom: 24px;
  background-color: var(--main-primary-color);
}

.main-services {
  margin-top: 100px;
}
.main-services__list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(25%, 1fr));
  gap: 0;
  margin: 0;
  padding: 0;
  list-style-type: none;
}
@media screen and (max-width: 1199.98px) {
  .main-services__list {
    grid-template-columns: repeat(auto-fill, minmax(33%, 1fr));
  }
}
@media screen and (max-width: 767.98px) {
  .main-services__list {
    grid-template-columns: repeat(auto-fill, minmax(50%, 1fr));
  }
    .reviews__item {
    width: calc((100% - 1 * 20px) / 2);
    flex-basis: auto!important;
    padding: 0!important;
  }    
}
@media screen and (max-width: 575.98px) {
  .main-services__list {
    grid-template-columns: 1fr;
  }
}

.service {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  align-items: c;
  justify-content: center;
  height: 300px;
  overflow: hidden;
  text-decoration: none;
  transition: all 0.5s ease;
}
.service::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0.5;
  transition: all 0.5s ease;
  content: "";
}
.service:hover::before {
  opacity: 0.3;
}
.service:hover .service__image {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.service:hover .service__title {
  display: none;
  opacity: 0;
}
.service:hover .service__label {
  opacity: 1;
  transition-delay: 0.4s;
}
.service:hover .service__label::after {
  -webkit-transform: translateX(0);
          transform: translateX(0);
  opacity: 1;
  transition-delay: 0.6s;
}
.service:hover .service__list {
  display: flex;
  opacity: 1;
}
.service:hover .service__text {
  display: flex;
  opacity: 1;
}
.service:hover .service__wrapper {
  display: flex;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-animation: textSlideScale 0.4s linear forwards;
          animation: textSlideScale 0.4s linear forwards;
}
.service__image {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transform: scale(1.3);
          transform: scale(1.3);
  transition: all 0.5s ease;
}
.service__title {
  z-index: 3;
  max-width: 300px;
  margin: 0;
  color: #fff;
  font-size: 20px;
  line-height: 1.3;
  text-align: center;
}
.service__wrapper {
  z-index: 3;
  display: none;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}
.service__list {
  z-index: 3;
  flex-direction: column;
  align-self: flex-start;
  margin: 0;
  padding: 0;
  padding: 0 18px;
  list-style-type: none;
  opacity: 0;
  transition: all 0.5s ease;
}
.service__item {
  display: flex;
  align-items: flex-start;
  margin-top: 4px;
  color: #fff;
  font-size: 14px;
}
.service__item::before {
  width: 10px;
  height: 10px;
  margin-top: 3px;
  margin-right: 6px;
  background-image: url(../images/icons/small-arrow.svg);
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
}
.service__label {
  z-index: 3;
  display: inline-flex;
  margin-top: 18px;
  padding: 9px 36px;
  color: #fff;
  font-size: 14px;
  text-align: center;
  opacity: 0;
  transition: all 0.5s ease;
}
.service__label::after {
  width: 20px;
  height: 20px;
  margin-left: 9px;
  background-image: url(../images/icons/right-arrow.svg);
  background-repeat: no-repeat;
  background-size: contain;
  -webkit-transform: translateX(20px);
          transform: translateX(20px);
  opacity: 0;
  transition: all 0.5s ease;
  content: "";
}
@media screen and (max-width: 1400px) {
  .service {
    height: 250px;
  }
}
@media screen and (max-width: 991.98px) {
  .service__title {
    max-width: calc(100% - 32px);
  }
}

.main-projects {
  margin-top: 100px;
}
.main-projects__container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.main-projects__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  margin: 36px 0 0;
  padding: 0;
  list-style-type: none;
}
.main-projects__title {
  margin: 0;
  padding: 0;
  color: #000;
  font-weight: 600;
  font-size: 50px;
  line-height: 1;
  text-transform: uppercase;
}
.main-projects__button {
  width: 280px;
  margin-top: 36px;
  font-size: 18px;
}
@media screen and (max-width: 991.98px) {
  .main-projects__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 36px;
    margin: 36px 0 0;
    padding: 0;
    list-style-type: none;
  }
  .main-projects__title {
    font-size: 45px;
  }
}
@media screen and (max-width: 767.98px) {
  .main-projects__list {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 36px;
    margin: 36px 0 0;
    padding: 0;
    list-style-type: none;
  }
  .main-projects__title {
    font-size: 30px;
    text-align: center;
  }
}

.project {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 400px;
  text-decoration: none;
}
.project__image {
  width: 100%;
  height: 250px;
}
.project__title {
  margin: 18px 0 0;
  padding: 0;
  color: #000;
  font-weight: 600;
  font-size: 26px;
  line-height: 1;
}
.project__text {
  margin: 18px 0 0;
  padding: 0;
  color: #4d4d4d;
  font-weight: 400;
  font-size: 18px;
  line-height: 1;
}
@media screen and (max-width: 767.98px) {
  .project__title {
    align-self: center;
    font-size: 22px;
    text-align: center;
  }
  .project__text {
    text-align: justify;
  }
}

.page-header {
  position: relative;
  z-index: 1;
  padding-top: 130px;
}
.page-header__overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background-color: var(--main-bg-dark-color);
  opacity: 0.6;
}
.page-header__bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.page-header__container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 70px 0;
}
.page-header__title {
  max-width: 1200px;
  margin: 0;
  padding: 0;
  color: #fff;
  font-weight: 600;
  font-size: 60px;
  line-height: 1.1;
  text-align: center;
}
.page-header__text {
  max-width: 700px;
  margin: 18px 0 0;
  padding: 0;
  color: #fff;
  font-size: 20px;
  line-height: 1.5;
}
@media screen and (max-width: 991.98px) {
  .page-header__title {
    font-size: 50px;
  }
}
@media screen and (max-width: 767.98px) {
  .page-header__title {
    font-size: 45px;
  }
  .page-header__text {
    font-size: 18px;
  }
}

.page-content {
  padding-top: 100px;
  padding-bottom: 100px;
}
.page-content_type_contacts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (max-width: 991.98px) {
  .page-content_type_contacts {
    grid-template-columns: repeat(1, 1fr);
  }
}

.contacts-list {
  width: 100%;
}
.contacts-list__title {
  margin: 0;
  font-size: 36px;
}
.contacts-list__list {
  margin: 48px 0 0;
  padding: 0;
  list-style-type: none;
}
.contacts-list__item:not(:first-child) {
  margin-top: 18px;
}
.contacts-list__text {
  margin: 0;
  font-weight: 400;
  font-size: 20px;
}
.contacts-list__accent {
  margin-right: 10px;
  font-weight: 600;
  font-size: 20px;
}
.contacts-list__link {
  color: #cd2628;
  font-weight: 600;
  font-size: 18px;
  text-decoration: none;
}
.contacts-list .social {
  margin-top: 48px;
}
.contacts-list .social__icon svg {
  width: 32px;
  height: 32px;
  fill: #cd2628;
}

.feedback {
  width: 100%;
}
.feedback__title {
  margin: 0;
  font-size: 36px;
}
.feedback__form {
  margin-top: 48px;
}

.form__field {
  margin-top: 18px;
}
.form__field:first-child {
  margin-top: 0;
}
.form__input {
  width: 100%;
  height: 30px;
  padding: 12px 18px;
  color: #4d4d4d;
  font-size: 18px;
  background-color: #f8f8f8;
  border: 1px solid transparent;
  transition: all 0.5s ease;
}
.form__input:active, .form__input:focus {
  background-color: #ebebeb;
  border: 1px solid #cd2628;
  outline: none;
}
.form__input_type_area {
  height: 160px;
}
.form__input-submit {
  width: 260px;
  height: 50px;
  color: #fff;
  font-size: 16px;
}
@media screen and (max-width: 991.98px) {
  .form__input {
    max-width: 500px;
    padding: 12px 0;
  }
}

.adv {
  margin-top: 50px;
  padding-top: 50px;
}
.adv__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px 18px;
  justify-items: center;
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.adv__item {
  max-width: 250px;
  text-align: center;
}
.adv__title {
  margin: 18px 0 0;
  padding: 0;
}
.adv__subtitle {
  margin: 18px 0 0;
  padding: 0;
}
.adv__icon {
  justify-content: center;
}
.adv__icon svg {
  width: 60px;
  height: 60px;
  fill: #cd2628;
}
@media screen and (max-width: 991.98px) {
  .adv__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 575.98px) {
  .adv__subtitle {
    display: none;
  }
}

.about-text {
  margin-top: 100px;
}
.about-text_objects {
  margin-top: 140px;
}
.about-text_objects h1 {
  margin: 0;
  font-weight: 600;
  font-size: 40px;
}
.about-text h1,
.about-text h2,
.about-text h3,
.about-text h4,
.about-text h5,
.about-text h6 {
  margin: 20px 0 0;
  color: #000;
  font-weight: 600;
}
.about-text h2 {
  font-size: 45px;
}
.about-text h3 {
  font-size: 40px;
}
.about-text h4 {
  font-size: 35px;
}
.about-text h5 {
  font-size: 30px;
}
.about-text h6 {
  font-size: 25px;
}
.about-text p {
  margin: 20px 0 0;
  color: #646464;
  font-size: 18px;
}
.about-text ul,
.about-text ol {
  margin: 20px 0 0;
  list-style-type: none;
}
.about-text ul li {
  display: flex;
  align-items: center;
  margin-top: 5px;
}
.about-text ul li::before {
  width: 10px;
  height: 10px;
  margin-right: 10px;
  background: #cd2628;
  border-radius: 50%;
  content: "";
}
.about-text ol {
  counter-reset: myCounter;
}
.about-text ol li {
  position: relative;
  display: flex;
  align-items: center;
  margin-top: 5px;
  list-style: none;
}
.about-text ol li:first-child {
  margin-top: 0;
}
.about-text ol li::before {
  width: 20px;
  height: 20px;
  margin-right: 10px;
  color: #fff;
  font-size: 12px;
  text-align: center;
  background: #cd2628;
  border-radius: 50%;
  border-radius: 4px;
  content: "";
  content: counter(myCounter);
  counter-increment: myCounter;
}
.about-text img {
  display: flex;
  width: 100%;
  margin: 20px 0;
}
.about-text a {
  color: #cd2628;
  text-decoration: underline;
  transition: all 0.2s ease;
}
.about-text a:hover {
  opacity: 0.8;
}
@media screen and (max-width: 575.98px) {
  .about-text_objects h1 {
    font-size: 30px;
  }
}

.numbers {
  position: relative;
  z-index: 1;
  margin-top: 100px;
  padding: 50px 0;
  background-image: url(../images/numbers.webp);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.numbers::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  background-color: rgba(0, 0, 0, 0.5);
  content: "";
}
.numbers__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px 18px;
  justify-items: center;
  margin: 0;
  padding: 0;
  text-align: center;
  list-style-type: none;
}
.numbers__title {
  z-index: 3;
  margin: 0;
  color: #cd2628;
  font-weight: 900;
  font-size: 60px;
}
.numbers__subtitle {
  z-index: 3;
  margin: 18px 0 0;
  color: #fff;
}
@media screen and (max-width: 767.98px) {
  .numbers__list {
    grid-template-columns: repeat(2, 1fr);
  }
  .numbers__title {
    font-size: 40px;
  }
  .numbers__subtitle {
    margin: 9px 0 0;
    font-size: 16px;
  }
}

.portfolio-list {
  margin-top: 50px;
  padding-top: 50px;
}
.portfolio-list__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.portfolio-list__item {
  flex: 1 0 50%;
}
@media screen and (max-width: 1199.98px) {
  .portfolio-list__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 767.98px) {
  .portfolio-list__list {
    grid-template-columns: repeat(1, 1fr);
  }
}

.project-card {
  overflow: hidden;
}
.project-card__image {
  width: 100%;
  height: 350px;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.5s ease;
}
.project-card__title {
  margin: 18px 0 0;
  font-weight: 600;
  font-size: 32px;
}
.project-card__subtitle {
  margin: 18px 0 0;
  color: #4d4d4d;
  font-weight: 400;
  font-size: 18px;
}
.project-card__link {
  color: #000;
  text-decoration: none;
  transition: all 0.5s ease;
}
.project-card__link:hover {
  color: #cd2628;
}
.sidebar {
  position: fixed;
  top: 0;
  right: -250px;
  bottom: 0;
  z-index: 1;
  width: 250px;
  height: 100vh;
  background-color: #0a0a0a;
}
.sidebar_active {
  right: 0;
}
.sidebar__container {
  padding: 38px 19px;
}
.sidebar__list {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.sidebar__item {
  text-align: center;
}
.sidebar__item:not(:first-child) {
  margin-top: 18px;
}
.sidebar__link {
  color: #fff;
  font-size: 20px;
  text-decoration: none;
}

.overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  opacity: 0;
  transition: all 0.5s ease;
}
.modal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  opacity: 0;
  background-color: rgba(0, 0, 0, 0.3);
  transition: all 0.5s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
}
.modal.show {
  opacity: 1;
  z-index: 5;
  overflow: auto;
}
.modal-wrapper {
  display: flex;
  flex: 0 1 300px;
  padding: 25px;
  background-color: #333333;
  border-radius: 10px;
  margin-right: 10px;
  margin-left: 10px;
}
.modal__title {
  padding: 0;
  margin: 0 0 10px 0;
  font-size: 25px;
  color: #fff;
  text-align: center;
}
.modal__form {
  border: 1px solid #e9eef6;
  border-radius: 4px;
  padding: 9px;
  margin: 16px 0 0;
  box-sizing: border-box;
  min-width: 250px;
  width: 100%;
}
.modal__block {
  position: relative;
}
.modal__close {
  position: absolute;
  top: -18px;
  right: -18px;
  width: 20px;
  height: 20px;
  background: inherit;
  border: none;
  cursor: pointer;
  transition: .3s;
}
.modal__close:hover {
 transform: scale(0.9);
}
.modal__close span {
  position: relative;
}
.modal__close span::after {
  position: absolute;
  top: -1px;
  left: -13px;
  content: '';
  width: 25px;
  height: 2px;
  background-color: #fff;
  transform: rotate(45deg);
}
.modal__close span::before {
  position: absolute;
  top: -1px;
  left: -13px;
  content: '';
  width: 25px;
  height: 2px;
  background-color: #fff;
  transform: rotate(-45deg);
}
.modal__form-textarea {
  height: 200px;
  border: 1px solid #e9eef6;
  border-radius: 4px;
  padding: 9px;
  margin: 16px 0 0;
  box-sizing: border-box;
  min-width: 250px;
  width: 100%;
}
.modal__btn {
  font-size: 12px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  text-decoration: none;
  background-color: #cd2628;
  border: none;
  cursor: pointer;
  transition: all 0.5s ease;
  margin: 0 auto;
  height: 30px;
}
.modal__private {
  margin: 5px 0 10px 0;
  font-size: 12px;
  color: #fff;
  text-align: center;
}
.modal__private a { 
  color: #cd2628;;
}
body.scroll-block {
  overflow: hidden;
}
.page_slide-left .overlay {
  z-index: 5;
  cursor: pointer;
  opacity: 1;
}
.object-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 15px;
  margin: 50px 0 0;
  padding: 0;
  list-style-type: none;
}
.object-list__img {
  width: 100%;
  height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
}
.reviews {
  padding-top: 100px;
  padding-bottom: 50px;
  background: #efefef;
}
.reviews__title {
  margin: 0;
  padding: 0;
  color: #000;
  font-weight: 600;
  font-size: 50px;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}
.reviews__list {
  display: flex;
  max-width: 1000px;
  margin: 0 auto;
  padding: 30px 0;
  list-style-type: none;
}
.reviews__item {
  flex-basis: 50%;
  padding: 30px;
}
.reviews__img {
  width: 100%;
  height: 100%;
}
.reviews .line {
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 575.98px) {
  .reviews__title {
    font-size: 30px;
  }
}

.error-page {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
  margin-top: 120px;
}
.error-page__container {
  display: flex;
  flex-direction: column;
}
.error-page__title {
  margin-top: 0;
  margin-bottom: 30px;
  font-weight: 600;
  font-size: 50px;
  text-align: center;
}
.error-page__subtitle {
  margin-top: 0;
  font-size: 24px;
  text-align: center;
}
.error-page__text {
  max-width: 90%;
  margin: 0 auto 15px;
  font-size: 18px;
  text-align: center;
}
.error-page__button {
  display: flex;
  margin: 0 auto;
}
/*# sourceMappingURL=maps/main.css.map */
.partners-list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  list-style: none;
  justify-content: space-between;
  margin: 0;
  padding: 0;
}
.partners-list li {
  width: 23%;
  display: flex;
  align-content: center;
  border: 1px solid #ddd;
  box-sizing: border-box;
  margin-bottom: 22px;
  justify-content: center;
  align-items: center;
  padding: 40px;
}
.partners-list li:before {
  display: none;
}
.footer__container .logo {
  margin: 20px 60px 0 0;
}
.form__input {
  padding: 30px 20px;
  box-sizing: border-box;
}
.object-list {
  grid-template-columns: repeat(auto-fit, minmax(305px, 1fr));
}
@media screen and (max-width: 1499.98px) {
  .partners-list li img {
    height: auto;
  }
}
@media screen and (max-width: 1199.98px) {
  
}
@media screen and (max-width: 991.98px) {
  .partners-list li {
    padding: 20px;
  }
  .page-content {
    padding-top: 40px;
    padding-bottom: 0;
  }
}
@media screen and (max-width: 767.98px) {
  .partners-list li {
    width: 48%;
  }
  .header__contacts-list {
    width: 40%;
  }
}
@media screen and (max-width: 575.98px) {
  .page-header {
    padding-top: 55px;
  }
  .footer__container .logo {
    margin: 0;
  }
  .social {
    justify-content: space-between;
    width: 100%;
  }
}
@media screen and (max-width: 400.98px) {
  .partners-list li {
    width: 100%;
  }
  .portfolio-list__list {
    display: flex;
    flex-direction: column;
  }
  .reviews__item {
    padding: 10px;
  }
  .header__link-block {
    display: none;
  }
}
.footer__btn-check {
  font-size: 12px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  text-decoration: none;
  background-color: #cd2628;
  border: none;
  cursor: pointer;
  transition: all 0.5s ease;
}
.button-check {
  width: 150px;
  height: 26px;
  margin-top: 9px;
  padding: 0;
}

.hc-offcanvas-nav .nav-container, .hc-offcanvas-nav .nav-wrapper, .hc-offcanvas-nav ul {
    background: var(--main-bg-black-color) !important;
}
.hc-offcanvas-nav .nav-content>h2, .hc-offcanvas-nav .nav-content>h3, .hc-offcanvas-nav .nav-content>h4, .hc-offcanvas-nav .nav-content>h5, .hc-offcanvas-nav .nav-content>h6 {
    color: #fff !important;
}
.hc-offcanvas-nav .nav-wrapper>.nav-content>ul:first-of-type>li:first-child:not(.nav-back):not(.nav-close)>.nav-item-wrapper>.nav-item-link {
    border-top: 1px solid #fff !important;
}
.hc-offcanvas-nav .nav-item-link, .hc-offcanvas-nav li.nav-close a, .hc-offcanvas-nav .nav-back a {
    border-bottom: 1px solid #fff !important;
}
.hc-offcanvas-nav .nav-title+.nav-close a:not(.has-label) {
    top: -80px !important;
}
.hc-offcanvas-nav .nav-item-link, .hc-offcanvas-nav li.nav-close a, .hc-offcanvas-nav .nav-back a {
    font-size: 16px !important;
}

.upbtn {
  z-index: 99;
  width: 70px;
  height: 70px;
  position: fixed;
  bottom: 20px;
  right: 20px;
  cursor: pointer;
  border-radius:50%;
  transform: scale(0);
  transition: all .7s ease-in-out;
  background-position: center center;
  background-repeat: no-repeat;
  background-color: #a21e20;
  background-image: url(data:image/svg+xml;utf8;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iaXNvLTg4NTktMSI/Pgo8IS0tIEdlbmVyYXRvcjogQWRvYmUgSWxsdXN0cmF0b3IgMTkuMS4wLCBTVkcgRXhwb3J0IFBsdWctSW4gLiBTVkcgVmVyc2lvbjogNi4wMCBCdWlsZCAwKSAgLS0+CjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgdmVyc2lvbj0iMS4xIiBpZD0iQ2FwYV8xIiB4PSIwcHgiIHk9IjBweCIgdmlld0JveD0iMCAwIDQ5MS44NTggNDkxLjg1OCIgc3R5bGU9ImVuYWJsZS1iYWNrZ3JvdW5kOm5ldyAwIDAgNDkxLjg1OCA0OTEuODU4OyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSIgd2lkdGg9IjMycHgiIGhlaWdodD0iMzJweCI+CjxnPgoJPGc+CgkJPHBhdGggZD0iTTQ5MS44NTgsNDQyLjQ2MWMwLDEzLjkzMS0xMS4yOTMsMjUuMjI0LTI1LjIyNCwyNS4yMjRMMjQ1LjkzLDM3My4wOTdMMjUuMjI0LDQ2Ny42ODYgICAgQzExLjI5Miw0NjcuNjg2LDAsNDU2LjM5MiwwLDQ0Mi40NjFMMjI3LjAxMSwzMi41OGMwLDAsMTguOTE4LTE4LjkxOCwzNy44MzQsMEMyODMuNzY0LDUxLjQ5OSw0OTEuODU4LDQ0Mi40NjEsNDkxLjg1OCw0NDIuNDYxeiIgZmlsbD0iI0ZGRkZGRiIvPgoJPC9nPgoJPGc+Cgk8L2c+Cgk8Zz4KCTwvZz4KCTxnPgoJPC9nPgoJPGc+Cgk8L2c+Cgk8Zz4KCTwvZz4KCTxnPgoJPC9nPgoJPGc+Cgk8L2c+Cgk8Zz4KCTwvZz4KCTxnPgoJPC9nPgoJPGc+Cgk8L2c+Cgk8Zz4KCTwvZz4KCTxnPgoJPC9nPgoJPGc+Cgk8L2c+Cgk8Zz4KCTwvZz4KCTxnPgoJPC9nPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+Cjwvc3ZnPgo=);
}
.upbtn:hover {
  transform: scale(1.1)!important;
}

@media (max-width: 768px) {
  
  .upbtn {
    width: 60px;
    height: 60px;}
  
}