.routes {
  padding: 120px 0px 120px 0px;
  background-color: #17181A;
  color: #fff;
}

.routes .caption {
  margin-bottom: 40px;
}

.routes__list {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-transform: translateX(6px);
  -ms-transform: translateX(6px);
  transform: translateX(6px);
}

.routes__list .arrow-link_blue,
.dark-bg .routes__item .arrow-link_blue {
  color: #0006FF;
}

.routes__list .arrow-link_blue:after,
.dark-bg .routes__item .arrow-link_blue:after {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzUiIGhlaWdodD0iMjAiIHZpZXdCb3g9IjAgMCAzNSAyMCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTI3LjU5MjUgOC4wMDAxMUwyMy40OTQ4IDMuMzE3MTJMMjYuNTA1MiAwLjY4MzEwNUwzNC42NTc1IDEwLjAwMDFMMjYuNTA1MiAxOS4zMTcxTDIzLjQ5NDggMTYuNjgzMUwyNy41OTI1IDEyLjAwMDFIMFY4LjAwMDExSDI3LjU5MjVaIiBmaWxsPSIjMDAwNkZGIi8+PC9zdmc+);
}

.routes__item {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  margin-bottom: 48px;
  overflow: hidden;
}

.routes__item a {
  display: block;
  position: relative;
  overflow: hidden;
  width: 576px;
  height: 100%;
  border-radius: 8px;
  padding: 40px 40px 42px 40px;
  background-color: #fff;
  color: #040505;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}

.routes__list.triple .routes__item a {
  width: 384px;
}

.routes__item-content {
  position: relative;
  z-index: 1;
}

.routes__item-content div {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  justify-content: center;
  -ms-align-items: center;
  align-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: #1F1F1F;
  margin-bottom: 23px;
}

.routes__item-content div img {
  display: block;
  max-width: 100%;
  max-height: 100%;
}

.routes__item-text {
  width: 454px;
  font-size: 18px;
  line-height: 26px;
  letter-spacing: -0.5px;
  margin-top: 13px;
}

.routes__item .wave-block__bg {
  display: block;
  position: absolute;
  width: 1400px;
  height: 1400px;
  margin-top: -700px;
  margin-left: -700px;
  border-radius: 50%;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  background-color: #E5E5E5;
  -webkit-transition: transform 1.2s;
  -o-transition: transform 1.2s;
  transition: transform 1.2s;
}

/* routes_slider */
.routes__list_slider {
  position: relative;
  margin: 0px -24px;
}

.routes__list_slider .slick-slide {
  padding: 0px 24px;
}

.routes__list_slider .slick-prev {
  top: 50%;
  left: 0;
  margin: -54px 0px 0px -2px;
}

.routes__list_slider .slick-next {
  top: 50%;
  right: 0;
  margin: -54px -2px 0px 0px;
}

@media screen and (min-width: 1000px) {
  .routes__item a:hover .arrow-link {
    color: #021B9B;
  }

  .routes__item a:hover .arrow-link_blue:after {
    width: 35px;
    background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzUiIGhlaWdodD0iMjAiIHZpZXdCb3g9IjAgMCAzNSAyMCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTI3LjU5MjUgOC4wMDAxMUwyMy40OTQ4IDMuMzE3MTJMMjYuNTA1MiAwLjY4MzEwNUwzNC42NTc1IDEwLjAwMDFMMjYuNTA1MiAxOS4zMTcxTDIzLjQ5NDggMTYuNjgzMUwyNy41OTI1IDEyLjAwMDFIMFY4LjAwMDExSDI3LjU5MjVaIiBmaWxsPSIjMDIxQjlCIi8+PC9zdmc+);
  }

  .routes__item:hover .wave-block__bg {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
}

@media screen and (max-width: 1250px) {
  .routes {
    padding-bottom: 130px;
  }

  .routes__list {
    -webkit-transform: none;
    transform: none;
  }

  .routes__item,
  .routes__list.triple .routes__item {
    width: 100%;
  }

  .routes__item:last-child {
    margin-bottom: 0;
  }

  .routes__item a,
  .routes__list.triple .routes__item a {
    width: 100%;
  }

  .routes__item-text {
    width: auto;
    margin-right: 100px;
  }
}

@media screen and (max-width: 760px) {
  .routes {
    padding: 80px 0px 88px 0px;
  }

  .routes .caption {
    margin-bottom: 24px;
  }

  .routes__item {
    margin-bottom: 16px;
  }

  .routes__item a {
    padding: 20px 20px 24px 20px;
  }

  .routes__item-content div {
    margin-bottom: 16px;
  }

  .routes__list .arrow-link_blue {
    display: inline-block;
    margin-right: 10px;
  }

  .routes__item-text {
    font-size: 16px;
    line-height: 22px;
    margin: 16px 0px 0px 0px;
  }

  .routes__item-text br {
    display: none;
  }
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.slick-track:before,
.slick-track:after {
  display: table;
  content: "";
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  display: none;
  float: left;
  height: 100%;
}

[dir="rtl"] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

.slick-arrow {
  position: absolute;
  z-index: 1;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: #0309d0;
  border: none;
  font-size: 1px;
  color: transparent;
  cursor: pointer;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.dark-bg .slick-arrow {
  background-color: #1463ff;
}

.slick-prev {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTQiIGhlaWdodD0iMTQiIHZpZXdCb3g9IjAgMCAxNCAxNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTYuNzA2OTYgMTMuNzA3TC0wLjAwMDE1MDY4MSA2Ljk5OTkyTDYuNzA2OTYgMC4yOTI4MThMOC4xMjExNyAxLjcwNzAzTDMuODI4MjggNS45OTk5MkwxMy40MTQxIDUuOTk5OTJMMTMuNDE0MSA3Ljk5OTkyTDMuODI4MjggNy45OTk5Mkw4LjEyMTE3IDEyLjI5MjhMNi43MDY5NiAxMy43MDdaIiBmaWxsPSJ3aGl0ZSIvPjwvc3ZnPg==);
}

.slick-next {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTQiIGhlaWdodD0iMTQiIHZpZXdCb3g9IjAgMCAxNCAxNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTYuNzA3MTEgMC4yOTI5NjlMMTMuNDE0MiA3LjAwMDA4TDYuNzA3MTEgMTMuNzA3Mkw1LjI5Mjg5IDEyLjI5M0w5LjU4NTc5IDguMDAwMDhIMFY2LjAwMDA4SDkuNTg1NzlMNS4yOTI4OSAxLjcwNzE4TDYuNzA3MTEgMC4yOTI5NjlaIiBmaWxsPSJ3aGl0ZSIvPjwvc3ZnPg==);
}

@media screen and (min-width: 1000px) {
  .slick-prev:hover,
  .slick-next:hover {
    background-color: #071e99;
  }

  .dark-bg .slick-prev:hover,
  .dark-bg .slick-next:hover {
    background-color: #0c3782;
  }
}

@media screen and (max-width: 1250px) {
  .slick-arrow {
    width: 48px;
    height: 48px;
  }

  .slick-prev {
    background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTMiIGhlaWdodD0iMTIiIHZpZXdCb3g9IjAgMCAxMyAxMiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik02LjI5MjYxIDAuMTUwMTQ2TDAuNDQyNjUxIDYuMDAwMTFMNi4yOTI2MSAxMS44NTAxTDcuNzA2ODMgMTAuNDM1OUw0LjI3MTA4IDcuMDAwMTFIMTIuMTQyNlY1LjAwMDExSDQuMjcxMDhMNy43MDY4MyAxLjU2NDM2TDYuMjkyNjEgMC4xNTAxNDZaIiBmaWxsPSJ3aGl0ZSIvPgo8L3N2Zz4K");
  }

  .slick-next {
    background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTMiIGhlaWdodD0iMTIiIHZpZXdCb3g9IjAgMCAxMyAxMiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik02LjcwNzM5IDAuMTUwMTQ2TDEyLjU1NzMgNi4wMDAxMUw2LjcwNzM5IDExLjg1MDFMNS4yOTMxNyAxMC40MzU5TDguNzI4OTIgNy4wMDAxMUgwLjg1NzQyMlY1LjAwMDExSDguNzI4OTJMNS4yOTMxNyAxLjU2NDM2TDYuNzA3MzkgMC4xNTAxNDZaIiBmaWxsPSJ3aGl0ZSIvPgo8L3N2Zz4K");
  }
}

.free-guide-form {
  width: 600px;
  padding: 38px 46px 46px 46px;
  border: 2px solid #040505;
  border-radius: 6px;
  margin-top: -4px;
}

.free-guide-form .caption {
  margin-bottom: 36px;
}

.free-guide-form .guide-hbspt-form {
  min-height: 364px;
}

.free-guide-form .guide-hbspt-form label span {
  font-size: 14px;
  line-height: 20px;
}

.free-guide-form .guide-hbspt-form .input input {
  height: 56px;
  border: none;
  background-color: #f5f5f5;
  border-radius: 6px;
  padding: 0 16px;
  font-size: 16px;
  font-family: Medium;
  font-variant-ligatures: none;
  margin-top: 8px;
}

.free-guide-form .guide-hbspt-form .input input.invalid.error {
  border: 1px solid #ed5567;
}

.free-guide-form .guide-hbspt-form .hs-error-msgs {
  color: #fa5252;
  font-size: 14px;
  line-height: 20px;
  padding-top: 4px;
}

.free-guide-form .guide-hbspt-form .hs-form-field {
  margin-bottom: 24px;
}

.free-guide-form .guide-hbspt-form .legal-consent-container .hs-richtext p {
  font-size: 12px;
  line-height: 20px;
  color: #999;
  margin-bottom: 24px;
}

.free-guide-form .guide-hbspt-form .legal-consent-container .hs-richtext p a {
  color: #0006ff;
}

.free-guide-form .guide-hbspt-form .legal-consent-container .hs-richtext p a:hover {
  color: #006;
}

.free-guide-form .guide-hbspt-form .hs_submit .hs-button {
  width: 100%;
  height: 64px;
  padding: 0 24px;
  border-radius: 6px;
  border: none;
  background-color: #0006ff;
  color: #fff;
  letter-spacing: 0.2px;
  user-select: none;
  cursor: pointer;
  font-family: Medium;
  font-size: 16px;
  transition: .4s;
  margin-top: 8px;
}

.free-guide-form .guide-hbspt-form .hs_submit .hs-button:hover {
  background-color: #0309d0;
}

@media screen and (max-width: 1250px) {
  .free-guide-form {
    width: 100%;
  }
}

@media screen and (max-width: 760px) {
  .free-guide-form {
    width: calc(100vw - 40px);
    padding: 22px 22px 30px 22px;
    margin: 0px 0px 40px 0px;
  }

  .free-guide-form .caption {
    margin-bottom: 24px;
  }

  .free-guide-form .guide-hbspt-form .input input {
    height: 48px;
  }

  .free-guide-form .guide-hbspt-form .legal-consent-container .hs-richtext p {
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 0;
  }
}
.free-guide-page {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  justify-content: space-between;
  -ms-align-items: flex-start;
  align-items: flex-start;
  padding: 60px 0px 0px 0px;
  margin-bottom: 116px;
}

.free-guide-page__content {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  justify-content: space-between;
  -ms-align-items: flex-start;
  align-items: flex-start;
  margin-bottom: 55px;
}

.tablet-slider {
  position: relative;
  width: 466px;
}

.tablet-slider:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border-radius: 35px;
  box-shadow: 6px 6px 20px rgba(0, 0, 0, 0.3), 1px 1px 4px rgba(0, 0, 0, 0.7);
}

