@charset "UTF-8";
.to-top {
  display: none;
  position: fixed;
  right: 32px;
  bottom: 70px;
  z-index: 2000;
}
.to-top .to-top-relative {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.to-top .to-top-relative a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(#EC6F1D, #f0b186);
  cursor: pointer;
}
.to-top .to-top-relative a i {
  pointer-events: none;
  color: #fff;
}
.to-top .to-top-relative .to-top-pulse {
  position: absolute;
  width: 50px;
  height: 50px;
  background: linear-gradient(#EC6F1D, #f0b186);
  border-radius: 50%;
  z-index: -1;
  animation: toTop 2s infinite;
}
@keyframes toTop {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1.3);
    opacity: 0;
  }
}
.to-top.active {
  display: block;
}

.form_manager {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 7000;
  display: none;
  justify-content: center;
  align-items: center;
}
.form_manager .form_manager_cnt {
  width: 400px;
  background: #fff;
  padding: 25px 25px 30px 25px;
  border-radius: 20px;
}
.form_manager .form_manager_cnt .form_manager_header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}
.form_manager .form_manager_cnt .form_manager_header h5 {
  font-weight: 700;
  font-size: 1.3rem;
  line-height: 1.5rem;
  font-family: "Inter";
  text-transform: uppercase;
  color: #000;
}
.form_manager .form_manager_cnt .form_manager_header .form_manager_close {
  background: none;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #F1F1F1;
}
.form_manager .form_manager_cnt .form_manager_header .form_manager_close:hover i {
  transform: scale(1.2);
}
.form_manager .form_manager_cnt .form_manager_txt h4 {
  font-weight: 700;
  font-size: 1.3rem;
  margin-bottom: 10px;
}
.form_manager .form_manager_cnt .form_manager_txt form {
  display: flex;
  flex-direction: column;
}
.form_manager .form_manager_cnt .form_manager_txt form label {
  width: 100%;
}
.form_manager .form_manager_cnt .form_manager_txt form label input {
  width: 100%;
  box-sizing: border-box;
  background-color: #F5F5F5;
  padding: 0 25px;
  height: var(--input_h);
  border-radius: 50px;
  margin-bottom: 10px;
}
.form_manager .form_manager_cnt .form_manager_txt form .dealers_confiditial {
  margin-bottom: 10px;
}
.form_manager .form_manager_cnt .form_manager_txt form .dealers_confiditial label {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 0.8rem;
  color: #26282b;
}
.form_manager .form_manager_cnt .form_manager_txt form .dealers_confiditial label input[type=checkbox] {
  position: relative;
  width: 70px;
  height: 25px;
  visibility: hidden;
  display: flex;
  align-items: center;
  margin-right: 12px;
}
.form_manager .form_manager_cnt .form_manager_txt form .dealers_confiditial label input[type=checkbox]::before {
  content: "";
  visibility: visible;
  width: 70px;
  height: 25px;
  border-radius: 55px;
  display: block;
  background-color: #ffffff;
  box-shadow: 0 0 7px #acabab inset;
}
.form_manager .form_manager_cnt .form_manager_txt form .dealers_confiditial label input[type=checkbox]::after {
  position: absolute;
  content: "\ea10";
  font-size: 1rem;
  color: #d9616f;
  font-family: "IconsMoon";
  visibility: visible;
  width: 32px;
  height: 30px;
  border-radius: 50%;
  background-color: #ffffff;
  border: 1px solid #d5d2d2;
  display: flex;
  justify-content: center;
  align-items: center;
  right: calc(100% - 32px);
  transition: 0.2s linear;
  cursor: pointer;
}
.form_manager .form_manager_cnt .form_manager_txt form .dealers_confiditial label input[type=checkbox]:checked::after {
  content: "\ea10";
  color: #4ca259;
  right: 0;
}
.form_manager .form_manager_cnt .form_manager_txt form .btn-form_group .btn_all {
  width: 100%;
}
.form_manager.active {
  display: flex;
}

