/* Шрифты — общие с сайтом (Montserrat из zamrealty.css :root) */
.zamrealty-vacancies-page {
  font-family: var(--zr-font-body, 'Montserrat', sans-serif);
}
.zamrealty-vacancies-page h2,
.zamrealty-vacancies-page h4 {
  font-family: var(--zr-font-heading, 'Montserrat', sans-serif);
  font-size: 48px;
  font-weight: 300;
  line-height: 48px;
  color: #004362;
}
@media (max-width: 576px) {
  .zamrealty-vacancies-page h2,
  .zamrealty-vacancies-page h4 {
    font-size: 27px;
    line-height: 40px;
  }
}

.primary--btn {
  display: block;
  margin: 0 auto;
  max-width: -moz-fit-content;
  max-width: fit-content;
  background-color: #ff3366;
  color: #ffffff;
  border: 2px solid #ff3366;
  border-radius: 3px;
  outline: none;
  font-size: 24px;
  font-weight: 500;
  line-height: 36px;
  text-align: center;
  text-decoration: none;
  letter-spacing: 1px;
  padding: 16px 48px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.primary--btn:hover {
  color: #ffffff !important;
  background-color: #e50039 !important;
  border-color: #e50039 !important;
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}

@media (max-width: 767px) {
  .primary--btn {
    font-size: 16px;
    padding: 6px 24px;
  }
}
@media (min-width: 1400px) {
  .container {
    max-width: 1140px;
  }
}
[data-inviewport=obs__full-width] {
  position: relative;
  transition: 1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

[data-inviewport=obs__full-width]:before {
  content: "";
  position: absolute;
  background: #fff;
  top: 0;
  right: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  transition: 1s;
  display: flex;
}

.watched[data-inviewport=obs__full-width]:before {
  width: 0%;
}

.watched[data-inviewport=obs__full-width] {
  transform: none;
}

[data-inviewport=obs__slide-up] {
  position: relative;
  transition: 1s;
  opacity: 0;
  transform: translateY(30px);
}

.watched[data-inviewport=obs__slide-up] {
  opacity: 1;
  transform: none;
}

[data-inviewport=obs__slide-down] {
  position: relative;
  transition: 1s;
  opacity: 0;
  transform: translateY(-30px);
}

.watched[data-inviewport=obs__slide-down] {
  opacity: 1;
  transform: none;
}

[data-inviewport=obs__slide-left] {
  position: relative;
  transition: 1s;
  opacity: 0;
  transform: translateX(30px);
}

.watched[data-inviewport=obs__slide-left] {
  opacity: 1;
  transform: none;
}

[data-inviewport=obs__slide-right] {
  position: relative;
  transition: 1s;
  opacity: 0;
  transform: translateX(-30px);
}

.watched[data-inviewport=obs__slide-right] {
  opacity: 1;
  transform: none;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  height: 135px;
  padding-top: 30px;
  padding-bottom: 30px;
  display: flex;
  align-items: center;
  transition: 0.5s;
}
.header.scrolling {
  background-color: #fff;
  height: 84px;
  padding-top: 13px;
  padding-bottom: 13px;
}
.header.scrolling .logo {
  max-width: 58px;
}
.header.scrolling .burger span, .header.scrolling .burger span:before, .header.scrolling .burger span::after {
  background-color: #000;
}
.header .logo {
  max-width: 75px;
  transition: 0.3s;
}
.header .logo img {
  max-width: 100%;
}
.header .burger {
  width: 70px;
  height: 100%;
  border-radius: 4px;
  margin-left: auto;
  position: relative;
}
.header .burger > * {
  pointer-events: none;
}
.header .burger span {
  position: relative;
  margin-top: 9px;
  margin-bottom: 9px;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -26px;
  margin-top: -1.5px;
}
.header .burger span, .header .burger span::before, .header .burger span::after {
  display: block;
  width: 55px;
  height: 2px;
  border-radius: 5px;
  background-color: #fff;
  outline: 1px solid transparent;
  transition-property: background-color, transform;
  transition-duration: 0.3s;
}
.header .burger span::before, .header .burger span::after {
  position: absolute;
  content: "";
}
.header .burger span::before {
  top: -8px;
  left: -10px;
}
.header .burger span::after {
  top: 8px;
  left: 7px;
}
.header .burger:hover {
  cursor: pointer;
}
.header .nav__overlay {
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  transition: all 0.3s ease-in-out;
  background-color: #004362;
  opacity: 0;
  visibility: hidden;
}
.header .nav__overlay.show {
  opacity: 0.7;
  visibility: visible;
  z-index: 10;
}
.header .nav__inner-wrap {
  display: flex;
  flex-wrap: wrap;
  min-height: 100%;
  padding: 45px 40px 60px 40px;
}
.header .nav__info-top {
  display: inline-block;
  width: 100%;
  align-self: flex-start;
}
.header .nav__info-bottom {
  display: inline-block;
  width: 100%;
  align-self: flex-end;
}
.header nav {
  background-color: #1a4361;
  position: fixed;
  z-index: 999;
  top: 0;
  right: 0;
  height: 100%;
  max-width: 50vw;
  width: 100%;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.55s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}
.header nav .logo-white {
  max-width: 120px;
  display: inline-block;
  transition: all 0.3s ease;
  opacity: 0;
}
.header nav .logo-white img {
  max-width: 100%;
}
.header nav.show .logo-white {
  opacity: 1;
}.header nav .btn-close {
  color: #fff;
  opacity: 1;
  position: absolute;
  top: 15px;
  right: 15px;
  box-shadow: none;
}
.header nav.show {
  transform: translateX(0px);
}
.header nav.show ul.main li {
  transform: translateX(0px);
  opacity: 1;
}
.header nav ul.main {
  list-style-type: none;
  padding-left: 0;
  padding-top: 20px;
}
.header nav ul.main li {
  transform: translateX(40px);
  opacity: 0;
  transition: all 0.3s ease;
}
.header nav ul.main li a {
  color: #ffffff;
  font-size: 3vw;
  font-weight: 400;
  text-decoration: none;
  text-transform: uppercase;
  display: block;
  padding: 10px 0;
  transition: all 0.3s ease;
}
.header nav ul.main li a span {
  color: #b7ac7f;
}
.header nav ul.main li a:hover {
  color: #aa1a00;
}
.header .social a {
  width: 30px;
  height: 30px;
  display: inline-block;
  border-radius: 100%;
  margin-right: 5px;
}
.header .contact {
  margin-top: 30px;
}
.header .contact a {
  display: inline-block;
  border: solid 1px #fff;
  border-radius: 100px;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  padding: 10px 20px;
  margin-right: 5px;
  transition: 0.4s;
}
.header .contact a:hover {
  color: #000;
  background-color: #fff;
}

@media (max-width: 767px) {
  .header {
    height: 100px;
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .header .logo {
    max-width: 63px;
  }
  .header nav {
    max-width: 74vw;
  }
  .header nav .logo-white {
    max-width: 80px;
  }
  .header nav ul.main li a {
    font-size: 14px;
  }
  .header .nav__inner-wrap {
    display: flex;
    flex-wrap: wrap;
    min-height: 100%;
    padding: 45px 20px 35px 20px;
  }
  .header .burger {
    width: 35px;
  }
  .header .burger span {
    margin-left: 0;
    left: 0;
    width: 100%;
  }
  .header .burger span:before {
    left: 0;
    width: 100%;
  }
  .header .burger span::after {
    left: 0;
    width: 100%;
  }
  .header .contact a {
    padding: 7px 10px;
    font-size: 12px;
  }
}
.sc-rieltor {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.sc-rieltor .title {
  margin-bottom: 20px;
}
.sc-rieltor h2 {
  color:  #004362;
}
.sc-rieltor .info_box {
  display: block;
  margin: 0 auto;
  max-width: 710px;
  padding: 10px 0 10px 20px;
  font-size: 17.44px;
  font-weight: 400;
  border-left: 2px solid;
  color: #004362;
  border-color: #004362;
  border-width: 3px;
}
.sc-rieltor .info_box strong {
  font-size: 17.44px;
}

.sc-about {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #004362;
}
.sc-about .img__box {
  width: 100%;
  height: 100%;
  display: inline-block;
}
.sc-about .img__box:before {
  background-color: #000;
}
.sc-about .img__box img {
  width: 100%;
  height: 100%;
  position: relative;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}

.sc-about .info__box {
  color: rgb(255, 255, 255);
  font-size: 16px;
  font-weight: 400;
  line-height: 25.6px;
  padding: 8px 16px;
  margin-bottom: 16px;
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding-left: 30px;
  padding-right: 30px;
}
@media (max-width: 767px) {
  .sc-about .img__box {
    width: calc(100% + 24px);
    margin-left: -12px;
  }
  .sc-about .img__box img {
    height: auto;
    -o-object-fit: unset;
       object-fit: unset;
  }
  .sc-about .info__box {
    display: inline-block;
    height: auto;
    padding-top: 28px;
    padding-left: 0;
    padding-right: 0;
  }
}

.sc-offer {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.sc-offer h2 {
  color: #004362;
  margin-bottom: 20px;
}
.sc-offer .info__box {
  max-width: 720px;
  display: block;
  margin-bottom: 40px;
  margin-left: auto;
  margin-right: auto;
}
.sc-offer .info__box ul {
  word-wrap: break-word;
  padding-left: 0;
  margin-bottom: 0;
}
.sc-offer .info__box ul li {
  list-style: none;
  line-height: 25.6px;
  margin-bottom: 16px;
  color: #004362;
  position: relative;
  padding-left: 40px;
}
.sc-offer .info__box ul li::before {
  position: absolute;
  left: 0px;
  content: "✓";
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgb(255, 255, 255);
  width: 25px;
  height: 25px;
  background: #004362;
  border-radius: 50%;
}
@media (max-width: 767px) {
  .sc-offer {
    padding-bottom: 20px;
  }
}

.sc-crm {
  padding-top: 90px;
  padding-bottom: 90px;
  background-attachment: scroll;
  background-image: url(../img/vacancies/crm.webp);
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  position: relative;
  z-index: 1;
}
.sc-crm:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.6;
  background-color: #000000;
  z-index: -1;
}
.sc-crm .iframe__wrap {
  display: flex;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  align-content: center;
}
@media (max-width: 767px) {

}
.sc-crm .iframe__box {
  width: 100%;
  padding-top: 55%;
  position: relative;
  background-size: cover!important;
  background-repeat: no-repeat!important;
  background-position: center center!important;
  cursor: pointer;
  transition: 0.3s;
}
.sc-crm .iframe__box:hover::after{
  opacity: 0.5;
}
.sc-crm .iframe__box.clicked::after{
  display: none;
}
.sc-crm .iframe__box::after{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 100px;
  height: 93px;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="50" height="50"><path d="M44.898 14.5c-.398-2.199-2.297-3.801-4.5-4.301C37.102 9.5 31 9 24.398 9s-12.797.5-16.098 1.199c-2.199.5-4.102 2-4.5 4.301C3.398 17 3 20.5 3 25s.398 8 .898 10.5c.402 2.199 2.301 3.801 4.5 4.301C11.898 40.5 17.898 41 24.5 41s12.602-.5 16.102-1.199c2.199-.5 4.098-2 4.5-4.301.398-2.5.898-6.102 1-10.5-.203-4.5-.703-8-1.203-10.5zM19 32V18l12.199 7z"/></svg>') ;
  background-size: 100% 100%;
  background-repeat: no-repeat;
}
.sc-crm .iframe__box:before {
  background-color: #000;
}

.sc-crm iframe {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
}
.sc-crm .info__box {
  text-align: right;
}
.sc-crm .info__box h2 {
  margin-bottom: 26px;
  color: #fff;
}
.sc-crm .info__box h4 {
  color: #fff;
  margin-bottom: 20px;
}
.sc-crm .info__box p {
  color: rgb(255, 255, 255);
  font-size: 16px;
  font-weight: 400;
  line-height: 26.5px;
}

@media (min-width: 992px) {
  .sc-crm .iframe__box {
    width: 90%;
  }
}
@media (max-width: 767px) {
  .sc-crm .info__box {
    text-align: center;
  }
  .sc-crm .info__box h2 {
    text-align: center;
  }
  .sc-crm .info__box h4 {
    text-align: center;
    margin-top: 30px;
  }
  .sc-crm .iframe__wrap {
    margin-top: 20px;
    height: auto;
    display: inline-block;
}
  .sc-crm .iframe__box {
    padding-top: 63%;
  }
}

.sc-clients {
  background: #f5f5f5;
  padding-top: 90px;
  padding-bottom: 90px;
}
.sc-clients h2 {
  color: #004362;
  margin-bottom: 20px;
}
.sc-clients .swiperClients .swiper-slide {
  width: 16.66666667%;
}

.sc-clients .client__logo {
  display: inline-block;
  width: 100%;
  padding: 0 20px;
}
.sc-clients .client__logo img {
  max-width: 100%;
}
.sc-clients .swiper-control {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.sc-clients .swiper-arrow {
  width: 40px;
  height: 40px;
  background-color: rgb(0, 0, 0);
  background-image: url('data:image/svg+xml,<svg height="30" fill="%23ffffff" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg"><path stroke-width="0.5" stroke="%23ffffff" d="M14.5 30c-.276-.004-.504-.224-.5-.5v-26c0-.66 1-.664 1 0v26c.004.282-.218.504-.5.5zM.5 15c-.45 0-.663-.554-.354-.854l14-14c.195-.195.51-.195.707 0l14 14c.443.426-.248 1.167-.707.707L14.5 1.207.853 14.853C.758 14.95.635 15 .5 15z"/></svg>');
  background-size: 19px 14px;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 0.5;
  border-radius: 50%;
  position: relative;
  margin: 5px 20px;
}
.sc-clients .swiper-arrow:hover {
  opacity: 0.9;
}
.sc-clients .swiper-arrow::after {
  display: none;
}
.sc-clients .swiper-button-prev {
  transform: rotate(-90deg);
}
.sc-clients .swiper-button-next {
  transform: rotate(90deg);
}
@media (max-width: 991px) {
  .sc-clients .swiperClients .swiper-slide {
    width: 25%;
  }
}
@media (max-width: 767px) {
  .sc-clients {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .sc-clients .swiperClients .swiper-slide {
    width: 50%;
  }
}
@media (max-width: 576px) {
  .sc-clients .swiperClients .swiper-slide {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
  .sc-clients .client__logo {
    height: 140px;
  }
  .sc-clients .client__logo img {
    max-height: 100%;
  }
  .sc-clients .swiper-arrow {
    margin-top: 20px;
  }
}

.sc-stats {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.sc-stats .title {
  margin-bottom: 50px;
}
.sc-stats .stat__box {
  padding: 16px;
  text-align: center;
}
.sc-stats .stat__box img {
  width: 80px;
}
.sc-stats .stat__box .stat__icon {
  margin-bottom: 16px;
}
.sc-stats .stat__box .num {
  font-size: 48px;
  font-weight: 300;
  line-height: 48px;
  color: #004362;
  padding-top: 20px;
  padding-bottom: 20px;
}
.sc-stats .stat__box p {
  font-size: 16px;
  font-weight: 400;
  line-height: 25px;
  margin-bottom: 16px;
  color: #004362;
  margin-bottom: 5px;
}
.sc-stats .stat__box p strong {
  color: #000000;
}
.sc-stats .bottom__info {
  text-align: center;
  padding-top: 40px;
}
.sc-stats .bottom__info p {
  color: #004362;
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 16px;
}
.sc-stats .bottom__info a {
  color: #004362;
  text-decoration: none;
}
.mbr-form a {
  color: #004362;
  text-decoration: none;
}
@media (max-width: 767px) {
  .sc-stats {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .sc-stats .title {
    margin-bottom: 25px;
  }
  .sc-stats .stat__box .num {
    font-size: 28px;
    padding-top: 10px;
    padding-bottom: 10px;
    line-height: 30px;
  }
}

.sc-address {
  background-color: #eeeeee;
  background-image: url(../img/vacancies/address.webp);
  background-attachment: fixed;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 135px;
  padding-bottom: 135px;
  position: relative;
  z-index: 1;
}
.sc-address::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0.5;
  background-color: #004362;
  z-index: -1;
}
.sc-address .address__box {
  margin-top: 16px;
  margin-bottom: 16px;
  max-width: 298px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}
.sc-address .address-title {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}
.sc-address .address-title h4 {
  color: #ffffff;
  font-style: normal;
  font-size: 16px;
  font-weight: 500;
  line-height: 16px;
}
.sc-address p {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 25.6px;
  color: rgb(255, 255, 255);
  margin-bottom: 16px;
}
.sc-address p a {
  color: #fff;
  display: block;
  text-decoration: none;
}
.sc-address p a:hover {
  text-decoration: underline;
}
.sc-address .icon {
  padding-right: 30px;
  margin-bottom: 8px;
}
.sc-address .icon img {
  width: 72px;
  height: 73px;
}
@media (max-width: 767px) {
  .sc-address {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}

.sc-contacts {
  background-color: rgb(255, 255, 255);
  padding-top: 90px;
  padding-bottom: 90px;
}
.sc-contacts .map {
  padding-right: 15px;
  overflow: hidden;
  max-width:640px;
  height:480px; 
  width: 100%;
}
.sc-contacts .map iframe{
  width: 100%;
  height: 100%;
}
/* Форма одна по центру (карта и блок адреса убраны) */
.sc-contacts .contact__box {
  padding-left: 15px;
  padding-right: 15px;
  margin-left: auto;
  margin-right: auto;
}
.sc-contacts .contact__box .form-control {
  margin-bottom: 15px;
}
.sc-contacts .contact__box textarea {
  resize: none;
  min-height: 104px;
}
.sc-contacts .contact__box input, .sc-contacts .contact__box textarea {
  background-color: #f5f5f5;
  box-shadow: none;
  color: color rgb(86, 86, 86);
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  padding-top: 17.2px;
  padding-bottom: 17.2px;
}
.sc-contacts .contact__box input:focus, .sc-contacts .contact__box textarea:focus {
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}
.sc-contacts .contact__box input::-moz-placeholder, .sc-contacts .contact__box textarea::-moz-placeholder {
  color: #6c757d;
  opacity: 1;
}
.sc-contacts .contact__box input::placeholder, .sc-contacts .contact__box textarea::placeholder {
  color: #6c757d;
  opacity: 1;
}
.sc-contacts .contact__box button {
  padding: 16px 48px;
  font-size: 16px;
  line-height: 16px;
  margin: 10px auto 20px auto;
}
.sc-contacts h2 {
  padding-bottom: 16px;
  margin-bottom: 8px;
}
.sc-contacts h4 {
  line-height: 24px;
  font-style: italic;
  font-size: 24px;
  font-weight: 500;
  color: #004362;
  display: flex;
  align-items: center;
  margin-bottom: 0;
}
@media (max-width: 576px) {
  .sc-contacts h4 {
    font-size: 24px;
  }
}
@media (max-width: 480px) {
  .sc-contacts h4 {
    font-size: 18px;
  }
}
.sc-contacts h4 svg {
  padding-right: 15px;
}
.sc-contacts .subtitle {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
}
.sc-contacts .subtitle .sub__icon {
  margin-right: 15px;
  max-width: 50px;
  width: 100%;
}
.sc-contacts .subtitle .sub__icon img {
  max-width: 100%;
  width: 100%;
}
.sc-contacts .form__subtitle {
  font-weight: 500;
}
.sc-contacts .accept {
  color: #004362;
  cursor: pointer;
  font-size: 16px;
  font-weight: 300;
  line-height: 24px;
  text-decoration: none;
  display: inline-block;
  text-align: left;
}
@media (max-width: 767px) {
  .sc-contacts {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .sc-contacts .contact__box {
    padding-left: 0;
    padding-right: 0;
  }
  .sc-contacts .map {
    padding-right: 0px;
    position: relative;
    padding-top: 100%;
    height: auto;
  }
  .sc-contacts .map iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0px;
  }
  .sc-contacts h2 {
    padding-top: 32px;
    margin-bottom: 16px;
    text-align: center;
  }
  .sc-contacts .form__subtitle {
    text-align: center;
  }
}

.footer {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #2e2e2e;
  color: rgb(255, 255, 255);
  font-weight: 400;
  line-height: 25.6px;
  word-wrap: break-word;
  text-align: left;
}
.footer .ft-contact {
  margin-bottom: 0;
}
.footer .ft-contact a {
  color: #fff;
  text-decoration: none;
}
.footer h5 {
  font-size: 20px;
  line-height: 20px;
  margin-bottom: 20px;
}
.footer a {
  color: #ffffff;
  text-decoration: none;
}
.footer p {
  margin-bottom: 16px;
  font-size: 16px;
  font-style: normal;
}
.footer hr {
  border-color: #ffffff;
  opacity: 0.05;
  margin-top: 35px;
}
@media (max-width: 767px) {
  .footer {
    text-align: center;
  }
  .footer .logo {
    margin-bottom: 10px;
  }
  .footer h5 {
    margin-top: 30px;
  }
}

/*! Arrow Down */
.scrollToBottom {
  position: absolute;
  bottom: 45px;
  left: 0;
  right: 0;
  margin: auto;
  width: 60px;
  height: 60px;
  cursor: pointer;
  background-color: rgba(80, 80, 80, 0.5);
  border-radius: 100%;
}
.scrollToBottom:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 30px;
  height: 27px;
  background: url('data:image/svg+xml,<svg height="30" viewBox="0 0 30 30" fill="%23ffffff" width="30" xmlns="http://www.w3.org/2000/svg"><path stroke-width="0.5" stroke="%23ffffff" d="M14.5 0c-.276.004-.504.224-.5.5v26c0 .66 1 .664 1 0V.5c.004-.282-.218-.504-.5-.5zM.5 15c-.45 0-.663.554-.354.854l14 14c.196.195.512.195.708 0l14-14c.442-.426-.248-1.167-.708-.708L14.5 28.793.854 15.146C.76 15.05.634 15 .5 15z"/></svg>');
  background-repeat: no-repeat;
  background-size: 100% 100%;
  animation: arrowdown 1.7s ease-in-out infinite;
}
@media (max-width: 767px) {
  .scrollToBottom {
    display: none;
  }
}

/*! Arrow Up */
.scrollToTop {
  bottom: 42px;
  right: 5%;
  position: fixed;
  text-align: right;
  z-index: 5000;
  color: #ffffff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  cursor: pointer;
  transform: scale(0);
  pointer-events: none;
  opacity: 0;
  transition: 0.4s;
  background: rgba(0, 0, 0, 0.2);
}
.scrollToTop.show {
  transform: none;
  opacity: 1;
  pointer-events: all;
}
.scrollToTop:hover {
  background: rgba(0, 0, 0, 0.4);
  transition: all 0.3s ease-in-out;
}
.scrollToTop:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 30px;
  height: 27px;
  background: url('data:image/svg+xml,<svg height="30" fill="%23ffffff" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg"><path stroke-width="0.5" stroke="%23ffffff" d="M14.5 30c-.276-.004-.504-.224-.5-.5v-26c0-.66 1-.664 1 0v26c.004.282-.218.504-.5.5zM.5 15c-.45 0-.663-.554-.354-.854l14-14c.195-.195.51-.195.707 0l14 14c.443.426-.248 1.167-.707.707L14.5 1.207.853 14.853C.758 14.95.635 15 .5 15z"/></svg>');
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

@keyframes arrowdown {
  0% {
    transform: translateY(0px);
    -webkit-transform: translateY(0px);
  }
  50% {
    transform: translateY(-5px);
    -webkit-transform: translateY(-5px);
  }
  100% {
    transform: translateY(0px);
    -webkit-transform: translateY(0px);
  }
}
@media (max-width: 500px) {
  .scrollToTop {
    left: 0;
    right: 0;
    margin: auto;
    bottom: 20px;
  }
}