:root {
  /* Color styles */
  --blue-deep: #0E2D52;
  --red--american: #BB1623;
  --text: #0D183E;
  --grey--b-g: #F7F7F9;
  --white: #FFFFFF;
  --text_ad: #0D1D30;
  --text_ad_secondary: #2F4560;
  --stroke-grey: #E3E3E4;
  /* Text-size styles */
  /* base size: h1_ad (100px) */
  --h1_ad: 1rem;
  --h2_ad: 0.7rem;
  --h3_ad: 0.4rem;
  --text_cards_ad: 0.24rem;
  --text_ad: 0.26rem;
}

html {
  line-height: 1.2;
  font-size: 19px;
}

body {
  background-color: #fff;
  font-family: "Montserrat", sans-serif;
  color: var(--text);
}

header {
  background: #fff;
  padding: 20px 0;
  position: fixed;
  width: 100%;
  z-index: 10;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
  top: 0;
}

header.fixed {
  padding: 10px 0;
}

header.fixed .logo img {
  max-height: 45px;
}

.header-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.header-row ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.header-row ul li {
  margin-right: 10px;
}

.header-row ul li:last-child {
  margin-right: 0;
}

.header-row ul a {
  color: var(--blue-deep);
  border-radius: 10px;
  padding: 10px;
  background: #fff0;
}

.header-row ul a:hover {
  background: var(--blue-deep);
  color: #fff;
}