@media screen and (max-width: 525px) {
  .form_manager .form_manager_cnt {
    width: 320px;
  }
}
@font-face {
  font-family: "Inter";
  src: local("☺"), url("../fonts/Inter/Inter28pt-Thin.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: local("☺"), url("../fonts/Inter/Inter28pt-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: local("☺"), url("../fonts/Inter/Inter28pt-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: local("☺"), url("../fonts/Inter/Inter28pt-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: local("☺"), url("../fonts/Inter/Inter28pt-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: local("☺"), url("../fonts/Roboto/Roboto-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "LibreCaslonDisplay";
  src: local("☺"), url("../fonts/LibreCaslonDisplay/LibreCaslonDisplay-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "IconsMoon";
  src: url("../fonts/icons_file/icomoon.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
.container {
  max-width: 1750px;
  margin: 0 auto;
  padding: 0 15px;
}

body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  background-color: #F9F8F6;
}

:root {
  font-size: 16px;
  --orange: #EC6F1D;
  --brown: #DBC8AF;
  --pading_y:60px;
  --input_h: 60px;
}

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

h1 {
  font-family: "LibreCaslonDisplay", sans-serif;
  font-weight: 400;
  font-size: 0.8rem;
  text-transform: uppercase;
  color: #26282b;
  font-size: 3rem;
}

h2 {
  font-family: "LibreCaslonDisplay", sans-serif;
  font-weight: 400;
  font-size: 0.8rem;
  text-transform: uppercase;
  color: #26282b;
  font-size: 2.3rem;
}

.title p {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 1.2rem;
}

li {
  list-style: none;
}

button {
  padding: 0;
}

button, input, textarea {
  border: none;
  outline: none !important;
}

a {
  text-decoration: none !important;
}

.btn_all {
  position: relative;
  width: 300px;
  height: 60px;
  background-color: var(--orange);
  border-radius: 60px;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  cursor: pointer;
}
.btn_all::before {
  position: absolute;
  content: "";
  display: block;
  width: 14px;
  height: 200px;
  background-color: #ffffff;
  animation: blink 4s infinite linear;
}
.btn_all {
  transition: 0.2s linear;
}
.btn_all:hover {
  box-shadow: 0 5px 7px rgba(240, 156, 100, 0.5607843137);
}

.btn_light {
  position: relative;
  width: 300px;
  height: 60px;
  border: 1px solid var(--orange);
  background-color: #ffffff;
  border-radius: 60px;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: var(--orange);
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  cursor: pointer;
  transition: 0.2s linear;
}
.btn_light:hover {
  box-shadow: 0 5px 7px rgba(240, 156, 100, 0.5607843137);
}

.header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  background-color: #ffffff;
  z-index: 3000;
}

.header_top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 7px 0 7px 0;
}
.header_top .header_logo img {
  width: 300px;
}

.city_attr {
  display: flex;
  align-items: center;
}
.city_attr svg {
  margin-right: 6px;
}
.city_attr a, .city_attr span {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 0.8rem;
  color: #2A2929;
}
.city_attr {
  margin-bottom: 2px;
}

.header_bottom_cnt {
  border-top: 1px solid #e0dede;
}

.header_bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header_menu ul .catalog_link span {
  display: flex;
  align-items: center;
}
.header_menu ul .catalog_link span > button {
  position: relative;
  cursor: pointer;
  width: 20px;
  height: 16px;
  margin-right: 9px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: none;
}
.header_menu ul .catalog_link span > button .cat-svg-close, .header_menu ul .catalog_link span > button .cat-svg-open {
  position: absolute;
}
.header_menu ul .catalog_link span > button .cat-svg-close {
  opacity: 0;
}
.header_menu ul .catalog_link span > button:hover .cat-svg-close {
  opacity: 1;
}
.header_menu ul .catalog_link span > button:hover .cat-svg-open {
  opacity: 0;
}
.header_menu ul .catalog_link:hover span > button .cat-svg-close {
  opacity: 1;
}
.header_menu ul .catalog_link:hover span > button .cat-svg-open {
  opacity: 0;
}
.header_menu ul li {
  margin-right: 25px;
}
.header_menu ul li span a {
  position: relative;
  display: block;
  align-content: center;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 0.9rem;
  color: #3A3A3C;
  height: 40px;
}
.header_menu ul li span a::after {
  position: absolute;
  content: "";
  display: block;
  width: 100%;
  height: 3px;
  background-color: var(--brown);
  opacity: 0;
  transition: 0.2s linear;
}
.header_menu ul li span a:hover::after {
  opacity: 1;
}
.header_menu ul li .submenu {
  display: none;
}
.header_menu ul li:hover span > button .cat-svg-close {
  opacity: 1;
}
.header_menu ul li:hover span > button .cat-svg-open {
  opacity: 0;
}
.header_menu ul li:hover .submenu {
  display: block;
  animation: submenu_in 0.3s linear forwards;
}
.header_menu > ul {
  display: flex;
}

.submenu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  border-top: 1px solid #e5e2e2;
  background-color: #DBC8AF;
  padding: 10px 0;
}
.submenu ul {
  width: 100%;
  display: grid;
  grid-template-columns: 16% 16% 16% 16% 16% 16%;
  column-gap: 0.8%;
  row-gap: 10px;
}
.submenu ul li {
  width: 100%;
}
.submenu ul li span {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #ffffff;
  border-radius: 15px;
  padding: 10px 15px 10px 15px;
  box-sizing: border-box;
  transition: 0.2s linear;
}
.submenu ul li span img {
  margin-bottom: 6px;
}
.submenu ul li span p {
  font-family: "Roboto", sans-serif;
  color: #777676;
  font-size: 0.8rem;
  font-weight: 400;
}
.submenu ul li span a {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
}
.submenu ul li span a:hover::after {
  display: none;
}
.submenu ul li span:hover {
  box-shadow: 4px 4px 6px #baa88f;
}

.header_bottom_group {
  display: flex;
  align-items: center;
}

.search_group {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #DBC8AF;
  margin-right: 17px;
}
.search_group svg {
  margin-right: 7px;
}
.search_group input {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 0.9rem;
  color: #26282b;
  margin: 3px 0;
  min-width: 200px;
}

.header_lang {
  position: relative;
  width: 60px;
  height: 30px;
  cursor: pointer;
  border-radius: 3px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.header_lang .res_lang {
  display: flex;
  justify-content: center;
  align-items: center;
}
.header_lang .res_lang span {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 0.8rem;
  color: #26282b;
  margin-right: 7px;
}
.header_lang ul {
  position: absolute;
  top: 100%;
  left: 0;
  width: 60px;
  padding-top: 4px;
  display: none;
}
.header_lang ul li {
  background: #ffffff;
  padding: 4px 7px;
}
.header_lang ul li:first-child {
  border-bottom: 1px solid #d8dbdd;
}
.header_lang ul li a {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 0.8rem;
  color: #26282b;
  transition: 0.2s linear;
}
.header_lang ul li a:hover {
  color: var(--orange);
}
.header_lang:hover ul {
  display: block;
  animation: submenu_in 0.3s linear forwards;
}

.hero {
  padding-top: 150px;
}

.hero_cat_cnt {
  display: grid;
  grid-template-columns: 19.5% 19.5% 19.5% 19.5% 19.5%;
  column-gap: 0.625%;
  row-gap: 8px;
}
.hero_cat_cnt .cat_item {
  opacity: 0;
  transform: scale(0.7);
  animation: phartner-anim 0.3s linear forwards;
  animation-delay: calc(var(--i) * 0.15s);
}

.cat_item {
  position: relative;
  background-color: #ffffff;
  padding-bottom: 12px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  padding: 10px 10px 13px 10px;
  border: 2px solid rgba(255, 255, 255, 0.1058823529);
  transition: 0.2s linear;
}
.cat_item a {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
}
.cat_item img {
  width: 60%;
  height: auto;
  margin-bottom: 6px;
}
.cat_item p {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 0.9rem;
  color: #26282b;
  text-align: center;
}
.cat_item:hover {
  border-right: 2px solid var(--orange);
  border-bottom: 2px solid var(--orange);
  border-left: 2px solid transparent;
  border-top: 2px solid transparent;
}
.cat_item.active {
  animation: fadecat 0.5s linear forwards;
  animation-delay: 100ms;
}

.home_screen {
  padding-top: 40px;
}

.home_screen_cnt {
  display: grid;
  grid-template-columns: 50% 50%;
}
.home_screen_cnt .screen_adv {
  grid-column-start: 1;
  grid-column-end: 3;
}

.screen_info {
  padding-top: 70px;
}
.screen_info h1 {
  margin-bottom: 15px;
}
.screen_info p {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 1.3rem;
  max-width: 700px;
  color: #26282b;
  margin-bottom: 50px;
}
.screen_info .screen_btn_group {
  display: flex;
}
.screen_info .screen_btn_group .btn_light {
  margin-right: 18px;
}

.screen_slider {
  position: relative;
  width: 100%;
  border-radius: 40px 40px 0 0;
  overflow: hidden;
}
.screen_slider .slick-list {
  overflow: hidden;
}
.screen_slider .slick-list .slick-track {
  display: flex;
}
.screen_slider .slick-list .slick-track .slick-slide img {
  display: block !important;
  width: 100%;
}
.screen_slider .slick-dots {
  width: 100%;
  position: absolute;
  bottom: 25px;
  display: flex;
  justify-content: center;
}
.screen_slider .slick-dots > li {
  margin: 0 3px;
}
.screen_slider .slick-dots > li button {
  font-size: 0;
  width: 8px;
  height: 8px;
  background-color: #ffffff;
  border-radius: 50%;
}
.screen_slider .slick-dots > li.slick-active button {
  background-color: var(--orange);
}

.screen_slider-group {
  position: relative;
}
.screen_slider-group .screen_sl_btn_group {
  position: absolute;
  bottom: 20px;
  right: 40px;
  display: flex;
}
.screen_slider-group .screen_sl_btn_group .screen-sl-btn {
  width: 35px;
  height: 35px;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #ffffff;
  border-radius: 50%;
  margin-left: 10px;
  cursor: pointer;
  transition: 0.2s linear;
}
.screen_slider-group .screen_sl_btn_group .screen-sl-btn svg {
  margin-top: 2px;
}
.screen_slider-group .screen_sl_btn_group .screen-sl-btn:hover {
  box-shadow: 0 0 7px #ffffff;
}

.screen_adv {
  background-color: #ffffff;
  display: grid;
  grid-template-columns: 20% 20% 20% 20% 20%;
  border-radius: 40px 0 40px 0;
}

.screen_adv-itm {
  position: relative;
  padding: 30px;
}
.screen_adv-itm span {
  display: inline-block;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 2.5rem;
  color: #2A2929;
  margin-bottom: 8px;
}
.screen_adv-itm::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  display: block;
  width: 1px;
  height: 70%;
  background-color: #909090;
}
.screen_adv-itm:last-child::after {
  display: none;
}

.adv_itm-group {
  display: flex;
}
.adv_itm-group img {
  display: block;
  margin-right: 12px;
}
.adv_itm-group p {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  color: #26282b;
  max-width: 210px;
}

.home_category {
  padding: var(--pading_y) 0;
}
.home_category .title {
  margin-bottom: 30px;
}

.home_category_list {
  display: grid;
  grid-template-columns: repeat(20, 4.5%);
  column-gap: 0.526%;
  row-gap: 10px;
}
.home_category_list > .cat_item {
  opacity: 0;
  transform: translateY(70px);
}
.home_category_list > .cat_item:nth-child(1) {
  grid-column: 1/5;
}
.home_category_list > .cat_item:nth-child(2) {
  grid-column: 5/9;
}
.home_category_list > .cat_item:nth-child(3) {
  grid-column: 9/13;
}
.home_category_list > .cat_item:nth-child(4) {
  grid-column: 13/17;
}
.home_category_list > .cat_item:nth-child(5) {
  grid-column: 17/21;
}
.home_category_list > .cat_item:nth-child(6) {
  grid-column: 1/6;
}
.home_category_list > .cat_item:nth-child(7) {
  grid-column: 6/11;
}
.home_category_list > .cat_item:nth-child(8) {
  grid-column: 11/16;
}
.home_category_list > .cat_item:nth-child(9) {
  grid-column: 16/21;
}
.home_category_list > .cat_item:nth-child(6) img, .home_category_list > .cat_item:nth-child(7) img, .home_category_list > .cat_item:nth-child(8) img, .home_category_list > .cat_item:nth-child(9) img {
  width: 50%;
}

.form_banner {
  background-color: #ffffff;
  padding: 30px 0;
}

.form_banner_cnt {
  display: flex;
  justify-content: space-between;
}

.form_banner_gallery {
  width: 45%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.form-img_list {
  width: 58%;
}
.form-img_list img {
  width: 100%;
  margin-bottom: 9px;
  display: block;
  border-radius: 20px;
  opacity: 0;
  transform: translateY(70px);
}
.form-img_list img.active {
  animation: fadecat 0.5s linear forwards;
}
.form-img_list:last-child {
  width: 40%;
}

.form_banner_message {
  width: 53%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.form_banner_message .title {
  margin-bottom: 25px;
}
.form_banner_message .title h2 {
  margin-bottom: 17px;
}
.form_banner_message .title p {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 1.3rem;
  max-width: 600px;
}
.form_banner_message .form_elements {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 15px;
}
.form_banner_message .form_elements label {
  width: 49%;
}
.form_banner_message .form_elements label input {
  box-sizing: border-box;
  width: 100%;
  height: var(--input_h);
  background-color: #F5F5F5;
  border-radius: 50px;
  padding: 0 30px;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 1rem;
}
.form_banner_message label .koment {
  box-sizing: border-box;
  width: 100%;
  height: var(--input_h);
  background-color: #F5F5F5;
  border-radius: 50px;
  padding: 0 30px;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  margin-bottom: 15px;
}

.banner_form-confiditial {
  margin-bottom: 20px;
}
.banner_form-confiditial label {
  display: flex;
  align-items: center;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  color: #26282b;
}
.banner_form-confiditial label input[type=checkbox] {
  position: relative;
  width: 70px;
  height: 25px;
  visibility: hidden;
  display: flex;
  align-items: center;
  margin-right: 12px;
}
.banner_form-confiditial label input[type=checkbox]::before {
  content: "";
  visibility: visible;
  width: 70px;
  height: 25px;
  border-radius: 55px;
  display: block;
  background-color: #ffffff;
  box-shadow: 0 0 7px #acabab inset;
}
.banner_form-confiditial label input[type=checkbox]::after {
  position: absolute;
  content: "\ea10";
  font-size: 1rem;
  color: #a04c4f;
  font-family: "IconsMoon";
  visibility: visible;
  width: 32px;
  height: 30px;
  border-radius: 50%;
  background-color: #ffffff;
  border: 1px solid #acabab;
  display: flex;
  justify-content: center;
  align-items: center;
  right: calc(100% - 32px);
  transition: 0.2s linear;
  cursor: pointer;
  flex-shrink: 0;
}
.banner_form-confiditial label input[type=checkbox]:checked::after {
  color: #56985d;
  right: 0;
}

.phartners {
  padding: var(--pading_y) 0;
}

.phartners_cnt .title {
  margin-bottom: 26px;
}

.phartners_list {
  display: grid;
  grid-template-columns: 19% 19% 19% 19% 19%;
  column-gap: 1.25%;
  row-gap: 15px;
}
.phartners_list img {
  width: 100%;
  opacity: 0;
  transform: scale(0.7);
}
.phartners_list img.active {
  animation: phartner-anim 0.5s linear forwards;
}

.office_complete {
  background-color: #ffffff;
  padding: var(--pading_y) 0;
}

.office_complete_cnt {
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
}

.office_contractor {
  width: 45%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.office_contractor .office_contractor_information .title {
  margin-bottom: 20px;
}
.office_contractor .office_contractor_information .title h2 {
  max-width: 700px;
}
.office_contractor .office_contractor_information > p {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  margin-bottom: 40px;
}
.office_contractor a {
  position: relative;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 1.1rem;
  color: #035CDF;
  width: 197px;
}
.office_contractor a::after {
  position: absolute;
  bottom: -3px;
  left: 0;
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #035CDF;
}
.office_contractor a:hover {
  color: #043f99;
}
.office_contractor a:hover::after {
  background-color: #043f99;
}

.office_image {
  position: relative;
  overflow: hidden;
  border-radius: 40px;
  width: 49%;
}
.office_image span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 20%;
  background: #fff;
  z-index: 2;
  transition: 1s linear;
  border-radius: 100px;
}
.office_image span:nth-child(1) {
  top: 0;
  background-color: rgba(255, 0, 0, 0.138);
  transform: translateX(-800px);
}
.office_image span:nth-child(2) {
  top: 20%;
  background-color: rgba(4, 64, 153, 0.2156862745);
  transform: translateX(800px);
}
.office_image span:nth-child(3) {
  top: 40%;
  background-color: rgba(21, 153, 4, 0.2);
  transform: translateX(-800px);
}
.office_image span:nth-child(4) {
  top: 60%;
  background-color: rgba(153, 123, 4, 0.2117647059);
  transform: translateX(800px);
}
.office_image span:nth-child(5) {
  top: 80%;
  background-color: rgba(111, 4, 153, 0.2);
  transform: translateX(-800px);
}
.office_image.active span:nth-child(1) {
  top: 0;
  transform: translateX(800px);
}
.office_image.active span:nth-child(2) {
  top: 20%;
  transform: translateX(-800px);
}
.office_image.active span:nth-child(3) {
  top: 40%;
  transform: translateX(800px);
}
.office_image.active span:nth-child(4) {
  top: 60%;
  transform: translateX(-800px);
}
.office_image.active span:nth-child(5) {
  top: 80%;
  transform: translateX(800px);
}
.office_image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contractor_banner {
  background-color: var(--orange);
  border-radius: 40px 0 40px 0;
  padding: 40px 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 20px;
}
.contractor_banner h3 {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 2.2rem;
  line-height: 2.3rem;
  color: #ffffff;
  text-align: center;
  max-width: 400px;
  margin-bottom: 12px;
}
.contractor_banner ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 90%;
}
.contractor_banner ul li {
  background-color: #ffffff;
  border-radius: 30px 0 30px 0;
  padding: 15px 20px;
  text-align: center;
  margin-bottom: 10px;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 1.2rem;
  color: var(--orange);
}
.contractor_banner ul li:nth-child(1) {
  width: 38%;
  margin-right: 8px;
}
.contractor_banner ul li:nth-child(2) {
  width: 38%;
}
.contractor_banner ul li:nth-child(3) {
  width: 25%;
  margin-right: 8px;
}
.contractor_banner ul li:nth-child(4) {
  width: 25%;
  margin-right: 8px;
}
.contractor_banner ul li:nth-child(5) {
  width: 25%;
}

.office_step {
  background-color: #F8F8F8;
  padding: 25px;
  display: grid;
  grid-template-columns: 24% 24% 24% 24%;
  column-gap: 1.33%;
  margin-bottom: 30px;
}

.office_step_item span {
  background-color: #DBC8AF;
  width: 56px;
  height: 56px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 14px;
  margin-bottom: 15px;
}
.office_step_item h4 {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 1.2rem;
  margin-bottom: 15px;
}
.office_step_item ul li {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  color: #616161;
  margin-bottom: 9px;
  display: flex;
  align-items: center;
}
.office_step_item ul li::before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  flex-shrink: 0;
  background-color: var(--orange);
  border-radius: 50%;
  margin-right: 9px;
}

.discuss {
  background-color: #2A2929;
  border-radius: 30px;
  display: flex;
  justify-content: space-between;
}

.discuss_info {
  width: 70%;
  padding: 30px;
}
.discuss_info h3 {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 2.5rem;
  color: #ffffff;
  margin-bottom: 12px;
}
.discuss_info p {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 1.2rem;
  color: #ffffff;
  max-width: 600px;
  margin-bottom: 17px;
}
.discuss_info form .banner_form-confiditial label {
  color: #ffffff;
}
.discuss_form-group {
  display: flex;
  align-items: center;
  margin-bottom: 17px;
}
.discuss_form-group label {
  width: 28%;
  margin-right: 15px;
}
.discuss_form-group label input {
  box-sizing: border-box;
  height: var(--input_h);
  width: 100%;
  background-color: #F5F5F5;
  border-radius: 50px;
  padding: 0 25px;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  color: #737373;
}
.discuss_form-group .btn_all {
  width: 28%;
}

.discuss_img {
  position: relative;
  width: 25%;
}
.discuss_img img {
  display: block;
  position: absolute;
  bottom: 0;
  width: 100%;
}

.business_spaces {
  padding: var(--pading_y) 0;
}

.business_spaces_cnt .title {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 30px;
}
.business_spaces_cnt .title h2 {
  max-width: 650px;
  margin-bottom: 15px;
}
.business_spaces_cnt .title p {
  max-width: 800px;
}

.business_spaces_list {
  display: grid;
  grid-template-columns: repeat(12, 7.5%);
  column-gap: 0.909%;
  row-gap: 10px;
}

.spaces_item {
  background-color: #ffffff;
  border-radius: 16px;
  padding: 20px;
}
.spaces_item img {
  display: block;
  width: 50px;
  height: 50px;
  margin-bottom: 6px;
}
.spaces_item span {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 1.2rem;
  color: #2A2929;
  display: inline-block;
  margin-bottom: 6px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -moz-box;
  -moz-box-orient: vertical;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-clamp: 2;
  box-orient: vertical;
}
.spaces_item p {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  color: #2A2929;
}
.spaces_item {
  transform: translateY(70px);
  opacity: 0;
}
.spaces_item.active {
  animation: fadecat 0.5s linear forwards;
}
.spaces_item:nth-child(1) {
  grid-column: 1/4;
}
.spaces_item:nth-child(2) {
  grid-column: 4/7;
}
.spaces_item:nth-child(3) {
  grid-column: 7/10;
}
.spaces_item:nth-child(4) {
  grid-column: 10/13;
}
.spaces_item:nth-child(5) {
  grid-column: 1/7;
}
.spaces_item:nth-child(6) {
  grid-column: 7/13;
}
.spaces_item:nth-child(7) {
  grid-column: 1/5;
}
.spaces_item:nth-child(8) {
  grid-column: 5/9;
}
.spaces_item:nth-child(9) {
  grid-column: 9/13;
}

.in-house {
  background-color: #ffffff;
  padding: var(--pading_y);
}

.in-house_cnt {
  display: flex;
  justify-content: space-between;
}

.in-house_img {
  width: 54%;
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}
.in-house_img span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 20%;
  background: #fff;
  z-index: 2;
  transition: 1s linear;
  border-radius: 100px;
}
.in-house_img span:nth-child(1) {
  top: 0;
  background-color: rgba(255, 0, 0, 0.138);
  transform: translateX(-800px);
}
.in-house_img span:nth-child(2) {
  top: 20%;
  background-color: rgba(4, 64, 153, 0.2156862745);
  transform: translateX(800px);
}
.in-house_img span:nth-child(3) {
  top: 40%;
  background-color: rgba(21, 153, 4, 0.2);
  transform: translateX(-800px);
}
.in-house_img span:nth-child(4) {
  top: 60%;
  background-color: rgba(153, 123, 4, 0.2117647059);
  transform: translateX(800px);
}
.in-house_img span:nth-child(5) {
  top: 80%;
  background-color: rgba(111, 4, 153, 0.2);
  transform: translateX(-800px);
}
.in-house_img.active span:nth-child(1) {
  top: 0;
  transform: translateX(800px);
}
.in-house_img.active span:nth-child(2) {
  top: 20%;
  transform: translateX(-800px);
}
.in-house_img.active span:nth-child(3) {
  top: 40%;
  transform: translateX(800px);
}
.in-house_img.active span:nth-child(4) {
  top: 60%;
  transform: translateX(-800px);
}
.in-house_img.active span:nth-child(5) {
  top: 80%;
  transform: translateX(800px);
}
.in-house_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.in-house_info {
  width: 43%;
}
.in-house_info .title {
  margin-bottom: 15px;
}
.in-house_info .title h2 {
  max-width: 400px;
  margin-bottom: 12px;
}
.in-house_info span {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  color: #616161;
  display: inline-block;
  margin-bottom: 25px;
}
.in-house_info b {
  display: inline-block;
  margin-bottom: 9px;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 1.1rem;
  color: #616161;
}
.in-house_info ul {
  margin-bottom: 20px;
}
.in-house_info ul li {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  color: #616161;
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}
.in-house_info ul li::before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-right: 7px;
  background-color: #616161;
}
.in-house_info .btn_all {
  width: 400px;
}

