@import url('https://fonts.googleapis.com/css2?family=Ubuntu:wght@300;400;500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Ubuntu+Condensed&family=Ubuntu:wght@400;500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bungee+Inline&family=Ubuntu+Condensed&family=Ubuntu:wght@400;500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Jost:wght@400;700&display=swap');

/* Material Icons */

@font-face {
  font-family: 'icomoon';
  src:  url('/url/icomoon.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: block;
}
.icon {
  display: inline-block;
}
.icon:before {
  font-family: 'icomoon';
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

:root {
  --primary: #000000;
  --header: #97f19abd;
  --accent: #FBD702;
  --danger: #CCA69A;
  --primary-hover: #0a0a0a;
  --accent-hover: #fdd90e;

  --dark-default: #000;
  --dark-muted: rgba(0, 0, 0, 0.9);
  --grey: #EEEEEE;
  --grey-muted: rgb(66 66 66 / 1.9);

  --icon-bookmark: "\e900";
  --icon-favourite:"\e903";
  --icon-arrow-right: "\e904";
  --icon-menu: "\e905";
  --icon-close: "\e906";
  --icon-search: "\e907";
  --icon-g: "\e908";
  --icon-plus: "\e909";
  --icon-percent: "\e90a";
  --icon-check: "\e90b";
  --icon-cross: "\e90c";

  --font-bungee-inline: 'Bungee Inline', cursive;
  --font-ubuntu: 'Ubuntu', sans-serif;
  --font-ubuntu-condensed: 'Ubuntu Condensed', sans-serif;
  --font-jost: 'Jost', sans-serif;
}


:focus {
  outline: none;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

img {
  display: block;
  border: none;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

ul{
  
}
ol{
  list-style: inside decimal;
}

a {
  color: var(--primary);
  transition: all 200ms cubic-bezier(0.39, 0, 0.17, 0.99);
}
a:hover {
  text-decoration: none;
}

html,
body {
  height: 100%;
}

body {
  font-family: var(--font-ubuntu);
  font-size: 16px;
  line-height: 1.6;
  color: var(--dark-muted);
  background: #fff;
}

.page-title {
  font-family: var(--font-ubuntu);
  font-size: 44px;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 20px;
  color: var(--dark-default);
  padding: 10px;
  text-align:center;
}

.section-title {
  font-family: var(--font-ubuntu);
  font-size: 34px;
  font-weight: 600;
  line-height: 1.25;
  margin-bottom: 20px;
  color: var(--dark-default);
}
.section-subtitle {
  font-family: var(--font-ubuntu);
  font-size: 26px;
  font-weight: 500;
  line-height: 1.1;
  margin-bottom: 20px;
  text-transform: uppercase;
  color: var(--dark-default)
}
p {
  word-break: break-word;
}
p + p {
  margin-top: 20px;
}
main,
section {
  padding-top: 30px;
}

.wrapper {
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-height: 100%;
}
.center {
  width: 100%;
  max-width: 1228px;
  min-width: 280px;
  margin: 0 auto;
  padding: 0 14px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-ubuntu-condensed);
  font-weight: 400;
  font-size: 18px;
  width: 100%;
  max-width: 320px;
  height: 66px;
  margin-top: -20px;
  text-align: center;
  color: var(--dark-default);
  cursor: pointer;
  border: none;
  background: url("btn-bg-mob.svg") no-repeat center;
  background-size: 100% 100%;
  text-decoration: none;
}
.btn:hover {
  filter: brightness(1.1);
}
.btn span {
  position: relative;
  margin-bottom: 4px;
}
.btn span:before {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  height: 2px;
  width: 60px;
  background: var(--dark-default);
}
.logo-block {
  display: inline-block;
}
/**********  HEADER **********/
header {
  padding: 30px 0;
  background: var(--header);
}
header .header-content {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.header-content .btn {
  font-size: 12px;
  height: auto;
  margin: 0;
  padding: 2px 10px;
  background: transparent;
}
.header-content .btn span:before {
  width: 100%;
}
.header-content .btn:hover {
  opacity: 0.7;
}
header .header-top-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.header-nav-block {
  display: none;
  flex: none;
}

/*  header nav block */
.mobile-btn-block {
  display: none;
}
.mobile-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  width: 24px;
  height: 24px;
}
.mobile-btn:before {
  font-size: 12px;
  content: var(--icon-menu);
  color: var(--dark-default);
}

header .header-nav-item {
  color: inherit;
  cursor: pointer;
  font-size: 22px;
  line-height: 1.5;
  color: var(--dark-default);
  text-decoration: none;
}
header .header-nav-item:last-child {
  margin-right: 0;
}
.header-nav-block .header-nav-item:hover,
.header-nav-block .header-nav-item.is-active {
  text-decoration: underline;
}

/* // header nav block */

/******* MAIN *******/
.text-container {
  /*display: grid;*/
  /*grid-gap: 20px;*/
}
main .picture-card {
  padding-bottom: 30px;
  background: url(/url/card-bg-mob.svg) no-repeat center top;
  background-size: 100% 100%;
}
main .picture-card:after {
  content: none;
}
.picture-card {
  position: relative;
  margin: 0 auto;
  padding: 30px 10px 0 12px;
}
.picture-card:before {
  content: "";
  display: block;
  width: 100%;
  height: 58px;
  margin-bottom: 15px;
  background: url("/url/card-header-mob.svg") no-repeat center / contain;
}
.picture-card:after {
  content: "";
  display: block;
  width: 199px;
  height: 30px;
  margin: 20px 0 0 10px;
  background: url("/url/barcode.svg") no-repeat left top;
}
.picture-card img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}
.title-wrapper {
  position: relative;
  margin-top: -30px;
  padding-top: 30px;
}
.title-wrapper:before {
  content: var(--icon-g);
  display: inline-flex;
  font-family: 'icomoon';
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  font-size: 74px;
  color: var(--grey);
  position: absolute;
  z-index: -1;
  bottom: -8px;
  left: -5px;
} 
/******* // MAIN *******/

/******* PROPS AND CONS *******/
.comparsion-block {
  display: grid;
  grid-gap: 25px;
}
.comparsion-item {
  display: grid;
  grid-gap: 10px;
}
.comparsion-item li {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  font-size: 22px;
  line-height: 1.48;
  color: var(--dark-default);
}
.comparsion-item li:before {
  content: var(--icon-check);
  display: inline-flex;
  font-family: 'icomoon';
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  font-size: 24px;
  margin-right: 20px;
  color: var(--accent);
}
.comparsion-cons li:before {
  content: var(--icon-cross);
  color: var(--dark-default);
}
/******* // PROPS AND CONS *******/

/******* COLUMN BLOCKS AND BANNER *******/
.column-block {
  display: grid;
  grid-gap: 20px;
}
.banner-item {
  position: relative;
  text-align: center;
  max-width: 460px;
  width: 100%;
  margin: 0 auto;
}
.banner-item img {
  width: 100%;
}
.banner-content {
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px 10px 15px;
}
.banner-content:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 120px 0 0 0;
  -webkit-backdrop-filter: blur(9px);
  backdrop-filter: blur(9px);
  background: rgba(136, 136, 135, 0.05);
}
.banner-slogan-wrapper {
  position: relative;
}
.banner-slogan .icon:before {
  content: var(--icon-check);
  position: absolute;
  right: 0;
  bottom: 0;
  font-size: 45px;
  margin: 0 0 10px 0;
}
.banner-slogan {
  display: inline-block;
  font-family: var(--font-jost);
  font-size: 30px;
  font-weight: 700;
  line-height: 1.45;
  text-transform: uppercase;
  color: var(--dark-default);
}
.banner-slogan .highlighted {
  display: block;
  color: #fff;
}
.banner-item .btn {
  font-family: var(--font-bungee-inline);
  font-size: 24px;
  font-weight: 400;
  width: 206px;
  margin-top: 10px;
  color: var(--grey);
  background-image: url("/url/banner-btn-bg.svg");
}
/******* // COLUMN BLOCKS AND BANNER *******/
/******* STATS SECTION *******/
.stat-block {
  display: grid;
  grid-gap: 60px;
  justify-content: center;
  font-family: var(--font-ubuntu);
  line-height: 1.2;
}
.stat-block .percent {
  font-size: 54px;
  font-weight: 500;
  line-height: 62px;
  color: var(--accent);
}
.stat-block .percent:after {
  display: inline-block;
  position: relative;
  z-index: -1;
  top: 5px;
  content: var(--icon-percent);
  font-family: 'icomoon';
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 62px;
  font-size: 64px;
  color: var(--dark-default);
  margin: 0 0px 0 -20px;
}
.stat-block .stat-title {
  font-weight: 300;
  font-size: 42px;
  color: var(--dark-default);
}
/******* // STATS SECTION *******/
/******* CITIES SECTION *******/

.city-content {
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  text-align: center;
}
.city-content:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(9px);
}
.city-content .city-text {
  font-family: var(--font-jost);
  font-weight: 400;
  font-style: italic;
  font-size: 30px;
  line-height: 1.25;
  max-width: 260px;
  margin: 0 auto;
  color: #fff;
}
.city-content .btn {
  font-size: 24px;
  width: 206px;
  margin-top: 10px;
}
.city-content .btn span:before {
  width: 100%;
}
/*slider nav  */
.slider-pagination {
  display: none;
}

