.box {
  width: 100%;
}
@media (min-width: 575.98px) {
  .box {
    padding-left: calc(50% - 540px / 2);
    padding-right: calc(50% - 540px / 2);
  }
}
@media (min-width: 767.98px) {
  .box {
    padding-left: calc(50% - 720px / 2);
    padding-right: calc(50% - 720px / 2);
  }
}
@media (min-width: 991.98px) {
  .box {
    padding-left: calc(50% - 960px / 2);
    padding-right: calc(50% - 960px / 2);
  }
}
@media (min-width: 1220px) {
  .box {
    padding-left: calc(50% - 1160px / 2);
    padding-right: calc(50% - 1160px / 2);
  }
}
@media (min-width: 1920px) {
  .box {
    padding-left: 10%;
    padding-right: 10%;
  }
}
.text{
  font-family: Montserrat, sans-serif;
  line-height: 1.5
}
.text.text_dark{
  color: #6d5438;
}
.text.text_main{
  font-weight: 400;
    font-size: calc(14 * 1px + (18 - 14) * ((100vw - 320px)/ 1120));
}
.text.title-md{
  font-weight: 800;
    font-size: calc(18 * 1px + (32 - 18) * ((100vw - 320px) / 1120));
}
@media (min-width: 1440px){
  .text.title-md{
    font-size: 32px;
  }
}
.text.text_gradient{
  background: -webkit-gradient(linear, left top, left bottom, from(#ffaf3d), to(#e46f1b));
    background: -o-linear-gradient(top, #ffaf3d 0, #e46f1b 100%);
    background: linear-gradient(
180deg, #ffaf3d 0, #e46f1b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: #ffaf3d;
    display: inline-block;
}
.lazy{
  -webkit-filter: blur(5px);
    filter: blur(5px);
    -webkit-transition: -webkit-filter 400ms;
    transition: -webkit-filter 400ms;
    -o-transition: filter 400ms;
    transition: filter 400ms;
    transition: filter 400ms, -webkit-filter 400ms;
}
.img-fluid{
  width: 100%;
    height: auto;
    margin: 0;
}
.lazy.lazyloaded{
  -webkit-filter: blur(0);
    filter: blur(0);
}
@media (max-width: 991.98px){
  .definition .definition__after{
    display: none;
  }
  .definition .definition__card{
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: -60px;
  }
}
@media (max-width: 767.98px){
  .definition .definition__img-sm{
    display: block;
  }
  .definition .definition__img-lg{
    display: none;
  }
  .definition .definition__card{
    width: calc(100% - 20px);
    margin-bottom: -20px;
  }
}
.location {
  padding: 100px 0 120px;
  margin-bottom: 80px;
  background-color: #fbfbfb;
}

.location .location__container {
  background: rgba(251, 251, 251, 0.9);
  -webkit-box-shadow: inset 0 0 100px 200px #fbfbfb;
          box-shadow: inset 0 0 100px 200px #fbfbfb;
}

.location .location__map-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding-bottom: 100px;
}

.location .location__map-caption {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(100% / 2 * 1);
          flex: 0 0 calc(100% / 2 * 1);
  max-width: calc(100% / 2 * 1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.location .location__title {
  margin-bottom: calc(15 * 1px + (40 - 15) * ((100vw - 320px) / 1120));
}

.location .location__text {
  margin-bottom: calc(15 * 1px + (30 - 15) * ((100vw - 320px) / 1120));
}

.location .location__map-box {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(100% / 2 * 1);
          flex: 0 0 calc(100% / 2 * 1);
  max-width: calc(100% / 2 * 1);
}

.location .location__map-map {
  position: relative;
  display: block;
  -webkit-transition: .5s;
  -o-transition: .5s;
  transition: .5s;
  z-index: 1;
  -webkit-filter: brightness(95%);
          filter: brightness(95%);
}

.location .location__map-map::before {
  content: '';
  position: absolute;
  z-index: -1;
  -webkit-transition: .5s;
  -o-transition: .5s;
  transition: .5s;
  left: 5%;
  top: 50%;
  width: 80%;
  height: 80%;
  -webkit-transform: skew(-17deg, -5deg) translate(0, -50%);
      -ms-transform: skew(-17deg, -5deg) translate(0, -50%);
          transform: skew(-17deg, -5deg) translate(0, -50%);
}

.location .location__map-map:hover {
  -webkit-transform: scale(1.05);
      -ms-transform: scale(1.05);
          transform: scale(1.05);
  -webkit-filter: brightness(100%);
          filter: brightness(100%);
}

.location .location__map-map:hover::before {
  -webkit-box-shadow: 0 0 50px 0 rgba(0, 0, 0, 0.15);
          box-shadow: 0 0 50px 0 rgba(0, 0, 0, 0.15);
}

@-webkit-keyframes location {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }

  50% {
    -webkit-transform: translate(0, -10px);
            transform: translate(0, -10px);
  }

  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}

@keyframes location {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }

  50% {
    -webkit-transform: translate(0, -10px);
            transform: translate(0, -10px);
  }

  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}

.location .location__map-dest {
  position: absolute;
  top: 4%;
  left: 1%;
  width: 30%;
}

.location .location__dest-heading {
  position: absolute;
  top: 90%;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 121px;
  height: 39px;
  -webkit-box-shadow: 0 4px 50px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 50px rgba(0, 0, 0, 0.1);
  color: #fff;
  font-weight: 700;
  line-height: 1.5;
  z-index: 1;
  background-color: #FFAF3D;
  padding: 15px 22px 7px 30px;
}

.location .location__dest-heading::after {
  content: '';
  position: absolute;
  display: block;
  z-index: -1;
  top: 5px;
  left: 5px;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(#ffaf3d), to(#e46f1b));
  background: -o-linear-gradient(top, #ffaf3d 0%, #e46f1b 100%);
  background: linear-gradient(180deg, #ffaf3d 0%, #e46f1b 100%);
}

.location .location__dest-mark {
  width: 100%;
  height: auto;
  -webkit-animation: location 1.5s infinite;
          animation: location 1.5s infinite;
}

.location .location__dest-circle {
  position: absolute;
  top: 21%;
  left: 26%;
  width: 46%;
  height: auto;
  z-index: 1;
  -webkit-animation: location 1.5s infinite;
          animation: location 1.5s infinite;
  -webkit-box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.15);
          box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.15);
  border-radius: 50%;
}

.location .location__map-start {
  position: absolute;
  top: 13%;
  left: 75%;
  width: 20%;
}

.location .location__start-heading {
  position: absolute;
  top: 90%;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  padding: 15px 22px 7px 30px;
  -webkit-box-shadow: 0 4px 50px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 50px rgba(0, 0, 0, 0.1);
  background: #fff;
  color: #6D5438;
  font-weight: 700;
  line-height: 1.5;
  z-index: 1;
  box-shadow: 0 4px 50px rgba(0, 0, 0, 0.1);
}

.location .location__start-heading::before {
  content: '';
  position: absolute;
  display: block;
  z-index: -1;
  top: 5px;
  left: 5px;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
}

.location .location__start-mark {
  width: 100%;
  height: auto;
  -webkit-animation: location 1.5s infinite;
          animation: location 1.5s infinite;
}

.location .location__start-circle {
  position: absolute;
  top: 28%;
  left: 33%;
  width: 32%;
  height: auto;
  z-index: 1;
  -webkit-animation: location 1.5s infinite;
          animation: location 1.5s infinite;
  -webkit-box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.15);
          box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.15);
  border-radius: 50%;
}

.location .location__projects-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.location .location__projects-img {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(100% / 2 * 1);
          flex: 0 0 calc(100% / 2 * 1);
  max-width: calc(100% / 2 * 1);
  position: relative;
  z-index: 1;
  padding-left: 20px;
}

.location .location__projects-img img {
  width: 100%;
  height: auto;
}

.location .location__projects-img::before {
  content: '';
  position: absolute;
  top: -10px;
  left: 10px;
  background-color: #fff;
  width: calc(100% - 40px);
  height: calc(100% - 20px);
  z-index: -1;
}

.location .location__projects-img::after {
  content: '';
  position: absolute;
  top: -20px;
  left: 0px;
  background: -webkit-gradient(linear, left top, left bottom, from(#ffaf3d), to(#e46f1b));
  background: -o-linear-gradient(top, #ffaf3d 0%, #e46f1b 100%);
  background: linear-gradient(180deg, #ffaf3d 0%, #e46f1b 100%);
  width: calc(100% - 20px);
  height: 100%;
  z-index: -2;
  -webkit-box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.15);
          box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.15);
  border-radius: 6px;
}

.location .location__projects-caption {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(100% / 2 * 1);
          flex: 0 0 calc(100% / 2 * 1);
  max-width: calc(100% / 2 * 1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-left: 40px;
}
.curve .curve__top>span:after {
  content: "";
  position: absolute;
  top: -25px;
  height: 180px;
  left: -7%;
  right: -7%;
  border-radius: 50%;
  background: #fff;
  -webkit-box-shadow: inset 0 0 30px 0 rgba(0, 0, 0, .08);
  box-shadow: inset 0 0 30px 0 rgba(0, 0, 0, .08)
}
.curve .curve__top>span{
  position: absolute;
    display: block;
    bottom: 0;
    height: 160px;
    left: -15%;
    right: -15%;
    border-radius: 50%;
    background-color: #ffaf3d;
}
.curve .curve__top{
      position: absolute;
    top: 0;
    width: 100%;
    height: 50px;
    overflow: hidden;
    z-index: 1;
}
.curve{
  position: relative;
}
.curve .curve__bottom{
  position: absolute;
    bottom: 0;
    width: 100%;
    height: 50px;
    overflow: hidden;
    z-index: 1;
}
.curve .curve__bottom>span{
  position: absolute;
    display: block;
    top: 0;
    height: 160px;
    left: -15%;
    right: -15%;
    border-radius: 50%;
    background-color: #ffaf3d;
}
.curve .curve__bottom>span:after {
    content: "";
    position: absolute;
    bottom: 0;
    height: 180px;
    left: -7%;
    right: -7%;
    border-radius: 50%;
    bottom: -25px;
    background: #fff;
    -webkit-box-shadow: inset 0 20px 30px -20px rgba(0, 0, 0, .08);
    box-shadow: inset 0 20px 30px -20px rgba(0, 0, 0, .08)
  }
  .popup.fancybox-content{
    background-color: transparent;
    padding: 0;
  }
  .catalog {
      margin-bottom: 60px
    }

    .catalog .catalog__title {
      margin-bottom: 40px;
      text-align: center
    }

    .catalog .catalog__grid {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-wrap: wrap;
      flex-wrap: wrap;
      margin: 0 -20px
    }

    .catalog .catalog__item {
      -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(100% / 3 * 1);
      flex: 0 0 calc(100% / 3 * 1);
      max-width: calc(100% / 3 * 1);
      padding: 20px
    }

    .catalog .catalog__more {
      margin-top: 20px;
      margin-left: auto;
      margin-right: auto
    }

    .com-card {
      -webkit-box-shadow: 8px 8px 60px rgba(122, 122, 122, .15);
      box-shadow: 8px 8px 60px rgba(122, 122, 122, .15);
      background-color: #fff;
      height: 100%
    }

    .com-card .com-card__head {
      font-family: Montserrat, sans-serif;
      font-size: 20px;
      font-weight: 700;
      font-style: normal;
      letter-spacing: normal;
      line-height: 1.5;
      text-align: left;
      -webkit-transition: .3s;
      -o-transition: .3s;
      transition: .3s
    }

    .com-card .com-card__img {
      -webkit-box-shadow: 8px 8px 60px rgba(122, 122, 122, .15);
      box-shadow: 8px 8px 60px rgba(122, 122, 122, .15);
      border-radius: 6px;
      background-color: #fff;
      width: 80px;
      height: 80px;
      margin-right: 20px
    }

    .com-card #icon-gradient_1,
    .com-card #icon-gradient_2,
    .com-card #icon-gradient_3,
    .com-card #icon-gradient_4,
    .com-card #icon-gradient_5,
    .com-card #icon-gradient_6 {
      opacity: 0;
      display: inline-block;
      -webkit-transition: opacity .3s ease;
      -o-transition: opacity .3s ease;
      transition: opacity .3s ease
    }

    .com-card .com-card__title {
      font-size: calc(14 * 1px + (20 - 14) * ((100vw - 320px)/ 1120));
      display: block;
      font-weight: bold;
      color: #6d5438
    }

    .com-card .com-card__text {
      color: #6d5438;
      font-family: Montserrat, sans-serif;
      font-size: calc(14 * 1px + (16 - 14) * ((100vw - 320px)/ 1120));
      font-weight: 500;
      font-style: normal;
      letter-spacing: normal;
      line-height: 1.5;
      text-align: left;
      padding: 15px 20px;
      -webkit-transition: .3s;
      -o-transition: .3s;
      transition: .3s
    }
    .com-card .com-card__head{
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center
    }
 .com-card .com-card__img{
  display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
 }
 .intouch {
      padding: calc(60 * 1px + (130 - 60) * ((100vw - 320px)/ 1120)) 0;
      background-color: rgba(248, 248, 248, .8);
      -webkit-box-shadow: inset 0 0 200px 200px #f8f8f8;
      box-shadow: inset 0 0 200px 200px #f8f8f8
    }

    .intouch .intouch__caption {
      -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(100% / 2 * 1);
      flex: 0 0 calc(100% / 2 * 1);
      max-width: calc(100% / 2 * 1);
      padding-right: 40px;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center
    }

    .intouch .intouch__title {
      margin-bottom: calc(15 * 1px + (40 - 15) * ((100vw - 320px)/ 1120))
    }

    .intouch .intouch__form-wrap {
      -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(100% / 2 * 1);
      flex: 0 0 calc(100% / 2 * 1);
      max-width: calc(100% / 2 * 1);
      display: block;
      padding-left: 20px;
      background-size: 100% 100%;
      z-index: 1;
      position: relative
    }

    .intouch .intouch__form-box {
      background-color: #fff;
      border-radius: 6px;
      padding: 10px
    }

    .intouch .intouch__form {
      border: 2px solid #f8f8f8;
      border-radius: 6px;
      padding: 40px 45px
    }

    .intouch .intouch__form-img {
      position: absolute;
      width: 100%;
      height: 100%;
      top: 0;
      left: 0;
      z-index: -1;
      -o-object-fit: fill !important;
      object-fit: fill !important
    }

    .intouch .intouch__form-img.intouch__form-img_md {
      display: block
    }

    .intouch .intouch__form-img.intouch__form-img_sm {
      display: none
    }

    .intouch__wrap .curve__bottom span::after {
      content: "";
      position: absolute;
      background-color: #fbfbfb !important
    }
    .intouch .row{
      display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    }
    @media only screen and (min-width: 768px){
      .catalog{
        padding-top: 0;
      }
    }
    .catalog{
      background: none
    }
    .from__title {
      color: #6d5438;
      font-family: Montserrat, sans-serif;
      font-weight: 600;
      font-size: calc(16 * 1px + (28 - 16) * ((100vw - 320px)/ 1120));
      text-align: center;
      line-height: 1.5;
      margin-bottom: calc(20 * 1px + (30 - 20) * ((100vw - 320px)/ 1120))
    }

    .from__subtitle {
      color: #6d5438;
      font-family: Montserrat, sans-serif;
      font-size: calc(14 * 1px + (18 - 14) * ((100vw - 320px)/ 1120));
      font-weight: 500;
      line-height: 1.5;
      text-align: center;
      margin-bottom: 20px
    }

    .form__row {
      padding-bottom: 15px;
      margin: 0 -15px
    }

    .form__label {
      position: absolute;
      top: 10px;
      left: 20px;
      -webkit-transition: .3s;
      -o-transition: .3s;
      transition: .3s;
      z-index: 0;
      width: calc(100% - 40px);
      color: #828282;
      font-family: Montserrat, sans-serif;
      font-size: 18px;
      font-weight: 500;
      font-style: normal;
      letter-spacing: normal;
      line-height: 1.5;
      text-align: left
    }

    .form__label-toggle {
      top: 5px;
      font-size: 14px;
      line-height: 1.5
    }

    .form__item {
      position: relative;
      background-color: #fff;
      margin-bottom: 25px
    }

    .form__item input,
    .form__item textarea {
      border-radius: 6px;
      color: #6d5438;
      font-family: Montserrat, sans-serif;
      font-size: 18px;
      font-weight: 500;
      line-height: 1.5;
      text-transform: capitalize;
      padding: 15px 20px;
      z-index: 1;
      position: relative;
      width: 100%;
      border: 1px solid #e0e0e0
    }

    .form__item input::-webkit-input-placeholder,
    .form__item textarea::-webkit-input-placeholder {
      color: #828282;
      font-family: Montserrat, sans-serif;
      font-size: 18px;
      font-weight: 500;
      font-style: normal;
      letter-spacing: normal;
      line-height: 1.5;
      text-align: left
    }

    .form__item input::-moz-placeholder,
    .form__item textarea::-moz-placeholder {
      color: #828282;
      font-family: Montserrat, sans-serif;
      font-size: 18px;
      font-weight: 500;
      font-style: normal;
      letter-spacing: normal;
      line-height: 1.5;
      text-align: left
    }

    .form__item input:-ms-input-placeholder,
    .form__item textarea:-ms-input-placeholder {
      color: #828282;
      font-family: Montserrat, sans-serif;
      font-size: 18px;
      font-weight: 500;
      font-style: normal;
      letter-spacing: normal;
      line-height: 1.5;
      text-align: left
    }

    .form__item input::-ms-input-placeholder,
    .form__item textarea::-ms-input-placeholder {
      color: #828282;
      font-family: Montserrat, sans-serif;
      font-size: 18px;
      font-weight: 500;
      font-style: normal;
      letter-spacing: normal;
      line-height: 1.5;
      text-align: left
    }

    .form__item input::placeholder,
    .form__item textarea::placeholder {
      color: #828282;
      font-family: Montserrat, sans-serif;
      font-size: 18px;
      font-weight: 500;
      font-style: normal;
      letter-spacing: normal;
      line-height: 1.5;
      text-align: left
    }

    .form__item input:focus,
    .form__item textarea:focus {
      border: 1px solid #ee8728
    }

    .form__item input.error,
    textarea.error {
      border: 1px solid red
    }

    label.error {
      position: absolute;
      top: 100%;
      left: 0;
      color: red;
      position: absolute;
      bottom: 3px;
      right: 5px;
      font-family: Montserrat, sans-serif;
      font-size: 14px
    }

    .form__checkbox {
      cursor: pointer;
      display: -webkit-inline-box;
      display: -ms-inline-flexbox;
      display: inline-flex;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: start;
      -ms-flex-pack: start;
      justify-content: flex-start;
      margin-bottom: 30px
    }

    .form__checkbox input {
      position: absolute;
      opacity: 0;
      cursor: pointer;
      height: 0;
      width: 0;
      z-index: -1;
      display: block
    }

    .form__checkbox input:checked~.checkbox__box {
      background-color: #fff;
      pointer-events: none;
      border-color: #bdbdbd
    }

    .form__checkbox input:checked~.checkbox__box svg {
      fill: #6d5438
    }

    .form__checkbox .checkbox__box {
      -webkit-transition: .3s;
      -o-transition: .3s;
      transition: .3s;
      min-height: 20px;
      min-width: 20px;
      height: 20px;
      width: 20px;
      background-color: #fff;
      border: 2px solid #bdbdbd;
      border-radius: 4px;
      line-height: inherit;
      margin-right: 10px;
      margin-top: 2px
    }

    .form__checkbox .checkbox__box svg {
      -webkit-transition: .3s;
      -o-transition: .3s;
      transition: .3s;
      width: 13px;
      height: 13px;
      fill: transparent
    }

    .form__checkbox .checkbox__caption {
      color: #6d5438;
      font-family: Montserrat, sans-serif;
      font-size: calc(12 * 1px + (16 - 12) * ((100vw - 320px)/ 1120));
      font-weight: 400;
      line-height: 1.5;
      margin-top: 1px
    }

    .form_btn {
      width: 100%
    }

    .from__title {
      color: #6d5438;
      font-family: Montserrat, sans-serif;
      font-weight: 600;
      font-size: calc(16 * 1px + (28 - 16) * ((100vw - 320px)/ 1120));
      text-align: center;
      line-height: 1.5;
      margin-bottom: calc(20 * 1px + (30 - 20) * ((100vw - 320px)/ 1120))
    }

    .from__subtitle {
      color: #6d5438;
      font-family: Montserrat, sans-serif;
      font-size: calc(14 * 1px + (18 - 14) * ((100vw - 320px)/ 1120));
      font-weight: 500;
      line-height: 1.5;
      text-align: center;
      margin-bottom: 20px
    }
    .time_wrap {
      display: none
    }
    .btn{
          width: 360px;
    max-width: 100%;
    height: calc(60 * 1px + (72 - 60) * ((100vw - 320px)/ 1120));
    background: -webkit-gradient(linear,left top,left bottom,from(#ffaf3d),to(#e46f1b));
    background: -o-linear-gradient(top,#ffaf3d 0,#e46f1b 100%);
    background: linear-gradient(
180deg,#ffaf3d 0,#e46f1b 100%);
    -webkit-box-shadow: 0 0 0 0 rgb(232 91 12 / 50%), inset 0 -4px 4px rgb(255 255 255 / 25%);
    box-shadow: 0 0 0 0 rgb(232 91 12 / 50%), inset 0 -4px 4px rgb(255 255 255 / 25%);
    border-radius: 6px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    cursor: pointer;
    padding: 2px;
    font-family: Montserrat,sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: calc(14 * 1px + (18 - 14) * ((100vw - 320px)/ 1120));
    line-height: 1.5;
    color: #fff;
    -webkit-transition: -webkit-transform .3s;
    transition: -webkit-transform .3s;
    -o-transition: transform .3s;
    transition: transform .3s;
    transition: transform .3s,-webkit-transform .3s;
    }
    .btn.btn_sm{
          height: 56px;
    }
    .btn.btn_max{
      width: 100%;
    }
    .btn:hover {
      -webkit-transform: scale(1.02);
      -ms-transform: scale(1.02);
      transform: scale(1.02);
      -webkit-box-shadow: 0 8px 30px -5px rgba(232, 91, 12, .5), inset 0 -4px 4px rgba(255, 255, 255, .25);
      box-shadow: 0 8px 30px -5px rgba(232, 91, 12, .5), inset 0 -4px 4px rgba(255, 255, 255, .25);
      color: #fff
    }
    @media (min-width: 1440px){
      .intouch .text.title-md{
        font-size: 27px;
      }
    }
    
    .popup .popup__close,
    .popup .popup__img-callback.popup__img-disable .ratio__box::before,
    .popup .popup__img.popup__img-disable .ratio__box::before,
    .popup .popup__slider .slick-arrow,
    .popup .popup__slider::before,
    .slider-img__arrows,
    .catalog__slider .slick-arrow {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center
    }
    .popup .popup__img-wrap {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center
    }
    .popup {
      display: none;
      position: relative;
      padding: 10px 10px 10px 10px
    }

    .popup.fancybox-content {
      background-color: transparent;
      padding: 0
    }

    .popup.fancybox-content .fancybox-button.fancybox-close-small {
      display: none
    }

    .popup .popup__inner {
      display: -webkit-inline-box;
      display: -ms-inline-flexbox;
      display: inline-flex;
      -webkit-box-pack: end;
      -ms-flex-pack: end;
      justify-content: flex-end;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      position: relative
    }

    .popup .popup__img-wrap {
      margin-right: -4%;
      background-color: transparent;
      padding: 14px 0;
      position: relative;
      overflow: hidden;
      border-left: 15px solid #fff;
      border-right: 15px solid #fff;
      width: 510px;
      max-width: 100%;
      border-radius: 15px;
      -webkit-box-shadow: inset 8px 0 0 -7px #fff;
      box-shadow: inset 8px 0 0 -7px #fff
    }

    .popup .popup__img-wrap::before {
      content: "";
      position: absolute;
      width: 200%;
      height: 200px;
      border-radius: 50%;
      top: -202px;
      left: 50%;
      background-color: transparent;
      border: 15px solid #fff;
      -webkit-transform: translate(-50%, 0);
      -ms-transform: translate(-50%, 0);
      transform: translate(-50%, 0);
      z-index: 1
    }

    .popup .popup__img-wrap::after {
      content: "";
      position: absolute;
      width: 200%;
      height: 200px;
      border-radius: 50%;
      bottom: -202px;
      left: 50%;
      background-color: transparent;
      border: 15px solid #fff;
      -webkit-transform: translate(-50%, 0);
      -ms-transform: translate(-50%, 0);
      transform: translate(-50%, 0);
      z-index: 1
    }

    .popup .popup__slider {
      width: 100%;
      height: 100%;
      -webkit-box-shadow: 0 0 0 2px #fff;
      box-shadow: 0 0 0 2px #fff;
      position: relative
    }

    .popup .popup__slider::before {
      content: 'Фото загружается';
      position: absolute;
      top: 50%;
      left: 50%;
      width: 100%;
      height: 100%;
      -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%);
      background-color: #fff
    }

    .popup .popup__slider .slick-arrow {
      position: absolute;
      bottom: 3%;
      left: 45%;
      background: -webkit-gradient(linear, left top, left bottom, from(#ffaf3d), to(#e46f1b));
      background: -o-linear-gradient(top, #ffaf3d 0, #e46f1b 100%);
      background: linear-gradient(180deg, #ffaf3d 0, #e46f1b 100%);
      border-radius: 50%;
      width: 40px;
      height: 40px;
      z-index: 5;
      cursor: pointer
    }

    .popup .popup__slider .slick-arrow svg {
      fill: #fff;
      opacity: .95;
      width: 60%
    }

    .popup .popup__slider .slick-arrow:hover {
      -webkit-box-shadow: 0 0 20px 0 rgba(0, 0, 0, .15);
      box-shadow: 0 0 20px 0 rgba(0, 0, 0, .15)
    }

    .popup .popup__slider .slick-arrow:hover svg {
      fill: #ffaf3d;
      opacity: 1
    }

    .popup .popup__slider .slick-arrow.slick-disabled:hover {
      opacity: .3
    }

    .popup .popup__slider .left_arrow {
      -webkit-transform: translate(-75%, -50%);
      -ms-transform: translate(-75%, -50%);
      transform: translate(-75%, -50%)
    }

    .popup .popup__slider .right_arrow {
      -webkit-transform: translate(75%, -50%);
      -ms-transform: translate(75%, -50%);
      transform: translate(75%, -50%)
    }

    .popup .popup__img {
      position: relative;
      width: auto;
      background-color: #fff;
      font-family: Montserrat, sans-serif
    }

    .popup .popup__img::before {
      display: block;
      content: "";
      width: 100%;
      padding-top: 66%
    }

    .popup .popup__img .ratio__box {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0
    }

    .popup .popup__img .ratio__box img {
      width: 100%;
      height: 100%;
      -o-object-fit: cover;
      object-fit: cover
    }

    .popup .popup__img.popup__img-disable .ratio__box::before {
      content: "Нет фото";
      position: absolute;
      font-family: Montserrat, sans-serif;
      font-style: normal;
      font-weight: 700;
      font-size: 32px;
      line-height: 1.5;
      color: #000;
      top: 50%;
      left: 50%;
      -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%);
      width: 100%;
      height: 100%;
      background-color: rgba(255, 255, 255, .5)
    }

    .popup .popup__img-callback {
      position: relative;
      width: 480px
    }

    .popup .popup__img-callback:before {
      display: block;
      content: "";
      width: 100%;
      padding-top: 85.41667%
    }

    .popup .popup__img-callback .ratio__box {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0
    }

    .popup .popup__img-callback .ratio__box img {
      width: 100%;
      height: 100%;
      -o-object-fit: cover;
      object-fit: cover
    }

    .popup .popup__img-callback.popup__img-disable .ratio__box::before {
      content: "Нет фото";
      position: absolute;
      font-family: Montserrat, sans-serif;
      font-style: normal;
      font-weight: 700;
      font-size: 32px;
      line-height: 1.5;
      color: #000;
      top: 50%;
      left: 50%;
      -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%);
      width: 100%;
      height: 100%;
      background-color: rgba(255, 255, 255, .5)
    }

    .popup .popup__form {
      background-color: #fff;
      border-radius: 6px;
      padding: 10px;
      -webkit-box-shadow: 0 0 30px rgba(0, 0, 0, .05);
      box-shadow: 0 0 30px rgba(0, 0, 0, .05);
      width: 560px;
      position: relative
    }

    .popup .popup__form-inner {
      background-color: #fff;
      padding: calc(10 * 1px + (45 - 10) * ((100vw - 320px)/ 1120));
      border: 1px solid #f2f2f2;
      border-radius: 6px
    }

    .popup .popup__close {
      position: absolute;
      top: 0;
      right: 0;
      background-color: #fff;
      border-radius: 6px;
      width: 40px;
      height: 40px;
      -webkit-transition: .3s;
      -o-transition: .3s;
      transition: .3s;
      z-index: 3
    }

    .popup .popup__close svg {
      width: 13px;
      height: 13px;
      fill: #bdbdbd
    }

    .popup .popup__close:hover {
      -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, .1);
      box-shadow: 0 0 10px 0 rgba(0, 0, 0, .1)
    }

    .fancybox-bg {
      background: rgba(0, 0, 0, .5) !important
    }

    .fancybox-active {
      overflow: hidden
    }
    #map iframe{
      -webkit-box-sizing: border-box;
      box-sizing: border-box;
      margin: 0;
      padding: 0;
      border: 0;
      outline: 0!important;
      list-style: none;
      font-family: Montserrat,sans-serif;
      width: 700px;
    }
    .fancybox-active{
      overflow: hidden;
    }
    body.compensate-for-scrollbar{
      overflow: hidden;
    }
    .fancybox-active{
      height: auto;
    }
    .com-card #icon-gradient_1, .com-card #icon-gradient_2, .com-card #icon-gradient_3, .com-card #icon-gradient_4, .com-card #icon-gradient_5, .com-card #icon-gradient_6{
      opacity: 0;
    display: inline-block;
    -webkit-transition: opacity .3s ease;
    -o-transition: opacity .3s ease;
    transition: opacity .3s ease;
    }
    @media (max-width: 1220px){
      .catalog .catalog__item{
        -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(100% / 2 * 1);
        flex: 0 0 calc(100% / 2 * 1);
        max-width: calc(100% / 2 * 1);
        padding: 10px 20px;
      }
    }
    @media (max-width: 991.98px){
      .location{
        padding: 80px 0;
        margin-bottom: 0;
      }
      .location .location__map-wrap{
        padding-bottom: 20px;
      }
      .location .location__map-caption{
        -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(100% / 1 * 1);
        flex: 0 0 calc(100% / 1 * 1);
        max-width: calc(100% / 1 * 1);
        padding: 10px;
      }
      .location .location__map-box{
        -webkit-box-flex: 0;
    -ms-flex: 0 0 calc(100% / 1 * 1);
    flex: 0 0 calc(100% / 1 * 1);
    max-width: calc(100% / 1 * 1);
    padding: 15px;
      }
      .intouch .intouch__caption{
        -webkit-box-flex: 0;
    -ms-flex: 0 0 calc(100% / 1 * 1);
    flex: 0 0 calc(100% / 1 * 1);
    max-width: calc(100% / 1 * 1);
    padding: 10px;
      }
      .intouch .intouch__title br{
        display: none;
      }
      .intouch .intouch__form-wrap{
        -webkit-box-flex: 0;
    -ms-flex: 0 0 calc(100% / 1 * 1);
    flex: 0 0 calc(100% / 1 * 1);
    max-width: calc(100% / 1 * 1);
    padding: 10px;
      }
      .intouch .intouch__form{
        padding: 20px 10px;
      }
    }
    @media (max-width: 767.98px){
      .curve .curve__top{
        height: 30px;
      }
      .curve .curve__top>span{
        height: 159px;
        left: -70%;
        right: -70%;
      }
      .curve .curve__top>span::after{
          height: 180px;
          left: -30%;
          right: -30%;
      }
      .curve .curve__bottom{
        height: 30px;
      }
      .curve .curve__bottom>span{
        height: 159px;
        left: -70%;
        right: -70%;
      }
      .curve .curve__bottom>span::after{
        height: 180px;
        left: -30%;
        right: -30%;
      }
      .definition{
        margin-bottom: 80px;
      }
      .catalog .catalog__grid{
        margin: 0
      }
      .catalog .catalog__item{
            -webkit-box-flex: 0;
    -ms-flex: 0 0 calc(100% / 1 * 1);
    flex: 0 0 calc(100% / 1 * 1);
    max-width: calc(100% / 1 * 1);
    padding: 10px 0;
      }
      .com-card .com-card__title{
        background: -webkit-gradient(linear,left top,left bottom,from(#ffaf3d),to(#e46f1b));
    background: -o-linear-gradient(top,#ffaf3d 0,#e46f1b 100%);
    background: linear-gradient(
180deg,#ffaf3d 0,#e46f1b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: #ffaf3d;
      }
      .catalog .catalog__grid{
        margin: 0;
      }
      .catalog{
        padding: 0 10px;
        margin-bottom: 60px;
      }

      @media (max-width: 767.98px){
        .com-card #icon-gradient_1, .com-card #icon-gradient_2, .com-card #icon-gradient_3, .com-card #icon-gradient_4, .com-card #icon-gradient_5, .com-card #icon-gradient_6{
          opacity: 1
        }
      }
    }
    .row{
      margin: 0;
    }
.wrapp-carousel{
  display: flex;
  justify-content: space-between;
}
.wrapp-carousel__list{
  flex: 0 1 462px;
  margin-right: 30px;
}
.wrapp-carousel__slider{
  max-width: 53%;
}
.slider-main__items img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  max-height: 400px;
}
.slider-main__items a{
  display: block;
  max-height: 400px;
}

.wrapp-carousel__slider-main:before{
  content: '';
  width: 4px;
  height: 99%;
  position: absolute;
  left: -44px;
  top: 0;
  background: #E88D0C
}
.carousel{
  margin-top: 60px;
}
.wrapp-carousel__list h1{
  font-family: Montserrat;
  font-style: normal;
  font-weight: bold;
  font-size: 32px;
  line-height: 39px;
  text-transform: capitalize;
  color: #000000;
  margin: 0;
}
.wrapp-carousel__list-block{
  margin-top: 24px;
}
.new-before:before{
  content: '';
  position: absolute;
  left: -9px;
  top: 9px;
  width: 100%;
  height: 100%;
  border: 2px solid #D8D8D8;
  box-sizing: border-box;
  filter: drop-shadow(0px 8px 20px rgba(0, 0, 0, 0.25));
}
.wrapp-carousel__list-items{
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.wrapp-carousel__list-text{
  margin-bottom: 0;
  width: 45%;
  display: flex;
}
.wrapp-carousel__list-text img{
  margin-right: 15px;
      width: 24px;
    height: 24px;
}
.wrapp-carousel__list-text span{
  display: flex;
  align-content: center;
  font-size: 16px;
  line-height: 24px;
}
.wrapp-carousel__list-text p{
  font-weight: normal;
  font-size: 16px;
  line-height: 20px;
  color: #000000;
  margin-bottom: 0;
}
.wrapp-carousel__list-span{
  font-weight: bold;
  font-size: 16px;
  line-height: 20px;
  color: #000000;
  width: 49%;
}
.wrapp-carousel__list-span span{
  font-weight: normal;
  margin-top: 8px;
  font-size: 12px;
  line-height: 15px;
  display: inline-block;
  max-width: 155px;
}
.wrapp-carousel__list-items:not(:last-child){
  margin-bottom: 24px;
}
.wrapp-carousel__list-bnt{
  margin-top: 56px;
}
.wrapp-carousel__list-bnt a{
  background: #E88D0C;
  font-weight: bold;
  font-size: 16px;
  line-height: 20px;
  text-align: center;
  color: #FFFFFF;
  padding: 22px 47px;
  display: inline-block;
  border-radius: 4px;
  transition: 0.5s ease;
}
.wrapp-carousel__list-bnt a:hover{
  -webkit-transform: scale(1.02);
    -ms-transform: scale(1.02);
    transform: scale(1.02);
    -webkit-box-shadow: 0 8px 30px -5px rgb(232 91 12 / 50%), inset 0 -4px 4px rgb(255 255 255 / 25%);
    box-shadow: 0 8px 30px -5px rgb(232 91 12 / 50%), inset 0 -4px 4px rgb(255 255 255 / 25%);
}
.definition{
  margin-top: 120px;
}
.wrapp-carousel__slider-nav{
  margin-top: 15px;
}
.wrapp-carousel__slider-nav .slick-slide{
  margin: 0 8px;
  max-height: 100px;
  cursor: pointer;
  transition: 0.5s ease
}
.wrapp-carousel__slider-nav .slick-slide:hover{
  opacity: 0.5
}
.slider-nav__items{
  height: 100px;
}
.slider-nav__items img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.wrapp-carousel__slider-nav .slick-current {
  opacity: 0.5;
}
.wrapp-carousel__list-items:last-child{
  align-items: flex-start;
}
.carousel{
  font-family: Montserrat, sans-serif;
}
.title-h1{
  display: none;
}
.wrapp-carousel__slider-main .slick-slide{
  margin: 0;
}
@media (max-width: 992px){
  .wrapp-carousel{
    flex-direction: column;
    align-items: center;
  }
  .wrapp-carousel__list{
    flex: unset;
    order: 3;
    margin-top: 35px;
    margin-right: 0;
    width: 100%;
  }
  .wrapp-carousel__slider{
    margin-left: 0;
    max-width: 100%;
  }
  .wrapp-carousel__list-bnt{
    margin-top: 30px;
    text-align: center;
  }
  .wrapp-carousel__slider-main:before{
    display: none;
  }
  .wrapp-carousel__list h1{
    display: none;
  }
  .wrapp-carousel__list-block{
    margin-top: 0;
  }
  .title-h1{
    display: block;
    font-weight: bold;
    font-size: 32px;
    line-height: 39px;
    text-transform: capitalize;
    color: #000000;
    text-align: left;
    width: 100%;
    margin-bottom: 16px
  }
  .wrapp-carousel__slider-main .slick-list{
    margin: 0;
  }
   .wrapp-carousel__slider-nav .slick-list{
    margin: 0;
  }
  .box{
    padding: 0 10px;
  }
  .intouch .intouch__form-wrap{
    padding: 0;
  }
  .popup .box{
    padding: 0;
  }
}
@media (max-width: 767px){
  .slider-nav__items{
    height: auto;
    max-height: 50px;
  }
  .title-h1{
    font-size: 24px;
  line-height: 28px;
  }
  .wrapp-carousel__list-text img{
    margin-right: 15px;
    width: 16px;
    height: 16px;
  }
  .wrapp-carousel__list-text span{
    font-size: 15px;
    line-height: 22px;
  }
  .wrapp-carousel__list-text{
    font-size: 15px;
    line-height: 22px;
    align-items: center;
  }
  .wrapp-carousel__list-span{
    font-size: 15px;
    line-height: 22px;
  }
  .carousel{
    margin-top: 30px;
  }
  .wrapp-carousel__slider-nav{
    margin-top: 5px;
  }
  .wrapp-carousel__list-span span{
     font-size: 13px;
    line-height: 16px;
  }
  .wrapp-carousel__list-bnt a{
    padding: 17px;
    font-size: 12px;
    line-height: 15px;
  }
  .definition{
    margin-top: 60px;
  }
  .popup .popup__form{
    width: 100%;
  }
  .slider-main__items img{
    height: 300px;
  }
  .wrapp-carousel__list-span{
    width: 45%;
  }
}
@media (max-width: 500px){
  .wrapp-carousel__list-bnt a{
    width: 100%;
    padding: 17px;
  }
}
@media (max-width: 370px){
  .slider-nav__items{
    height: 40px;
  }
  .slider-main__items img{
    height: 200px;
  }

}
.wrapp-info{
  border: 2px solid #E88D0C;
  box-sizing: border-box;
  border-radius: 4px;
  padding: 16px;
  margin-top: 8px;
}
.wrapp-info p{
  margin-bottom: 8px;
  font-weight: bold;
  font-size: 16px;
  line-height: 100%;
  text-align: center;
  color: #000000;
}
.wrapp-info span{
  display: block;
  margin: 0;
  font-size: 12px;
  line-height: 100%;
  text-align: center;
  color: #000000;
}
.wrapp-video{
  display: flex;
  justify-content: space-between;
}
.wrapp-video__img{
  width: 58%;
  position: relative;
}
.wrapp-video__text{
  width: 42%;
  background: #fff;
  position: relative;
  padding: 30px;
  box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
}
.wrapp-video__text h2{
  margin: 0;
  max-width: 300px;
  text-align: left;
  font-weight: bold;
  font-family: Montserrat;
  font-size: 32px;
  line-height: 39px;
  color: #E88D0C;
  margin-bottom: 32px;
}
.wrapp-video__text p{
  font-family: Montserrat;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 20px;
  color: #000000;
  margin: 0;
}
.wrapp-video__text p:not(:last-child){
  margin-bottom: 20px;
}
.wrapp-video__text:before{
    content: '';
    position: absolute;
    left: -9px;
    top: 9px;
    width: 100%;
    height: 100%;
    border: 2px solid #D8D8D8;
    box-sizing: border-box;
    filter: drop-shadow(0px 8px 20px rgba(0, 0, 0, 0.25));
    pointer-events: none;
}
.video{
  margin-bottom: 80px;
}
.wrapp-video__img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: 0.5s ease
}
.wrapp-video__img-link{
  display: block;
  height: 100%;
}
.popup-video__wrapp{
  min-width: 900px;
}
.wrapp-video__img-play{
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;

}
.wrapp-video__img-play svg{
  fill: #fff;
  width: 32px;
  height: 32px;
  transition: 0.5s ease;
  padding-left: 7px;
}

.wrapp-video__img:hover img{
  -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
    -webkit-filter: brightness(100%);
    filter: brightness(100%);
}
.mob-wrapp_info{
  display: none;
}
.img-play__btn{
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #E88D0C;
  border-radius: 50%
}
@media (max-width: 992px){
  .wrapp-info{
    display: none;
  }
  .mob-wrapp_info{
    display: block;
    width: 100%;
    margin-bottom: 8px;
  }
  .new-before:before{
    display: none;
  }
  .wrapp-video{
    flex-direction: column;
  }
  .wrapp-video__img{
    width: 100%;
  }
  .wrapp-video__text{
    width: 80%;
    order: -1;
    margin: auto;
    margin-bottom: -20px;
  }
  .wrapp-video__text:before{
    display: none;
  }
  .wrapp-video__text h2{
    max-width: unset;
  }
}
@media (max-width: 600px){
  .wrapp-info p{
    font-size: 10px;
  }
  .wrapp-info span{
    font-size: 10px;
  }
  .mob-wrapp_info{
    padding: 8px 26px;
  }
  .wrapp-video__text{
    width: 100%;
    padding: 32px 20px 
  }
  .wrapp-video__text h2{
    font-size: 16px;
    line-height: 20px;
  }
  .wrapp-video__text p{
    font-size: 12px;
    line-height: 15px;
  }
  .modal__form{
    padding: 15px 10px;
  }
  .img-play__btn{
    width: 70px;
    height: 70px;
  }
  /*.new-definition{
    margin-bottom: 45px;
  }*/

}