.complet_project {
  padding: var(--pading_y) 0;
}

.complet_project_cnt .title {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 30px;
}
.complet_project_cnt .title h2 {
  margin-bottom: 12px;
}
.complet_project_cnt .title p {
  max-width: 700px;
}
.complet_project_cnt .tab_control {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 17px;
}
.complet_project_cnt .tab_control .tab-btn {
  background-color: #ffffff;
  border: 1px solid #EAECED;
  border-radius: 50px;
  padding: 0 40px;
  height: var(--input_h);
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: #616161;
  margin: 0 9px 10px 0;
  cursor: pointer;
}
.complet_project_cnt .tab_control .tab-btn.active {
  border: 1px solid var(--orange);
  color: var(--orange);
}
.complet_project_cnt .tab_list .tab {
  display: none;
  justify-content: center;
}
.complet_project_cnt .tab_list .tab .tab_slider {
  position: relative;
  width: 90%;
}
.complet_project_cnt .tab_list .tab .tab_slider .slick-list {
  overflow: hidden;
}
.complet_project_cnt .tab_list .tab .tab_slider .slick-list .slick-track {
  display: flex;
}
.complet_project_cnt .tab_list .tab .tab_slider .slick-list .slick-track .slick-slide {
  margin: 0 7px;
}
.complet_project_cnt .tab_list .tab .tab_slider .slick-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0;
  width: 45px;
  height: 45px;
  background-color: #ffffff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 100;
  cursor: pointer;
}
.complet_project_cnt .tab_list .tab .tab_slider .slick-arrow.slick-prev {
  left: -4%;
}
.complet_project_cnt .tab_list .tab .tab_slider .slick-arrow.slick-prev::before {
  content: "\ea1f";
  color: #504a46;
  font-family: "IconsMoon";
  font-size: 1.2rem;
}
.complet_project_cnt .tab_list .tab .tab_slider .slick-arrow.slick-next {
  right: -4%;
}
.complet_project_cnt .tab_list .tab .tab_slider .slick-arrow.slick-next::before {
  content: "\ea20";
  font-family: "IconsMoon";
  font-size: 1.2rem;
}
.complet_project_cnt .tab_list .tab.active {
  display: flex;
}
.complet_project_cnt .tab_slider_itm {
  background-color: #ffffff;
  border-radius: 16px;
  padding: 17px;
  box-sizing: border-box;
}
.complet_project_cnt .tab_slider_itm > img {
  width: 100%;
  margin-bottom: 8px;
}
.complet_project_cnt .tab_slider_itm h3 {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 1.2rem;
  color: #2A2929;
  margin-bottom: 9px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -moz-box;
  -moz-box-orient: vertical;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-clamp: 2;
  box-orient: vertical;
  min-height: 45px;
}
.complet_project_cnt .tab_slider_itm p {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  color: #262D33;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -moz-box;
  -moz-box-orient: vertical;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  line-clamp: 5;
  box-orient: vertical;
  min-height: 45px;
  margin-bottom: 12px;
}
.complet_project_cnt .tab_slider_itm .realisation {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}
.complet_project_cnt .tab_slider_itm .realisation img {
  display: block;
  width: 25px;
  height: 25px;
  margin-right: 7px;
}
.complet_project_cnt .tab_slider_itm .realisation span {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 0.9rem;
  color: #3A4149;
  margin-right: 7px;
}
.complet_project_cnt .tab_slider_itm .realisation b {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: #2A2929;
}
.complet_project_cnt .tab_slider_itm a {
  display: flex;
  justify-content: center;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  color: #262D33;
  background-color: #E5E5E5;
  border-radius: 50px;
  padding: 15px 20px;
  box-sizing: border-box;
  transition: 0.2s linear;
}
.complet_project_cnt .tab_slider_itm a:hover {
  box-shadow: 0 5px 7px rgba(80, 74, 70, 0.431372549);
}