.header-row .btns-auth {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.header-row .btns-auth .btn {
  margin-right: 30px;
}

.header-row .btns-auth .btn:last-child {
  margin-right: 0;
}

.header-row .logo {
  width: 155px;
}

.header-row .logo img {
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
  max-height: 60px;
}

main {
  padding-top: 100px;
}

a {
  text-decoration: none;
  outline: none !important;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}

button, input, textarea {
  font-family: "Montserrat", sans-serif;
}

.btn {
  background: var(--blue-deep);
  color: #fff;
  padding: 11px 30px;
  border-radius: 10px;
  border: 2px solid var(--blue-deep);
  font-family: "Montserrat", sans-serif;
  display: inline-block;
  font-weight: 500;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}

.btn:hover {
  background: #fff;
  color: var(--blue-deep);
}

.btn-border {
  background: #fff;
  color: var(--blue-deep);
}

.btn-border:hover {
  background: var(--blue-deep);
  color: #fff;
}

.btn-red {
  border-color: var(--red--american);
  background: var(--red--american);
  letter-spacing: 0.03em;
  padding: 15px 30px;
  font-size: 1.1667rem;
}

.btn-red:hover {
  border-color: #E1243A;
  background: #E1243A;
  color: #fff;
}

.btn-white {
  background: #fff;
  color: var(--blue-deep);
}

.btn-white:hover {
  opacity: 0.8;
}

.title {
  font-size: 5rem;
  color: var(--text_ad);
  font-family: "Gilroy", sans-serif;
  font-weight: 800;
  opacity: 0.95;
}

.page-teaser-wrapper {
  padding: 110px 0;
  background-size: cover;
  min-height: 760px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.page-teaser-content {
  background: rgba(247, 247, 249, 0.8);
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
  max-width: 930px;
  padding: 70px 100px;
  border-radius: 20px;
  text-align: center;
  margin: auto;
  min-height: 450px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column;
  flex-flow: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.page-teaser-content .title {
  margin-bottom: 35px;
}

.page-teaser-content p {
  margin: 0 0 35px;
  font-family: "Gilroy", sans-serif;
  font-weight: 800;
  font-size: 1.6667rem;
}

.teaser-center {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

p {
  font-weight: 300;
  line-height: 1.3;
  font-family: "Montserrat";
}

.secondary-block {
  background: var(--grey--b-g);
}

section, .section {
  padding: 100px 0;
}

.h3_ad {
  font-size: 1.6667rem;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Gilroy", sans-serif;
  font-weight: 800;
  color: var(--text_ad);
}

.desc-text {
  font-size: 1.3333rem;
  font-weight: 300;
  line-height: 1.4;
}

.title-block {
  font-size: 2.9167rem;
  margin-bottom: 60px;
}

.text-block {
  margin-top: 60px;
  line-height: 1.3;
  margin-bottom: 60px;
}

.text-block p {
  margin-bottom: 40px;
}

.text-block ul li, .text-block ol li {
  padding-bottom: 15px;
  position: relative;
}

.text-block ul li:last-child, .text-block ol li:last-child {
  padding-bottom: 0;
}

.text-block ul, .text-block ol {
  list-style: disc;
  padding-left: 20px;
  font-weight: 300;
  padding-left: 50px;
  margin-bottom: 30px;
}


.text-block a {
  color: #2A5DB7;
}

.text-block ol {
  list-style: none;
  list-style-type: none;
  counter-reset: num;
}

.text-block ol li::before {
  content: counter(num);
  counter-increment: num;
  color: var(--text-ad-secondary, #2F4560);
  font-family: Gilroy;
  font-style: normal;
  font-weight: 800;
  line-height: 100%;
  top: 2px;
  position: absolute;
  left: -20px;
}

.img-pattern {
  position: relative;
  text-align: center;
}

.img-pattern::before {
  content: "";
  width: 100%;
  height: 100%;
  background-image: url("../img/patterns/img-bg.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center top;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.img-pattern img {
  position: relative;
  z-index: 2;
}

.margin-40 {
  margin: 40px 0;
}

.socials-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.socials-list li {
  margin-right: 25px;
  margin-bottom: 0;
}

.socials-list li img {
  max-width: 45px;
}

.socials-list li a:hover {
  opacity: 0.8;
}

label {
  font-weight: bold;
}

input {
  padding: 11px 20px;
  border: 1px solid #B3B5B9;
  border-radius: 10px;
  background: none;
  color: var(--text_ad_secondary);
}

footer input {
  color: #fff;
  border-color: #fff;
}

.input-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 10px;
}

.input-row .btn {
  margin-left: 30px;
}

.input-row input {
  width: 100%;
}

.wrapper-right {
  margin-left: auto;
  margin-right: 0;
}

.wrapper-left {
  margin-right: auto;
  margin-left: 0;
}

.mt40 {
  margin-top: 40px;
}

.secondary-block .started-item .num {
  background: var(--grey--b-g);
}

.mb80 {
  margin-bottom: 80px;
}

.toggle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column;
  flex-flow: column;
  width: 25px;
  height: 25px;
}

.toggle span {
  width: 26px;
  height: 2px;
  margin-bottom: 5px;
  background: var(--blue-deep);
  display: block;
  position: relative;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
  border-radius: 2px;
}

.active-menu .toggle span {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
}

.active-menu .toggle span:nth-child(2) {
  opacity: 0;
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
}

.active-menu .toggle span:last-child {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.about-wrapper img {
  max-width: 275px;
  width: 100%;
  padding-left: 40px;
}

.about-wrapper .desc-text {
  margin-top: 35px;
}

.focus-wrapper .title-block {
  margin-bottom: 130px;
}

.border-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: wrap;
  flex-flow: wrap;
  margin: 0 -15px;
}

.border-row__item {
  width: calc(33.33% - 30px);
  margin: 0 15px;
  border: 2px solid var(--blue-deep);
  border-radius: 20px;
  padding: 0 40px 50px;
}

.border-row .icon {
  width: 200px;
  position: relative;
  background: #fff;
  height: 110px;
  background-image: url("../img/patterns/icon.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0 auto 55px;
  margin-top: -55px;
}

.border-row .h3_ad {
  text-align: center;
  margin-bottom: 55px;
}

.border-row p {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.4;
}

.publishers-wrapper {
  position: relative;
}

.publishers-wrapper::after {
  content: "";
  width: 100%;
  height: 280px;
  background: var(--grey--b-g);
  position: absolute;
  bottom: 0;
  left: 0;
  -webkit-clip-path: polygon(0 0%, 0% 100%, 100% 100%);
  clip-path: polygon(0 0%, 0% 100%, 100% 100%);
  z-index: 3;
}

.publishers-wrapper .img-pattern {
  padding-top: 160px;
}

.publishers-home .img-pattern img {
  -webkit-transform: translateY(40px);
  -ms-transform: translateY(40px);
  transform: translateY(40px);
}

.advertisers-wrapper {
  position: relative;
  z-index: 4;
  padding-top: 0;
  padding-bottom: 0;
}

.advertisers-wrapper .img-pattern {
  margin-top: -110px;
  padding-top: 100px;
}

.advertisers-wrapper .img-pattern::before {
  -webkit-transform: rotateY(180deg);
  transform: rotateY(180deg);
}

.icon-text-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: wrap;
  flex-flow: wrap;
  margin: 0 -30px;
}

.icon-text-row__item {
  margin: 60px 15px 0;
  width: calc(33.333% - 30px);
}

.icon-text-row .text-item {
  padding: 40px;
  border-radius: 20px;
  background: var(--grey--b-g);
}

.icon-text-row .text-item p {
  margin-top: 40px;
  line-height: 1.4;
  font-weight: 300;
}

.icon-text-row .h3_ad {
  padding-right: 30px;
}

.why-wrapper .title-block {
  margin-bottom: 10px;
}

.results-wrapper {
  padding: 150px 0;
}

.publishers-home .img-pattern img {
  -webkit-transform: translateY(80px);
  -ms-transform: translateY(80px);
  transform: translateY(80px);
}

.publushers-advantages {
  padding-bottom: 20px;
}

.publushers-advantages .img-pattern {
  padding-top: 50px;
}

.ad-formats img {
  max-width: 60%;
  margin-bottom: 40px;
}

.ad-formats-wrapper {
  padding-top: 0;
}

.started-item {
  border: 2px solid var(--blue-deep);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column;
  flex-flow: column;
  position: relative;
  border-radius: 20px;
  height: 160px;
}

.started-item .num {
  position: absolute;
  width: 150px;
  height: 60px;
  left: 0;
  right: 0;
  margin: auto;
  top: -30px;
  background: #fff;
  text-align: center;
}

.started-item .num span {
  width: 60px;
  height: 60px;
  display: block;
  margin: auto;
  border-radius: 50%;
  border: 6px solid var(--red--american);
  color: var(--red--american);
  text-align: center;
  font-size: 1.6667rem;
  font-weight: bold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.started-item .started-title {
  font-size: 1.1667rem;
  font-weight: bold;
  max-width: 220px;
  text-align: center;
  margin: auto;
}

.started-item .started-title span {
  font-weight: 400;
  display: block;
  font-size: 0.625rem;
  margin-top: 5px;
}

.started-item.fill-red {
  background: var(--red--american);
  color: #fff;
  border-color: var(--red--american);
}

.started-item.fill-red .started-title {
  font-size: 2.0833rem;
}

.started-row {
  margin-top: 120px;
}

.mb100 {
  margin-bottom: 160px;
}

.payouts-row {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.payouts-row .started-item {
  margin-bottom: 60px;
}

.payouts-row .started-item .num span {
  border: none;
}

.pub-p .img-pattern {
  padding-top: 130px;
  text-align: center;
}

.adr-row .row {
  margin-bottom: 200px;
}

.adr-row .row:last-child {
  margin-bottom: 0;
}

.adr-row .row:nth-child(2n) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-flow: row-reverse;
  flex-flow: row-reverse;
}

.adr-wrapper {
  padding-bottom: 0;
}

.adr-wrapper-two {
  padding-top: 250px;
  position: relative;
}

.adr-wrapper-two::before {
  content: "";
  width: 100%;
  height: 180px;
  background: var(--grey--b-g);
  position: absolute;
  top: 0;
  left: 0;
  -webkit-clip-path: polygon(100% 0, 0 0, 100% 100%);
  clip-path: polygon(100% 0, 0 0, 100% 100%);
  z-index: 3;
  -webkit-transform: rotateX(180deg), rotateY(180deg);
  transform: rotateX(180deg), rotateY(180deg);
}

.adr-wrapper-two .row:nth-child(2n-1) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-flow: row-reverse;
  flex-flow: row-reverse;
}

.adr-wrapper-two .row:nth-child(2n) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row;
  flex-flow: row;
}

.text-block:first-child {
  margin-top: 0;
}

.text-block:last-child {
  margin-bottom: 0;
}

.text-block .btns-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.text-block .btns-row .btn {
  padding: 11px 30px;
  margin-right: 30px;
}

.text-block .btns-row .btn:last-child {
  margin-right: 0;
}

.team-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: wrap;
  flex-flow: wrap;
  margin: 0 -15px;
}

.team-row__item {
  width: calc(25% - 30px);
  margin: 0 15px 80px;
  position: relative;
  font-size: 1rem;
  font-weight: 500;
}

.team-row .person-img {
  position: relative;
  border: 1px solid var(--red--american);
  border-radius: 20px;
  margin-bottom: 20px;
  position: relative;
}

.team-row .person-img::before {
  content: "";
  width: 150px;
  height: 20px;
  position: absolute;
  top: -10px;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 1;
  background: #fff;
}

.team-row .person-img img {
  margin-top: -60px;
  border-radius: 20px;
  width: 100%;
  position: relative;
  z-index: 2;
}

.team-row .person-name {
  font-size: 1.1667rem;
  font-weight: bold;
  color: var(--text_ad);
}

.map-wrapper {
  margin-top: 130px;
}

.current-address p {
  line-height: 1.4;
}

.current-address .h3_ad {
  margin: 40px 0;
  line-height: 1.1;
}

.imgs-row {
  margin: 60px 0;
}

img {
  max-width: 100%;
}

.text-bold-big {
  font-size: 1.25rem;
  font-weight: bold;
  text-align: center;
}

.inst-wrapper .btn {
  margin-top: 60px;
}

.form-row label {
  display: block;
  margin-bottom: 20px;
}

.about-form {
  max-width: 510px;
  margin: 80px auto 0;
  text-align: center;
}

.about-form input {
  width: 100%;
}

.about-form .btn {
  width: 230px;
}

.vacancy-list__item {
  margin: 0 0 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 30px;
  border-radius: 20px;
  border: 1px solid var(--blue-deep);
}

.vacancy-list .title-vacancy {
  font-size: 1.6667rem;
  font-weight: bold;
}

.right-position {
  position: relative;
}

.positions-wrapper {
  padding-bottom: 350px;
}

.toggle {
  display: none;
}

.mobile-menu-wrapper {
  position: fixed;
  top: 70px;
  background: #fff;
  width: 100%;
  height: calc(var(--app-height) - 70px);
  left: 0;
  z-index: 10;
  opacity: 0;
  visibility: hidden;
  z-index: -1;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}

.mobile-menu-wrapper ul a {
  font-size: 20px;
  font-weight: 600;
  text-align: center;
  display: block;
  color: var(--h3_ad);
}

.mobile-menu-wrapper ul li {
  margin-bottom: 20px;
}

.mobile-menu-wrapper ul li:last-child {
  margin-bottom: 0;
}

.mobile-menu-wrapper .mobile-menu-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column;
  flex-flow: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100%;
  padding: 30px 0;
}

.mobile-menu-wrapper .container {
  height: 100%;
}

.mobile-menu-wrapper .btns-auth {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.mobile-menu-wrapper .btns-auth .btn {
  margin: 0 10px;
}

.active-menu .mobile-menu-wrapper {
  opacity: 1;
  visibility: visible;
  z-index: 10;
}

footer {
  background: var(--blue-deep);
  color: #fff;
}

footer .footer-row {
  padding: 80px 0 55px;
}

footer .btns-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 -15px;
}

footer .btns-row .btn {
  margin: 0 15px;
  width: calc(100% - 30px);
  text-align: center;
}

footer .btns-row .btn:last-child {
  margin-right: 0;
}

footer .btns-row .btn-red {
  padding: 10px;
  letter-spacing: 0;
  font-size: 1rem;
}

footer a {
  color: #fff;
  font-weight: 400;
}

footer li {
  margin-bottom: 30px;
}

footer li:last-child {
  margin-bottom: 0;
}

footer p {
  line-height: 1.5;
}

footer .footer-nav a:hover, footer .copyright-links a:hover {
  text-decoration: underline;
}

.copyright {
  padding: 25px 0;
  background: #10243C;
  font-size: 0.6667rem;
  text-align: center;
  color: #ffffff;
}

.copyright-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-bottom: 20px;
}