.slider-nav {
    position: relative;
    display: flex;
    justify-content: center;
    margin-top: 20px
}
.slider-arrow {
    position: relative;
    z-index: 9;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    margin-right: 20px;
    color: var(--dark-default);
    border-radius: 50%;
    box-shadow: 0 0 2px rgba(0,0,0,.1),0 2px 2px rgba(0,0,0,.2);
    cursor: pointer;
    opacity: 1;
    background: var(--grey);
    transition: opacity 0.35s linear 0s
}

.slider-arrow:hover {
    opacity: 0.8;
}

.slider-arrow:before {
    content: "";
    width: 10px;
    height: 10px;
    border: 2px solid var(--dark-default);
    border-top: none
}

.slider-arrow.is-hidden {
    opacity: 0.3;
    pointer-events: none
}

.arrow-prev::before {
    margin-right: -4px;
    border-right: none;
    transform: rotate(45deg)
}

.arrow-next::before {
    margin-right: 4px;
    border-left: none;
    transform: rotate(-45deg)
}

.arrow-next {
    margin-right: 0
}
/******* // CITIES SECTION *******/

/******* QA SECTION *******/
.faq-block .faq-item {
  position: relative;
  margin-bottom: 20px;
  color: var(--dark-default);
}
.faq-block .faq-item:last-child {
  margin-bottom: 0;
}
.faq-block .faq-item a {
  text-decoration: none;
}
.faq-block .faq-item a:hover {
  text-decoration: underline;
}
.faq-block .faq-title {
  position: relative;
  font-size: 26px;
  font-weight: 300;
  line-height: 1.15;
  padding: 14px 10px 14px 54px;
  cursor: pointer;
  background: var(--grey);
}

