:root {
  --accent: #f88500;
  --accent-light: #ff8d09;
  --accent-dark: #cf7409;
  --gutter: 20px;
  --text: #333;
  --dark: #202328;
  --deep: #171a1a;
  --dark-header: #6f7a8b;
  --dark-div: #2d3038;
  --light-bg: #fafafa;
  --light-disabled: #e4e6e8;
  --light-div: #e7e7e8;
  --middle-gray: rgba(111, 122, 139, 0.75);
  --text-light: #999;
  --regular-text: 16px;
  --small-text: 14px;
  --lineheight: 1.75;
  --userfont: raleway-wt, sans-serif;
  --systemfont: -apple-system, BlinkMacSystemFont, Arial, sans-serif;
  --radius: 5px;
  --radius-style: 0 5px;
  --transition: 0.25s ease-out;
  --address: #989da5;
}

/* FONTS LOAD SECTION */

@font-face {
  src: url("../fonts/raleway/raleway-v22-cyrillic-300.woff2") format("woff2");
  font-family: "raleway-wt";
  font-weight: 300;
  font-style: normal;
}
@font-face {
  src: url("../fonts/raleway/raleway-v22-cyrillic-500.woff2") format("woff2");
  font-family: "raleway-wt";
  font-weight: 500;
  font-style: normal;
}
@font-face {
  src: url("../fonts/raleway/raleway-v22-cyrillic-600.woff2") format("woff2");
  font-family: "raleway-wt";
  font-weight: 600;
  font-style: normal;
}
@font-face {
  src: url("../fonts/raleway/raleway-v22-cyrillic-700.woff2") format("woff2");
  font-family: "raleway-wt";
  font-weight: 700;
  font-style: normal;
}
@font-face {
  src: url("../fonts/raleway/raleway-v22-cyrillic-800.woff2") format("woff2");
  font-family: "raleway-wt";
  font-weight: 800;
  font-style: normal;
}
@font-face {
  src: url("../fonts/raleway/raleway-v22-cyrillic-900.woff2") format("woff2");
  font-family: "raleway-wt";
  font-weight: 900;
  font-style: normal;
}
@font-face {
  src: url("../fonts/raleway/raleway-v22-cyrillic-regular.woff2")
    format("woff2");
  font-family: "raleway-wt";
  font-weight: 400;
  font-style: normal;
}

@font-face {
  src: url("../fonts/roboto/roboto-v29-cyrillic-300.woff2") format("woff2");
  font-family: "roboto-wt";
  font-weight: 300;
  font-style: normal;
}
@font-face {
  src: url("../fonts/roboto/roboto-v29-cyrillic-500.woff2") format("woff2");
  font-family: "roboto-wt";
  font-weight: 500;
  font-style: normal;
}
@font-face {
  src: url("../fonts/roboto/roboto-v29-cyrillic-700.woff2") format("woff2");
  font-family: "roboto-wt";
  font-weight: 700;
  font-style: normal;
}

/* RESET AND BASE STYLES */
html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

