/* fonts */
@font-face {
  font-family: 'Montserrat';
  font-display: swap;
  font-style: normal;
  font-weight: 400;
  src: local('MontserratRegular'), local('Montserrat-Regular'),
   url(../fonts/montserrat-regular-webfont.woff) format('woff'),
   url(../fonts/montserrat-regular-webfont.woff2) format('woff2');
}

@font-face {
    font-family: Montserrat;
    font-display: swap;
    font-style: normal;
    font-weight: 600;
    src: local('MontserratSemibold'), local('Montserrat-Semibold'),
     url(../fonts/montserrat-semibold-webfont.woff) format('woff'),
     url(../fonts/montserrat-semibold-webfont.woff2) format('woff2')
}

@font-face {
    font-family: Montserrat;
    font-display: swap;
    font-style: normal;
    font-weight: 700;
    src: local('MontserratBold'), local('Montserrat-Bold'),
     url(../fonts/montserrat-bold-webfont.woff) format('woff'),
     url(../fonts/montserrat-bold-webfont.woff2) format('woff2')
}

@font-face {
    font-family: Montserrat;
    font-display: swap;
    font-style: normal;
    font-weight: 800;
    src: local('MontserratExtrabold'), local('Montserrat-Extrabold'),
     url(../fonts/montserrat-extrabold-webfont.woff) format('woff'),
     url(../fonts/montserrat-extrabold-webfont.woff2) format('woff2')
}

/* common specification */
* {
  box-sizing: border-box;
}

:root {
  --black-color: #333333;
  --orange-color: #FF9900;
  --white-color: #ffffff;
  --color-grey: #cacaca;
  --color-grey-2: #ececec;
  --color-dark-black: #222222;
  --color-dark-grey: #414141;
}

body {
  font-family: 'Montserrat', sans-serif;
}

a {
  text-decoration: none;
}

.visually-hidden {
	position: absolute !important;
	clip: rect(1px 1px 1px 1px); /* IE6, IE7 */
	clip: rect(1px, 1px, 1px, 1px);
	padding:0 !important;
	border:0 !important;
	height: 1px !important;
	width: 1px !important;
	overflow: hidden;
}

.list-reset {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.site-heading {
  font-weight: 400;
  font-size: 48px;
  color: var(--black-color);
}

.btn-reset {
  border: none;
  cursor: pointer;
  background-color: transparent;
  padding: 0;
}

.swiper-pagination-bullet-active {
  background-color: var(--white-color);
}

.swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 10px;
}

.swiper-container-horizontal>.swiper-pagination-bullets, .swiper-pagination-custom, .swiper-pagination-fraction {
  bottom: 27px;
}

.swiper-pagination-bullet {
  width: 15px;
  height: 15px;
  background-color: var(--white-color);
}
/**/
.telefons {
  border: 3px solid #a5a4ce;
  border-radius: 10px;
  font-size: 23px;
  color: #a5a4ce;
  text-decoration: none;
  /*text-transform: uppercase;*/
  width: 155px;
  height: 50px;
  display: block;
  text-align: center;
  line-height: 40px;
  font-family: Arial, Helvetica, sans-serif;
  position: relative;
  transition: .5s;
  overflow: hidden;
}

.telefons::before,
.telefons::after {
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  background: #a5a4ce;
  top: 0;
  left: -100%;
  opacity: .5;
  transition: .3s;
  z-index: -1;
}
.telefons::after{
  opacity: 1;
  transition-delay: .2s;
}

.telefons:hover {
  color: #ffffff;
}

.telefons:hover::before,
.telefons:hover::after {
left: 0;
}
/**/
.telefon {
  border: 3px solid #a5a4ce;
  border-radius: 20px;
  font-size: 23px;
  color: wheat;
  text-decoration: none;
  text-transform: uppercase;
  width: 290px;
  height: 85px;
  display: block;
  text-align: center;
  line-height: 80px;
  font-family: Arial, Helvetica, sans-serif;
}

.telefon:hover {
  color: #a5a4ce;
}

/**/

.site-btn {
  font-weight: 600;
  border: none;
  cursor: pointer;
  background: white; /*var(--orange-color);*/
  color: black;
  border-radius: 30px;
  border: solid 6px #a5a4ce;
}

/*для посилань*/

.nav-links:hover {
  color: #a5a4ce;;
}

.nav-links:active {
  color: palevioletred;
}

.footer-links:hover {
  color: #a5a4ce;
}

.footer-links:active {
  color: palevioletred;
}
/**/

.site-btn:hover {
  background-color: #a5a4ce;
}

.site-btn:active {
  background-color: palevioletred;
}

.container {
  max-width: 1800px;
  margin: 0 auto;
  padding: 0 15px;
  background-color: #ffffff;
}

/* header */
.header {
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 2;                                                                                                      /*  */
  box-shadow: 0px 5px 40px rgba(0, 0, 0, 0.1);
  background-color: #ffffff;
}