.faq-block .faq-title::after {
  content: var(--icon-plus);
  display: inline-flex;
  font-family: 'icomoon';
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  font-size: 24px;
  height: 24px;
  margin-right: 20px;
  color: var(--dark-default);
  position: absolute;
  left: 10px;
  top: 0;
  bottom: 0;
  margin: auto;
}

.faq-block .faq-content {
  display: none;
  padding: 34px 0 20px 54px;
}
.faq-block .faq-item p {
  font-size: 18px;
}
.faq-item.is-active .faq-content {
  display: block;
}
.faq-item.is-active .faq-title::after {
  transform: rotate(-45deg);
}

/******* // QA SECTION *******/

/**********  FOOTER **********/
footer {
 position: relative; 
  font-size: 18px;
  margin-top: 70px;
  padding: 40px 0;
  color: var(--grey-muted);
  background: var(--header);
}
footer:after {
  content: "";
  position: absolute;
  right: 14px;
  top: -12px;
  width: 132px;
  height: 32px;
  background-size: 100% auto;
}
footer .footer-top {
  display: grid;
  grid-gap: 50px;
}
footer .footer-links-block {
  display: grid;
  grid-gap: 10px;
}
footer .footer-links-block li {
  display: block;
  font-family: var(--font-ubuntu-condensed);
}
footer .footer-links-block li a {
  display: inline-block;
  text-decoration: none;
  color: #fff;
  font-size: 24px;
  line-height: 1.25;
}
footer li a:hover {
  opacity: 0.5;
}
footer .footer-text {
  display: grid;
  grid-gap: 40px;
}
footer .footer-title {
  font-size: 24px;
  font-family: var(--font-ubuntu-condensed);
  color: #fff;
  padding-bottom: 20px;
}