*,
*:before,
*:after {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

body {
  font-family: var(--userfont);
  font-size: var(--regular-text);
  line-height: var(--lineheight);
  color: var(--text);
  min-width: 320px;
  position: relative;
  overflow-x: hidden;
}

/* УБИРАЕМ ВСЕ ПОДЧЕРКИВАНИЯ НА САЙТЕ */
a,
a:hover,
a:focus,
a:active,
a:visited {
  text-decoration: none !important;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

img {
  max-width: 100%;
  height: auto;
}

.wrapper {
  max-width: 1920px;
  margin: 0 auto;
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  width: 100%;
  max-width: 1130px;
  margin: 0 auto;
  padding: 0 15px;
}

.cover_image {
  object-fit: cover;
}

.visually-hidden {
  position: absolute;
  clip: rect(0 0 0 0);
  width: 1px;
  height: 1px;
  margin: -1px;
}

.btn {
  border: none;
  background-color: var(--accent);
  margin: 0;
  padding: 12px 25px;
  font-weight: 800;
  font-size: 14px;
  line-height: 145%;
  text-align: center;
  text-transform: uppercase;
  color: #fff;
  outline: none;
  cursor: pointer;
  border-radius: var(--radius-style);
  transition: background-color var(--transition);
}

.btn:hover {
  background-color: var(--accent-dark);
}

.btn:active {
  background-color: var(--accent-light);
}

/* class for bg images */
.bg {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

/* HEADER AND NAVIGATION */
.intro {
  background-color: var(--deep);
  min-height: 100vh;
  position: relative;
  padding: 0 15px;
}

.header {
  position: relative;
  box-shadow: 0px 10px 40px rgba(0, 0, 0, 0.05);
  padding: 26px 0;
}

.header-content {
  display: flex;
  justify-content: space-between;
  color: var(--text);
}

.main--header {
  position: relative;
  z-index: 10;
  padding: 26px 0;
  background-color: transparent;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.footer .logo,
.main--header .logo {
  display: inline-block;
  color: #fff;
}

.logo {
  color: var(--text);
  text-decoration: none !important;
}

.logo i {
  display: inline-block;
  width: 15px;
  height: 15px;
  margin-right: 7px;
  border: 2px solid var(--accent);
  border-radius: var(--radius-style);
}

.brand {
  font-weight: bold;
  font-size: 17px;
  text-transform: uppercase;
  display: inline-block;
  line-height: 2.4;
  color: inherit;
  text-decoration: none !important;
}

.sign {
  font-size: 12px;
  line-height: 0px;
  color: rgba(255, 255, 255, 0.45);
  display: block;
  margin-left: 27px;
  color: inherit;
}

.main-nav {
  position: relative;
  display: flex;
  align-items: center;
}

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

.menu-item {
  margin: 10px;
}

.menu-link {
  font-weight: 500;
  font-size: 14px;
  line-height: 16px;
  color: inherit;
  padding: 10px 20px;
  border-radius: var(--radius-style);
  transition: background-color 0.25s ease-out;
  display: inline-block;
  text-decoration: none !important;
}

.menu-active .menu-link {
  font-size: 16px;
}

.menu-active .menu-item {
  text-align: center;
}

.menu-link:hover,
.menu-link:active,
.menu-link.active {
  background-color: rgba(196, 196, 196, 0.2);
}


/* Социальные иконки */
.social {
  padding: 5px 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: rgb(0 0 0 / 20%);
  border-radius: 70px;
}

.social-item {
  margin: 0 8px;
}

.social-link {
  vertical-align: text-top;
  display: inline-block;
}

.social-link img {
  width: 17px;
  height: 17px;
  transition: opacity var(--transition), transform var(--transition);
}

.main--header .social-link img {
  opacity: 0.75;
}

.social-link img:hover {
  opacity: 1;
  transform: scale(0.9);
}

/* SLIDER */
.slider {
  position: absolute;
  top: 0;
  left: 0;
  min-height: 580px;
  width: 100%;
  height: 100%;
}

.swiper-wrapper {
  position: relative;
}

.slide-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 25px;
}

.slide-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.3;
  width: 100%;
  height: 100%;
  background-color: var(--dark-div);
}

.slide-section::after {
  content: "";
  position: absolute;
  z-index: 11;
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
  border-radius: var(--radius);
  box-shadow: 0 0 0 15px var(--dark);
}

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: 30px;
  left: auto;
  color: #818b9d;
}

.swiper-button-prev,
.swiper-rtl .swiper-button-next {
  left: 40px;
  right: auto;
  color: #818b9d;
}

/* slide navigation */
.slider-navigation {
  color: var(--accent);
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 10;
  background-color: var(--dark);
  border-top-left-radius: var(--radius);
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 440px;
  height: 90px;
  width: 100%;
}

.nums {
  width: 30%;
}

.swiper-pagination {
  width: 25%;
  height: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 16px;
  color: var(--accent);
}

.swiper-scrollbar {
  width: 100%;
  background: rgb(255 255 255 / 10%);
  cursor: pointer;
}

.swiper-pagination-current {
  margin-right: 4px;
}

.swiper-pagination-total {
  margin-left: 4px;
}

.scrollbar-block {
  width: 30%;
}

.swiper-scrollbar-drag {
  height: 7px;
  background: var(--accent);
  border-radius: 10px;
}

.slider-arrows {
  width: 30%;
  position: relative;
}

.intro-content {
  position: relative;
  z-index: 101;
  padding-left: 25px;
}

.intro-title {
  font-weight: 300;
  font-size: 58px;
  line-height: 68px;
  color: #fff;
}

.intro-subtitle {
  display: inline-block;
  font-weight: 500;
  font-size: 16px;
  line-height: 19px;
  color: #fff;
  background-color: var(--accent);
  padding: 12px 14px;
  border-radius: var(--radius-style);
  margin-bottom: 25px;
}



.intro-desc {
  font-size: 14px;
  line-height: 170%;
  max-width: 400px;
  background-color: var(--dark);
  padding: 14px 24px;
  border-radius: var(--radius-style);
  color: #fff;
  margin-bottom: 25px;
}

.swiper-slide.swiper-slide-active .intro-subtitle {
  transition-delay: 0.3s;
}

.swiper-slide.swiper-slide-active .intro-desc {
  transition-delay: 0.5s;
}

[data-animate] {
  opacity: 0;
  transition: all 1s ease-out;
}

[data-animate="opacity"] {
  transform: translate3d(0, 15px, 0);
}

.swiper-slide.swiper-slide-active [data-animate="opacity"] {
  opacity: 1;
  transform: none;
}

/* TRUST SECTION */
.trust {
  background-color: var(--deep);
  padding: 45px 0;
}

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

.advantages {
  width: 60%;
}

.trust-title {
  margin: 0 0 25px;
  font-weight: 900;
  font-size: 18px;
  line-height: 21px;
  text-transform: uppercase;
  color: var(--dark-header);
  position: relative;
}

.trust-title::after {
  content: "";
  position: absolute;
  width: 35%;
  height: 1px;
  background-color: var(--dark-header);
  left: 0;
  top: 30px;
}

.advantages__list {
  margin-top: 38px;
}

.advantages__list-item span {
  font-weight: 600;
  color: var(--accent);
  margin-right: 4px;
}

.advantages__list > * {
  display: inline-block;
  width: 49%;
  margin-bottom: 10px;
  color: var(--dark-header);
}

.call-us {
  width: 30%;
  text-align: right;
}

.call-us__text {
  font-size: 14px;
  line-height: 165%;
  margin-bottom: 14px;
  color: var(--dark-header);
}

.tel {
  font-weight: 300;
  font-size: 28px;
  font-family: "roboto-wt", sans-serif;
  line-height: 165%;
  color: #fff;
}

/* BEST WORKS */
.best-works {
  position: relative;
}

.best-works__top {
  background-color: var(--dark);
  padding: 55px 0;
  margin-bottom: 50px;
}

.best-works__header {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding-bottom: 60px;
}

.best-works__text {
  width: 48%;
  font-size: var(--text);
  line-height: 170%;
  text-align: right;
  color: #fff;
  border-right: 2px solid var(--dark-div);
  padding-right: 45px;
}

.best-works__header .section-title__block {
  width: 48%;
}

.section-title {
  font-weight: 800;
  font-size: 29px;
  line-height: 36px;
  color: #fff;
  margin-top: 10px;
}

.section-title-1 {
  font-weight: 800;
  font-size: 29px;
  line-height: 36px;
  color: #000;
  margin-top: 10px;
}

.section-suptitle {
  font-weight: 800;
  font-size: 16px;
  line-height: 19px;
  text-transform: uppercase;
  color: #f88500;
  position: relative;
  margin-left: 25px;
  margin-top: 18px;
  display: block;
}

.section-suptitle::before {
  content: "\\\\";
  position: absolute;
  top: 0;
  left: -25px;
}

.best-works__footer {
  width: 100%;
  margin-top: -125px;
}

.post-thumbnails__block {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.post-thumbnails__item {
  margin-bottom: 40px;
  width: 32%;
  height: auto;
  background-color: #fff;
  border: 2px solid #99999921;
  transform: all var(--transition);
  border-radius: var(--radius-style);
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.32);
  transition: box-shadow var(--transition);
  text-decoration: none !important;
  display: block;
}

.post-thumbnails__item:hover {
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.48);
  text-decoration: none !important;
}