.tablet-slider__content {
  position: relative;
  height: 667px;
  padding: 57px 24px 0px 24px;
  background-image: url(../../../../images/other/tablet.png);
  -webkit-background-size: 100% 100%;
  background-size: 100% 100%;
  overflow: hidden;
}

.tablet-slider__slider {
  margin: auto;
  width: 418px;
  background-color: #1f1f1f;
}

.tablet-slider__slider button {
  display: none !important;
}

.tablet-slider__slider .slick-arrow.slick-disabled {
  background-color: #cccccc;
  pointer-events: none;
}

.tablet-slider__slider .slick-slide {
  height: 506px !important;
  position: relative;
}

.tablet-slider__slide {
  width: 418px !important;
  height: 506px !important;
}

.tablet-slider__slide-default {
  padding: 33px 34px 0px 34px;
  background-color: #fff;
}

.tablet-slider__slide-default .slide-logo-img {
  display: block;
  width: 88px;
  margin: 0px auto 33px auto;
}

.tablet-slider__slide-default h3,
.tablet-slider__slide-default h2 {
  margin-bottom: 24px;
  font-family: ExtraBold;
  font-style: normal;
  font-weight: 800;
}

.tablet-slider__slide-default h3:not(:first-of-type),
.tablet-slider__slide-default h2:not(:first-of-type) {
  margin-top: 24px;
}