.copyright-links a {
  font-size: 0.8333rem;
  color: var(--text_ad);
  margin-right: 100px;
}

.row-footer-2 {
  padding-bottom: 55px;
}

.publishers-wrapper.pub-p {
  padding-bottom: 0;
}

.icon-text-row__item {
  display: flex;
  flex-flow: column;
}

.icon-text-row .text-item {
  height: 100%;
}

.wrapper-right, .wrapper-left {
  text-align: left;
}

.partners-row {
  align-items: center;
}

.adr-row .row:nth-child(2n) .text-block {
  padding-right: 100px;
}

@media screen and (max-width: 1200px) {
  html {
    font-size: 16px;
  }

  .page-teaser-wrapper {
    padding: 80px 0;
    min-height: auto;
  }

  .border-row__item {
    padding: 0 20px 20px;
  }

  .border-row .h3_ad {
    text-align: center;
    margin-bottom: 30px;
  }

  .border-row .icon {
    margin-bottom: 30px;
  }

  section {
    padding: 80px 0;
  }

  .results-wrapper {
    padding: 100px 0;
  }

  .publishers-wrapper::after {
    height: 190px;
  }

  .started-item {
    height: 130px;
  }

  .publishers-wrapper.pub-p {
    padding-bottom: 0;
  }

  .pub-p .img-pattern {
    padding-top: 70px;
  }

  .page-teaser-content {
    padding: 50px 80px;
    min-height: 300px;
    max-width: 700px;
  }

  .positions-wrapper {
    padding-bottom: 170px;
  }

  .publishers-home .img-pattern {
    padding-top: 100px;
  }
}

@media screen and (max-width: 991px) {
  html {
    font-size: 15px;
  }

  .auth-form {
    margin-top: 50px;
  }

  .border-row__item {
    width: 100%;
    margin-bottom: 90px;
  }

  .border-row__item:last-child {
    margin-bottom: 0;
  }

  .border-row .icon {
    width: 100px;
    background-size: 80px;
    margin-bottom: 10px;
    height: 100px;
  }

  .border-row .icon img {
    max-width: 40px;
    max-height: 40px;
  }

  .img-pattern {
    text-align: center;
    max-width: 500px;
    margin: auto;
  }

  .advertisers-wrapper .row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-flow: column-reverse;
    flex-flow: column-reverse;
  }

  .advertisers-wrapper .img-pattern {
    margin-top: 40px;
  }

  .icon-text-row__item {
    width: calc(50% - 30px);
  }

  .adr-row .row {
    margin-bottom: 80px;
  }

  .adr-row .col-md-6 {
    width: 50%;
  }

  .adr-row img {
    max-width: 300px;
  }

  .col-md-6, .col-md-5 {
    max-width: 100%;
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
  }

  .results-wrapper .col-md-5 {
    width: 41.6666666667%;
  }

  footer .col-md-6, footer .col-md-4 {
    width: 100%;
    max-width: 100%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
  }

  .page-teaser-wrapper {
    background-position: center;
    min-height: 430px;
  }

  .icon-text-row__item .icon img {
    max-width: 80px;
  }
}