.item-image {
  overflow: hidden;
  position: relative;
}

.item-image img {
  display: block;
  width: 360px;
  height: 200px;
  object-fit: cover;
}

.item-content {
  padding: 10px 12px;
  background-color: var(--light-bg);
}

.item-address {
  font-weight: bold;
  font-size: 14px;
  line-height: 170%;
  color: var(--address);
  display: block;
  margin-left: 15px;
  position: relative;
}

.item-title {
  font-weight: bold;
  font-size: 20px;
  line-height: 125%;
  color: var(--text);
  margin: 0 15px;
  position: relative;
}

.show-more__btn {
  display: block;
  margin: 55px auto;
}

/* ABOUT SHORT */
.about-short {
  background-color: var(--light-bg);
  padding: 65px 0;
}

.about-short .section-title {
  color: var(--text);
}

.about-short .section-suptitle {
  margin-top: 0;
}

.about-short__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.single-slider__block {
  width: 48%;
}

.single-slider {
  width: 100%;
  position: relative;
}

.single-slider img {
  border-radius: var(--radius-style);
  width: 100%;
  height: auto;
}

.slide-label {
  position: absolute;
  bottom: 15%;
  right: -4%;
  background-color: rgba(32, 35, 40, 0.9);
  padding: 25px 38px;
  font-size: 21px;
  line-height: 25px;
  color: #fff;
}