.tablet-slider__slide-default h3 {
  font-size: 26px;
  line-height: 32px;
  letter-spacing: -0.5px;
}

.tablet-slider__slide-default h2 {
  font-size: 48px;
  line-height: 48px;
  letter-spacing: -1.5px;
}

.tablet-slider__slide-default p,
.tablet-slider__slide-default ul li {
  font-size: 14px;
  line-height: 20px;
}

.tablet-slider__slide-default p+p,
.tablet-slider__slide-default p+ul {
  margin-top: 20px;
}

.tablet-slider__slide-default ul li:not(:last-child) {
  margin-bottom: 8px;
}

.tablet-slider__slide-default ul li {
  padding-left: 31px;
  background-position: 12px 7px;
  background-size: 6px 6px;
  background-repeat: no-repeat;
  background-image: url(../../../../images/icons/ellipse.svg);
}

.tablet-slider__slider-menu {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  justify-content: space-between;
  -ms-align-items: center;
  align-items: center;
  justify-content: space-between;
  height: 48px;
  padding: 0px 32px;
  background-color: #f0f0f0;
}

.tablet-slider__position {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  -ms-align-items: center;
  align-items: center;
  font-size: 10px;
  line-height: 10px;
  font-family: Bold;
  color: #999999;
  -webkit-user-select: none;
  user-select: none;
}

