* {
  box-sizing: border-box;
}
@keyframes spin {
  to {
    transform: rotate(0.3turn);
  }
}
@keyframes bg {
  50% {
    background: #655;
  }
}

.ddd {
  height: 100px;
  width: 100px;
  border-radius: 50%;
  background-color: yellowgreen;
  background-image: linear-gradient(to right, transparent 50%, #655 0);
}
.ddd::before {
  content: "";
  display: block;
  margin-left: 50%;
  height: 100%;
  border-radius: 0 100% 100% 0 / 50%;
  background: #655;
  transform-origin: left;
  transform: rotate(0.8turn);
  animation: spin 3s linear infinite, bg 6s step-end infinite;
}
.eee {
  height: 50px;
  width: 100px;
  position: relative;
  text-align: center;
}
.eee::before {
  z-index: -1;
  content: "";
  background-color: #909090;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transform: skewX(-30deg);
}
body {
  font-family: "PT Serif", serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  color: #5e5e5e;
}
a {
  text-decoration: none;
  display: inline-block;
}
ul,
li {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.container {
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 15px;
}
header {
  font-family: "Roboto", sans-serif;
}
.header__contacts::after {
  content: "";
  clear: both;
  display: block;
}
.header__top {
  background-color: #303030;
}
.header__btn {
  float: right;
  font-size: 1.1rem;
  line-height: 2.5rem;
  color: #1b1b1b;
  background: #ffc222;
  padding: 5px 20px 4px 50px;
  position: relative;
}
.header__btn::before {
  content: "\f0b1";
  font-family: "icomoon";
  position: absolute;
  color: #1b1b1b;
  left: 22px;
}
.header__phone,
.header__mail {
  color: #cbcacb;
  letter-spacing: 0.35px;
  line-height: 45px;
  position: relative;
}
.header__phone {
  padding-left: 20px;
  padding-right: 30px;
}
.header__phone::before {
  content: "\f095";
  font-family: "icomoon";
  position: absolute;
  left: 0;
  color: #ffc222;
}
.header__mail {
  padding-left: 24px;
}
.header__mail::before {
  content: "\f003";
  font-family: "icomoon";
  position: absolute;
  left: 0;
  color: #ffc222;
}
.header__content {
  padding: 34px 0px 23px;
}
.header__content-inner {
  display: flex;
  justify-content: space-between;
}
.menu li {
  display: inline-block;
}
.menu a {
  color: #323232;
  font-size: 1.1rem;
  line-height: 2.6rem;
  border: 1px solid transparent;
  padding: 0px 16px;
  transition: all 0.3s;
}
.menu a:hover {
  border: 1px solid #ffc222;
}
.menu li + li {
  padding-left: 10px;
}

#modal {
  display: none;
}
.slider {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url(../img/fone.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  min-height: 500px;
  font-family: "Roboto", sans-serif;
}

.slider__item-content {
  text-align: center;
  padding-top: 110px;
  max-width: 665px;
  margin: 0 auto;
}
.slider .slider__title {
  text-transform: uppercase;
  font-size: 30px;
  line-height: 36px;
  color: #fff;
  font-weight: 500;
  letter-spacing: 1.5px;
  margin-bottom: 22px;
}
.slider__text {
  font-size: 18px;
  line-height: 24px;
  color: #d3d2d2;
  margin-bottom: 50px;
}

.default-btn {
  color: #fff;
  font-size: 14px;
  line-height: 24px;
  font-weight: 500;
  padding: 8px 22px 8px 20px;
  border: 1px solid #ffc222;
  border-right-width: 20px;
  position: relative;
  outline: none;
}
.default-btn:after {
  font-family: "icomoon";
  content: "\f105";
  color: #fff;
  position: absolute;
  right: -12px;
}
.slider__inner {
  position: relative;
}
.slick-btn {
  position: absolute;
  top: 70%;
  z-index: 3;
  width: 40px;
  height: 40px;
  border: 1px solid #fff;
  font-family: "icomoon";
  background-color: transparent;
  color: #fff;
  background: #ffc222;
  cursor: pointer;
  outline: none;
}
.slick-btn.slick-disabled {
  background-color: transparent;
  cursor: default;
}
.slick-next {
  left: 95%;
}
.slick-next:before {
  content: "\f105";
}
.slick-prev:before {
  content: "\f104";
}
.services {
  padding: 60px 0 30px 0;
}
.services__top,
.news__top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 60px;
}
.services__title-box,
.form__title-box,
.news__title-box {
  max-width: 520px;
  padding-left: 140px;
  position: relative;
}
.services__title-box:before,
.form__title-box:before,
.news__title-box:before {
  content: "";
  position: absolute;
  width: 100px;
  height: 3px;
  background-color: #ffc222;
  left: 0;
  top: 10px;
}
.services__title,
.form__title,
.news__title {
  font-size: 24px;
  font-weight: 500;
  line-height: 24px;
  color: #212020;
  margin-bottom: 10px;
}
.services__text,
.form__text,
.news__text {
  letter-spacing: 0.1px;
}
.services__btn a,
.news__btn a {
  color: #373636;
  line-height: 24px;
  letter-spacing: 0.25px;
  border: 3px solid #e6e6e6;
  padding: 5px 38px;
}
.services__items {
  display: flex;
  justify-content: space-between;
}
.services__item {
  max-width: 360px;
  text-align: center;
  padding: 30px 0px 80px;
  position: relative;
  min-height: 375px;
  background-color: #f9f9f9;
  box-shadow: 3px 6px 24px 3px rgba(91, 88, 88, 0.14);
}
.services__item-title {
  font-size: 18px;
  line-height: 24px;
  color: #212020;
  font-weight: 500;
  font-family: "Roboto", sans-serif;
  padding: 24px 0;
}
.services__item-text {
  letter-spacing: 0.1px;
  padding: 0px 30px 35px;
}
.services__item-btn {
  position: absolute;
  bottom: 40px;
  right: 0;
  left: 0;
}
.services__item-btn .default-btn {
  color: #373636;
}
.services__item-link {
  font-family: "Roboto", sans-serif;
  color: #050505;
  border-bottom: 1px solid #050505;
  margin-right: 60px;
}
.about {
  background: url(../img/about-fon.png);
  background-size: cover;
  background-position: center;
  min-height: 300px;
  background-repeat: no-repeat;
  padding: 25px 0px 45px;
}

.about__inner {
  max-width: 545px;
}
.about__title {
  font-size: 24px;
  line-height: 24px;
  color: #fff;
  font-weight: 500;
  padding: 10px 0px 25px;
}
.about__text {
  margin-bottom: 30px;
  line-height: 24px;
  letter-spacing: 0.1px;
  color: #d3d2d2;
}
.about__btn.default-btn:after {
  color: #000;
}
.form {
  padding-top: 30px;
}
.form__content {
  position: relative;
}
.form__inner {
  padding-bottom: 40px;
  min-height: 460px;
  background-image: url(../img/woman.png);
  background-repeat: no-repeat;
  background-position: bottom right;
}
.form__box {
  max-width: 850px;
  padding-top: 45px;
}
.form__box-inner {
  display: flex;
  justify-content: space-between;
}
.form__box-left {
  max-width: 260px;
  width: 100%;
}
.form__box-right {
  max-width: 560px;
  width: 100%;
}
.form__box-inner label,
.form__box-inner input,
.form__box-inner textarea {
  display: block;
  width: 100%;
}
.form__box-inner .jq-selectbox__dropdown {
  box-sizing: border-box;
  width: 100%;
  margin: 2px 0 0;
  padding: 0;
  border: 1px solid #e6e6e6;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  font: 14px/18px Arial, sans-serif;
}
.form__box-inner .jq-selectbox.jqselect {
  display: block;
  width: 100%;
}
.form__box-inner .jq-selectbox__select {
  height: 40px;
  border: 1px solid #e6e6e6;
  padding-left: 17px;
}
.form__box-inner .jq-selectbox__trigger-arrow:before {
  font-family: "icomoon";
  content: "\f105";
  color: #000;
  position: absolute;
  right: 16px;
  top: 0px;
  transform: rotate(90deg);
}
.form__box-inner .jq-selectbox__dropdown {
  width: 100%;
  margin: 2px 0 0;
  padding-left: 0;
  border: 1px solid #e6e6e6;
  background: #fff;
}
.form__box-inner .jq-selectbox li {
  min-height: 18px;
  padding: 5px 17px 6px;
  color: #231f20;
}
.form__box-inner .jq-selectbox li.selected {
  background-color: #a3abb1;
  color: #fff;
}
.form__box-inner .jq-selectbox li:hover {
  background-color: #08c;
  color: #fff;
}
.form__box-inner .jq-selectbox li.disabled {
  color: #aaa;
}
.form__box-inner .jq-selectbox li.disabled:hover {
  background: none;
}
.form__box-inner .jq-selectbox li.optgroup {
  font-weight: bold;
}
.form__box-inner .jq-selectbox li.optgroup:hover {
  background: none;
  color: #231f20;
  cursor: default;
}
.form__box-inner .jq-selectbox li.option {
  padding-left: 25px;
}
.form__box-inner label {
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  line-height: 36px;
  font-weight: 400;
}
.form__box-inner input {
  margin-bottom: 8px;
  outline: none;
  height: 40px;
  border: 1px solid #e6e6e6;
  padding: 0px 10px;
}
.form__box-inner select {
  outline: none;
  padding-left: 17px;
}

.form__box-inner textarea {
  outline: none;
  border: 1px solid #e6e6e6;
  padding: 10px;
  height: 210px;
  resize: none;
}
.form__box-inner button {
  background-color: transparent;
  color: #282828;
  margin-top: 20px;
  float: right;
}
.form__box-inner button:after {
  color: #282828;
  position: absolute;
  top: 6px;
}
.advantages {
  padding: 50px 0 40px;
  background-image: url(../img/advantages.png);
  background-repeat: no-repeat;
  background-position: center;
  min-height: 285px;
  background-size: cover;
}
.advantages__inner {
  color: #fff;
  display: flex;
  justify-content: space-between;
  text-align: center;
}
.advantages-item {
  max-width: 360px;
  padding: 0px 20px;
}
.advantages__title {
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  line-height: 24px;
  font-weight: 400;
  padding: 60px 0 15px;
  position: relative;
}
.advantages__text {
  font-size: 14px;
  line-height: 24px;
  font-weight: 400;
  letter-spacing: 0.01em;
  color: #d3d2d2;
}
.advantages__title:before {
  position: absolute;
  content: "";
  width: 40px;
  height: 40px;
  border: 2px solid #ffc222;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
.advantages__title:after {
  position: absolute;
  font-family: "icomoon";
  content: "\f00c";
  top: 10px;
  font-size: 14px;
  left: 50%;
  transform: translateX(-50%);
}
.news {
  padding: 55px 0 110px;
  background-color: #f9f9f9;
}
.news__inner {
  display: flex;
  justify-content: space-between;
}
.news__slider {
  font-family: "Roboto", sans-serif;
  position: relative;
  max-width: 555px;
  width: 100%;
  background-color: #fff;
  box-shadow: 2px 4px 15px 1px;
  padding: 60px 35px 50px 70px;
}
.news__slider::before {
  font-family: "icomoon";
  font-size: 16px;
  content: "\f10e";
  position: absolute;
  background-color: #ffc222;
  width: 65px;
  height: 30px;
  top: 0;
  left: 75px;
  text-align: center;
  line-height: 30px;
  color: #ffffff;
}
.news__blog {
  max-width: 260px;
  width: 100%;
}
.news__images {
  position: relative;
}
.news__date {
  position: absolute;
  background-color: #ffc222;
  width: 50px;
  height: 55px;
  color: #fff;
  text-align: center;
  padding-top: 30px;
  font-size: 14px;
  line-height: 18px;
  font-weight: 700;
  color: #f9f9f9;
  top: 0;
  left: 10px;
}
.news__blog-title {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 18px;
  letter-spacing: 0.05em;
  color: #242424;
  padding: 12px 0;
}
.news__blog-text {
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  line-height: 18px;
  font-weight: 400;
  letter-spacing: 0.01em;
  color: #5e5e5e;
}
.news__slider-title {
  font-size: 18px;
  line-height: 24px;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: #242424;
  margin-bottom: 15px;
}
.news__slider-text {
  font-size: 14px;
  line-height: 18px;
  font-weight: 400;
  letter-spacing: 0.01em;
  color: #5e5e5e;
  margin-bottom: 30px;
}
.news__slider-author {
  font-size: 14px;
  line-height: 18px;
  font-weight: 400;
  letter-spacing: 0.01em;
  color: #212020;
}
.news__slider-inner .slick-btn {
  top: auto;
  bottom: -110px;
}

.news__slider-inner .slick-prev {
  right: 30px;
  left: auto;
}
.news__slider-inner .slick-disabled {
  background-color: #f9f9f9;
  border: 1px solid #dadada;
  color: #dadada;
}
.footer__content {
  background-color: #595959;
  padding: 20px 0 35px;
  font-family: "Roboto", sans-serif;
}
.footer__title {
  font-size: 16px;
  line-height: 36px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #ffffff;
}
.footer__text {
  font-size: 14px;
  line-height: 18px;
  font-weight: 400;
  color: #d3d2d2;
  max-width: 344px;
  margin-bottom: 20px;
}
.footer__inner {
  display: flex;
  justify-content: space-between;
}
.footer__inner .header__btn {
  float: none;
  display: inline-block;
  margin-bottom: 10px;
}
.footer__map {
  padding: 10px;
  max-width: 630px;
  width: 100%;
}
.footer__map iframe {
  width: 100%;
}
.footer__list li {
  font-size: 16px;
  line-height: 36px;
  font-weight: 400;
  padding-left: 35px;
  position: relative;
}
.footer__list a {
  font-family: "Roboto", sans-serif;
  color: #ffffff;
}
.footer__list a:before {
  position: absolute;
  content: "\f003";
  left: 0;
  color: #e3b929;
  font-family: "icomoon";
}
.footer__list .footer__phone:before {
  content: "\f095";
  left: 3px;
}
.footer__list .footer__adress:before {
  content: "\f041";
  left: 3px;
}
.footer__copy {
  font-family: "Roboto", sans-serif;
  font-size: 12px;
  line-height: 24px;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: #909090;
  background-color: #303030;
  text-align: center;
}
#modal {
  width: 300px;
}
#modal input {
  width: 100%;
  display: block;
  margin-bottom: 20px;
  outline: none;
  height: 40px;
  border: 1px solid #e6e6e6;
  padding: 0px 10px;
}
#modal input[type="submit"] {
  background-color: #ffc222;
  border: none;
}
.header__btn-menu {
  display: none;
}