@media screen and (max-width: 991px) {
  header .header-row nav, header .header-row .btns-auth {
    display: none;
  }

  .hidden-mobile {
    display: none;
  }

  .results-wrapper {
    padding: 50px 0;
  }

  .results-wrapper .h3_ad {
    margin: 30px 0;
  }

  .title-block {
    margin-bottom: 30px;
  }

  .img-pattern {
    max-width: 300px;
  }

  .img-pattern img {
    max-width: 200px;
  }

  .publishers-wrapper::after {
    height: 140px;
  }

  .publishers-wrapper .img-pattern {
    padding-top: 50px;
  }

  .title {
    font-size: 35px;
  }

  .page-teaser-content {
    padding: 30px;
    min-height: auto;
  }

  .page-teaser-content .title {
    margin-bottom: 20px;
  }

  .page-teaser-content p {
    margin-bottom: 20px;
  }

  .btn-red {
    padding: 13px 20px;
    font-size: 14px;
  }

  .header-row .logo img {
    max-height: 40px;
  }

  header {
    padding: 15px 0;
  }

  header.fixed {
    padding: 15px 0;
  }

  header.fixed .logo img {
    max-height: 40px;
  }

  main {
    padding-top: 70px;
  }

  .focus-wrapper .title-block {
    margin-bottom: 60px;
  }

  .text-block {
    margin: 20px 0 30px;
  }

  .about-wrapper img {
    padding-left: 0;
    display: block;
    margin: 0 auto 30px;
    max-width: 200px;
  }

  .about-wrapper .desc-text {
    margin-top: 15px;
  }

  .icon-text-row__item {
    margin-top: 30px;
  }

  .icon-text-row__item .text-item {
    padding: 25px;
  }

  .icon-text-row__item .text-item p {
    margin-top: 25px;
  }

  .row-footer-2 {
    padding-bottom: 30px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-flow: column-reverse;
    flex-flow: column-reverse;
  }

  .row-footer-2 .socials-list {
    margin-top: 20px;
  }

  .copyright-links a {
    margin: 0 10px;
  }

  footer .footer-row {
    padding: 30px 0;
  }

  footer .col-md-4 {
    margin-bottom: 20px;
  }

  footer .col-md-4:last-child {
    margin-bottom: 0;
  }

  .toggle {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .started-row {
    margin-top: 20px;
    margin-bottom: 40px;
  }

  .started-row .col-md-3 {
    max-width: 50%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
  }

  .started-row .started-item {
    margin-top: 50px;
  }

  .tech-border-row {
    margin-top: 80px;
  }

  .payouts-row {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .payouts-row .started-item {
    margin-bottom: 0;
  }

  .team-row {
    margin-top: 80px;
  }

  .team-row__item {
    width: calc(33.333% - 30px);
  }

  .imgs-row .col-md-3 {
    max-width: 50%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    margin-bottom: 30px;
  }

  .imgs-row .col-md-3:nth-last-child(-n+2) {
    margin-bottom: 0;
  }

  .payouts-row .col-md-3 {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }

  .payouts-row .col-md-3:first-child {
    -webkit-box-ordinal-group: 6;
    -ms-flex-order: 5;
    order: 5;
    width: 100%;
    max-width: 100%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
  }
}

.text-block h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

article.text-block p {
  margin-bottom: 15px;
}

article h1.title {
  font-size: 4.375rem;
  margin-bottom: 90px;
}

.text-block h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.vacancy-single-post p {
  max-width: 930px;
}

.vacancy-list .title-vacancy {
  max-width: 520px;
}

.page-teaser-wrapper {
  background-image: url('../img/def-bg.jpg');
}

.team-row__item p {
  padding-right: 20px;
}

.form-row.about-form {
  position: relative;
}

.wpcf7-spinner {
  position: absolute;
  right: 0;
}

.wpcf7 form .wpcf7-response-output {
  max-width: 510px;
  margin: 30px auto 0;
  border-radius: 12px;
  border-width: 1px;
  padding: 15px;
  text-align: center;
  font-size: .9rem;
  line-height: 1.4;
}

.btn:disabled {
  filter: grayscale(1) opacity(.4);
}


.h2_ad {
  font-size: 3rem;
}

.auth-row .text-block {
  margin: 60px 0;
}

.auth-row .text-block p {
  font-weight: 400;
}

.list-arrow li {
  position: relative;
  font-size: 17px;
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.list-arrow li:last-child {
  margin-bottom: 0;
}

.list-arrow a {
  font-weight: 400;
  color: var(--text_ad_secondary)
}

.list-arrow li::before {
  content: '';
  width: 15px;
  height: 15px;
  margin-right: 15px;
  display: inline-block;
  background-image: url('../img/icons/link_arrow.svg');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.custom-radio input+span:before {
  content: '';
  min-width: 25px;
  width: 25px;
  display: block;
  height: 25px;
  border: 1px solid #B3B5B9;
  border-radius: 50%;
  background: #fff;
  margin-right: 10px;
}

.custom-radio input {
  position: absolute;
  visibility: hidden;
  opacity: 0;
}

.custom-radio input+span:after {
  content: '';
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #0E2D52;
  position: absolute;
  left: 6px;
  top: 6px;
  opacity: 0;
  visibility: hidden;
  transition: .2s;
}

.custom-radio input:checked+span:after {
  opacity: 1;
  visibility: visible;
}

.wpcf7-list-item {
  margin: 0;
  display: block;
}

.wpcf7-list-item label {
  margin-bottom: 8px;
}

.custom-radio input+span {
  display: flex;
  align-items: center;
  position: relative;
  font-weight: 600;
  font-size: 15px;
}

.form-row label {
  text-align: left;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
}

.title-label {
  display: block;
  margin-bottom: 15px;
  text-align: left;
}

.wpcf7-not-valid-tip {
  text-align: left;
  padding-top: 10px;
  font-weight: 400;
  font-size: 15px;
}


.custom-checkbox input+span::before {
  content: '';
  min-width: 25px;
  width: 25px;
  display: block;
  height: 25px;
  border: 1px solid #B3B5B9;
  background: #fff;
  border-radius: 4px;
  margin-right: 10px;

}

.custom-checkbox input+span {
  display: flex;
}

.custom-select select {
  padding: 11px 10px;
  border: 1px solid #B3B5B9;
  border-radius: 10px;
  background: none;
  color: var(--text_ad_secondary);
  width: 100%;
  font-family: "Montserrat", sans-serif;
  ;
  font-weight: 400;
  margin: 20px 0;
}

.custom-checkbox {
  position: relative;
}

.custom-checkbox input {
  position: absolute;
  opacity: 0;
  visibility: hidden;
}

.custom-checkbox input+span::after {
  content: '';
  background-image: url("data:image/svg+xml,%3Csvg width='19' height='15' viewBox='0 0 19 15' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 6L8.5 12L17 2' stroke='white' stroke-width='3' stroke-linecap='round'/%3E%3C/svg%3E%0A");
  width: 25px;
  height: 25px;
  background-position: center;
  background-color: #0E2D52;
  position: absolute;
  left: 0;
  background-repeat: no-repeat;
  border-radius: 4px;
  background-size: 14px;
  opacity: 0;
  visibility: hidden;
  transition: .2s;
}

.custom-checkbox a {
  text-decoration: underline;
  color: var(--text);
}

.about-form .custom-checkbox {
  width: 320px;
  margin: 30px auto;
}

.custom-checkbox input:checked+span::after {
  opacity: 1;
  visibility: visible;
}

.custom-checkbox input+span, .custom-radio input+span {
  cursor: pointer;
}

.page-template-login-page header,
.page-template-login-page footer,
.page-template-sign-up header,
.page-template-sign-up footer {
  display: none;
}

.page-template-login-page main,
.page-template-sign-up main {
  padding-top: 0;
}

.auth-logo {
  margin-bottom: 50px;
}

.auth-form .text-block {
  margin-top: 0;
}


.label-custom span {
  transform: translateY(0);
  position: absolute;
  transition: .2s;
}

.text-small {
  font-size: 0.9rem;
}

.label-custom {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
}

.auth-form label+label {
  margin-top: 20px;
  display: flex;
}



.label-custom input {
  width: 100%;
}

.label-custom.focus span {
  transform: translateY(-33px);
  font-size: 14px;
}

.custom-checkbox {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
}

.auth-form .btn {
  margin-top: 30px;
}

.auth-form .text-block {
  margin-bottom: 30px;
}

.custom-radio span em {
  font-size: 13px;
  font-weight: 300;
  padding-left: 5px;
}

.auth-form a {
  color: var(--text_ad_secondary);
  text-decoration: underline;
}

.flex-auth a {
  font-size: 16px;
  text-decoration: none;
}

.flex-auth {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
}

.label-custom span {
  position: absolute;
  left: 10px;
  font-weight: 400;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
}

.auth-form label span {
  font-size: 16px;
}

.auth-form .custom-radio {
  margin-bottom: 20px;
}

.text-smalled-label {
  font-size: 12px;
  margin-top: 5px;
  margin-bottom: 20px;

}

@media screen and (max-width: 768px) {

  article h1.title {
    margin-bottom: 30px;
    font-size: 40px;
  }

  .adr-row .row:nth-child(2n) .text-block {
    padding-right: 0;
  }

  .about-wrapper .desc-text br {
    display: none;
  }

  .hide-pad {
    display: none;
  }

  .adr-row .row .col-md-6 {
    max-width: 50%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
  }

  .adr-row img {
    max-width: 100%;
  }

  footer .col-md-6 {
    max-width: 100%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    width: 100%;
  }

  .current-address {
    margin-top: 50px;
    text-align: center;
  }

  .map-wrapper {
    margin-top: 50px;
  }

  .team-row__item {
    width: calc(50% - 30px);
  }

  .vacancy-list__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
    padding: 20px;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .vacancy-list__item .btn {
    margin-top: 20px;
  }

  .mb80 {
    margin-bottom: 30px;
  }

  .positions-wrapper {
    padding-bottom: 40px;
  }

  .positions-wrapper::after {
    display: none;
  }

  .icon-text-row__item {
    width: 100%;
  }

  section {
    padding: 40px 0;
  }

  .publishers-home {
    padding-bottom: 60px;
  }

  .publishers-home .img-pattern {
    margin-top: 30px;
  }

  .started-row.payouts-row .col-md-3 {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    width: 50%;
    max-width: 50%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
  }

  .started-row.payouts-row .col-md-3:first-child {
    -webkit-box-ordinal-group: 6;
    -ms-flex-order: 5;
    order: 5;
    width: 100%;
    max-width: 100%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
  }
}

@media screen and (max-width: 575px) {
  .icon-text-row {
    margin: 0;
  }

  .icon-text-row__item {
    margin-left: 0;
    margin-right: 0;
  }

  .copyright {
    font-size: 12px;
  }

  .copyright-links {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
  }

  .copyright-links a {
    margin-bottom: 10px;
  }

  .copyright-links a:last-child {
    margin-bottom: 0;
  }

  .publishers-wrapper .img-pattern img {
    -webkit-transform: translateY(40px);
    -ms-transform: translateY(40px);
    transform: translateY(40px);
  }

  footer .btns-row {
    margin: 0;
  }

  footer .btns-row .btn {
    margin-left: 0;
    margin-right: 15px;
  }

  footer .btns-row .btn:last-child {
    margin-right: 0;
  }

  .input-row .btn {
    margin-left: 15px;
  }

  .publushers-advantages {
    overflow: hidden;
  }

  .publushers-advantages .img-pattern img {
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }

  .ad-formats .col-md-4 {
    margin-bottom: 40px;
  }

  .ad-formats .col-md-4:last-child {
    margin-bottom: 0;
  }

  .ad-formats img {
    max-width: 200px;
    margin-bottom: 10px;
  }

  .ad-formats .mt40 {
    margin-top: 20px;
  }

  .partners-row .col-md-3 {
    width: 50%;
  }

  .started-row .col-md-3 {
    max-width: 100%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
  }

  .started-item .started-title {
    font-size: 24px;
  }

  .started-item .started-title span {
    font-size: 16px;
  }

  .publishers-wrapper.pub-p .img-pattern img {
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }

  .adr-wrapper-two {
    padding-top: 90px;
  }

  .adr-wrapper-two::before {
    height: 70px;
  }

  .adr-row .row:last-child {
    padding-bottom: 50px;
  }

  .text-block .btns-row .btn {
    padding: 10px 20px;
    margin-right: 15px;
  }

  .h3_ad br {
    display: none;
  }

  .about-form {
    margin-top: 30px;
  }

  .team-row__item {
    width: 100%;
  }

  .publushers-advantages .btn-red {
    max-width: 230px;
    margin: auto;
    display: block;
    text-align: center;
  }

  .ad-formats img {
    float: left;
    margin-right: 30px;
    max-width: 150px;
  }

  .btn-mobile-center, .adr-row .btn {
    width: 250px;
    margin: auto;
    display: block;
    text-align: center;
  }

  .title-block br {
    display: none;
  }

  .payouts-row .col-md-3 {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }

  .payouts-row .col-md-3:first-child {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }

  .payouts-row .col-md-3:first-child .started-item {
    margin-top: 40px;
  }

  .adr-row .row .col-md-6 {
    max-width: 100%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
  }

  .adr-row .row:nth-child(2n) {
    -ms-flex-flow: wrap;
    flex-flow: wrap;
  }

  .adr-row img {
    max-width: 250px;
  }

  .adr-wrapper-two .row:nth-child(2n-1) {
    -ms-flex-flow: wrap;
    flex-flow: wrap;
  }

  .started-item.fill-red {
    height: auto;
    width: 250px;
    display: block;
    text-align: center;
    font-weight: 300;
    border-radius: 12px;
    margin: 50px auto 0;
  }

  .started-item.fill-red .started-title {
    font-size: 14px;
    padding: 13px;
    font-weight: 500;
    letter-spacing: 0.03em;
  }

  .started-item .num {
    width: 80px;
  }

  .started-item .num img {
    max-width: 30px;
  }
}

@media screen and (max-width: 430px) {
  .started-row.payouts-row .col-md-3:first-child {
    display: none;
  }
}



.wpb-content-wrapper {
  padding: 0;
}

.wpb-content-wrapper .vc_btn3.vc_btn3-color-grey,
.wpb-content-wrapper .vc_btn3.vc_btn3-color-grey.vc_btn3-style-flat {
  color: #fff;
  background-color: #bb1623;
  font-size: 1.1667rem;
  padding: 15px 30px;
  border-radius: 10px;
}

.wpb-content-wrapper .vc_btn3.vc_btn3-color-grey:hover,
.wpb-content-wrapper .vc_btn3.vc_btn3-color-grey.vc_btn3-style-flat:hover {
  color: #fff;
  background: #E1243A;
}

.vc_section.vc_section-o-content-middle {
  align-items: center;
}


.wpb-content-wrapper .vc_section.vc_section-has-fill,
.wpb-content-wrapper .vc_section.vc_section-has-fill+.vc_row-full-width+.vc_section,
.wpb-content-wrapper .vc_section.vc_section-has-fill+.vc_section {
  padding-top: 100px;
}

.wpb-content-wrapper .border-row__item {
  width: calc(33.3333% - 30px);
  padding-bottom: 0;
  padding: 0;
}

.wpb-content-wrapper .border-row__item .vc_column-inner {
  padding: 0 30px 10px;
}


.border-content .elegant-content-box .elegant-content-box-icon {
  width: 200px;
  position: relative;
  background: #fff;
  height: 110px;
  background-image: url("../img/patterns/icon.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0 auto 55px;
  margin-top: -55px;
}

.border-content .elegant-content-box {
  border: 2px solid var(--blue-deep);
  border-radius: 20px;
  padding: 0 40px 50px;
  height: 100%;
}

.border-content .wpb_wrapper {
  height: 100%;
}

.border-content .elegant-content-box.icon-position-top .elegant-content-box-icon-wrapper {
  display: block;
  margin: 0 auto;
}

.elegant-content-box h3.elegant-content-box-title {
  font-size: 1.6667rem;
}

.border-content h3.elegant-content-box-title {
  text-align: center;
}

.vc_section.advertisers-wrapper.secondary-block {
  overflow: inherit;
}

.vc_section.advertisers-wrapper.secondary-block .img-pattern {
  margin-bottom: 0;
}

.icon-text .elegant-content-box-content {
  padding: 30px;
  border-radius: 20px;
  background: var(--grey--b-g);
  height: 100%;
}

.icon-text .wpb_wrapper {
  height: 100%;
}

.icon-text .elegant-content-box {
  height: 100%;
}

.icon-text h3.elegant-content-box-title {
  max-width: 220px;
}

.page-teaser-content.wpb_column {
  padding: 70px 90px;
}

.ad-formats .wpb_single_image img {
  max-width: 240px;
  margin-bottom: 0;
}


.started-title-col p {
  font-size: 1.1667rem;
  font-weight: bold;
  text-align: center;
  margin: auto;
}

.started-title-col p {
  border: 2px solid var(--blue-deep);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column;
  flex-flow: column;
  position: relative;
  border-radius: 20px;
  height: 160px;
  padding: 40px;
}

.started-title-col a.vc_btn3.vc_btn3-color-grey.vc_btn3-style-modern {
  width: 100%;
  display: flex;
  height: 160px;
  background: var(--red--american);
  color: #fff;
  border-color: var(--red--american);
  border-radius: 20px;
  margin-bottom: 0;
  align-items: center;
  font-size: 2.0833rem;
  font-weight: bold;
  justify-content: center;
}

.started-title-col .vc_btn3-container.vc_btn3-inline {
  width: 100%;

}

.started-title-col {
  position: relative;
}

.started-title-col .num {
  position: absolute;
  width: 150px;
  height: 60px;
  left: 0;
  right: 0;
  margin: auto;
  top: -30px;
  background: #fff;
  text-align: center;
  z-index: 1;
}

.started-title-col .num-value {
  width: 60px;
  height: 60px;
  display: block;
  margin: auto;
  border-radius: 50%;
  border: 6px solid var(--red--american);
  color: var(--red--american);
  text-align: center;
  font-size: 1.6667rem;
  font-weight: bold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.started-title-col .wpb_content_element {
  margin-bottom: 0;
}

.elegant-partner-logos-container .elegant-partner-logos {
  justify-content: center;
}

.elegant-partner-logos-container .elegant-partner-logos .elegant-partner-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 25%;
  margin: 0;
  padding: 0 15px;
}

.elegant-partner-logos-container .elegant-partner-logos .elegant-partner-logo img {
  width: auto;
}

.started-row-2 {
  margin-top: 50px;
}

.started-title-col p strong {
  font-weight: 400;
  display: block;
  font-size: 0.625rem;
  margin-top: 5px;
}

.secondary-block .started-title-col .num {
  background: #f7f7f9;
}

.adr-wrapper .wpb_row,
.adr-wrapper-two .wpb_row {
  margin-bottom: 200px;
}

.adr-wrapper .wpb_row:last-child,
.adr-wrapper-two .wpb_row:last-child {
  margin-bottom: 0px;
}

.wpb_wrapper .vc_btn3.vc_btn3-color-grey.vc_btn3-style-outline {
  background: #fff;
  color: var(--blue-deep);
  border-color: var(--blue-deep);
}

.wpb_wrapper .vc_btn3.vc_btn3-color-grey.vc_btn3-style-outline:hover {
  background: var(--blue-deep);
  color: #fff;
  border-color: var(--blue-deep);
}

.elegant-profile-panel .elegant-profile-panel-profile-image-wrapper img {
  border: none;
  border-radius: 20px !important;
  box-shadow: none;
  width: 100%;
  max-width: none !important;
  margin-top: -50px;
  background: none;
  position: relative;
  z-index: 2;
}

.elegant-profile-panel .elegant-profile-panel-profile-image-wrapper {
  margin-top: 0 !important;
  border: 1px solid var(--red--american);
  border-radius: 20px;
  margin-bottom: 20px;
  position: relative;
}

.elegant-profile-panel .elegant-profile-panel-profile-image-wrapper::before {
  content: "";
  width: 150px;
  height: 20px;
  position: absolute;
  top: -10px;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 1;
  background: #fff;
}

.elegant-profile-panel .elegant-profile-panel-description-wrapper .elegant-profile-panel-title {
  margin: 20px 0 5px 0;
  font-size: 1.1667rem !important;
  font-weight: bold;
  color: var(--text_ad);
  text-align: left;
}

.elegant-profile-panel .elegant-profile-panel-description-wrapper {
  padding: 0;
}

.elegant-profile-panel .elegant-profile-panel-description-wrapper .elegant-profile-panel-description {
  margin-bottom: 0;
  text-align: left;
}

.elegant-profile-panel {
  display: block;
  border: none;
  box-shadow: none;
  text-align: left;
  background-color: #fff0;
  margin-top: 60px;
}

.wpb-content-wrapper .vacancy-list {
  margin-top: 60px;
}

.blog-list {
  display: flex;
  flex-flow: wrap;
  margin: 80px -15px 0;
}

.blog-item {
  width: calc(33.33% - 30px);
  margin: 0 15px;
}

.blog-item .item-img {
  height: 220px;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  margin-bottom: 30px;
}

.blog-item .item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}


.blog-item .item-title {
  color: var(--text-ad, #0D1D30);
  font-size: 20px;
  font-style: normal;
  font-weight: 800;
  line-height: 110%;
  letter-spacing: -0.75px;
  text-transform: capitalize;
  min-height: 45px;
}

.blog-item .item-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 15px;
  margin-top: 15px;
}

.item-meta .date {
  color: #B3B5B9;
}

.item-meta span {
  color: #2A5DB7;
}


.blog-item .item-icon {
  position: absolute;
  top: 0;
  width: 110px;
  height: 80px;
  background-image: url('../img/icon-bg.svg');
  left: 0;
  right: 0;
  margin: auto !important;
  bottom: 0;
  padding: 20px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  text-align: center;
}

.blog-item .item-icon img {
  width: auto;
}



.blog-list-page {
  margin-top: 0;
}

.blog-list-page .blog-item {
  margin-bottom: 50px;
}

.about-wrapper .wpb_single_image img {
  max-width: 275px;
  width: 275px;
  padding: 0;
  margin-right: 30px;
}

.publishers-wrapper .img-pattern {
  margin-bottom: 0;
}

.page-id-382 .gradient-container-3 .title-block {
  margin-bottom: 110px;
}

.icon-text .elegant-content-box-content .elegant-content-box-description {
  margin-top: 30px !important;
}

.vc_section.results-wrapper .vc_btn3-container.vc_btn3-left {
  margin-top: 60px;
}

.page-id-480 .border-content .gradient-column-5 .elegant-content-box-description {
  max-width: 300px;
}

.ad-formats {
  margin-top: 30px;
}

.adr-wrapper .vc_btn3-container.vc_btn3-left {
  margin-top: 60px;
  margin-bottom: 0;
}

.vacancy-single-post p, article.text-block p {
  max-width: 860px;
}


article.text-block h1,
article.text-block h2,
article.text-block h3,
article.text-block h4,
article.text-block h5,
article.text-block h6 {
  margin-bottom: 40px;
}

article.text-block p {
  margin-bottom: 40px;
}

article.text-block p+p {
  margin-top: -20px;
}

article.text-block *:last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 1200px) {
  .blog-item .item-img {
    height: 180px;
    border-radius: 10px;
    margin-bottom: 20px;
  }

  .blog-item .item-title {
    font-size: 17px;
    min-height: 40px;
  }

  .page-id-551 .gradient-container-3 .vc_col-sm-5 {
    width: 100%;
  }
}

@media screen and (max-width: 991px) {
  .page-teaser-content .vc_btn3-container {
    margin-top: 20px;
  }

  .page-id-538 .gradient-column-1.page-teaser-content h1,
  .page-id-538 .gradient-column-1.page-teaser-content .vc_btn3-container.vc_btn3-left {
    text-align: center !important;
  }

  .text-block br, .page-teaser-content.wpb_column br {
    display: none;
  }

  .blog-item {
    width: 100%;
    margin: 0 15px 30px;
  }

  .blog-item:last-child {
    margin-bottom: 0;
  }

  .page-teaser-content.wpb_column {
    padding: 30px;
    min-height: auto;
    width: calc(100% - 30px);
    float: none;
    margin: 0;
  }

  .page-teaser-wrapper .vc_column-inner {
    padding-top: 0 !important;
  }

  .page-teaser-content .vc_btn3-container {
    margin-bottom: 0 !important;
  }

  .border-content .vc_col-sm-4 {
    width: 100%;
    margin-bottom: 90px;
  }

  .border-content .vc_col-sm-4:last-child {
    margin-bottom: 0;
  }

  .border-content .elegant-content-box {
    padding: 0 20px 20px;
  }

  .border-content .elegant-content-box .elegant-content-box-icon {
    margin-bottom: 10px;
    width: 100px !important;
    height: 100px !important;
    background-size: 80px;
  }

  .border-content .elegant-content-box .elegant-content-box-icon img {
    max-width: 40px;
    max-height: 40px;
  }

  .vc_section.about-wrapper .vc_col-sm-8 {
    width: 100%;
  }

  .wpb_button, .wpb_content_element, ul.wpb_thumbnails-fluid>li {
    margin-bottom: 0;
  }

  .wpb-content-wrapper .vc_section.vc_section-has-fill, .wpb-content-wrapper .vc_section.vc_section-has-fill+.vc_row-full-width+.vc_section, .wpb-content-wrapper .vc_section.vc_section-has-fill+.vc_section {
    padding-top: 80px;
  }

  .text-block p {
    margin-bottom: 10px;
  }

  .wpb_button, .wpb_content_element, ul.wpb_thumbnails-fluid>li {
    margin-bottom: 15px;
  }

  .advertisers-wrapper .wpb_single_image.vc_align_center.img-pattern {
    margin-top: -40px;
    padding-top: 100px;
  }

  .vc_section.why-wrapper .vc_col-sm-4 {
    width: 100%;
  }

  .focus-wrapper .vc_custom_1688489686366 {
    margin-bottom: 20px !important;
  }

  .ad-formats .wpb_single_image img {
    max-width: 125px;
  }

  .started-row .vc_col-sm-3 {
    width: 50%;
    margin-top: 50px;
    float: none;
  }

  .started-title-col p, .started-title-col a.vc_btn3.vc_btn3-color-grey.vc_btn3-style-modern {
    padding: 20px;
    height: 130px;
  }

  .started-row {
    display: flex;
    flex-flow: wrap;
  }

  .started-row .vc_col-sm-3.gradient-column-30 {
    display: none;
  }

  .started-row-2, .started-row {
    margin-top: 0;
    margin-bottom: 0;
  }

  .publushers-advantages .gradient-column-8 {
    display: none;
  }

  .publushers-advantages .vc_col-sm-5 {
    width: 50%;
  }

  .vc_section.focus-wrapper .border-content {
    margin-top: 30px;
  }

  .team-section .vc_col-sm-3 {
    width: 50%;
  }

}


@media screen and (max-width: 768px) {
  .advertisers-wrapper .vc_row {
    display: flex;
    flex-flow: column-reverse;
  }

  .advertisers-wrapper .wpb_single_image.vc_align_center.img-pattern {
    margin-top: 0px;
    padding-top: 100px;
  }

  .img-pattern.wpb_single_image img {
    max-width: 200px;
  }

  .wpb_content_element {
    margin-bottom: 0;
  }

  .elegant-content-box .elegant-content-box-icon img {
    max-width: 80px;
    max-height: 80px;
  }

  .blog-list {
    margin: 40px -15px 0;
  }

  .ad-formats-wrapper .ad-formats .vc_column-inner>.wpb_wrapper {
    display: flex;
  }

  .ad-formats-wrapper .ad-formats .vc_column-inner>.wpb_wrapper .wpb_single_image {
    max-width: 150px;
  }

  .ad-formats-wrapper .ad-formats .vc_column-inner>.wpb_wrapper .wpb_single_image img {
    width: 100%;
  }

  .ad-formats-wrapper .ad-formats .vc_column-inner>.wpb_wrapper .wpb_text_column {
    width: calc(100% - 150px);
    padding-left: 20px;
  }

  .publushers-advantages .vc_col-sm-5 {
    width: 100%;
  }

  .title-block br {
    display: none;
  }

  .elegant-partner-logos-container .elegant-partner-logos .elegant-partner-logo {
    width: 33.33%;
  }

  .started-title-col .num {
    width: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .started-row .gradient-column-26.started-title-col {
    display: none;
  }

  .started-title-col .num img {
    width: 30px;
  }

  .started-row .vc_col-sm-3 {
    width: 100%;
  }

  .started-title-col a.vc_btn3.vc_btn3-color-grey.vc_btn3-style-modern {
    font-size: 14px;
    padding: 13px;
    font-weight: 500;
    letter-spacing: 0.03em;
    height: auto;
    max-width: 220px;
    border-radius: 10px;
    margin: auto;
  }

  .started-row .vc_col-sm-3.gradient-column-22 {
    display: none;
  }


  /* .page-id-538 .gradient-container-3 {
    display: flex;
    flex-flow: column-reverse;
  } */

  .adr-wrapper .vc_col-sm-6,
  .adr-wrapper-two .vc_col-sm-6 {
    width: 50%;
  }

  .adr-wrapper .wpb_row, .adr-wrapper-two .wpb_row {
    margin-bottom: 50px;
  }

  .page-id-551 .gradient-column-30 .wpb_single_image.vc_align_left {
    text-align: center;
  }

  .gradient-container-13.imgs-row .vc_col-sm-3 {
    width: 50%;
  }

  .imgs-row {
    display: flex;
    flex-flow: wrap;
    margin: 30px 0;
  }

  .team-section .vc_row {
    display: flex;
    flex-flow: wrap;
  }

}

@media screen and (max-width: 575px) {
  .elegant-partner-logos-container .elegant-partner-logos .elegant-partner-logo {
    width: 50%;
  }

  .wpb-content-wrapper .vc_custom_1688489686366 {
    margin-bottom: 0 !important;
  }

  .adr-wrapper .vc_col-sm-6,
  .adr-wrapper-two .vc_col-sm-6 {
    width: 100%
  }

  .adr-wrapper .wpb_single_image,
  .adr-wrapper-two .wpb_single_image {
    margin-bottom: 0;
  }

  .adr-wrapper .wpb_single_image img,
  .adr-wrapper-two .wpb_single_image img {
    max-width: 250px;
  }

  .adr-wrapper .vc_col-sm-6 {
    order: 1;
  }

  .adr-wrapper .gradient-column-6 {
    order: 0;
  }

  .adr-wrapper-two .vc_col-sm-6 {
    order: 1;
  }

  .adr-wrapper-two .gradient-column-10 {
    order: 0;
  }

  .adr-wrapper .wpb_single_image.vc_align_right,
  .adr-wrapper-two .wpb_single_image.vc_align_right {
    text-align: left;
  }

  .adr-wrapper .vc_btn3-container.vc_btn3-left,
  .adr-wrapper-two .vc_btn3-container.vc_btn3-left {
    /* text-align: center; */
  }

  .team-section .vc_col-sm-3 {
    width: 100%;
  }

  .page-teaser-wrapper .wpb_content_element {
    margin-bottom: 0;
  }
}





strong, b {
  font-weight: bold;
}

i, em {
  font-style: italic;
}

article.text-block {
  max-width: 900px;
}

.post-title {
  color: var(--text-ad, #0D1D30);
  font-size: 45px;
  font-style: normal;
  font-weight: 800;
  line-height: 110%;
  letter-spacing: -1.125px;
  text-transform: capitalize;
}

.post-general-img {
  width: 100%;
  display: block;
  border-radius: 20px;
  margin-bottom: 40px;
}

.single-post-page .date {
  color: var(--text-3, #B3B5B9);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  margin-bottom: 20px;
}

.wp-caption {
  max-width: 100%;
}

.wp-caption-text {
  color: #B3B5B9;
  padding-top: 10px;
  font-size: 0.9rem;
}


.single-post-page img {
  max-width: 100%;
  border-radius: 20px;
}


.item-fullwidth {
  width: 100%;
  margin: 0 15px;
  display: flex;
}

.item-fullwidth .item-img {
  max-width: 330px;
  margin-bottom: 0px;
  height: auto;
  margin-right: 30px;
}

.item-excerpt {
  font-size: 17px;
  color: #2F4560;
}


.blog-list-page .item-title {
  font-size: 24px;
}

.title-blog {
  width: 100%;
  margin: 0 15px 30px;
  color: var(--text-3, #B3B5B9);
  font-family: Montserrat;
  font-size: 20px;
  font-style: normal;
  font-weight: 300;
  text-transform: uppercase;
  line-height: 140%;
}

.item_first-big {
  width: 100%;
  display: flex;
  align-items: center;
  margin-bottom: 40px;
}


.item_first-big .item-img {
  width: 65%;
  height: auto;
  margin: 0;
  max-height: 500px;
}

.item_first-big .item-desc {
  width: 35%;
  padding-left: 30px;
}

.item_first-big .item-title {
  font-size: 34px;
  line-height: 1.4;
  margin-bottom: 20px;
}


.item-desc .date {
  font-size: 15px;
  color: #B3B5B9;
  margin-bottom: 15px;
}


.item_first-big .read-more-btn {
  border-radius: 10px;
  background: var(--red-american, #BB1623);
  padding: 14px 30px;
  color: #fff;
  font-size: 25px;
  letter-spacing: 0.85px;
  font-weight: 600;
  display: block;
  margin: 20px 0 0;
  transition: .2s;
}

section.single-post-page {
  padding: 0;
}


.item_first-big:hover .read-more-btn {
  background: #E1243A;
}

.item_first-big .item-excerpt {
  font-size: 18px;
}

.vc_row.wpb_row.vc_row-fluid.gradient-container-2.vc_custom_1688519422504.vc_hidden {
  opacity: 1 !important;
}

.blog-posts-wrapper .title-blog {
  margin-left: 0;
}

.blog-posts-wrapper {
  margin-top: 50px;
}

.blog-list__item {
  display: none;
  margin-bottom: 30px;
}


.featured-posts-wrapper .blog-list {
  flex-flow: column;
}

.post-single-row article.text-block {
  width: 70%;
  padding-right: 70px;
}

.post-single-row .featured-posts-wrapper {
  width: 30%;
}

.post-single-row {
  display: flex;
  flex-flow: wrap;
}

.post-single-row .blog-list {
  margin-left: 0;
  margin-right: 0;
}

.post-single-row .blog-item {
  width: 100%;
  margin-bottom: 20px;
  margin-left: 0;
  margin-right: 0;
}

.post-single-row .blog-posts-wrapper {
  margin-top: 0;
}

.results-wrapper-two {
  color: #fff;
}

.results-wrapper-two,
.results-wrapper-three {
  font-size: 1.3rem;
  padding-bottom: 0;
}

.results-wrapper-two h2,
.results-wrapper-two h3 {
  color: #fff;
}

.results-wrapper-two a.vc_general.vc_btn3 {
  color: #BB1623;
  background: #fff;
}


.results-wrapper-two a.vc_general.vc_btn3:hover {
  background: #ffffff47;
  color: #fff;
}


.results-wrapper-two .wpb_single_image,
.results-wrapper-three .wpb_single_image {
  margin-bottom: 0;
}


.social-list-block {
  display: flex;
  flex-flow: column;
  justify-content: space-between;
}

@media screen and (max-width: 1200px) {
  .blog-list-page .item-title {
    font-size: 20px;
  }

  .item-fullwidth {
    margin: 0;
  }

  .item_first-big .item-img {
    width: 55%;
  }

  .item_first-big .item-desc {
    width: 45%;
  }
}


@media screen and (max-width: 991px) {
  .item_first-big .item-img {
    width: 100%;
    display: flex;
    max-height: 270px;
    align-items: center;
  }

  .item_first-big .item-desc {
    width: 100%;
    padding-left: 0;
    padding-top: 30px;
  }

  .item_first-big {
    flex-flow: wrap;
  }

  .item_first-big .read-more-btn {
    font-size: 20px;
    margin-left: 0;
  }

  .blog-list__item .item-title {
    margin-bottom: 20px;
  }

  .item-fullwidth .item-img {
    width: 100%;
    max-width: none;
  }

  .blog-list__item .item-desc {
    width: 100%;
  }

  .item-fullwidth {
    flex-flow: wrap;
    margin: 0 15px !important;
    width: calc(100% - 30px);
  }

  .item-fullwidth .item-img {
    margin-right: 0px;
    height: 180px;
    border-radius: 10px;
    margin-bottom: 20px;
  }

  .post-single-row article.text-block {
    width: 100%;
    padding-right: 0px;
  }

  .post-single-row .featured-posts-wrapper {
    width: 100%;
  }

  .social-list-block .socials-list {
    margin-top: 30px;
  }
}


@media screen and (max-width: 768px) {
  .blog-wrapper {
    margin-top: -80px;
  }

  .item_first-big .item-excerpt {
    font-size: 15px;
  }

  .blog-list-page .item-title {
    font-size: 20px;
    line-height: 1.1;
    margin-bottom: 0;
  }

  .results-wrapper-two,
  .results-wrapper-three {
    padding-bottom: 50px;
  }
}