.choose_us {
  padding: var(--pading_y) 0;
}

.choose_us_cnt .group-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}
.choose_us_cnt .group-title .title h2 {
  margin-bottom: 9px;
}
.choose_us_cnt .group-title .btn_all {
  min-width: 350px;
}

.choose_us_list {
  display: grid;
  grid-template-columns: 24% 24% 24% 24%;
  column-gap: 1.33%;
  row-gap: 15px;
}

.choose_us_itm {
  position: relative;
  border: 1px solid #dddcdc;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
}
.choose_us_itm .choose_us_a {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #ffffff;
  padding: 20px 20px 25px 20px;
  border-radius: 20px;
  transition: 1s linear;
}
.choose_us_itm .choose_us_a img {
  width: 70%;
  margin-bottom: 5px;
}
.choose_us_itm .choose_us_a span {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 1.3rem;
  color: #262D33;
}
.choose_us_itm .choose_us_b {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--orange);
  padding: 25px;
  box-sizing: border-box;
  border-radius: 20px;
  opacity: 0;
}
.choose_us_itm .choose_us_b p {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 1.2rem;
  color: #ffffff;
}
.choose_us_itm:hover .choose_us_a {
  opacity: 0;
}
.choose_us_itm:hover .choose_us_b {
  animation: card_in 1.5s linear forwards;
}