/******* Cities dropdonw *********/
.dropdown-is-active.wrapper, 
.dropdown-is-active header {
  background: var(--grey);
}
.dropdown-is-active .header-nav-wrapper,
.dropdown-is-active .header-content,
.dropdown-is-active .cities-wrapper .btn,
.dropdown-is-active .hookers-content-container,
.dropdown-is-active .hookers-footer-section,
.cities-btn-block {
  display: none;
}
.dropdown-is-active .cities-btn-block {
  display: block;
  cursor: pointer;
}
.cities-close-btn:before {
  font-size: 14px;
  content: var(--icon-close);
  color: var(--dark-default);
}
.cities-wrapper {
  width: 100%;
}
.dropdown-is-active .cities-list {
  display: grid;
}
.cities-list {
  display: none;
  grid-gap: 5px;
  margin-top: 40px;
}
.cities-list a {
  font-size: 22px;
  text-decoration: none;
}
.cities-list a:hover {
  opacity: 0.5;
}
.cities-wrapper .btn {
  display: none;
}
/******* // Cities dropdonw *********/

@media screen and (max-width: 919px) {
  header .header-nav-wrapper {
    display: none;
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    z-index: 222;
    overflow-y: auto;
    padding: 0;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }
  header .header-nav-block {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 20px;
    background: var(--grey);
    text-align: left;
    flex: 1;
    width: 100%;
  }
  .header-nav-wrapper .mobile-btn-block {
    position: absolute;
    right: 15px;
    top: 30px;
  }
  .header-nav-wrapper .mobile-btn:before {
    content: var(--icon-close);
  }
  header .header-nav-item {
    display: block;
    margin: 5px 0;
    color: var(--dark-default);
  }
  .mobile-btn-block {
    display: flex;
  }
  .mobile-nav-visible .header-nav-wrapper {
    display: flex;
  }
  .mobile-nav-visible header {
    position: relative;
  }
  /* city dropdown */
  .header-nav-block .dropdown-btn {
    display: none;
  }
  .cities-close-btn:before {
    font-size: 12px;
  }
  .cities-wrapper .btn {
    display: inline-flex;
    font-family: var(--font-ubuntu);
    position: relative;
    width: auto;
    padding: 2px 55px 2px 10px;
    height: auto;
  }
  .cities-wrapper .btn:after {
    content: "";
    position: absolute;
    top: 0;
    right: 10px;
    bottom: 5px;
    margin: auto;
    width: 8px;
    height: 8px;
    transform: rotate(-45deg);
    border: 2px solid var(--dark-default);
    border-top: none;
    border-right: none;
  }
  footer .center {
    display: grid;
    grid-gap: 50px;
  }
}

