html,
body {
  font-family: 'AvenirRoman';
  overflow-x: hidden;
}
body.open-mobile,
body.open-popup {
  overflow-y: hidden;
}

* {
  box-shadow: none !important;
  outline: none !important;
}
.bggrey {
  background-color: #F2F1F0;
}
.bgorange {
  background-color: #EEA285;
}
.cwhite {
  color: #fff;
}
.cgreen {
  color: #3E7C00;
}
.cred {
  color: #FF001F;
}
.mb-50 {
  margin-bottom: 50px;
}

.btn-arrow {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  width: 17px;
  height: 7px;
  background: url('images/arrow-right.svg') no-repeat center;
  margin-left: 15px;
  top: -2px;
  -webkit-transition: all 0.3s cubic-bezier(0.71, 0.35, 0.26, 0.83);
  transition: all 0.3s cubic-bezier(0.71, 0.35, 0.26, 0.83);
}
.btn:hover .btn-arrow {
  background-image: url('images/arrow-right-w.svg');
  -webkit-transform: translateX(8px);
  -ms-transform: translateX(8px);
  transform: translateX(8px);
}
.btn-arrow-back {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  width: 17px;
  height: 7px;
  background: url('images/arrow-left.svg') no-repeat center;
  margin-right: 15px;
  top: -2px;
  -webkit-transition: all 0.3s cubic-bezier(0.71, 0.35, 0.26, 0.83);
  transition: all 0.3s cubic-bezier(0.71, 0.35, 0.26, 0.83);
}
.btn:hover .btn-arrow-back {
  background-image: url('images/arrow-left-w.svg');
  -webkit-transform: translateX(-8px);
  -ms-transform: translateX(-8px);
  transform: translateX(-8px);
}
.btn-trans {
  color: #fff;
}
.btn-trans:hover {
  color: #2D3234 !important;
  background-color: #fff;
  border-color: #fff;
}
.btn-trans .btn-arrow {
  background-image: url('images/arrow-right-w.svg');
}
.btn-trans:hover .btn-arrow {
  background-image: url('images/arrow-right.svg');
}

.text {
  line-height: 1.8;
}
.text-lg {
  font-size: 16px;
}
.text img {
  max-width: 100% !important;
  max-height: 100% !important;
}
.text a:not(.btn) {
  text-decoration: underline;
}
.text ul {
  list-style: none;
  margin: 10px 0;
  padding: 0;
}
.text ul li {
  position: relative;
  padding-left: 17px;
}
.text ul li:before {
  position: absolute;
  content: '';
  top: 7px;
  left: 0;
  width: 5px;
  height: 5px;
  background: #4D4E4C;
  border-radius: 50%;
}
.text ul li:not(:last-child) {
  margin-bottom: 5px;
}
.text ul.checkli li {
  background: url('images/checkli.svg') no-repeat 0 5px;
  padding-left: 25px;
}
.text ul.checkli li:before {
  display: none;
}
.text ol {
  margin-left: -20px;
}
.text ol li {
  margin-bottom: 10px;
}
.img-max {
  width: 100%;
  height: auto;
}
.block {
  display: block;
  width: 100%;
}
.form-error .form-control {
  border-bottom-color: #DCB3B3;
}
.form-error-tx {
  font-family: 'AvenirMedium';
  font-size: 8px;
  color: #FF0000;
  line-height: 1.4;
  margin-top: 5px;
}

h1.md {
  font-size: 28px;
  letter-spacing: 1.8px;
}
h1.lg {
  font-family: 'AvenirBlack';
  font-size: 56px;
  letter-spacing: 0;
  text-transform: none;
  margin-bottom: 15px;
}
h2.xl {
  font-family: 'AvenirBlack';
  font-size: 72px;
  line-height: 1;
  letter-spacing: 2px;
  text-transform: uppercase;
}

@media (max-width: 1199.98px) {
  h1 {
    font-size: 21px;
  }
  h1.lg {
    font-size: 40px;
  }
  h2 {
    font-size: 21px;
  }
  h2.xl {
    font-size: 60px;
    letter-spacing: 1.7;
  }
}
@media (max-width: 991.98px) {
  h1 {
    font-size: 18px;
    margin-bottom: 10px;
  }
  h1.lg {
    font-size: 26px;
  }
  h2 {
    font-size: 18px;
    margin-bottom: 10px;
  }
  h2.xl {
    font-size: 48px;
    letter-spacing: 1.3;
  }
  .form-group {
    margin-bottom: 20px;
  }
}
@media (max-width: 767.98px) {
  .btn-block-xs {
    width: 100% !important;
  }
}

.select {
  position: relative;
  display: block;
  vertical-align: middle;
  text-align: left;
}
.select .replacement {
  position: relative;
  width: 100%;
  height: 40px;
  line-height: 40px;
  white-space: nowrap;
  text-overflow: ellipsis;
  text-transform: none;
  background: #fff;
  border: 0;
  border-bottom: 1px solid #B3C6DC;
  padding: 4px 20px 0 0;
  overflow: hidden;
}
.select .replacement:after {
  position: absolute;
  display: block;
  content: '';
  top: 50%;
  right: 0;
  width: 11px;
  height: 7px;
  background: url('images/select.svg') no-repeat center;
  transform: translateY(-50%);
}
.select.select-none {
  display: inline-block;
}
.select.select-none .replacement {
  height: 40px;
  line-height: 40px;
  padding-top: 0;
  padding-left: 0;
  padding-right: 20px;
  border: 0;
}
.select.select-none .replacement:after {
  right: 0;
}
.select.select-border .replacement {
  text-transform: uppercase;
  border: 1px solid #B3C6DC;
  padding-top: 0;
  padding-left: 10px;
  padding-right: 20px;
}
.select.select-border .replacement:after {
  right: 10px;
}
.select select {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 1px;
  width: 100%;
  height: 100%;
  -webkit-appearance: none;
  cursor: pointer;
  z-index: 2;
}