.clients {
  background-color: #ffffff;
  padding: var(--pading_y) 0;
}

.clients_cnt .group-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}
.clients_cnt .group-title .title h2 {
  margin-bottom: 9px;
}
.clients_cnt .group-title .sl_btn-group {
  display: flex;
  align-items: end;
}
.clients_cnt .group-title .sl_btn-group .btn_sl-client {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 0 7px #dad8d8;
  background-color: #ffffff;
  cursor: pointer;
  transition: 0.2s linear;
}
.clients_cnt .group-title .sl_btn-group .btn_sl-client svg {
  transition: 0.2s linear;
}
.clients_cnt .group-title .sl_btn-group .btn_sl-client:last-child {
  margin-left: 12px;
}
.clients_cnt .group-title .sl_btn-group .btn_sl-client:hover {
  box-shadow: 0 0 7px rgba(236, 112, 29, 0.6235294118);
}
.clients_cnt .group-title .sl_btn-group .btn_sl-client:hover svg {
  stroke: var(--orange);
}

.client_slider .slick-list {
  overflow: hidden;
}
.client_slider .slick-list .slick-track {
  display: flex;
}
.client_slider .slick-list .slick-track .slick-slide {
  margin: 0 8px;
}
.client_slider .slick-list .slick-track .slick-slide a {
  aspect-ratio: 9/16;
}
.client_slider .slick-list .slick-track .slick-slide a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 20px;
}