.header__container {
  height: 102px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

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

.nav__item:not(:last-child) {
  margin-right: 40px;
}

.nav__item:last-child {
  margin-right: 70px;
}

.nav__link {
  font-weight: 600;
  font-size: 18px;
  color: var(--black-color);
}

.menu-close {
  display: none;
}

.search {
  width: 26px;
  height: 26px;
  padding: 0;
  margin-right: 12px;
  border: none;
  cursor: pointer;
  background-color: transparent;
}

/* hero */

.hero {
  height: 620px;
}

.hero__container {
  height: 100%;
  overflow: hidden;
}

.swiper-container {
  height: 100%;
  width: 100%;
}

.swiper-slide {
  padding: 106px 0 0 78px;                                 /* робота з текстом*/
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.hero-content {
  max-width: 840px;
}

.hero-content__heading {
  font-weight: 800;
  font-size: 70px;
  margin: 0;
  margin-bottom: 18px;
  line-height: 86px;
  color: var(--white-color);
}

.hero-content__text {
  font-weight: bold;
  font-size: 23px;
  margin: 0;
  margin-bottom: 95px;
  line-height: 29px;
  color: var(--white-color);
}

.hero-content__btn {
  padding: 27px 41px;
  font-size: 23px;
}

/* about */
.about {
  padding-top: 104px;
  padding-bottom: 20px;
}

.about__heading {
  margin: 0;
  margin-bottom: 27px;
}

.about__text {
  margin: 0;
  margin-bottom: 48px;
  max-width: 1235px;
  line-height: 31px;
  color: var(--black-color);
}

.abut__tooltip {
  display: inline-block;
  padding-left: 5px;
  width: 16px;
  height: 16px;
}

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

.about-content__left {
  margin-right: 10px;
  max-width: 870px;
  display: flex;
  align-items: flex-end;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.about-left__inner {
  padding: 21px 65px 24px 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(0, 0, 0, 0.5);
}

.about-left__text {
  margin-right: 70px;
  font-weight: 700;
  line-height: 32px;
  color: #ffffff;
}
.about-left__btn {
  padding: 18px 37px;
  font-weight: 700;
  border: 3px solid #a5a4ce;
  color: white;
}

.about-content__right {
  max-width: 870px;
}

.about-right__item {
  background-position: left 62px top 54px;
  background-repeat: no-repeat;
  padding: 67px 118px 68px 298px;
  border: 1px solid var(--color-grey);
}

.about-right__item:first-child {
  margin-bottom: 30px;
  background-position: left 62px top 70px;
}

.about-right__title {
  margin: 0;
  line-height: 30px;
  font-weight: 700;
  font-size: 24px;
}

.about-right__text {
  margin: 0;
  line-height: 32px;
}

/*цена*/

.text-center{
  text-align: center;
}

.section-do{
  padding-top: 140px;
  padding-bottom: 100px;
  border-bottom: 1px solid #e4e4e4;
}

.section-description{
  padding-top: 25px;
}

.section-do-list{
  display: flex;
  margin-top: 50px;
}

.section-do-item{
  flex: 1 1 25%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 30px 15px;
  border: 5px solid #a5a4ce;
  border-radius: 30px;
  transition-property: background-color, color;
  transition-duration: .6s;
  transition-timing-function: ease;
}

.section-do-item:not(:last-child){
  margin-right: 30px;
}

.section-do-item-heading{
  display: block;
  font-size: 20px;
  line-height: 1;
}

.section-do-item:hover {
  background-color: #a5a4ce;
  color: white;
  cursor: pointer;
}

.section-do-item:hover .section-do-icon-description{
  color: white;
}

.section-do-item:hover .section-do-icon path {
  fill: white;
}

.section-do-icon {
  margin-bottom: 30px;
}

.section-do-icon path {
  transition: fill .3s ease;
}

.section-do-icon-description {
  margin-top: 15px;
  font-size: 14px;
  line-height: 1.5;
  color: #787878;
  text-align: center;
  transition: color .3s ease;
}

.btn-next-text {
  border: 3px solid #a5a4ce;
  border-radius: 10px;
  padding: 4px;
}

.btn-next-text:hover {
  border: 3px solid wheat;
}

/*prise*/
.question-style {
  background-color: #a5a4ce ;
}

.question-style:hover {
  background-color: grey;
}

.question-style-one:hover {
  background-color: rgb(208, 197, 218);
}
/*work*/
.work {
  padding-top: 74px;
}

.work__headeing {
  margin: 0;
  margin-bottom: 50px;
}

.work__list {
  display: flex;
  align-items: center;
  margin-bottom: 50px;
}

.work__item:not(:last-child) {
  margin-right: 90px;
}

.work__btn {
  font-size: 18px;
  color: var(--black-color);
}

.work__btn--default {
  color: var(--orange-color);
}


.work__content {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.work-left {
  width: 50%;
  min-height: 471px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.work-left__title {
  margin: 0;
  color: var(--black-color);
  font-weight: 700;
  font-size: 24px;
}

.work-left__text {
  margin: 0;
  margin-bottom: 10px;
  color: var(--black-color);
  max-width: 758px;
  line-height: 32px;
}

.work-left__btns {
  display: flex;
  align-items: center;
}

.work-left__btn {
  padding: 20px 38px;
}

.work-left__btn:first-child {
  margin-right: 30px;
}

.work-left__btn--border {
  background-color: transparent;
  border: 1px solid var(--black-color);
}

.work-right {
  padding-top: 6px;
  width: 49%;
  height: 100%;
}

.work-right__img {
  width: 100%;
  object-fit: cover;
}

.tab-content {
  display: none;
}

.tab-content--active {
  display: flex;
}

/* questions */

.questions {
  padding-top: 60px;
  padding-bottom: 102px;
}

.questions__accordion {
  border-bottom: 1px solid var(--color-grey);
}

.questions__wrapper {
  position: relative;
  padding: 41px 0;
  border-top: 1px solid var(--color-grey);
}

.questions__title {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
}

.ui-accordion-content {
  min-height: auto;
  padding-bottom: 40px;
}

.accordion-icon {
  width: 50px;
  height: 50px;
  display: block;
  position: absolute;
  top: 30px;
  right: 0;
  border-radius: 100%;
  background-image: url("../img/accordon-icon.svg");
  background-repeat: no-repeat;
  background-position: center;
  transition: transform .3s ease-in-out;
  background-color: var(--color-grey-2);
}

.ui-state-active .accordion-icon {
  transform: rotate(45deg);
  transition: transform .3s ease-in-out;
}

.questions__descr {
  line-height: 32px;
  font-size: 16px;
  max-width: 1003px;
  margin: 0;
}

.questions__descr:first-child {
  margin-bottom: 40px;
}

/* footer */

.footer {
  padding-top: 48px;
  padding-bottom: 20px;
  background-color: #a5a4ce;
}

.footer__container {
  display: flex;
  align-items: flex-start;
}

.footer-left {
  width: 34%;
}

.footer__logo {
  display: block;
  margin-bottom: 15px;
}

.footer-right {
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  display: flex;
  width: 66%;
}

.footer__form {
  display: flex;
  flex-direction: column;
}

.footer__list {
  margin-bottom: 113px;
}

.footer__item:not(:last-child) {
  margin-bottom: 16px;
}

.footer__link {
  font-weight: 600;
  font-size: 18px;
  color: black;
}

.footer__social {
  display: flex;
  align-items: center;
  margin-bottom: 5px;
}

.footer__icon {
  width: 60px;
  height: 60px;
  display: inline-block;
  background-repeat: no-repeat;
  background-position: center;
}

.footer__icon:not(:last-child){
  margin-right: 25px;
}

.footer__title {
  margin: 0;
  margin-bottom: 20px;
  font-weight: 400;
  font-size: 48px;
  color: black;
}

.footer-wrapper {
  min-width: 570px;
}

.form__input {
  border: none;
  padding-left: 24px;
  height: 60px;
  margin-bottom: 25px;
  background-color: #a5a4ce;
}

.form__input::placeholder {
  color: black;
}

.form__area {
  border: none;
  padding-left: 24px;
  padding-top: 14px;
  height: 150px;
  resize: none;
  margin-bottom: 32px;
  max-width: 100%;
  background-color: #a5a4ce;
}

.form__area::placeholder {
  color: black;
}

.form__btn {
  margin-right: 17px;
  margin-bottom: 5px;
  padding: 19px 52px;
  color: black;
}

.checkbox {
  position: absolute;
  opacity: 0;
}

.checkbox-text {
  display: flex;
  position: relative;
  align-items: center;
  cursor: pointer;
  display: inline-block;
  padding-left: 18px;
  color: black;
}

.checkbox-text::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 14px;
  height: 14px;
  border: 1px solid var(--color-grey);
}

.checkbox-text::after {
  content: '';
  position: absolute;
  top: 4px;
  left: 4px;
  width: 7px;
  height: 7px;
  opacity: 0;
  background-image: url('../img/checked.svg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px;
}

.checkbox:checked+.checkbox-text::after {
  opacity: 1;
}

.footer__text {
  max-width: 363px;
  line-height: 32px;
  color: black;
}

/*page oferta*/

.oferts {
  text-align: justify;
  margin-left:auto;
  margin-right:auto;
  max-width: 1300px;
}

.page-ofert{
  box-sizing: border-box;
  /*margin-left: 0 auto;*/
}

.oferta-title {
  text-align: center;
}

.oferta-title-two {
  text-align: center;
}

.oferta-title-three {
  text-align: center;
}

.list-namber {
  list-style-type: none;
}

.aesthetic {
  margin-right: 20px;
  margin-left: 20px;
}

.imgstyle {
  max-width: 100%;
  max-height: 100%;
  float: left;
  margin-bottom: 5px ;
  margin-right: 10px;

}

.textpar{
  line-height: 31px;
  margin-right: 15px;
}

.clear {
  clear: both;
}

.bigglovo {
  font-size: 2em;
}