.tablet-slider__position span {
  margin-left: 3px;
}

.tablet-slider__slider-menu-arrows {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  -ms-align-items: center;
  align-items: center;
}

.tablet-slider__slider-menu-arrows div+div {
  margin-left: 4px;
}

.tablet-slider__slider-menu-arrows .slick-arrow {
  position: static;
  width: 32px;
  height: 32px;
}

.tablet-slider__slider-menu-arrows .slick-arrow.slick-disabled {
  background-color: #cccccc;
  pointer-events: none;
}

.tablet-slider__slider-menu-arrows .slick-prev {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTIiIGhlaWdodD0iMTIiIHZpZXdCb3g9IjAgMCAxMiAxMiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik02LjI5Mjg5IDAuMjkyOTA4TDAuNTg1Nzg3IDYuMDAwMDFMNi4yOTI4OSAxMS43MDcxTDcuNzA3MTEgMTAuMjkyOUw0LjQxNDIxIDcuMDAwMDFMMTIgNy4wMDAwMUwxMiA1LjAwMDAxTDQuNDE0MjEgNS4wMDAwMUw3LjcwNzExIDEuNzA3MTJMNi4yOTI4OSAwLjI5MjkwOFoiIGZpbGw9IndoaXRlIi8+Cjwvc3ZnPgo=");
}

.tablet-slider__slider-menu-arrows .slick-next {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTIiIGhlaWdodD0iMTIiIHZpZXdCb3g9IjAgMCAxMiAxMiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik01LjcwNzExIDAuMjkyOTA4TDExLjQxNDIgNi4wMDAwMUw1LjcwNzExIDExLjcwNzFMNC4yOTI4OSAxMC4yOTI5TDcuNTg1NzkgNy4wMDAwMUwwIDcuMDAwMDFMMCA1LjAwMDAxTDcuNTg1NzkgNS4wMDAwMUw0LjI5Mjg5IDEuNzA3MTJMNS43MDcxMSAwLjI5MjkwOFoiIGZpbGw9IndoaXRlIi8+Cjwvc3ZnPgo=");
}

.free-guide-page__content .free-guide-page__benefits {
  display: none;
}

.free-guide-page__benefits {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  justify-content: space-between;
}

.free-guide-page__benefits ul {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 965px;
  margin-top: 9px;
}

.free-guide-page__benefits ul li {
  width: 33.333%;
  max-width: 33.333%;
  margin-bottom: 23px;
  padding: 0px 25px 0px 25px;
  line-height: 20px;
  background-position: 0px 4px;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTMiIHZpZXdCb3g9IjAgMCAxNiAxMyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xNS4xMjExIDEuOTk2NTdMNi4wNjQyMiAxMi4xODU2TDAuOTM5MzMxIDcuMDYwNjlMMy4wNjA2NSA0LjkzOTM2TDUuOTM1NzcgNy44MTQ0OEwxMi44Nzg5IDAuMDAzNDc5TDE1LjEyMTEgMS45OTY1N1oiIGZpbGw9IiNGRkQ0MDAiLz4KPC9zdmc+Cg==");
}