.commands {
  padding: var(--pading_y) 0;
}

.commands_cnt .group-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}
.commands_cnt .group-title .title h2 {
  margin-bottom: 9px;
}
.commands_cnt .group-title .sl_btn-group {
  display: flex;
  align-items: end;
}
.commands_cnt .group-title .sl_btn-group .btn_sl-comands {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 0 7px #dad8d8;
  background-color: #ffffff;
  cursor: pointer;
  transition: 0.2s linear;
}
.commands_cnt .group-title .sl_btn-group .btn_sl-comands svg {
  transition: 0.2s linear;
}
.commands_cnt .group-title .sl_btn-group .btn_sl-comands:last-child {
  margin-left: 12px;
}
.commands_cnt .group-title .sl_btn-group .btn_sl-comands:hover {
  box-shadow: 0 0 7px rgba(236, 112, 29, 0.6235294118);
}
.commands_cnt .group-title .sl_btn-group .btn_sl-comands:hover svg {
  stroke: var(--orange);
}

.commands_group_cnt {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.slider_cell {
  width: 40%;
  background-color: #ffffff;
  border-radius: 20px;
  padding: 30px;
  box-sizing: border-box;
}

.commands_slider {
  width: 100%;
}
.commands_slider .slick-list {
  overflow: hidden;
}
.commands_slider .slick-list .slick-track {
  display: flex;
}
.commands_slider .slick-list .slick-track .slick-active .command-sl-itm .decore {
  animation-name: raduga;
  animation-duration: 2s;
  animation-timing-function: linear;
  animation-fill-mode: forwards;
}

.commands-galery {
  width: 58%;
  display: grid;
  grid-template-columns: 49% 49%;
  column-gap: 2%;
  row-gap: 15px;
}
.commands-galery .commands-galery_itm {
  background-color: #ffffff;
  border-radius: 20px;
  padding: 19px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.commands-galery .commands-galery_itm .img-gl-comand {
  display: block;
  background: #505050;
  border-radius: 50%;
  overflow: hidden;
  width: 130px;
  height: 130px;
  margin-bottom: 8px;
}
.commands-galery .commands-galery_itm .img-gl-comand img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.commands-galery .commands-galery_itm .name {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: #2A2929;
  margin-bottom: 7px;
}
.commands-galery .commands-galery_itm .job_title {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 0.9rem;
  color: #2A2929;
}

.command-sl-itm {
  position: relative;
  display: flex !important;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
.command-sl-itm .image_cell {
  width: 350px;
  height: 350px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 15px;
  background-color: var(--orange);
  z-index: 1;
}
.command-sl-itm .image_cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.command-sl-itm .name {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: #2A2929;
  margin-bottom: 10px;
  z-index: 1;
}
.command-sl-itm .job_title {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 1.1rem;
  color: #2A2929;
  z-index: 1;
}
.command-sl-itm .decore {
  position: absolute;
  display: block;
  width: 20%;
  height: 60%;
  z-index: 0;
  bottom: 0;
  transform: translateY(350px);
  opacity: 0;
}
.command-sl-itm .decore:nth-child(4) {
  left: 0;
  background-color: rgba(236, 212, 29, 0.3921568627);
}
.command-sl-itm .decore:nth-child(5) {
  left: 20%;
  background-color: rgba(236, 77, 29, 0.3529411765);
  animation-delay: 0.2s;
}
.command-sl-itm .decore:nth-child(6) {
  left: 40%;
  background-color: rgba(170, 236, 29, 0.2666666667);
  animation-delay: 0.4s;
}
.command-sl-itm .decore:nth-child(7) {
  left: 60%;
  background-color: rgba(29, 236, 222, 0.2156862745);
  animation-delay: 0.6s;
}
.command-sl-itm .decore:nth-child(8) {
  left: 80%;
  background-color: rgba(201, 29, 236, 0.2156862745);
  animation-delay: 0.8s;
}

.trusted {
  background-color: #ffffff;
  padding: var(--pading_y) 0;
}

.trusted_cnt .title {
  margin-bottom: 25px;
}

.trusted_list {
  display: grid;
  grid-template-columns: 19% 19% 19% 19% 19%;
  column-gap: 1.25%;
  row-gap: 15px;
}

.trusted-itm {
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #cfcbcb;
  border-radius: 20px;
  transition: 0.2s linear;
  overflow: hidden;
  transform: scale(0.7);
  opacity: 0;
}
.trusted-itm.active {
  animation: phartner-anim 0.5s linear forwards;
}
.trusted-itm img {
  width: 100%;
}
.trusted-itm:hover {
  box-shadow: 5px 5px 7px #b8b7b7;
}

.questions {
  padding: var(--pading_y) 0;
}

.questions_cnt {
  display: flex;
  justify-content: space-between;
}

.questions_info {
  width: 49%;
}

.questions_image {
  width: 49%;
}
.questions_image .questions_image_fixy {
  position: sticky;
  left: 0;
  top: 150px;
}
.questions_image .questions_image_fixy img {
  width: 90%;
}

.questions_list {
  margin-bottom: 25px;
}

.questions_item {
  background-color: #ffffff;
  border: 1px solid #C0C0C0;
  border-radius: 18px;
  margin-bottom: 15px;
}
.questions_item .questions_text {
  display: none;
  padding: 0 20px 20px 20px;
}
.questions_item .questions_text p {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 1.1rem;
  line-height: 1.4rem;
  color: #262D33;
}
.questions_item .questions_text.active {
  display: block;
}

.questions_header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
}
.questions_header span {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  color: #0F0F0F;
}
.questions_header .question_btn {
  display: flex;
  justify-content: center;
  align-items: center;
  background: none;
  cursor: pointer;
}
.questions_header .question_btn .minus {
  display: none;
}
.questions_header .question_btn.active .minus {
  display: block;
}
.questions_header .question_btn.active .plus {
  display: none;
}

.home_news {
  background-color: #ffffff;
  padding: var(--pading_y) 0;
}

.home_news_cnt .title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}
.home_news_cnt .title a {
  position: relative;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: var(--orange);
  transition: 0.2s linear;
}
.home_news_cnt .title a::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: var(--orange);
  transition: 0.2s linear;
}
.home_news_cnt .title a:hover {
  color: #984f1f;
}
.home_news_cnt .title a:hover::after {
  background-color: #984f1f;
}