.slide-label span {
  font-size: 32px;
  font-family: "roboto-wt", sans-serif;
  font-weight: 900;
}

.about-short__text {
  width: 48%;
}

.section-title--dotted {
  margin-bottom: 25px;
}

.about-short__desc {
  font-size: 16px;
  line-height: 170%;
  margin: 30px 0 55px;
}

.about-short__advantages {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: baseline;
}

.advantages-item {
  width: 48%;
  text-align: center;
}

.advantages-img {
  text-align: center;
  margin: 0 auto;
  display: block;
  min-height: 41px;
}

.advantages-title {
  font-weight: 800;
  font-size: 19px;
  line-height: 22px;
}

.advantages-desc {
  border-top: 1px solid #e7e7e8;
  font-size: 16px;
  line-height: 170%;
  padding-top: 30px;
}

/* PARTNERS */
.partners {
  background-image: url("../img/partners/partners-bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 30px 0;
  position: relative;
  z-index: 10;
}

.partners::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #202328;
  opacity: 0.85;
  z-index: -1;
}

.partners-title {
  font-weight: 800;
  font-size: 29px;
  line-height: 34px;
  text-align: center;
  color: #ffffff;
}

.partners-block {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: baseline;
  margin-top: 30px;
}

.partners-item {
  width: 23%;
  text-align: center;
  margin-bottom: 25px;
}

.partners-img {
  max-width: 162px;
  max-height: 64px;
  width: auto;
  height: auto;
}

.partners-desc {
  font-size: 14px;
  line-height: 170%;
  text-align: center;
  color: #fff;
}

.partners-name {
  font-weight: 800;
  font-size: 14px;
  color: var(--accent);
}

/* OUR BLOG */
.our-blog {
  padding: 45px 0;
  background-color: #fff;
}

.page-title {
  font-weight: 800;
  font-size: 29px;
  line-height: 34px;
  text-align: center;
  text-transform: uppercase;
}