.ccheckbox input[type="checkbox"].css-checkbox {
  position: absolute;
  z-index: -1000;
  left: -1000px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  height: 1px;
  width: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
}
.ccheckbox input[type="checkbox"].css-checkbox + label.css-label {
  padding-left: 25px;
  display: inline-block;
  line-height: 24px;
  background-repeat: no-repeat;
  background-position: 0 3px;
  vertical-align: middle;
  cursor: pointer;
  font-size: 15px;
}
.ccheckbox input[type="checkbox"].css-checkbox:checked + label.css-label {
  background-image: url('images/checked.svg');
}
.ccheckbox label.css-label {
  background-image:url('images/check.svg');
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  margin-bottom: 0;
}

.cradio input[type="radio"].css-radio {
  position: absolute;
  z-index: -1000;
  left: -1000px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  height: 1px;
  width: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
}
.cradio input[type="radio"].css-radio + label.css-label {
  padding-left: 26px;
  display: inline-block;
  line-height: 1.2;
  background-repeat: no-repeat;
  background-position: 0 1px;
  vertical-align: middle;
  cursor: pointer;
}
.cradio input[type="radio"].css-radio:checked + label.css-label {
  background-image: url('images/radioed.svg');
}
.cradio label.css-label {
  background-image:url('images/radio.svg');
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  margin-bottom: 0;
}
.cradio label.css-label span {
  display: block;
  font-family: 'optimabold';
  font-size: 13px;
  margin-top: 12px;
}

.pagination {
  font-size: 16px;
  letter-spacing: 1px;
  line-height: 36px;
  text-align: center;
  justify-content: center;
}
.pagination > * {
  margin: 0 8px;
}
.pagination > * > span {
  display: inline-block;
  width: 36px;
  height: 36px;
  border: 1px solid transparent;
  border-radius: 50%;
  margin: 0 1px;
}
.pagination > strong > span {
  border-color: #DF4E40;
}
.pagination .page-prev {
  width: auto;
  text-align: left;
  padding-right: 8px;
}
.pagination .page-next {
  width: auto;
  text-align: right;
  padding-left: 8px;
}
@media (max-width: 991.98px) {
  .pagination {
    font-size: 14px;
    margin-bottom: 30px;
  }
}