.home_news_list {
  display: grid;
  grid-template-columns: 24% 24% 24% 24%;
  column-gap: 1.33%;
  row-gap: 15px;
}

.news_item {
  position: relative;
  background-color: #F9F8F6;
  border-radius: 20px;
  padding: 20px 20px 25px 20px;
  transition: 0.2s linear;
}
.news_item .link-block {
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
}
.news_item img {
  width: 100%;
  border-radius: 20px;
  margin-bottom: 7px;
}
.news_item .data-rel {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 0.8rem;
  color: #8d8d93;
  margin-bottom: 8px;
  display: inline-block;
}
.news_item h4 {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: #000000;
  margin-bottom: 7px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -moz-box;
  -moz-box-orient: vertical;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-clamp: 2;
  box-orient: vertical;
}
.news_item p {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  color: #6b6b71;
  margin-bottom: 12px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -moz-box;
  -moz-box-orient: vertical;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-clamp: 2;
  box-orient: vertical;
}
.news_item .link {
  position: relative;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: var(--orange);
  border-bottom: 1px solid var(--orange);
  z-index: 1;
}
.news_item .link:hover {
  color: #d16015;
  border-bottom: 1px solid #d16015;
}
.news_item:hover {
  box-shadow: 5px 5px 7px rgba(141, 141, 147, 0.3490196078);
}