@media screen and (min-width: 920px) {
  /*main {*/
  /*  padding-top: 60px;*/
  /*}*/
  section {
    padding-top: 50px;
  }
  header .logo-block img {
    width: 360px;
  }
  .header-nav-wrapper {
    flex: 1;
    min-width: 50%;
    margin-left: 40px;
  }
  .header-nav-block {
    position: relative;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex-wrap: wrap;
  }
  header .header-nav-item,
  .header-content .btn {
    font-size: 22px;
    margin-left: 40px;
    padding: 0;
  }
  .header-content {
    margin-left: auto;
  }
  .nav-item-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .cities-list {
    grid-template-columns: 1fr 1fr;
    margin-top: 150px;
  }
  main {
    padding-bottom: 10px;
  }
  main .picture-card {
    order: 1;
    margin: -8px 0 0 0;
    padding: 30px 18px 30px 20px;
    background-image: url("/url/card-bg-web.svg");
  }
  
  .picture-card img {
    margin-left: auto;
  }
  .picture-card:before {
    background-image: url("/url/card-header-web.svg");
  }
  .text-container {
    /*grid-gap: 55px;*/
    /*grid-template-columns: 48% 1fr;*/
    /*align-items: flex-start;*/
  }
  .hookers-text-section .btn {
    max-width: 100%;
    width: auto;
    font-size: 24px;
    padding: 0 20px;
  }
  .hookers-text-section .btn span:before {
    width: 80px;
  }
  .title-wrapper:before {
    left: -50px;
  }
  .comparsion-block {
    grid-template-columns: 1fr 1fr;
    align-items: flex-start;
  }
  .column-block {
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 50px;
    align-items: flex-start;
  }
  .stat-block {
    display: flex;
    justify-content: center;
    align-items: center;
    grid-gap: initial;
  }
  .stat-block .stat-item {
    margin: 0 30px;
  }
  .slider-item {
    padding: 0 25px;
  }
  footer {
    margin-top: 20px;
    padding: 45px 0;
  }
  footer:after {
    right: 56px;
    top: -24px;
    width: 264px;
    height: 64px;
  }
  footer .center {
    position: relative;
  }
  footer .logo-block {
    position: absolute;
  }
  footer .footer-text {
    grid-gap: 60px;
    flex: 1;
    grid-template-columns: auto auto;
    justify-content: center;
  }
  footer .text-block {
    /*max-width: 350px;*/
    text-align:center;
    font-size:16px;
  }
  footer .footer-links-block {
    padding: 0 50px 0 10px;
    min-width: 300px;
    flex-shrink: 0;
  }
  footer .footer-top {
    /*grid-template-columns: 350px auto;*/
    align-items: flex-start;
    grid-gap: 20px;
    margin: 0;
    text-align: left;
    padding-top:50px;
  }

}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .wrapper {
    display: block;
  }
}

@media all and (min--moz-device-pixel-ratio:0) and (min-width: 980px){
  .banner-content:before {
    background: rgba(136,136,135,.35);
    box-shadow: inset 0 0 60px 0 rgba(136,136,135,.35);
  }
  .city-content:before {
    background: rgba(0,0,0,.4);
    box-shadow: inset 0 0 60px 0 rgba(0,0,0,.4);
  }
}
@media screen and (min-width: 1360px) {
    .slider-nav {
        position:absolute;
        left: 0;
        right: 0;
        height: 0;
        margin: auto;
        bottom: 0;
        top: 0
    }

    .slider-arrow {
        position: absolute;
        top: 0;
        bottom: 0;
        margin: auto
    }

    .arrow-prev {
        left: -50px
    }

    .arrow-next {
        right: -50px
    }
}
@media screen and (max-width: 460px) {
  .hookers-content-container{
    max-width:380px;
    margin: 0 auto;
  }
}


/******* BREADCRUMBS *******/
.breadcrumbs-block .breadcrumbs-item,.breadcrumbs-block .breadcrumbs-item a {
  font-size: 22px;
  line-height: 1;
  color: var(--dark-default);
  text-decoration: none;
  margin-right: 15px;
  display: inline-block
}
.breadcrumbs-block .breadcrumbs-item a:hover {
  text-decoration: underline
}
.breadcrumbs-block .breadcrumbs-item:last-child:after {
  display: none
}
.breadcrumbs-block .breadcrumbs-item:after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border: 2px solid var(--dark-default);
  border-top: none;
  border-left: none;
  margin: 0 5px 2px 0;
  transform: rotate(-45deg);
}

