@font-face {
  font-family: "Montserrat";
  src: url("./fonts/Montserrat-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Montserrat";
  src: url("./fonts/Montserrat-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Montserrat";
  src: url("./fonts/Montserrat-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "Montserrat";
  src: url("./fonts/Montserrat-ExtraBold.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
}
@font-face {
  font-family: "Gilroy";
  src: url("./fonts/Gilroy-ExtraBold.otf") format("opentype");
}
.swiper-wrapper, .swiper-slide{
  height: auto;
}
ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

a {
  text-decoration: none;
  color: inherit;
}

p {
  line-height: 1.2;
}

.change-color:hover {
  animation: linear 1s;
}

.container {
  max-width: 1200px;
  padding: 0 15px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
}

@keyframes linear {
  0% {
    background-image: linear-gradient(to right, #fabf40 0%, #ff8226 100%);
  }
  100% {
    background-image: linear-gradient(to right, #ff8226 0%, #fabf40 100%);
  }
}
@keyframes wobblehorizontal {
  16.65% {
    transform: translateX(8px);
  }
  33.3% {
    transform: translateX(-6px);
  }
  49.95% {
    transform: translateX(4px);
  }
  66.6% {
    transform: translateX(-2px);
  }
  83.25% {
    transform: translateX(1px);
  }
  100% {
    transform: translateX(0);
  }
}
.btn {
  display: inline-block;
  color: #3a3a3b;
  font-size: 24px;
  font-family: "Gilroy";
}

.more {
  border-bottom: 3px dotted #3a3a3b;
}

.gold {
  position: relative;
  box-shadow: 8px 13px 37px 5px rgba(252, 142, 44, 0.27);
  background-image: linear-gradient(to right, #fabf40 0%, #ff8226 100%);
  padding: 27px 54px;
  color: #ffffff;
}
.gold span {
  z-index: 2;
  position: relative;
}
.gold:before {
  transition: 0.4s;
  z-index: 1;
  opacity: 0;
  background-image: linear-gradient(to left, #fabf40 0%, #ff8226 100%);
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.gold:hover:before {
  opacity: 1;
}

.col-6 {
  width: 50%;
}

.col-12 {
  width: 100%;
}

body {
  line-height: 1.2;
  margin: 0;
  font-family: "Montserrat", sans-serif;
  background-color: #f6f6f6;
  color: #232323;
}

@keyframes show {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
html{
  margin: 0!important;
}
header {
  z-index: 100;
  position: absolute;
  width: 100%;
  box-shadow: 0 10px 54px rgba(86, 86, 86, 0.11);
  padding: 20px 0;
  background: #f6f6f6;
}
header.fixed {
  animation: show 0.3s forwards;
  opacity: 0;
  position: fixed;
  z-index: 1000;
}
header .container {
  justify-content: space-between;
}
header .logo {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header .logo li:first-child a {
  color: #244681;
  font-family: "Gilroy";
  font-size: 32px;
}
header .logo li:last-child a {
  color: #232323;
  font-family: Montserrat;
  font-size: 12px;
}
header .logo span {
  height: 34px;
  background-color: #e5ecf0;
  width: 2px;
  display: inline-block;
  margin: 0 16px;
}
header .navigation {
  position: relative;
  display: flex;
  font-family: "Montserrat";
  font-weight: 600;
  font-size: 14px;
  align-items: center;
}
header .navigation span:not(.icon) {
  height: 34px;
  background-color: #e5ecf0;
  width: 2px;
  content: "";
  display: inline-block;
  margin: 0 30px;
}
header .navigation .icon {
  cursor: pointer;
  margin-right: 10px;
  display: flex;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 34px;
  height: 34px;
  box-shadow: 3px 4px 15px 2px rgba(12, 138, 210, 0.15);
  background-image: linear-gradient(to right, #84aded 0%, #6483d3 100%);
}
header .navigation li {
  display: flex;
  align-items: center;
}
header .navigation li:nth-of-type(1) a {
  color: #314d9b;
  border-bottom: 3px dotted #314d9b;
}
header .navigation li:nth-of-type(3) .icon {
  box-shadow: 2px 3px 18px 2px rgba(252, 142, 44, 0.15);
  background-image: linear-gradient(to right, #fabf40 0%, #ff8226 100%);
  color: #ffffff;
  font-family: "Montserrat";
  font-weight: 700;
  font-size: 20px;
}
header .navigation li:nth-of-type(3) a {
  color: #d9a83f;
  border-bottom: 3px dotted #d9a83f;
}
header .navigation li:last-of-type,
header .navigation li:nth-of-type(5) {
  color: #232323;
  font-size: 12px;
  font-weight: 400;
}
header .navigation li:last-of-type a,
header .navigation li:nth-of-type(5) a {
  color: #244681;
  font-weight: 900;
  font-size: 20px;
}
header .mobile {
  display: none;
}

section {
  background-image: url(/image/icon/line_spec.png);
  background-repeat: repeat-y;
  background-position: center;
  background-size: auto auto;
  padding: 30px 0;
}
section:nth-child(2n+1) {
  background-color: #fbfbfb;
}

.home {
  position: relative;
  overflow: hidden;
  display: flex;
  min-height: 1000px;
  align-items: center;
}
.home .container {
  padding-top: 80px;
  padding-bottom: 80px;
}
.home .title {
  color: #244681;
  font-family: "Gilroy";
  font-size: 71px;
  font-weight: 800;
  text-transform: uppercase;
  padding-bottom: 15px;
}
.home .price {
  color: #6484d3;
  font-size: 25px;
  font-weight: 900;
  padding-bottom: 30px;
}
.home .price span {
  font-size: 56px;
  color: #ff8327;
}
.home .description {
  color: #3a3a3b;
  font-size: 28px;
  font-weight: 500;
  padding-bottom: 50px;
}
.home .links {
  display: flex;
  align-items: center;
}
.home .links a:first-child {
  margin-right: 50px;
}
.home .show {
  position: relative;
}
.home .bg {
  width: 80%;
  max-width: 650px;
  height: 80%;
  max-height: 650px;
  box-shadow: 8px 13px 37px 5px rgba(254, 148, 45, 0.27);
  background-image: linear-gradient(to right, #fabf40 0%, #ff8226 100%);
  right: -25%;
  top: 50%;
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  transform: translate(0, -50%);
}
.home .image {
  position: absolute;
  left: 300%;
  width: 50vw;
  max-width: 960px;
}
.home .image img {
  max-width: 960px;
  width: 50vw;
}
.home .info {
  opacity: 0;
  cursor: pointer;
  position: absolute;
  left: 13%;
  top: 34%;
}
.home .info:hover .text {
  display: block;
}
.home .info:nth-of-type(3) {
  border-top-color: transparent;
}
.home .info:nth-of-type(3) {
  left: 25%;
  top: 6%;
}
.home .info:nth-of-type(3) .text {
  left: -145%;
  top: 140%;
}
.home .info:nth-of-type(3) .text:after {
  top: -8px;
  left: 30%;
}
.home .info:nth-of-type(4) {
  left: 40%;
  top: 72%;
}
.home .info:nth-of-type(4) .text {
  left: -145%;
  top: -200%;
}
.home .info:nth-of-type(4) .text:after {
  bottom: -7%;
  left: 35%;
  border-top-color: transparent;
}
.home .info:nth-of-type(5) {
  left: 65%;
  top: 26%;
}
.home .info:nth-of-type(5) .text {
  left: -195%;
  top: 140%;
}
.home .info:nth-of-type(5) .text:after {
  bottom: 77%;
  left: 40%;
}
.home .info:nth-of-type(6) {
  left: 86%;
  top: 50%;
}
.home .info:nth-of-type(6) .text {
  left: -368%;
  top: 135%;
}
.home .info:nth-of-type(6) .text:after {
  top: -8px;
  left: 72%;
}
.home .info:nth-of-type(2) .text:after {
  bottom: -8%;
  left: 10%;
}
.home .info .text:after {
  transform: rotateZ(65deg);
  content: "";
  border: 15px solid #f6f6f6;
  position: absolute;

}

.home .info .icon {
  width: 68px;
  height: 68px;
  background-image: linear-gradient(to right, #fabf40 0%, #ff8226 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  color: #ffffff;
  font-family: "Gilroy";
  font-size: 40px;
}
.home .info .text {
  z-index: 2;
  color: #282828;
  font-size: 16px;
  font-weight: 500;
  position: absolute;
  width: 290px;
  background-color: #f6f6f6;
  padding: 20px;
  top: -200%;
  left: -15%;
  display: none;
}
.about .container {
  padding-top: 60px;
  padding-bottom: 100px;
}
.about .title {
  font-family: "Gilroy";
  font-size: 29px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #232323;
}
.about p {
  font-family: "Montserrat";
  font-weight: 600;
  font-size: 17px;
}
.about p:first-of-type {
  margin-top: 0;
  font-family: "Gilroy";
  font-size: 43px;
  text-transform: uppercase;
  letter-spacing: 2.25px;
  color: #244681;
  width: 80%;
}
.about p b {
  font-size: 19px;
  font-weight: 700;
}
.about .doc {
  display: flex;
}
.about .doc a {
  flex: 1 1 25%;
  display: block;
  margin: 0 5px;
}
.about .doc img {
  box-sizing: border-box;
  width: 100%;
  cursor: pointer;
  margin: 5px;
  border: 20px solid transparent;
  border-image-slice: 16 17 16 13;
  border-image-width: 20px 20px 20px 20px;
  border-image-outset: 0px 0px 0px 0px;
  border-image-repeat: stretch stretch;
  border-image-source: url(/image/icon/border.png);
}
.about table {
  margin-left: auto;
  border-collapse: collapse;
  margin-top: 30px;
}
.about table td {
  width: 225px;
  height: 225px;
  border: 3px solid #e1e1e1;
}
.about table td img {
  width: 100%;
  height: 100%;
}
.about table span {
  display: block;
  text-align: center;
}
.about table span.number {
  padding: 0 50px;
  background-image: linear-gradient(to right, #fabf40 0%, #ff8226 100%);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  color: #ff8327;
  font-family: "Gilroy";
  font-size: 48px;
  font-weight: 800;
  letter-spacing: 2.5px;
}
.about table span.title {
  padding: 0 50px 15px;
  font-family: "Gilroy";
  font-size: 17px;
}
.about table span.description {
  padding: 0 50px 15px;
  font-size: 11px;
  font-weight: 500;
}
.about .leaders .title {
  padding-left: 13%;
  text-transform: none;
  padding-top: 30px;
  color: #244681;
  font-family: "Gilroy";
  font-size: 17px;
  padding-bottom: 20px;
}
.about .leaders .title:before {
  width: 48px;
  height: 3px;
  background-color: #232323;
  opacity: 0.2;
  content: "";
  display: inline-block;
  position: relative;
  bottom: 5px;
}
.about .leaders .items {
  flex-wrap: wrap;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 13%;
}
.about .leaders .items .item {
  perspective: 900px;
  display: flex;
  align-items: center;
  height: 132px;
  background: #fbfbfb;
  position: relative;
  margin: 0 10px;
}
.about .leaders .items .item:hover img {
  transform: rotateY(180deg);
}
.about .leaders .items .item:hover p {
  transform: rotateY(0deg);
}
.about .leaders .items .item img {
  transition: 0.7s;
  transform-style: preserve-3d;
  margin: 0;
  max-height: 132px;
  height: auto;
  width: auto;
}

.services {
  padding: 70px 0 120px;
}
.services .title {
  width: 45%;
  color: #244681;
  font-family: "Gilroy";
  font-size: 43px;
  letter-spacing: 1.8px;
  padding-bottom: 100px;
}
.services .title span {
  color: #2e2e2e;
  letter-spacing: 2.25px;
  text-transform: uppercase;
}
.services .items {
  padding: 0 30px;
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.services .item {
  position: relative;
  width: 345px;
  box-sizing: border-box;
  padding: 30px;
  box-shadow: 4px 7px 20px rgba(80, 80, 80, 0.15);
  background-color: #fafafa;
}
.services .item:hover img {
  animation-name: wobblehorizontal;
  animation-duration: 1s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: 1;
}
.services .item .title {
  padding-bottom: 40px;
  color: #3c3b3b;
  font-family: "Gilroy";
  font-size: 34px;
  letter-spacing: 1.8px;
}
.services .item .title .icon {
  position: absolute;
  right: 20px;
  cursor: pointer;
  display: flex;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 35px;
  height: 35px;
  box-shadow: 3px 4px 15px 2px rgba(12, 138, 210, 0.15);
  background-image: linear-gradient(to right, #84aded 0%, #6483d3 100%);
}
.services .item ul {
  color: #232323;
  font-family: Montserrat;
  font-size: 14px;
  font-weight: 700;
  padding-bottom: 50px;
}
.services .item a {
  display: inline-block;
  color: #ffffff;
  font-family: "Gilroy";
  font-size: 20px;
  letter-spacing: 1.05px;
  box-shadow: 8px 13px 37px 5px rgba(202, 141, 46, 0.27);
  background-image: linear-gradient(to right, #fabf40 0%, #ff8226 100%);
  width: 287px;
  line-height: 63px;
  text-align: center;
  position: relative;
}
.services .item a span {
  z-index: 2;
  position: relative;
}
.services .item a:before {
  transition: 0.4s;
  z-index: 1;
  opacity: 0;
  background-image: linear-gradient(to left, #fabf40 0%, #ff8226 100%);
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.services .item a:hover:before {
  opacity: 1;
}

.choice {
  padding-top: 60px;
  padding-bottom: 80px;
}
.choice .title {
  width: 100%;
  color: #2e2e2e;
  font-family: "Gilroy";
  font-size: 43px;
  text-transform: uppercase;
  letter-spacing: 2.3px;
  padding-bottom: 60px;
}
.choice .title span {
  color: #244681;
}
.choice .item {
  display: flex;
  width: 100%;
}
.choice .item .images {
  padding-right: 70px;
  box-sizing: border-box;
}
.choice .item .images .image {
  padding-bottom: 20px;
}
.choice .item .images .image img {
  width: 100%;
}
.choice .item .images .items {
  display: flex;
  justify-content: space-between;
}
.choice .item .images .items img {
  height: 100px;
  width: 100px;
}
.choice .item .description .title {
  width: 100%;
  letter-spacing: 1.5px;
  font-size: 34px;
  padding-bottom: 20px;
}
.choice .item .description .title span {
  color: #3a3a3b;
  font-family: "Gilroy";
  font-size: 29px;
}
.choice .item .description .subtitle {
  color: #3a3a3b;
  font-family: Montserrat;
  font-size: 14px;
  font-weight: 700;
}
.choice .item .description .subtitle:after {
  margin: 20px 0;
  content: "";
  display: block;
  width: 589px;
  height: 2px;
  background-color: #e5ecf0;
}
.choice .item .description table {
  line-height: 26px;
  margin-bottom: 30px;
}
.choice .item .description table tr td:first-child {
  vertical-align: top;
  padding-right: 15px;
  color: #3a3a3b;
  font-size: 13px;
  font-weight: 500;
}
.choice .item .description table tr td:last-child {
  font-size: 13px;
  font-weight: 700;
}
.choice .item .description .price {
  position: relative;
  padding-top: 15px;
  display: flex;
}
.choice .item .description .price:before {
  top: 0;
  position: absolute;
  content: "";
  display: inline-block;
  width: 589px;
  height: 2px;
  background-color: #e5ecf0;
}
.choice .item .description .price > div {
  padding-top: 10px;
  width: 50%;
}
.choice .item .description .price .rent {
  border-right: 2px solid #e5ecf0;
  font-weight: 700;
}
.choice .item .description .price .rent span {
  color: #ff8427;
  font-size: 34px;
}
.choice .item .description .price .rent a {
  position: relative;
  margin-top: 30px;
  display: inline-block;
  width: 262px;
  line-height: 63px;
  box-shadow: 8px 13px 37px 5px rgba(202, 141, 46, 0.27);
  background-image: linear-gradient(to right, #fabf40 0%, #ff8226 100%);
  text-align: center;
}
.choice .item .description .price .rent a span {
  font-family: "Gilroy";
  font-size: 19px;
  letter-spacing: 1.25px;
  color: #ffffff;
  z-index: 2;
  position: relative;
}
.choice .item .description .price .rent a:before {
  transition: 0.4s;
  z-index: 1;
  opacity: 0;
  background-image: linear-gradient(to left, #fabf40 0%, #ff8226 100%);
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.choice .item .description .price .rent a:hover:before {
  opacity: 1;
}
.choice .item .description .price .buy {
  text-align: right;
  font-weight: 700;
}
.choice .item .description .price .buy span {
  color: #ff8427;
  font-size: 34px;
}
.choice .item .description .price .buy a {
  position: relative;
  margin-top: 30px;
  display: inline-block;
  width: 262px;
  line-height: 63px;
  box-shadow: 8px 13px 37px 5px rgba(202, 141, 46, 0.27);
  background-image: linear-gradient(to right, #84aded 0%, #6483d3 100%);
  color: #ffffff;
  font-family: "Gilroy";
  font-size: 19px;
  letter-spacing: 1.25px;
  text-align: center;
}
.choice .item .description .price .buy a span {
  font-family: "Gilroy";
  font-size: 19px;
  letter-spacing: 1.25px;
  color: #ffffff;
  z-index: 2;
  position: relative;
}
.choice .item .description .price .buy a:before {
  transition: 0.4s;
  z-index: 1;
  opacity: 0;
  background-image: linear-gradient(to left, #84aded 0%, #6483d3 100%);
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.choice .item .description .price .buy a:hover:before {
  opacity: 1;
}

.options {
  padding: 100px 0;
}
.options .title {
  color: #3a3a3b;
  font-family: "Gilroy";
  font-size: 43px;
  text-transform: uppercase;
  letter-spacing: 2.25px;
}
.options .title span {
  color: #244681;
}
.options .info {
  color: #3a3a3b;
  font-family: "Montserrat";
  font-size: 17px;
  font-weight: 600;
  line-height: 19.99px;
  padding-bottom: 70px;
}
.options .container.slider {
  box-shadow: 3px 4px 20px 8px rgba(14, 14, 14, 0.09);
  background-color: #f7f7f7;
  padding: 50px 0 30px 30px;
  box-sizing: border-box;
}
.options .items {
  box-shadow: 3px 4px 20px 8px rgba(14, 14, 14, 0.09);
  background-color: #f7f7f7;
}
.options .swiper-container {
  width: 600px;
  margin: auto;
  height: auto;
  padding-top: 40px;
}

.options .swiper-slide img {
  max-width: 100%;
  max-height: 450px;
}
.options .swiper-pagination-fraction {
  top: 0px;
  text-align: right;
  position: absolute;
  bottom: initial;
}
.options .swiper-pagination-current {
  font-family: "Gilroy";
  font-size: 34px;
}
.options .swiper-pagination-total {
  color: #3a3a3b;
  font-size: 20px;
  font-weight: 300;
}
.options .block-choice-slide {
  width: 34%;
  padding-top: 10px;
}
.options .block-choice-slide ul {
  border-right: 2px solid #e5ecf0;
  display: flex;
  flex-direction: column;
  position: relative;
}
.options .options-slider.active {
  display: block !important;
}
.options .options-prev,
.options .options-next {
  bottom: 0;
  left: 0;
  top: auto;
  background: #f7f7f7 url(/image/icon/chefron.png) 5px 0px no-repeat;
  width: 77px;
  height: 58px;
}
.options .options-next {
  left: 80px;
}
.options .options-next{
  transform: rotateY(180deg);
    -ms-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
}
.options .choice-link {
  margin: 30px auto 30px 20px;
  color: #5f5f5f;
  font-size: 19px;
  border-bottom: 1px solid #5f5f5f;
  letter-spacing: 1px;
  display: inline-block;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.options .choice-link:hover {
  margin-left: 60px;
}
.options .choice-link.active {
  margin-left: 60px;
  font-family: "Gilroy";
  border-bottom: 1px solid #667cb5;
  text-transform: uppercase;
  color: #667cb5;
  letter-spacing: 1px;
}
.options .choice-link.active:after {
  position: absolute;
  content: "";
  width: 2px;
  height: 48px;
  background-color: #626262;
  right: -2px;
  margin-top: -10px;
}

.extra {
  padding: 70px 0;
}
.extra .title {
  font-size: 43px;
  letter-spacing: 2.25px;
  font-family: "Gilroy";
  text-transform: uppercase;
  color: #3a3a3b;
  padding-bottom: 50px;
}
.extra .title span:last-child {
  font-size: 29px;
}
.extra .items {
  padding: 20px;
  display: flex;
  justify-content: space-between;
}
.extra .items .item {
  width: 20%;
  position: relative;
}
.extra .items .image {
  overflow: hidden;
  position: relative;
  padding: 15px;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  width: 220px;
  height: 220px;
  box-shadow: 8px 13px 37px 5px rgba(12, 138, 210, 0.27), inset 0 0 35px rgba(12, 138, 210, 0.27);
  background: transparent;
  margin-bottom: 40px;
}
.extra .items .image a {
  padding: 15px;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  width: 220px;
  height: 220px;
  position: absolute;
  width: 100%;
  height: 100%;
}
.extra .items .image svg {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1;
}
.extra .items .image svg:hover + img {
  transform: scale(1.5);
}
.extra .items .image img {
  width: 100%;
  height: 100%;
  position: relative;
  border-radius: 50%;
  transition: transform 0.5s;
}
.extra .items .icon {
  position: absolute;
  right: 0;
  top: 150px;
  width: 69px;
  height: 68px;
  box-shadow: 8px 13px 37px 5px rgba(202, 141, 46, 0.27);
  background-image: linear-gradient(to right, #fabf40 0%, #ff8226 100%);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
}
.extra .items .title {
  padding-bottom: 10px;
  color: #3a3a3b;
  font-family: "Gilroy";
  font-size: 19px;
  letter-spacing: 1.25px;
  text-transform: initial;
}
.extra .items .price {
  color: #3a3a3b;
  font-size: 23px;
  font-weight: 700;
}
.extra .items .price span {
  color: #ec2c31;
  letter-spacing: 1.68px;
  font-size: 29px;
}

.question {
  padding-top: 130px;
  padding-bottom: 120px;
}
.question .title {
  color: #264781;
  font-family: "Gilroy";
  text-transform: uppercase;
  font-size: 48px;
  line-height: 1;
  letter-spacing: 1.25px;
  padding-bottom: 40px;
}
.question .title span {
  text-transform: initial;
  font-size: 38px;
  display: block;
}
.question .subtitle {
  color: #3a3a3b;
  font-size: 23px;
  font-weight: 500;
  padding-bottom: 45px;
}
.question a {
  display: flex;
  align-items: center;
  color: #232e54;
  font-family: "Montserrat";
  font-weight: 800;
  font-size: 20px;
}
.question a .icon {
  margin-right: 10px;
  width: 34px;
  height: 34px;
  box-shadow: 4px 7px 23px 3px rgba(12, 138, 210, 0.15);
  background-image: linear-gradient(to right, #84aded 0%, #6483d3 100%);
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}
.question form .item {
  position: relative;
}
.question form .item .icon {
  position: absolute;
  margin-top: 7px;
}
.question input {
  border: none;
  background: transparent;
  outline: none;
  width: 310px;
  border-bottom: 3px solid #232e54;
  color: #3a3a3b;
  font-size: 19px;
  font-weight: 500;
  padding: 5px;
  padding-left: 25px;
  margin-bottom: 50px;
  font-family: Montserrat;
}
.question textarea {
  width: 499px;
  border: none;
  background: transparent;
  outline: none;
  border-bottom: 3px solid #232e54;
  resize: none;
  color: #3a3a3b;
  font-size: 19px;
  font-weight: 500;
  padding: 5px;
  padding-left: 25px;
  margin-bottom: 35px;
  font-family: Montserrat;
  height: 40px;
  line-height: 1.4;
}
.question button {
  position: relative;
  width: 337px;
  line-height: 63px;
  box-shadow: 8px 13px 37px 5px rgba(202, 141, 46, 0.27);
  background-image: linear-gradient(to right, #fabf40 0%, #ff8226 100%);
  border: none;
  outline: none;
  color: #ffffff;
  font-family: "Gilroy";
  font-size: 19px;
  letter-spacing: 1.25px;
}
.question button span {
  font-family: "Gilroy";
  font-size: 19px;
  letter-spacing: 1.25px;
  color: #ffffff;
  z-index: 2;
  position: relative;
}
.question button:before {
  transition: 0.4s;
  z-index: 1;
  opacity: 0;
  background-image: linear-gradient(to left, #fabf40 0%, #ff8226 100%);
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.question button:hover:before {
  opacity: 1;
}

.features {
  padding-top: 110px;
}
.features .container {
  justify-content: space-between;
}
.features .content {
  display: inline-block;
  width: 60%;
}
.features .content .title {
  text-transform: uppercase;
  font-family: "Gilroy";
  line-height: 47.61px;
  color: #2e2e2e;
  font-size: 43px;
  letter-spacing: 2.3px;
}
.features .content .title span {
  color: #244681;
  display: block;
  text-transform: initial;
}
.features .content .description {
  color: #232323;
  font-size: 17px;
  font-weight: 600;
}
.features .content .description b {
  font-size: 23px;
}
.features .item {
  display: inline-block;
  width: 346px;
  border: 2px solid #f5f5f5;
  background-color: #f9f9f9;
  margin-bottom: 60px;
}
.features .item:hover img {
  animation-name: wobblehorizontal;
  animation-duration: 1s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: 1;
}
.features .item .head {
  position: relative;
  line-height: 1;
  background-color: #f3f3f3;
  color: #dedede;
  font-weight: 900;
  font-size: 86px;
  letter-spacing: 4px;
  padding: 40px 25px 0;
  overflow: hidden;
}
.features .item .head span {
  position: relative;
  top: 20px;
}
.features .item .head .icon {
  position: absolute;
  right: 0;
  top: 0;
}
.features .item .title {
  padding: 45px 25px 27px;
  color: #244681;
  font-family: "Gilroy";
  font-size: 25px;
  font-weight: 800;
  letter-spacing: 1.3px;
  text-transform: initial;
}
.features .item .description {
  padding: 0 25px 60px;
  color: #232323;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.8px;
}

.clients {
  padding-top: 80px;
  padding-bottom: 150px;
}
.clients .title {
  width: 100%;
  text-align: center;
  color: #343434;
  text-transform: uppercase;
  font-size: 29px;
  font-weight: 600;
  letter-spacing: 1.5px;
  padding-bottom: 80px;
}
.clients .title span {
  display: block;
  color: #244681;
  font-family: "Gilroy";
  font-size: 43px;
  letter-spacing: 2.25px;
}
.clients .clients-slider {
  width: 1200px;
}
.clients .clients-slider .clients-prev,
.clients .clients-slider .clients-next {
  transform: rotateY(180deg);
  background: url(/image/icon/chefron2.png) no-repeat;
  width: 100px;
  height: 97px;
  left: 0;
}
.clients .clients-slider .clients-next {
  transform: rotateY(360deg);
  right: 0;
  left: auto;
}
.clients .clients-slider .swiper-slide {
  display: flex;
}

.clients .clients-slider .swiper-slide .image {
  border: 20px solid transparent;
  border-image-slice: 16 17 16 13;
  border-image-width: 20px 20px 20px 20px;
  border-image-outset: 0px 0px 0px 0px;
  border-image-repeat: stretch stretch;
  border-image-source: url(/image/icon/border.png);
  width: 35%;
}
.clients .clients-slider .swiper-slide .image img {
  width: 100%;
  max-height: 100%;
}
.clients .clients-slider .swiper-slide .content {
  width: 65%;
  box-sizing: border-box;
  padding: 0 30px 0 15px;
}
.clients .clients-slider .swiper-slide .content .title {
  background-image: linear-gradient(to right, #fabf40 0%, #ff8226 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #f7f7f7;
  font-family: "Gilroy";
  font-size: 38px;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.clients .clients-slider .swiper-slide .content .description {
  color: #2c2c2c;
  font-family: "Montserrat";
  font-size: 15px;
  font-weight: 600;
  line-height: 22.85px;
}
.clients .clients-slider .swiper-slide .content .description p:nth-last-child(-n+2) {
  color: #383838;
  font-weight: 500;
}
.project {
  padding-top: 80px;
  padding-bottom: 150px;
}
.project .title {
  width: 100%;
  text-align: center;
  color: #343434;
  text-transform: uppercase;
  font-size: 29px;
  font-weight: 600;
  letter-spacing: 1.5px;
  padding-bottom: 80px;
}
.project .title span {
  display: block;
  color: #244681;
  font-family: "Gilroy";
  font-size: 43px;
  letter-spacing: 2.25px;
}
.project .clients-child-slider .swiper-pagination-fraction {
  top: 28px;
  text-align: right;
  left: -30px;
}
.project .swiper-container{
/*  max-height: 600px;*/
}
.project .clients-child-slider .swiper-wrapper {
  position: relative;
}
.project .clients-child-slider .swiper-slide{
  display: flex;
  justify-content: center;
  align-items: center;
  max-height: 600px;
  height: 100%;
}
.project .clients-child-slider .swiper-slide img {
  max-height: 100%;
  max-width: 100%;
  width: auto;
  height: auto;
}
.project .swiper-container-autoheight, .project .swiper-container-autoheight .swiper-slide{
  max-height: 600px;
}
.project .clients-child-slider .swiper-pagination-current {
  font-family: "Gilroy";
  font-size: 30px;
}
.project .clients-child-slider .swiper-pagination-total {
  color: #3a3a3b;
  font-family: "Montserrat";
  font-size: 20px;
}
.project .clients-child-slider .clients-child-prev,
.project .clients-child-slider .clients-child-next {
  bottom: 0;
  right: 80px;
  top: auto;
  background: url(/image/icon/chefron.png) 5px 0px no-repeat;
  background-color: #f7f7f7;
  width: 77px;
  height: 58px;
  left: initial;
}
.project .clients-child-slider .clients-child-next {
  right: 0;
  -ms-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  transform: rotateY(180deg);
}
.contacts .container {
  padding-top: 60px;
  padding-bottom: 45px;
}
.contacts .title {
  text-transform: uppercase;
  color: #264781;
  font-family: "Gilroy";
  font-size: 48px;
}
.contacts .title .icon {
  width: 34px;
  height: 34px;
  background-image: linear-gradient(to right, #fabf40 0%, #ff8226 100%);
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  margin-right: 10px;
}
.contacts .subtitle {
  font-family: "Gilroy";
  font-size: 40px;
  padding-bottom: 50px;
}
.contacts .items {
  display: flex;
  font-size: 23px;
  justify-content: center;
}
.contacts .items .item:nth-child(1) {
  width: 25%;
}
.contacts .items .item:nth-child(2) {
  width: 30%;
}
.contacts .items .item:nth-child(3) {
  width: 50%;
}
.contacts .items .item a {
  display: block;
}
.contacts .items .title {
  color: #6484d3;
  font-size: 20px;
  font-weight: 800;
  padding-bottom: 30px;
}
.contacts .content p {
  margin: 0 0 10px;
  font-size: 14px;
}

footer {
  font-size: 13px;
}
footer .container {
  padding: 40px 15px;
  justify-content: space-between;
}
#count input, #buy input, #rent input{
  display: block;
}
#count, #buy, #rent {
  display: none;
  z-index: 1000;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(35, 35, 35, 0.85);
  justify-content: center;
  align-items: center;
  opacity: 0;
}
#count div, #buy div, #rent div{
  position: relative;
  display: block;
}
#count div.wpcf7-response-output, #buy div.wpcf7-response-output, #rent div.wpcf7-response-output{
  display: none;
}
#count .modal, #buy .modal, #rent .modal {
  max-width: 620px;
  background-color: #f5f5f5;
  padding: 40px 80px;
  box-sizing: border-box;
}
#count .modal .close, #buy .modal .close, #rent .modal .close {
  color: #1c1c1c;
  font-family: Montserrat;
  font-size: 13px;
  letter-spacing: 4.76px;
  text-transform: uppercase;
  text-align: center;
  padding-bottom: 50px;
}
#count .modal .title, #buy .modal .title, #rent .modal .title {
  text-align: center;
  padding-bottom: 20px;
  color: #2a2a2a;
  font-family: "Gilroy";
  font-size: 42px;
  text-transform: uppercase;
  letter-spacing: 2px;
}
#count .modal .subtitle, #buy .modal .subtitle, #rent .modal .subtitle {
  text-align: center;
  color: #232323;
  font-family: Montserrat;
  font-size: 25px;
  font-weight: 500;
  letter-spacing: 1.25px;
}
#count .modal form, #buy .modal form, #rent .modal form {
  text-align: center;
}
#count .modal input::placeholder,
#buy .modal input::placeholder,
#rent .modal input::placeholder,
#rent .modal input::-moz-placeholder,
#rent .modal input:-moz-placeholder{
  border: none;
  background: transparent;
  color: #232323;
  font-family: Montserrat;
  font-size: 21px;
}
#count .modal input,  #buy .modal input,  #rent .modal input {
  display: block;
  width: 100%;
  padding: 17px 0;
  border: none;
  background: transparent;
  border-bottom: 3px solid #fabc3e;
  outline: none;
  color: #232323;
  font-family: Montserrat;
  font-size: 21px;
  letter-spacing: 1px;
  margin-bottom: 40px;
}
#count .modal button, #buy .modal button, #rent .modal button {
  margin-top: 15px;
  margin-bottom: 45px;
  position: relative;
  width: 335px;
  height: 80px;
  box-shadow: 8px 14px 38px 5px rgba(252, 142, 44, 0.27);
  background-image: linear-gradient(to right, #fabf40 0%, #ff8226 100%);
  border: none;
  outline: none;
}
#count .modal button:before, #buy .modal button:before, #rent .modal button:before {
  transition: 0.4s;
  z-index: 1;
  opacity: 0;
  background-image: linear-gradient(to left, #fabf40 0%, #ff8226 100%);
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
#count .modal button:hover:before, #buy .modal button:hover:before, #rent .modal button:hover:before {
  opacity: 1;
}
#count .modal button span, #buy .modal button span, #rent .modal button span {
  color: #ffffff;
  font-family: "Gilroy";
  font-size: 25px;
  letter-spacing: 1.25px;
  z-index: 2;
  position: relative;
}
#count .modal .wpcf7-mail-sent-ok, #buy .modal .wpcf7-mail-sent-ok, #rent .modal .wpcf7-mail-sent-ok, .question .wpcf7-mail-sent-ok{
  color: #ff8427;
  font-family: Montserrat;
  font-size: 21px;
  font-weight: 500;
  letter-spacing: 1px;
  margin: 0 -40px;
  border: none;
}
input[type="hidden"]{
  display: none;
}
span.wpcf7-not-valid-tip{
  position: absolute;
  bottom: -20px;
}
.question span.wpcf7-not-valid-tip{
  bottom: 10px;
}
div.wpcf7-validation-errors, div.wpcf7-acceptance-missing{display: none!important;}
.wpcf7-form-control-wrap{position: initial}
.maps{
  display: flex;
  min-height:450px;
  flex-wrap: wrap;
}
.maps img{
  display:block;
  max-height: 450px;
  width: auto;
  margin: auto;
  height: auto;
}
.maps iframe{
  min-height: 300px;
  flex: 1 1 auto;
}
.swiper-slide{text-align: center;}
.swiper-button-next, .swiper-button-prev{outline: none!important;}
@media screen and (max-width: 1200px) {
  .container {
    max-width: 1120px;
  }

  .col-6 {
    width: 100%;
  }

  header .desctop {
    display: none;
  }
  header .mobile {
    display: flex;
  }
  header .mobile .logo {
    color: #244681;
    font-family: "Gilroy";
    font-size: 42px;
  }
  header .mobile .work {
    color: #232323;
    font-family: Montserrat;
    font-size: 12px;
    display: flex;
    align-items: center;
  }
  header .mobile .work span {
    margin-right: 10px;
    width: 35px;
    height: 35px;
    box-shadow: 3px 4px 16px 2px rgba(12, 138, 210, 0.15);
    background-image: linear-gradient(to right, #84aded 0%, #6483d3 100%);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
  }
  header .mobile .work div {
    display: inline-block;
  }
  header .mobile .work a {
    color: #244681;
    font-family: "Montserrat";
    font-size: 21px;
    font-weight: 800;
  }
  header .mobile button {
    cursor: pointer;
    width: 70px;
    background: transparent;
    outline: none;
    border: none;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    flex-direction: column;
    padding: 0;
  }
  header .mobile button span {
    margin: 3px 0;
    display: inline-block;
    width: 70px;
    height: 6px;
    box-shadow: 2px 3px 19px 2px rgba(252, 142, 44, 0.15);
    border-radius: 3px;
    background-image: linear-gradient(to right, #fabf40 0%, #ff8226 100%);
  }
  header .mobile button span:last-child {
    width: 55px;
  }
  header .mobile .menu {
    opacity: 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: linear-gradient(to right, #fabf40 0%, #ff8226 100%);
    display: none;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
  }
  header .mobile .menu .close {
    cursor: pointer;
  }
  header .mobile .menu p {
    color: #ffffff;
    font-family: Montserrat;
    font-size: 15px;
    letter-spacing: 5.73px;
  }
  header .mobile .menu li a {
    color: #ffffff;
    font-family: "Gilroy";
    font-size: 75px;
    letter-spacing: 1.5px;
    text-align: center;
    width: 100%;
    display: block;
  }
  header .mobile .menu .header_question {
    display: flex;
    color: #ffffff;
    font-family: "Montserrat";
    font-size: 47px;
    font-weight: 600;
    justify-content: center;
    align-items: center;
  }
  header .mobile .menu .header_question .icon {
    margin-right: 10px;
    width: 83px;
    height: 83px;
    background-color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    color: #fd962e;
  }
  header .mobile .menu .header_question a {
    border-bottom: 5px dotted #fff;
  }

  .home .container {
    text-align: center;
    padding-bottom: 0;
  }
  .home .show {
    width: 80%;
    margin: auto;
  }
  .home .show .image {
    width: 100%;
    position: relative;
  }
  .home .show .image img {
    width: 100%;
  }
  .home .links {
    justify-content: center;
  }

  .about .doc {
    text-align: center;
  }
  .about table {
    margin: auto;
  }

  .services .title {
    width: 100%;
  }
  .services .items {
    flex-direction: column;
    align-items: center;
  }
  .services .items .item {
    margin-bottom: 5%;
  }

  .choice .item {
    flex-wrap: wrap;
  }
  .choice .item .images {
    padding-right: 0;
    max-width: 525px;
    margin: auto;
    padding-bottom: 50px;
  }
  .choice .item .images img {
    width: 100%;
  }
  .choice .item .images .items {
    display: flex;
    width: 100%;
    justify-content: space-between;
  }
  .choice .item .images .items img {
    height: 80px;
    width: 80%;
  }
  .choice .item .description {
    max-width: 600px;
    margin: auto;
  }

  .options .container.slider {
    margin: 0 15px;
    padding: 0 15px;
  }

  .extra {
    padding-bottom: 0;
  }
  .extra .items {
    width: 100%;
    padding: 0;
    flex-wrap: wrap;
  }
  .extra .items .item {
    margin-bottom: 30px;
    width: 25%;
    display: flex;
    justify-content: center;
  }
  .extra .items .item > div {
    position: relative;
    width: 220px;
  }

  .question .col-6 {
    margin-bottom: 30px;
  }

  .features .container {
    justify-content: space-around;
  }
  .features .content {
    width: 100%;
  }
  .features .item {
    width: 346px;
    margin: 40px;
  }

  .clients .clients-slider .swiper-slide {
    flex-wrap: wrap;
  }
  .clients .clients-slider .swiper-slide .image {
    width: 40%;
    box-sizing: border-box;
  }
  .clients .clients-slider .swiper-slide .content {
    width: 60%;
    margin-right: 0;
    border: none;
  }
  .clients .clients-slider .clients-child-slider {
    margin-top: 30px;
    width: 475px;
    height: 475px;
  }
}
@media screen and (min-width: 992px){
  .clients .clients-slider .swiper-slide {
    padding-left: 100px;
    padding-right: 100px;
    box-sizing: border-box;
  }
}
@media screen and (max-width: 992px) {
  .container {
    max-width: 960px;
  }

  .home .show {
    width: 100%;
    margin: auto;
  }
  .home .show .image {
    width: 100%;
    position: relative;
  }
  .home .show .image img {
    width: 100%;
  }

  .about .leaders .items {
    flex-wrap: wrap;
  }

  .options .container.slider {
    display: flex;
    flex-direction: column;
  }
  .options .container.slider .block-choice-slide {
    width: 100%;
  }
  .options .container.slider .block-choice-slide ul {
    flex-direction: row;
    border-right: none;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .options .choice-link {
    letter-spacing: 0;
    font-size: 14px;
    margin: 5px 5px;
  }
  .options .choice-link.active {
    font-size: 14px;
    margin: 5px 5px;
  }
  .options .choice-link.active:after {
    display: none;
  }
  .options .choice-link:hover {
    margin-left: 5px;
  }

  .extra .items .item {
    width: 50%;
  }

  .question textarea {
    width: 310px;
  }

  .features .item {
    margin: 0;
    margin-bottom: 40px;
  }

  .clients .title {
    padding-bottom: 30px;
  }

  .contacts .items {
    flex-wrap: wrap;
  }
  .contacts .items .item:nth-child(1) {
    width: 50%;
  }
  .contacts .items .item:nth-child(2) {
    width: 50%;
  }
  .contacts .items .item:nth-child(3) {
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .choice .item .description table {
    line-height: 23px;
  }
  .choice .item .description table tr td:last-child {
    font-size: 12px;
  }
  #count .modal .title, #buy .modal .title, #rent .modal .title{font-size: 15px;}
  .container {
    max-width: 720px;
  }

    #count .modal .subtitle, #buy .modal .subtitle, #rent .modal .subtitle{
      font-size: 14px;
    }
    #count .modal .close, #buy .modal .close, #rent .modal .close{padding-bottom: 20px;}
    #count .modal .close .icon img , #buy .modal .close .icon img , #rent .modal .close .icon img {
      height: 30px;
    }
    #count .modal button, #buy .modal button, #rent .modal button{height: 50px;}
    #count .modal button span, #buy .modal button span, #rent .modal button span{font-size: 20px;}
    #count .modal input, #buy .modal input, #rent .modal input{font-size: 18px;padding: 10px 0;margin-bottom: 20px;}
  header .mobile .menu {
    flex-direction: column;
    justify-content: space-around;
  }
  header .mobile .menu .close .icon {
    margin: auto;
    text-align: center;
    width: 60px;
  }
  header .mobile .menu .close .icon img {
    width: inherit;
  }
  header .mobile .menu li a {
    font-size: 40px;
  }
  header .mobile .menu .header_question {
    font-size: 26px;
  }
  header .mobile .menu .header_question .icon {
    width: 60px;
    height: 60px;
  }

  .home {
    text-align: center;
  }
  .home .title {
    font-size: 61px;
  }
  .home .links {
    justify-content: center;
  }
  .home .links a:first-child {
    margin-right: 30px;
  }

  .about table span.number,
.about table span.title,
.about table span.description {
    padding: 0;
  }

  .choice .item .description {
    max-width: 600px;
    width: 100%;
  }
  .choice .item .description .subtitle:after {
    width: 100%;
  }
  .choice .item .description .price:before {
    width: 100%;
  }

  .options .swiper-container {
    width: 100%;
    max-height: 400px;
  }
  .options .swiper-container .swiper-slide img {
    width: 100%;
  }

  .clients .title {
    padding-bottom: 10px;
  }
  .clients .clients-slider .swiper-slide .image {
    width: 300px;
    margin: auto;
    margin-bottom: 20px;
  }
  .clients .clients-slider .swiper-slide .content {
    width: 80%;
    margin: auto;
  }
  span.wpcf7-not-valid-tip {
    font-size: 12px;
  }
}
@media screen and (max-width: 630px) {
  header .mobile .work {
    display: none;
  }
  .project .clients-child-slider .swiper-slide{
    max-height: 100vw;
  }
}
@media screen and (max-width: 576px) {
  .gold{
    padding: 25px 30px;
  }
  .contacts .maps:last-of-type{
    flex-direction: column-reverse;
  }
  header .mobile .logo {
    font-size: 30px;
  }
  header .mobile .work {
    display: none;
  }
  header .mobile .work a {
    font-size: 16px;
  }
  header .mobile button span:nth-child(1) {
    width: 50px;
  }
  header .mobile button span:nth-child(2) {
    width: 50px;
  }
  header .mobile button span:nth-child(3) {
    width: 30px;
  }
  header .mobile .menu {
    flex-direction: column;
    justify-content: space-around;
  }
  header .mobile .menu .close .icon {
    margin: auto;
    text-align: center;
    width: 60px;
  }
  header .mobile .menu .close .icon img {
    width: inherit;
  }
  header .mobile .menu li a {
    font-size: 40px;
  }
  header .mobile .menu .header_question {
    font-size: 26px;
  }
  header .mobile .menu .header_question .icon {
    width: 60px;
    height: 60px;
  }

  .container {
    max-width: 540px;
  }

  .home .title {
    font-size: 36px;
  }
  .home .desription {
    font-size: 16px;
  }
  .home .price{font-size: 16px;}
  .home .price span {
    font-size: 30px;
  }
  .home .links {
    flex-direction: column;
  }
  .home .links a:first-child {
    margin-right: 0;
    margin-bottom: 40px;
  }
  .home .info .icon {
    width: 35px;
    height: 35px;
    font-size: 20px;
  }

  .about table td {
    width: 50%;
    height: 175px;
  }
  .about p:first-of-type {
    font-size: 25px;
  }

  .services .title {
    font-size: 25px;
    padding-bottom: 20px;
  }
  .services .items {
    padding: 0;
  }
  .services .item {
    width: 100%;
    padding: 15px;
    box-sizing: border-box;
  }
  .services .item a{
    display: block;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }
  .choice .title {
    font-size: 25px;
  }
  .choice .item .description .title {
    font-size: 24px;
  }
  .choice .item .description .title span {
    font-size: inherit;
  }
  .choice .item .description .subtitle{font-weight: 600;}
  .choice .item .description .price {
    flex-direction: column;
  }
  .choice .item .description .price .rent {
    width: 100%;
    border: none;
    text-align: center;
  }
  .choice .item .description .price .buy {
    width: 100%;
    text-align: center;
  }

  .options .title {
    padding-bottom: 20px;
    font-size: 40px;
  }
  .options .swiper-container{
    max-height: 250px;
  }

  .extra .title {
    font-size: 25px;
  }
  .extra .title span:last-child {
    font-size: inherit;
  }
  .extra .items .item {
    width: 100%;
  }

  .question .title {
    font-size: 25px;
  }
  .question .title span {
    font-size: inherit;
  }
  .question textarea {
    width: 100%;
    box-sizing: border-box;
  }
  .question button{
    width: 90%;
    margin: auto;
    display: block;
  }
  .question input{
    width: 100%;
  }

  .features .content .title {
    font-size: 25px;
  }
  .features .content .description b {
    font-size: 20px;
  }
   .clients .title{
    font-size: 26px;
   }
  .clients .title span{
    font-size: 30px;
  }
  .clients .clients-slider .swiper-slide .content .title {
    font-size: 30px;
}

  .clients .clients-slider .clients-child-slider {
    width: 90%;
  }
  .clients .clients-slider .swiper-slide .content{
    width: 100%;
  }
  .clients .clients-slider .clients-child-slider .swiper-slide img {
    height: 100%;
  }

  .contacts .items {
    flex-wrap: wrap;
  }
  .contacts .items .item .title {
    padding: 20px 0 10px;
  }
  .contacts .title{
    font-size: 30px;
  }
  .contacts .items .item .content{
    font-size: 16px;
  }
  .contacts .items .item:nth-child(1) {
    width: 100%;
  }
  .contacts .items .item:nth-child(2) {
    width: 100%;
  }
  .contacts .items .item:nth-child(3) {
    width: 100%;
  }

  #count .modal {
    padding: 40px 15px;
    margin: 0 15px;
  }
  #count .modal .title {
    font-size: 22px;
  }
  #count .modal .subtitle {
    display: none;
  }
  #count .modal .close {
    padding-bottom: 20px;
  }
  #count .modal .alert {
    margin: 0;
  }
  #count .modal button {
    font-size: 20px;
    width: 270px;
    height: 60px;
  }
  #count .modal input {
    padding: 10px 0;
    margin-bottom: 30px;
    font-size: 18px;
  }
  .home .info {
  opacity: 0;
  cursor: pointer;
  position: absolute;
  left: 13%;
  top: 34%;
  }
  .home .info .text:after{
    z-index: -1;
  }
  .home .info:nth-of-type(2) .text {
    top: -300%;
    left: -15%;
  }
  .home .info:nth-of-type(3) .text {
    left: -205%;
    top: 165%;
  }
  .home .info:nth-of-type(3) .text:after {
    top: -8px;
    left: 30%;
  }
  .home .info:nth-of-type(4) .text {
    left: -155%;
    top: -260%;
  }
  .home .info:nth-of-type(4) .text:after {
    bottom: -7%;
    left: 35%;
    border-top-color: transparent;
  }
  .home .info:nth-of-type(5) .text {
    left: -280%;
    top: 155%;
  }
  .home .info:nth-of-type(5) .text:after {
    bottom: 70%;
    left: 40%;
  }
  .home .info:nth-of-type(6) .text {
    left: -500%;
    top: 135%;
  }
  .home .info:nth-of-type(6) .text:after {
    top: -8px;
    left: 72%;
  }
  .home .info:nth-of-type(2) .text:after {
    bottom: -8%;
    left: 10%;
  }
  .home .info .text {
    font-size: 12px;
    width: 200px;
    padding: 10px;
  }
  .maps {min-height: 300px;max-width: 100%;}
  .maps img{height:auto!important;max-width: 100vw;max-height: 300px;}
  .maps iframe{min-height: 300px;}
  .clients .clients-slider .swiper-slide .image img{height:auto;}
  #count .modal form, #buy .modal form, #rent .modal form{width:90%;
    margin: auto;
  }
  #count .modal button, #buy .modal button, #rent .modal button{
    max-width: 90%;
    display: block;
    margin: auto;
  }
  #count .modal, #buy .modal, #rent .modal{
    max-width: 100%;
    padding: 20px 0;
  }
  .project .title span{
    font-size: 32px;
  }

}