.workspace {
  padding: var(--pading_y) 0;
}
.workspace .discuss {
  overflow: hidden;
}
.workspace .discuss_info {
  width: 62%;
}
.workspace .discuss_info p {
  max-width: 700px;
}
.workspace .discuss_img {
  width: 36%;
}
.workspace .discuss_img img {
  display: block;
  position: relative;
  bottom: auto;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.footer {
  background-color: #ffffff;
  padding: 25px 0 15px 0;
}

.footer_top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
.footer_top span {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 0.9rem;
  color: #616A74;
}

.footer_center {
  display: flex;
  justify-content: space-between;
}

.footer_menu {
  width: 49%;
}
.footer_menu ul {
  display: grid;
  grid-template-columns: 49% 49%;
  column-gap: 2%;
  row-gap: 12px;
}
.footer_menu ul li a {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  color: #1F242A;
  transition: 0.2s linear;
}
.footer_menu ul li a:hover {
  color: var(--orange);
}

.footer-info {
  width: 49%;
  display: grid;
  grid-template-columns: 49% 49%;
  column-gap: 2%;
}

.footer-inf-group .inf-itm {
  display: flex;
  align-items: center;
  margin-bottom: 7px;
}
.footer-inf-group .inf-itm svg {
  margin-right: 7px;
}
.footer-inf-group .inf-itm span, .footer-inf-group .inf-itm a {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 0.9rem;
  color: #1F242A;
  transition: 0.2s linear;
}
.footer-inf-group .inf-itm a:hover {
  color: var(--orange);
}

.footer_bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 10px;
}

.copy-company {
  display: flex;
  align-items: center;
}
.copy-company a {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 0.8rem;
  color: #616A74;
  transition: 0.2s linear;
  margin-right: 12px;
}
.copy-company a:hover {
  color: var(--orange);
}

.copy_webstudio a {
  display: flex;
  align-items: center;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 0.8rem;
  color: #616A74;
  transition: 0.2s linear;
}
.copy_webstudio a img {
  flex-shrink: 0;
  margin-left: 8px;
}
.copy_webstudio a:hover {
  color: var(--orange);
}

@keyframes submenu_in {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes blink {
  0%, 60% {
    transform: translateX(-250px) rotate(15deg);
  }
  100% {
    transform: translateX(360px) rotate(15deg);
  }
}
@keyframes card_in {
  0% {
    opacity: 0;
    transform: translate(-20%, -20%) scale(0.4);
  }
  30% {
    transform: translate(20%, -20%) scale(0.7);
  }
  70% {
    transform: translate(10%, 20%) scale(0.9);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0) scale(1);
  }
}
@keyframes raduga {
  0% {
    transform: translateY(350px);
  }
  30% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  70% {
    opacity: 0;
  }
  100% {
    transform: translateY(-500px);
  }
}
@keyframes fadecat {
  0% {
    opacity: 0;
    transform: translateY(70px);
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes phartner-anim {
  0% {
    transform: scale(0.7);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
@media screen and (max-width: 1820px) {
  :root {
    font-size: 15px;
    --pading_y:50px;
    --input_h: 45px;
  }
  .container {
    max-width: 1420px;
  }
  h1 {
    font-size: 2.5rem;
  }
  h2 {
    font-size: 2rem;
  }
  .btn_all, .btn_light {
    width: 250px;
    height: 45px;
    font-size: 0.9rem;
  }
  .screen_info p {
    font-size: 1.2rem;
    max-width: 630px;
  }
  .screen_adv-itm {
    position: relative;
    padding: 20px;
  }
  .screen_adv-itm span {
    font-size: 2rem;
  }
  .screen_adv-itm::after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    display: block;
    width: 1px;
    height: 70%;
    background-color: #909090;
  }
  .screen_adv-itm:last-child::after {
    display: none;
  }
  .office_contractor {
    width: 42%;
  }
  .office_contractor .office_contractor_information .title h2 {
    max-width: 600px;
  }
  .contractor_banner {
    padding: 30px 20px;
  }
  .contractor_banner h3 {
    font-size: 1.8rem;
    line-height: 1.7rem;
    max-width: 320px;
  }
  .contractor_banner ul {
    width: 100%;
  }
  .contractor_banner ul li {
    font-size: 1rem;
  }
  .contractor_banner ul li:nth-child(3), .contractor_banner ul li:nth-child(4), .contractor_banner ul li:nth-child(5) {
    width: 25%;
  }
  .office_image {
    width: 52%;
  }
  .complet_project_cnt .tab_control .tab-btn {
    padding: 0 30px;
    height: 40px;
    font-size: 0.9rem;
  }
}