.wrap-row{
  display:flex;
}
.wrap-col{
  border: 1px solid #3232ff54;
  border-radius: 5px;
  padding:10px;
  margin:10px;
  flex-basis: 75%;
}
.wrap-card{
  display:flex;
  margin:0 auto;
  flex-direction:column;
  /*padding: 10px;*/
}
.card-item{
  display:flex;
  flex-direction:column;
  padding:10px;
}
.item-subtitle {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.17em;
    font-weight: bold;
    background:#8c8b8b38;
    height:60px; 
}
@media screen and (max-width: 1220px) {
  .wrap-row{
    display:flex;
    flex-wrap:wrap;
    
  }
   .wrap-col{
    width:100%;
    flex-basis:100%;
  }
  iframe{
    width:100%;
  }
}
@media screen and (max-width: 1220px) {
  .wrap-card{
    width:100%;
  }
  .decor-1{
    display:none;
  }
  .decor-2{
    display:none;
  }
  .decor-3{
    display:none;
  }
}
.wrapper-icon{
  margin:0 auto;
}
.wrapper-icon .icon{
  position: relative;
  background-color: #ffffff;
  border-radius: 50%;
  margin: 10px;
  width: 50px;
  height: 50px;
  line-height: 50px;
  font-size: 22px;
  display: inline-block;
  align-items: center;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  color: #333;
  text-decoration: none;
  text-align:center;
}
.wrapper-icon .tooltip {
  position: absolute;
  top: 0;
  line-height: 1.5;
  font-size: 14px;
  background-color: #ffffff;
  color: #ffffff;
  padding: 5px 8px;
  border-radius: 5px;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.wrapper-icon .tooltip::before {
  position: absolute;
  content: "";
  height: 8px;
  width: 8px;
  background-color: #ffffff;
  bottom: -3px;
  left: 50%;
  transform: translate(-50%) rotate(45deg);
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.wrapper-icon .icon:hover .tooltip {
  top: -45px;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.wrapper-icon .icon:hover span,
.wrapper-icon .icon:hover .tooltip {
  text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.1);
}
.wrapper-icon .facebook:hover,
.wrapper-icon .facebook:hover .tooltip,
.wrapper-icon .facebook:hover .tooltip::before {
  background-color: #3b5999;
  color: #ffffff;
}
.wrapper-icon .twitter:hover,
.wrapper-icon .twitter:hover .tooltip,
.wrapper-icon .twitter:hover .tooltip::before {
  background-color: #46c1f6;
  color: #ffffff;
}
.wrapper .instagram:hover,
.wrapper .instagram:hover .tooltip,
.wrapper .instagram:hover .tooltip::before {
  background-color: #e1306c;
  color: #ffffff;
}
.wrapper-icon .github:hover,
.wrapper-icon .github:hover .tooltip,
.wrapper-icon .github:hover .tooltip::before {
  background-color: #333333;
  color: #ffffff;
}
.wrapper-icon .youtube:hover,
.wrapper-icon .youtube:hover .tooltip,
.wrapper-icon .youtube:hover .tooltip::before {
  background-color: #de463b;
  color: #ffffff;
}
.wrap-row .slider-item {
    padding: 10px;
  }
ol img{
  display:inline;
  padding-right:3px;
  width:25px;
  vertical-align: bottom;
}
ol a{
  position:relative;
  text-decoration:none;
}
ol a:hover{
  color: var(--header);
}
ol span{
  padding-left:20px;
}
.wrap-col li{
  padding-bottom:7px;
  /*font-size:12px;*/
}
.address{
  display:block;
  font-style:italic;
  font-size:14px;
}
.phone::before {
  content: "\f2a0";
  font-family: "Font Awesome 5 Free";
  font-size:18px;
  font-weight: 900;
  color: #000;
  padding-right:5px;
}
.address::before {
  content: "\f3c5";
  font-family: "Font Awesome 5 Free";
  font-size:18px;
  font-weight: 900;
  font-style:normal;
  color: red;
  padding-right:5px;
}
.block-title{
  display:flex;
  flex-direction: column;
  justify-content:center;
  align-items:center;
  background:#8c8b8b38;
  margin: -10px -10px 10px -10px;
  min-height:60px;
  text-align:center;
}
.title-icon{
  font-size:1.17em;
}
.descr{
  display:none;
}
li a:hover .descr{
  display:block;
}

li a:hover .descr {
  position: absolute;
  width:200px;
  text-align:center;
  top: 0;
  line-height: 1.5;
  font-size: 14px;
  background-color: #e1306c;
  color: #fff;
  padding: 5px 8px;
  border-radius: 5px;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
li a:hover .descr::before {
  position: absolute;
  content: "";
  height: 8px;
  width: 8px;
  background-color: #e1306c;
  bottom: -3px;
  left: 50%;
  transform: translate(-50%) rotate(45deg);
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
li a:hover .descr {
  top: -45px;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
li a:hover .descr {
  text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.3);
}

.decor-1{
  position:absolute;
  top:350px;
  left:30px;
}
.decor-2{
  position:absolute;
  top:1750px;
  right:45px;
}
.decor-3{
  position:absolute;
  top:2500px;
  left:40px;
}
.footer-links{
  margin:0 auto;
}
.footer-links a{
  padding:10px;
}

.dmca-badge{
  position:absolute;
  right:0;
}