.our-blog__items,
.blog-items {
  margin: 40px 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.blog-item {
  width: 32%;
  background-color: var(--light-bg);
  padding: 10px;
  margin-bottom: 25px;
  border: 1px solid #cccccc47;
  border-radius: var(--radius-style);
  box-shadow: 0px 0px 15px 0px rgb(0 0 0 / 32%);
  transition: box-shadow var(--transition);
  text-decoration: none !important;
  display: block;
}

.blog-item:hover {
  box-shadow: 0px 0px 15px 0px rgb(0 0 0 / 48%);
  text-decoration: none !important;
}

.blog-item__header {
  width: 100%;
  padding: 5px;
  position: relative;
}

.blog-item__img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.blog-item__footer {
  padding: 0 8px 8px;
  display: flex;
  flex-direction: column;
}

.btn-link {
  text-align: center;
  display: block;
  max-width: 280px;
  margin: 38px auto 20px;
  text-decoration: none !important;
}

.blog-item__excerpt {
  font-size: 14px;
  line-height: 170%;
  color: var(--text);
}

.blog-item__read-more {
  font-weight: 800;
  font-size: 15px;
  line-height: 170%;
  color: var(--text);
  display: block;
  margin-top: auto;
}

.post-date {
  display: block;
  background-color: var(--accent);
  padding: 8px 12px;
  font-weight: bold;
  font-size: 10px;
  line-height: 12px;
  text-transform: uppercase;
  border-radius: var(--radius-style);
  color: #fff;
  position: absolute;
  top: 25px;
  left: 25px;
}

/* FOOTER */
.footer {
  padding: 45px 0;
  background-color: var(--deep);
  color: rgba(255, 255, 255, 0.7);
  margin-top: auto;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  flex-wrap: wrap;
}

.footer-about {
  width: 28%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.footer-about__title {
  font-weight: 900;
  font-size: 18px;
  line-height: 21px;
  text-transform: uppercase;
  color: #fff;
  margin-top: 40px;
}

.footer-text {
  font-weight: normal;
  font-size: 13px;
  line-height: 170%;
}

.footer-menu__block {
  width: 14%;
}

.footer-title {
  font-weight: 900;
  font-size: 18px;
  line-height: 21px;
  text-transform: uppercase;
  color: #fff;
  position: relative;
  margin-bottom: 35px;
}

.footer-title::after {
  content: "";
  position: absolute;
  top: 30px;
  left: 0;
  width: 25px;
  height: 3px;
  border-radius: var(--radius-style);
  background-color: var(--accent);
}

.footer-menu__item {
  padding: 6px 0;
  margin-bottom: 10px;
}

.footer-menu__link {
  font-weight: 500;
  font-size: 14px;
  line-height: 16px;
  color: #fff;
  transition: color var(--transition);
  display: inline-block;
}

.footer-menu__link:hover {
  color: var(--accent);
}

.footer-services {
  width: 14%;
}

.footer-social {
  width: 28%;
}

.footer-social__list {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 25px;
  margin-top: 48px;
}

.footer-social__item {
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--radius-style);
  transition: border-radius var(--transition),
    background-color var(--transition);
}

.footer-social__item:hover {
  background-color: var(--accent);
  border-radius: 0;
}

.footer-social__link {
  display: block;
  padding: 12px 16px;
  text-decoration: none !important;
}

.footer-social__item img {
  max-width: 26px;
  max-height: 22px;
  width: 100%;
  height: 100%;
  display: block;
}

/* УБИРАЕМ ВСЕ ПОДЧЕРКИВАНИЯ ДЛЯ ВСЕХ ЭЛЕМЕНТОВ */
.menu a,
.menu-link,
.footer-menu a,
.footer-menu__link,
.social a,
.social-link,
.footer-social a,
.footer-social__link,
.post-thumbnails__item,
.blog-item,
.btn-link,
.breadcrumbs__link,
.page-numbers,
.project-item__link {
  text-decoration: none !important;
}

.menu a:hover,
.menu-link:hover,
.footer-menu a:hover,
.footer-menu__link:hover,
.social a:hover,
.social-link:hover,
.footer-social a:hover,
.footer-social__link:hover,
.post-thumbnails__item:hover,
.blog-item:hover,
.btn-link:hover,
.breadcrumbs__link:hover,
.page-numbers:hover,
.project-item__link:hover {
  text-decoration: none !important;
}

/* ДЛЯ BOOTSTRAP (если используется) */
.navbar-nav .nav-link,
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus,
.navbar-nav .nav-link:active {
  text-decoration: none !important;
}

/* ГАРАНТИРОВАННОЕ УБРАНИЕ ВСЕХ ПОДЧЕРКИВАНИЙ */
* {
  text-decoration: none !important;
}

a, a *, a:hover, a:hover *, a:focus, a:focus *, a:active, a:active *, a:visited, a:visited * {
  text-decoration: none !important;
}