.header {
  position: fixed;
  width: 100%;
  height: 75px;
  font-family: 'AvenirMedium';
  background: #fff;
  border-bottom: 1px solid #ECEEF2;
  z-index: 999;
}
.header-row {
  height: 100%;
}
.header-logo {
  padding-left: 20px;
}
.header-nav {
  height: 100%;
  color: #002856;
  letter-spacing: .88px;
}
.header-nav > li {
  position: relative;
  height: 100%;
}
.header-nav > li > a {
  height: 100%;
  padding: 30px 15px 0;
  text-transform: uppercase;
}
.header-nav span {
  position: relative;
}
.header-nav span:after {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  content: '';
  top: 100%;
  left: 0;
  width: 100%;
  height: 2px;
  background: #002856;
  margin-top: 29px;
  transition: all .3s;
  z-index: 2;
}
.header-nav > li:hover span:after {
  opacity: 1;
  visibility: visible;
}
.header-nav-child {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 100%;
  left: -5px;
  width: 190px;
  padding: 12px 0;
  background: #fff;
  transition: all .3s;
}
.header-nav > li:hover .header-nav-child {
  opacity: 1;
  visibility: visible;
}
.header-nav-child a {
  display: block;
  padding: 8px 20px;
}
.header-nav-right {
  height: 100%;
}
.header-nav-right > li {
  height: 100%;
}
.header-lang {
  position: relative;
  height: 100%;
  color: #002856;
  letter-spacing: .88px;
}
.header-lang .tx {
  height: 100%;
  padding-top: 30px;
  padding-right: 15px;
  background: url('images/select.svg') no-repeat 100% center;
  cursor: pointer;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.header-lang-list {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 100%;
  right: 0;
  width: 120px;
  background: #fff;
  padding: 12px 0;
  text-align: right;
  transition: all .3s;
}
.header-lang-list.open {
  opacity: 1;
  visibility: visible;
}
.header-lang-list a {
  display: block;
  padding: 8px 22px;
}
.btn-search {
  height: 100%;
  padding: 0;
  width: 60px;
  background: url('images/search.svg') no-repeat center;
}
.btn-order {
  position: relative;
  width: 120px;
  height: 100%;
  padding: 0;
  line-height: 1;
  color: #fff;
  background: #1360AD url('images/order.svg') no-repeat 24px center;
}
.btn-order:after {
  position: absolute;
  content: '';
  width: 200%;
  height: 2px;
  background: #1360AD;
  bottom: -2px;
  left: -1px;
  z-index: 2;
}
.btn-order .tx {
  position: absolute;
  top: 50%;
  left: 47px;
  transform: translateY(-50%);
}
.mobile-toggle {
  position: relative;
  width: 34px;
  height: 100%;
  cursor: pointer;
}
.mobile-toggle .patty {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 16px;
  cursor: pointer;
  transform: translateY(-50%);
}
.mobile-toggle .patty div {
  position: relative;
  width: 14px;
  height: 2px;
  margin: 7px 0 7px auto;
  background: #1360AD;
  transition: all .3s;
}
.mobile-toggle .patty div:after,
.mobile-toggle .patty div:before {
  position: absolute;
  content: '';
  display: block;
  width: 14px;
  height: 2px;
  background: #1360AD;
  z-index: -1;
  transition: all .3s;
}
.mobile-toggle .patty div:before {
  top: -6px;
}
.mobile-toggle .patty div:after {
  top: 6px;
}
.mobile-toggle .patty:hover {
  transition: top .4s;
}
.open-mobile .mobile-toggle .patty div {
  background: none;
}
.open-mobile .mobile-toggle .patty div:after {
  top: 0;
  transform: rotate(45deg);
  width: 20px;
}
.open-mobile .mobile-toggle .patty div:before {
  top: 0;
  transform: rotate(-45deg);
  width: 20px;
}
@media (max-width: 1199.98px) {
  .header {
    height: 60px;
  }
  .header-logo {
    padding-left: 0;
  }
  .header-logo img {
    max-width: 150px;
  }
  .btn-order {
    width: 50px;
    background-position: center;
  }
  .btn-order .tx {
    display: none;
  }
}
@media (max-width: 991.98px) {
  .header-logo img {
    max-width: 130px;
  }
}

.content {
  padding-top: 75px;
}
.page-div {
  min-height: 1px;
  padding-top: 100px;
}
.page-line {
  width: 100%;
  height: 1px;
  border-bottom: 1px solid #B3C6DC;
  padding-top: 30px;
  margin-bottom: -20px;
}
@media (max-width: 1199.98px) {
  .content {
    padding-top: 60px;
  }
  .page-div {
    padding-top: 60px;
  }
}
@media (max-width: 991.98px) {
  .page-div {
    padding-top: 30px;
  }
  .page-line {
    padding-top: 15px;
    margin-bottom: 0;
  }
}

.home-banner-main {
  position: relative;
}
.home-banner-main .text {
  position: absolute;
  top: 50%;
  right: 0;
  width: 765px;
  max-width: 100%;
  font-family: 'AvenirBlack';
  font-size: 40px;
  color: #fff;
  line-height: 1.3;
  text-align: right;
  transform: translateY(-50%);
  margin-top: 15px;
  padding: 0 30px;
}
.home-banner-main .link {
  position: absolute;
  bottom: 15px;
  right: 30px;
  font-size: 18px;
  color: #fff;
  line-height: 1.3;
  text-align: right;
  background: url('images/arrow-down.svg') no-repeat 100% center;
  padding-right: 20px;
  cursor: default;
}
.home-banner {
  color: #fff;
}
.home-banner-right {
  max-width: 33.7% !important;
  padding-left: .5% !important;
}
.home-banner-left {
  max-width: 66.3% !important;
}
.home-banner .text {
  position: absolute;
  top: 50%;
  left: 0;
  width: 425px;
  max-width: 100%;
  font-size: 18px;
  line-height: 1.5;
  transform: translateY(-50%);
  margin-top: 30px;
  padding: 0 30px;
}
.home-banner .title {
  font-family: 'AvenirBlack';
  font-size: 32px;
  line-height: 1.3;
  margin-bottom: 15px;
}
.home-survey {
  position: relative;
  margin-top: 310px;
  color: #fff;
}
.home-survey .caption {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  font-size: 18px;
  line-height: 1.5;
  transform: translateY(-50%);
  margin-top: 30px;
  padding: 0 40px;
}
.home-survey .title {
  font-family: 'AvenirBlack';
  font-size: 32px;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 15px;
}
.home-product {
  padding-left: 60px;
}
.home-calc {
  position: relative;
  padding: 10px;
}
.home-calc:before {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(178,170,183);
  background: -moz-linear-gradient(0deg, rgba(178,170,183,1) 0%, rgba(178,170,183,1) 35%, rgba(134,140,175,1) 100%);
  background: -webkit-linear-gradient(0deg, rgba(178,170,183,1) 0%, rgba(178,170,183,1) 35%, rgba(134,140,175,1) 100%);
  background: linear-gradient(0deg, rgba(178,170,183,1) 0%, rgba(178,170,183,1) 35%, rgba(134,140,175,1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#b2aab7",endColorstr="#868caf",GradientType=1);
  z-index: -1;
}
.home-calc .bb {
  background: #fff;
  padding: 30px 50px;
}
.home-tech-nav,
.product-acc-nav {
  text-align: right;
}
.home-tech-nav > div,
.product-acc-nav > div {
  display: inline-block;
  width: 40px;
  height: 40px;
  background-repeat: no-repeat;
  background-position: center;
  border: 1px solid #B3C6DC;
  -webkit-transition: all 0.25s cubic-bezier(0.71, 0.35, 0.26, 0.83);
  transition: all 0.25s cubic-bezier(0.71, 0.35, 0.26, 0.83);
  cursor: pointer;
}
.home-tech-left,
.product-acc-left {
  background-image: url('images/arrow-left.svg');
}
.home-tech-right,
.product-acc-right {
  background-image: url('images/arrow-right.svg');
  margin-left: 5px;
}
.home-tech-nav > div:hover,
.product-acc-nav > div:hover {
  background-color: #002856;
}
.home-tech-left:hover,
.product-acc-left:hover {
  background-image: url('images/arrow-left-w.svg');
}
.home-tech-right:hover,
.product-acc-right:hover {
  background-image: url('images/arrow-right-w.svg');
}
@media (max-width: 1199.98px) {
  .home-banner-main .text {
    font-size: 30px;
  }
  .home-banner-main .link {
    font-size: 15px;
  }
  .home-banner .title {
    font-size: 26px;
  }
  .home-banner .text {
    font-size: 16px;
  }
  .home-survey .caption {
    font-size: 16px;
  }
  .home-survey .title {
    font-size: 26px;
  }
}
@media (max-width: 991.98px) {
  .home-banner-main .text {
    font-size: 20px;
  }
  .home-banner-main .link {
    font-size: 12px;
  }
  .home-banner .title {
    font-size: 21px;
  }
  .home-banner .text {
    font-size: 14px;
  }
  .home-survey .caption {
    font-size: 14px;
  }
  .home-survey .title {
    font-size: 21px;
  }
  .home-survey {
    margin-top: 100px;
  }
}
@media (max-width: 767.98px) {
  .home-banner-right {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 0 !important;
  }
  .home-banner-left {
    width: 100% !important;
    max-width: 100% !important;
  }
  .home-banner {
    margin-bottom: 10px;
  }
  .home-banner-main .text {
    text-align: left;
    margin-top: 0;
    padding: 0 20px;
  }
  .home-banner .text {
    margin-top: 0;
    padding: 0 20px;
  }
  .home-banner-main .link {
    left: 20px;
    right: auto;
  }
  .home-product {
    padding: 0 20px;
  }
  .home-survey {
    margin-top: 30px;
  }
}

.page-banner {
  position: relative;
}
.page-banner .caption {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: #fff;
}
.page-banner .tx {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  transform: translateY(-50%);
  padding-left: 10px;
}
.page-banner .text {
  width: 620px;
  max-width: 100%;
  font-size: 21px;
}
.page-banner .link {
  position: absolute;
  bottom: 15px;
  left: 0;
  font-size: 18px;
  color: #fff;
  line-height: 1.3;
  text-align: right;
  background: url('images/arrow-down.svg') no-repeat 100% center;
  padding-right: 20px;
  padding-left: 10px;
  cursor: default;
}
@media (max-width: 1199.98px) {
  .page-banner .text {
    font-size: 18px;
  }
  .page-banner .link {
    font-size: 15px;
  }
}
@media (max-width: 991.98px) {
  .page-banner {
    width: auto;
    height: 320px;
  }
  .page-banner img {
    object-fit: cover;
    height: 100%;
  }
  .page-banner .text {
    font-size: 14px;
  }
  .page-banner .link {
    font-size: 12px;
  }
}

.footer {
  color: #fff;
  background: #2D3234;
  padding: 50px 0;
}
.footer .text {
  line-height: 1.3;
}
.footer .text a {
  color: #fff;
}
.footer .text p {
  margin-bottom: 15px;
}
.footer .title {
  font-size: 13px;
  color: #A4A4A4;
  text-transform: uppercase;
  margin-bottom: 15px;
}
.footer-btm {
  background: #222729;
  font-size: 12px;
  color: #BBBBBB;
  line-height: 1.4;
  padding: 25px 0;
}
.footer-nav {
  letter-spacing: 0.8px;
  text-transform: uppercase;
}
.footer-nav a {
  padding: 0 15px;
}
.form-newsletter .form-control {
  color: #fff;
  border-style: solid;
  background-color: transparent;
  padding-top: 0;
}
.form-newsletter .btn {
  width: 133px;
  padding-left: 0;
  padding-right: 0;
}
.form-newsletter .form-control::-webkit-input-placeholder {
  color: #fff;
  opacity: 0.7;
}
.form-newsletter .form-control::-moz-placeholder {
  color: #fff;
  opacity: 0.7;
}
.form-newsletter .form-control:-ms-input-placeholder {
  color: #fff;
  opacity: 0.7;
}
.form-newsletter .form-control::-ms-input-placeholder {
  color: #fff;
  opacity: 0.7;
}
.form-newsletter .form-control::placeholder {
  color: #fff;
  opacity: 0.7;
}
.footer-ct {
  padding-left: 18px;
}
.socmed-nav {
  margin-left: -15px;
}
.socmed-nav span {
  display: block;
  width: 45px;
  height: 45px;
  background-repeat: no-repeat;
  background-position: center;
  margin-right: 3px;
}
.socmed-nav .fb {
  background-image: url('images/pfb.svg');
  margin-right: 0;
}
.socmed-nav .tw {
  background-image: url('images/ptw.svg');
}
.socmed-nav .in {
  background-image: url('images/pin.svg');
}
.socmed-nav .pt {
  background-image: url('images/ppt.svg');
}
.socmed-nav .yt {
  background-image: url('images/pyt.svg');
}
.socmed-nav .ig {
  background-image: url('images/pig.svg');
}
.socmed-nav a:hover .fb {
  background-image: url('images/pfbw.svg');
}
.socmed-nav a:hover .tw {
  background-image: url('images/ptww.svg');
}
.socmed-nav a:hover .in {
  background-image: url('images/pinw.svg');
}
.socmed-nav a:hover .pt {
  background-image: url('images/pptw.svg');
}
.socmed-nav a:hover .yt {
  background-image: url('images/pytw.svg');
}
.socmed-nav a:hover .ig {
  background-image: url('images/pigw.svg');
}
@media (max-width: 1359.98px) {
  .socmed-nav span {
    width: 40px;
    height: 40px;
  }
  .socmed-nav .yt {
    margin-right: 5px;
  }
}
@media (max-width: 1199.98px) {
  .footer-ct {
    padding-left: 0;
    padding-top: 30px;
  }
}
@media (max-width: 991.98px) {
  .footer {
    padding: 30px 0;
  }
  .footer-btm {
    padding: 15px 0;
  }
}

.gallery-img .owl-carousel .owl-nav button.owl-prev,
.gallery-img .owl-carousel .owl-nav button.owl-next {
  position: absolute;
  top: 50%;
  width: 40px;
  height: 40px;
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: center;
  transform: translateY(-50%);
  z-index: 2;
}
.gallery-img .owl-carousel .owl-nav button.owl-prev {
  left: 0;
  background-image: url('images/arrow-left.svg');
}
.gallery-img .owl-carousel .owl-nav button.owl-next {
  right: 0;
  background-image: url('images/arrow-right.svg');
}
.owl-dots {
  position: absolute;
  left: 30px;
  bottom: 20px;
}
.owl-dot span {
  display: inline-block;
  width: 12px;
  height: 12px;
  background-color: #777777;
  border-radius: 50%;
  margin-right: 10px;
}
.owl-dot.active span {
  background-color: #fff;
}
.product-content .owl-dots {
  left: 50%;
  transform: translateX(-50%);
}
.product-content .owl-dot.active span {
  background-color: #1360AD;
}

.search-div {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  padding: 17px 20px 0;
  transition: all .3s;
  z-index: 2;
}
.open-search .search-div {
  opacity: 1;
  visibility: visible;
}
.search-div:after {
  position: absolute;
  content: '';
  bottom: -2px;
  left: -1px;
  width: 200%;
  height: 2px;
  background: #ECEEF2;
}
.form-search {
  position: relative;
}
.form-search .form-control {
  border: 0;
  font-family: 'AvenirMedium';
  font-size: 21px;
  padding-top: 0;
  padding-left: 40px;
  padding-right: 80px;
}
.btn-search-submit {
  position: absolute;
  top: 50%;
  left: 0;
  width: 30px;
  height: 30px;
  background: url('images/search.svg') no-repeat center;
  padding: 0;
  transform: translateY(-50%);
  z-index: 2;
}
.btn-search-close {
  position: absolute;
  top: 50%;
  right: 0;
  font-family: 'AvenirMedium';
  letter-spacing: 0.9px;
  color: #002856;
  text-transform: uppercase;
  text-decoration: underline;
  transform: translateY(-50%);
  padding-right: 10px;
  cursor: pointer;
  z-index: 2;
}
@media (max-width: 1199.98px) {
  .search-div {
    padding-top: 14px;
  }
  .btn-search-close {
    padding-right: 0;
  }
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-family: 'AvenirMedium';
  font-size: 14px;
  background: #fff;
  padding-top: 60px;
  z-index: 998;
  overflow-y: auto;
}
@media (max-width: 1199.98px) {
  .open-mobile .mobile-menu {
    display: block;
  }
}
.mobile-menu .lang {
  border-bottom: 1px solid #ECEEF2;
  padding: 0 20px;
}
.mobile-nav {
  line-height: 1.4;
  letter-spacing: 0.9px;
  padding: 15px 20px;
}
.mobile-nav > li > a {
  display: block;
  text-transform: uppercase;
  padding: 15px 20px 15px 0;
}
.has-child {
  background: url('images/select.svg') no-repeat 100% center;
}
.mobile-nav-child {
  display: none;
}
.open > .mobile-nav-child {
  display: block;
}
.mobile-nav-child a {
  display: block;
  padding: 7px 0 7px 10px;
}

.product-brand {
  margin-top: 35px;
}
.product-brand-nav {
  font-family: 'AvenirMedium';
  font-size: 18px;
  line-height: 1.4;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.product-brand-nav li {
  margin-right: 45px;
  margin-bottom: 35px;
}
.product-brand-nav a {
  position: relative;
  display: inline-block;
}
.product-brand-nav a:after {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  content: '';
  bottom: -10px;
  left: 0;
  width: 100%;
  height: 5px;
  background: rgb(178,170,183);
  background: -moz-linear-gradient(0deg, rgba(178,170,183,1) 0%, rgba(178,170,183,1) 35%, rgba(134,140,175,1) 100%);
  background: -webkit-linear-gradient(0deg, rgba(178,170,183,1) 0%, rgba(178,170,183,1) 35%, rgba(134,140,175,1) 100%);
  background: linear-gradient(0deg, rgba(178,170,183,1) 0%, rgba(178,170,183,1) 35%, rgba(134,140,175,1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#b2aab7",endColorstr="#868caf",GradientType=1);
  -webkit-transition: all 0.25s cubic-bezier(0.71, 0.35, 0.26, 0.83);
  transition: all 0.25s cubic-bezier(0.71, 0.35, 0.26, 0.83);
}
.product-brand-nav a.active:after,
.product-brand-nav a:hover:after {
  opacity: 1;
  visibility: visible;
}
.products {
  margin-top: 35px;
  margin-bottom: -35px;
}
.products-item {
  text-align: center;
  margin-bottom: 35px;
}
.products-item .img {
  margin-bottom: 15px;
}
.products-item .title {
  line-height: 1.4;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: underline;
  text-underline-position: under;
}
.product-acc .products-item .title {
  text-decoration: none;
}
.product-content .brand {
  font-family: 'AvenirMedium';
  font-size: 15px;
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 0.9px;
  margin-bottom: 10px;
  margin-top: 60px;
}
.product-content .option {
  margin-top: 20px;
}
.option-title {
  font-family: 'AvenirMedium';
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 15px;
}
.option-nav {
  margin-left: -10px;
  margin-bottom: -15px;
}
.option-nav li {
  width: 100px;
  text-align: center;
  margin-right: 5px;
  margin-bottom: 15px;
  cursor: pointer;
}
.option-nav .img {
  position: relative;
  width: 80px;
  height: 80px;
  border: 1px solid transparent;
  border-radius: 50%;
  margin: 0 auto 5px;
  overflow: hidden;
}
.option-nav .img:after {
  display: none;
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 3px solid #fff;
  border-radius: 50%;
  z-index: 2;
}
.option-nav .active .img {
  border-color: #777;
}
.option-nav .active .img:after {
  display: block;
}
.option-nav img {
  border-radius: 50%;
}
.option-nav .tx {
  font-size: 12px;
  line-height: 1.3;
}
.product-desc-box {
  position: relative;
  padding: 10px;
}
.product-desc-box:before {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(178,170,183);
  background: -moz-linear-gradient(0deg, rgba(178,170,183,1) 0%, rgba(178,170,183,1) 35%, rgba(134,140,175,1) 100%);
  background: -webkit-linear-gradient(0deg, rgba(178,170,183,1) 0%, rgba(178,170,183,1) 35%, rgba(134,140,175,1) 100%);
  background: linear-gradient(0deg, rgba(178,170,183,1) 0%, rgba(178,170,183,1) 35%, rgba(134,140,175,1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#b2aab7",endColorstr="#868caf",GradientType=1);
  z-index: -1;
}
.product-desc-box .bb {
  background: #fff;
  padding: 70px;
}
.box-left {
  padding-right: 40px;
}
.box-right {
  padding-left: 40px;
}
.box-download {
  margin-top: 60px;
  padding-top: 60px;
  border-top: 1px solid #B3C6DC;
}
.product-img-wrapper {
  position: relative;
}
.product-img.product-img-var {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  transform: none;
  z-index: 2;
}
.product-img.product-img-var.active {
  z-index: 3;
}
@media (max-width: 1198.98px) {
  .option-nav {
    margin-left: 0;
  }
  .option-nav li {
    width: 60px;
    margin-right: 15px;
  }
  .option-nav .img {
    width: 60px;
    height: 60px;
  }
  .option-nav .tx {
    display: none;
  }
  .product-desc-box .bb {
    padding: 50px;
  }
  .box-left {
    padding-right: 30px;
  }
  .box-right {
    padding-left: 30px;
  }
  .box-download {
    margin-top: 50px;
    padding-top: 50px;
  }
}
@media (max-width: 991.98px) {
  .product-brand {
    margin-top: 20px;
  }
  .products {
    margin-top: 20px;
    margin-bottom: -20px;
  }
  .products-item {
    margin-bottom: 20px;
  }
  .products-item .title {
    font-size: 12px;
  }
  .product-content .brand {
    font-size: 10px;
    letter-spacing: 0.6px;
    margin-top: 20px;
    margin-bottom: 5px;
  }
  .products-content h1.md {
    font-size: 20px;
  }
  .option-title {
    margin-bottom: 11px;
  }
  .option-nav li {
    width: 40px;
    margin-right: 15px;
  }
  .option-nav .img {
    width: 40px;
    height: 40px;
  }
  .product-desc-box .bb {
    padding: 30px 20px;
  }
  .box-left {
    padding-right: 10px;
  }
  .box-left .text {
    margin-bottom: 20px;
  }
  .box-right {
    padding-left: 10px;
  }
  .box-download {
    margin-top: 30px;
    padding-top: 30px;
  }
  .box-download .text {
    margin-bottom: 10px;
  }
}
@media (max-width: 767.98px) {
  .product-content > div > div:first-child {
    position: initial;
  }
  .product-img-wrapper {
    position: initial;
  }
  .product-img.product-img-var {
    top: 60px;
  }
}
@media (min-width: 1200px) {
  .option-title-opt {
    display: none;
  }
}

.gallery {
  padding-top: 35px;
}
.gallery-item {
  position: relative;
}
.gallery-like .gallery-item {
  text-align: center;
}
.gallery-item .img {
  margin-bottom: 40px;
}
.gallery-like .gallery-item .img {
  margin-bottom: 20px;
}
.gallery-item h2 {
  margin-bottom: 10px;
}
.gallery-item .category {
  font-family: 'AvenirMedium';
  font-size: 13px;
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 20px;
}
.gallery-item-1 .caption {
  padding-left: 12.5%;
}
.gallery-item-2 {
  padding-top: 245px;
}
.gallery-item-4 {
  padding-top: 138px;
}
.gallery-item-4 .caption {
  padding-left: 12.5%;
}
.gallery-item-5 {
  margin-top: -108px;
}
.gallery-item-5 .caption {
  padding-left: 12.5%;
}
.gallery-content .category {
  font-family: 'AvenirMedium';
  font-size: 13px;
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 30px;
}
.gallery-content .text {
  margin-bottom: 50px;
}
.gallery-thumbs {
  margin-top: 10px;
  margin-bottom: -10px;
}
.gallery-thumbs .img {
  opacity: 0.5;
  width: 110px;
  padding-left: 5px;
  padding-right: 5px;
  margin-bottom: 10px;
  cursor: pointer;
}
.gallery-thumbs .img.active {
  opacity: 1;
}
@media (min-width: 1200px) {
  .gallery-like .gallery-item:not(:last-child) {
    border-right: 1px solid #B3C6DC;
  }
}
@media (max-width: 1199.98px) {
  .gallery {
    padding-top: 25px;
  }
  .gallery .img {
    margin-bottom: 30px;
  }
  .gallery-item-2 {
    padding-top: 195px;
  }
  .gallery-item-4 {
    padding-top: 108px;
  }
  .gallery-content .category {
    margin-bottom: 25px;
  }
  .gallery-content .text {
    margin-bottom: 40px;
  }
  .gallery-like .gallery-item:first-child {
    border-right: 1px solid #B3C6DC;
  }
}
@media (max-width: 991.98px) {
  .gallery {
    max-width: 720px;
    padding-top: 15px;
    padding-right: 20px;
    padding-left: 20px;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: -30px;
  }
  .gallery .img {
    margin-bottom: 20px;
  }
  .gallery-item .category {
    font-size: 10px;
    letter-spacing: 0.6px;
  }
  .gallery-item {
    padding-top: 0 !important;
    margin-top: 0 !important;
    margin-bottom: 30px;
  }
  .gallery-like .gallery-item {
    margin-bottom: 0;
  }
  .gallery-item .caption {
    padding-left: 0 !important;
  }
  .gallery-content .category {
    margin-bottom: 20px;
  }
  .gallery-content .text {
    margin-bottom: 25px;
  }
}
@media (max-width: 767.98px) {
  .gallery-img,
  .product-img {
    position: relative;
    width: 100vw;
    left: 50%;
    transform: translateX(-50%);
  }
  .product-img.product-img-var {
    width: 100vw;
  }
  .gallery-like .gallery-item:first-child {
    border-right: 0;
  }
}

.blogs {
  padding-top: 25px;
  border-bottom: 1px solid #B3C6DC;
}
.blogs-item {
  text-align: center;
  border-right: 1px solid #B3C6DC;
}
.blogs-item:nth-child(3n) {
  border-right: 0;
}
.blogs-item .img {
  margin-bottom: 20px;
}
.blogs-item .caption {
  padding: 0 50px 50px;
}
.blogs-item .date {
  font-family: 'AvenirMedium';
  font-size: 13px;
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 8px;
}
.blogs-item .title {
  font-family: 'AvenirBlack';
  font-size: 18px;
  line-height: 1.4;
}
.blog-content .date {
  font-family: 'AvenirMedium';
  font-size: 15px;
  line-height: 1.4;
  letter-spacing: 0.9px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.blog-content h1 {
  font-family: 'AvenirBlack';
  letter-spacing: 0;
  text-transform: none;
}
.blog-content .img {
  margin-bottom: 30px;
}
@media (max-width: 1199.98px) {
  .blogs {
    padding-top: 25px;
  }
  .blogs-item:nth-child(2n) {
    border-right: 0;
  }
  .blogs-item:nth-child(3n) {
    border-right: 1px solid #B3C6DC;
  }
  .blog-content .date {
    font-size: 14px;
  }
  .blog-content h1.md {
    font-size: 24px;
  }
}
@media (max-width: 991.98px) {
  .blogs {
    padding-top: 15px;
  }
  .blogs-item .caption {
    padding-bottom: 30px;
  }
  .blogs-item .date {
    font-size: 10px;
    margin-bottom: 5px;
  }
  .blogs-item .title {
    font-size: 16px;
  }
  .blog-content .date {
    font-size: 13px;
  }
  .blog-content h1.md {
    font-size: 20px;
  }
}
@media (max-width: 767.98px) {
  .blogs-item .caption {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (max-width: 575.98px) {
  .blogs-item,
  .blogs-item:nth-child(3n) {
    border-right: 0;
  }
}

.careers-box {
  position: relative;
  padding: 10px;
}
.careers-box:before {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(178,170,183);
  background: -moz-linear-gradient(0deg, rgba(178,170,183,1) 0%, rgba(178,170,183,1) 35%, rgba(134,140,175,1) 100%);
  background: -webkit-linear-gradient(0deg, rgba(178,170,183,1) 0%, rgba(178,170,183,1) 35%, rgba(134,140,175,1) 100%);
  background: linear-gradient(0deg, rgba(178,170,183,1) 0%, rgba(178,170,183,1) 35%, rgba(134,140,175,1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#b2aab7",endColorstr="#868caf",GradientType=1);
  z-index: -1;
}
.careers-box .bb {
  background: #fff;
  padding: 40px 30px;
}
.careers-item {
  padding: 10px 0;
}
.careers-item:not(:last-child) {
  border-bottom: 1px solid #B3C6DC;
}
.careers-item:first-child {
  padding-top: 0;
}
.careers-item .title {
  font-family: 'AvenirMedium';
  font-size: 18px;
  line-height: 1.4;
  padding: 10px 30px 10px 0;
  background: url('images/plus.svg') no-repeat 100% 17px;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  cursor: pointer;
}
.careers-item.active .title {
  background-image: url('images/min.svg');
  background-position: 100% 22px;
}
.careers-item .caption {
  display: none;
}
.careers-item.active .caption {
  display: block;
}
.careers-item .text {
  margin-bottom: 20px;
}
.careers-item .apply {
  margin-bottom: 10px;
}
@media (max-width: 1199.98px) {
  .careers-box .bb {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
@media (max-width: 991.98px) {
  .careers-box .bb {
    padding: 30px 20px;
  }
  .careers-item .title {
    font-size: 16px;
  }
}

.contact-box {
  position: relative;
  padding: 10px;
}
.contact-box:before {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(178,170,183);
  background: -moz-linear-gradient(0deg, rgba(178,170,183,1) 0%, rgba(178,170,183,1) 35%, rgba(134,140,175,1) 100%);
  background: -webkit-linear-gradient(0deg, rgba(178,170,183,1) 0%, rgba(178,170,183,1) 35%, rgba(134,140,175,1) 100%);
  background: linear-gradient(0deg, rgba(178,170,183,1) 0%, rgba(178,170,183,1) 35%, rgba(134,140,175,1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#b2aab7",endColorstr="#868caf",GradientType=1);
  z-index: -1;
}
.contact-box .bb {
  background: #fff;
  padding: 60px 20px;
}
.contact-btm {
  position: absolute;
  bottom: -57px;
  right: -214px;
  width: 380px;
  background: #1360AD;
  padding: 60px 65px;
  color: #fff;
}
.contact-btm h2 {
  color: #fff;
}
@media (max-width: 1199.98px) {
  .contact-btm {
    bottom: -27px;
    right: -114px;
  }
}
@media (max-width: 991.98px) {
  .contact-box .bb {
    padding: 30px 20px;
  }
  .contact-btm {
    bottom: 0;
    right: -84px;
    padding: 40px 45px;
  }
}
@media (max-width: 767.98px) {
  .contact-btm {
    position: relative;
    bottom: auto;
    right: auto;
    width: 100%;
    padding: 20px;
  }
}

.catalog {
  margin-bottom: -70px;
}
.catalog-item {
  text-align: center;
  line-height: 1.4;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 70px;
}
.catalog-item .img {
  margin-bottom: 15px;
}
.catalog-item a {
  text-decoration: underline;
}
@media (max-width: 1199.98px) {
  .catalog {
    margin-bottom: -45px;
  }
  .catalog-item {
    margin-bottom: 45px;
  }
}
@media (max-width: 991.98px) {
  .catalog {
    margin-bottom: -26px;
  }
  .catalog-item {
    margin-bottom: 26px;
  }
}

.promo-item {
  display: table;
  width: 100%;
  min-height: 600px;
  margin-bottom: 10px;
}
.promo-item > div {
  display: table-cell;
  vertical-align: top;
}
.promo-item .img {
  width: 31%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.promo-item .div {
  width: 10px;
}
.promo-item .caption {
  background: #EEEEEE;
  padding: 80px 0 80px 110px;
}
.promo-item .caption-in {
  width: 620px;
  max-width: 100%;
}
@media (max-width: 1359.98px) {
  .promo-item .caption {
    padding-left: 80px;
  }
}
@media (max-width: 1199.98px) {
  .promo-item {
    min-height: 500px;
  }
  .promo-item .img {
    width: 35%;
  }
  .promo-item .caption {
    padding: 60px;
  }
  .promo-item .caption-in {
    width: 100%;
  }
}
@media (max-width: 991.98px) {
  .promo-item {
    display: block;
  }
  .promo-item > div {
    display: block;
  }
  .promo-item .img {
    width: 100%;
    height: 400px;
  }
  .promo-item .div {
    display: none;
  }
  .promo-item .caption {
    padding: 40px;
  }
}
@media (max-width: 767.98px) {
  .promo-item .caption {
    padding: 20px;
  }
}

.loc-nav {
  font-size: 16px;
  line-height: 1.5;
}
.loc-nav li:not(:last-child) {
  margin-bottom: 15px;
}
.loc-nav span {
  cursor: pointer;
}
.loc-nav .active span {
  text-decoration: underline;
}
.loc-content-item {
  display: none;
}
.loc-content-item.active {
  display: block;
}
.loc-item {
  border-bottom: 1px solid #B3C6DC;
  padding-top: 20px;
}
.loc-item:last-child {
  border-bottom: 0;
}
.loc-item .title {
  font-family: 'AvenirMedium';
  font-size: 18px;
  line-height: 1.4;
  margin-bottom: 20px;
}
.loc-item .text {
  margin-bottom: 20px;
}
@media (max-width: 1199.98px) {
  .loc-content-item:not(.loc-calc) h2 {
    display: none;
  }
}
@media (max-width: 767.98px) {
  .loc-item {
    padding-top: 10px;
  }
  .loc-item .title {
    font-size: 16px;
    margin-bottom: 5px;
  }
  .loc-item .text {
    margin-bottom: 10px;
  }
}

.loc-calc {
  line-height: 1.4;
}
.loc-calc .img {
  margin-bottom: 40px;
}
.loc-calc h2.res {
  font-family: 'AvenirRoman';
  font-weight: normal;
  text-transform: none;
  letter-spacing: 0;
  margin-bottom: 30px;
}

.share .tx {
  position: relative;
  top: -32px;
  left: -53px;
  font-family: 'AvenirMedium';
  font-size: 13px;
  line-height: 1.4;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 50px;
  transform: rotate(-90deg);
}
.share-nav li {
  position: relative;
  margin-bottom: 10px;
}
.share-nav span {
  display: inline-block;
  width: 30px;
  height: 30px;
  background-repeat: no-repeat;
  background-position: center;
}
.share-nav .fb {
  background-image: url('images/fb.svg');
}
.share-nav .tw {
  background-image: url('images/tw.svg');
}
.share-nav .pt {
  background-image: url('images/pt.svg');
}
.share-nav .wa {
  background-image: url('images/wa.svg');
}
.share-nav .url {
  background-image: url('images/url.svg');
}
@media (max-width: 1359.98px) {
  .share .tx {
    top: -20px;
    left: -40px;
  }
}
@media (max-width: 1199.98px) {
  .share .tx {
    top: 0;
    left: 0;
    text-align: center;
    transform: none;
    margin-top: 20px;
    margin-bottom: 10px;
  }
  .share-nav li {
    margin: 0 5px;
  }
}

.load-more {
  text-align: center;
  margin-top: 50px;
}
@media (max-width: 991.98px) {
  .load-more {
    margin-top: 30px;
  }
}

.upload-file input {
  display: none;
}
.upload-file {
  background: url('images/file.svg') no-repeat 0 0;
  padding-left: 22px;
}
.upload-file .tx {
  display: inline-block;
  text-decoration: underline;
  padding-bottom: 10px;
  cursor: pointer;
}

.popup {
  visibility: hidden;
  opacity: 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  padding: 20px;
  overflow-y: auto;
  z-index: 9991;
  transition: all .3s;
}
.open-popup .popup {
  visibility: visible;
  opacity: 1;
}
.popup-tab {
  display: table;
  width: 100%;
  height: 100%;
}
.popup-cell {
  display: table-cell;
  vertical-align: middle;
}
.popup-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 20px;
  height: 20px;
  background: url('images/close.svg') no-repeat center;
  cursor: pointer;
  z-index: 2;
}
.popup-content {
  position: relative;
  width: 660px;
  max-width: 100%;
  padding: 10px;
  margin-left: auto;
  margin-right: auto;
}
.popup-content:before {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(178,170,183);
  background: -moz-linear-gradient(0deg, rgba(178,170,183,1) 0%, rgba(178,170,183,1) 35%, rgba(134,140,175,1) 100%);
  background: -webkit-linear-gradient(0deg, rgba(178,170,183,1) 0%, rgba(178,170,183,1) 35%, rgba(134,140,175,1) 100%);
  background: linear-gradient(0deg, rgba(178,170,183,1) 0%, rgba(178,170,183,1) 35%, rgba(134,140,175,1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#b2aab7",endColorstr="#868caf",GradientType=1);
  z-index: -1;
}
.popup-content > .in {
  position: relative;
  background: #fff;
  padding: 40px 60px;
}
@media (max-width: 767.98px) {
  .popup-content {
    width: 100%;
  }
  .popup-content > .in {
    padding: 30px;
  }
}

.form-calc .form-control {
  padding-right: 20px;
}
.form-calc .form-group label {
  position: absolute;
  top: 16px;
  left: auto;
  right: 0;
  font-size: 14px;
}
.copied {
  position: absolute;
  top: 100%;
  left: 0;
  width: 160px;
  left: -50px;
}

.wa-fixed {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: #45CA6B;
  border-radius: 50%;
  z-index: 997;
}
.wa-fixed a {
  display: block;
  width: 100%;
  height: 100%;
  background: url('images/wa-green.svg') no-repeat center;
}