.free-guide-page__benefits ul li:nth-child(3n + 3) {
  padding-right: 0;
}

.free-guide-page__benefits ul li:last-child {
  margin-right: 0;
}

.slick-slide p img {
  display: block;
  width: 419px;
  /* object-fit: cover; */
  object-fit: contain;
  position: absolute;
  top: 0;
  left: 0;
}

.tablet-slider__slide-default p {
  text-align: start;
}

.tablet-slider__slide-default p b {
  font-weight: 900;
}

.free-guide-page.animate-block .container {
  opacity: 0;
  -webkit-transform: translateY(75px);
  transform: translateY(75px);
}

.free-guide-page.animate-block.animated .container {
  -webkit-transition: 0.75s;
  transition: 0.75s;
}

.delay.animated {
  transition-delay: 0.2s;
}

.free-guide-page.animated .container {
  opacity: 1;
  -webkit-transform: translateY(0px);
  transform: translateY(0px);
}

@media screen and (max-width: 1250px) {
  .free-guide-page {
    padding-top: 66px;
    margin-bottom: 145px;
  }

  .free-guide-page__content {
    display: block;
    margin-bottom: 0px;
  }

  .tablet-slider {
    margin: 0px auto 85px auto;
  }

  .free-guide-page__content .free-guide-page__benefits {
    display: block;
    margin-bottom: 45px;
  }

  .free-guide-page__benefits {
    display: none;
  }

  .free-guide-page__benefits .caption {
    margin-bottom: 30px;
  }

  .free-guide-page__benefits ul {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: auto;
    margin-bottom: -15px;
  }

  .free-guide-page__benefits ul li {
    width: 50%;
    max-width: 50%;
    padding-right: 40px;
    margin: 0px 0px 25px 0px;
  }
}

@media screen and (max-width: 760px) {
  .free-guide-page {
    width: 100%;
    padding-top: 48px;
    margin-bottom: 128px;
  }

  .tablet-slider {
    width: 293px;
    margin: 0px auto 144px auto;
  }

  .tablet-slider:before {
    display: none;
  }

  .tablet-slider__content {
    width: auto;
    height: auto;
    padding: 0;
    background-image: none;
  }

  .tablet-slider__content:before {
    content: "";
    display: block;
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 6px solid #040505;
    border-radius: 34px;
    pointer-events: none;
  }

  .tablet-slider:after {
    content: "";
    display: block;
    position: absolute;
    top: 5px;
    left: 50%;
    width: 153px;
    height: 21px;
    background-image: url(../../../../images/other/bangs.svg);
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }

  .tablet-slider__slider {
    position: relative;
    width: 293px;
    border-radius: 34px;
    clip-path: inset(0px 0px round 34px);
    background-color: #1f1f1f;
    overflow: hidden;
  }

  .tablet-slider__slider .slick-track {
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
  }

  .tablet-slider__slide {
    width: 293px !important;
  }

  .slick-slide p img {
    width: 293px;
    height: 100%;
    left: 6px;
  }

  .tablet-slider__slide-default {
    height: 620px;
    padding: 59px 26px 23px 26px;
  }

  .tablet-slider__slide-default .slide-logo-img {
    margin-bottom: 24px;
  }

  .tablet-slider__slide-default h3 {
    font-size: 24px;
    line-height: 28px;
  }

  .tablet-slider__slide-default h2 {
    font-size: 28px;
    line-height: 32px;
    letter-spacing: -1px;
  }

  .tablet-slider__slide-default p {
    overflow: hidden;
  }

  .tablet-slider__slider-menu {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -80px;
    height: 48px;
    padding: 0;
    background-color: transparent;
    margin: 0;
  }

  .tablet-slider__position {
    font-size: 14px;
    line-height: 16px;
    color: #222222;
  }

  .tablet-slider__slider-menu-arrows .slick-arrow {
    width: 48px;
    height: 48px;
  }

  .free-guide-page__content .free-guide-page__benefits {
    display: none;
  }

  .free-guide-page__benefits {
    display: block;
  }

  .free-guide-page__benefits .caption {
    margin-bottom: 24px;
  }

  .free-guide-page__benefits ul {
    display: block;
    margin: 0;
  }

  .free-guide-page__benefits ul li {
    width: 100%;
    max-width: 100%;
    padding-right: 0;
    margin: 0;
  }

  .free-guide-page__benefits ul li+li {
    margin-top: 16px;
  }
}
