* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  font-size: 14.5px;
  font-style: normal;
  font-weight: 400;
  line-height: 25px;
  color: #222;
}

a {
  color: #2339c2;
  text-decoration: underline;
}
a:hover {
  text-decoration: none;
}

.clearfix:before, .clearfix:after {
  content: "";
  display: table;
}
.clearfix:after {
  clear: both;
}
.clearfix {
  zoom: 1;
}

.btn__v1 {
  display: flex;
  padding: 20px;
  justify-content: center;
  align-items: center;
  color: #FFF;
  font-size: 23.6px;
  font-style: normal;
  font-weight: 700;
  line-height: 34px;
  text-decoration: none;
  border: 2px solid;
  -o-border-image: linear-gradient(90deg, #FFD555, #FFA06A);
     border-image: linear-gradient(90deg, #FFD555, #FFA06A);
  border-image-slice: 1;
  transition: opacity 0.15s;
}
.btn__v1:hover {
  opacity: 0.7;
}
.btn__v2 {
  display: flex;
  width: auto;
  height: 45px;
  padding: 12px 20px;
  justify-content: center;
  align-items: center;
  border-radius: 40px;
  border: 2px solid #222;
  background: #222;
  font-size: 14.526px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 0.291px;
  text-transform: capitalize;
  color: #fff;
  cursor: pointer;
  transition: opacity 0.15s;
}
.btn__v2:hover {
  opacity: 0.8;
}

.input__wrap {
  margin-bottom: 25px;
}
.input__label {
  display: block;
  margin-bottom: 12px;
  font-size: 14.526px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 0.291px;
  text-transform: capitalize;
}
.input__field {
  padding-left: 15px;
  padding-right: 15px;
  width: 100%;
  height: 42px;
  border-radius: 2px;
  background: #FFF;
  box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.23) inset;
  border: none;
  outline: none;
  font-size: 14.526px;
}
.input__field.error {
  border: 2px solid #FF5722;
  color: #FF5722;
}
.input__textarea {
  padding: 15px;
  width: 100%;
  height: 90px;
  border-radius: 2px;
  background: #FFF;
  box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.23) inset;
  border: none;
  outline: none;
  font-size: 14.526px;
  resize: vertical;
}
.input__textarea.error {
  border: 2px solid #FF5722;
  color: #FF5722;
}

.text_content {
  margin: 0 auto;
  padding-left: 15px;
  padding-right: 15px;
  padding-top: 50px;
  padding-bottom: 50px;
  max-width: 1180px;
}
.text_content ul, .text_content ol, .text_content p {
  margin-bottom: 25px;
}
.text_content ul {
  list-style: none;
}
.text_content ul > li {
  position: relative;
  padding-left: 28px;
}
.text_content ul > li::before {
  content: "";
  position: absolute;
  top: 11px;
  left: 11px;
  display: block;
  width: 3px;
  height: 3px;
  background-color: #000;
  border-radius: 50%;
}
.text_content ol {
  list-style: none;
}
.text_content ol > li {
  position: relative;
  padding-left: 30px;
}
.text_content ol > li::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 12px;
  display: block;
  width: 5px;
  height: 5px;
  background-color: #000;
  border-radius: 50%;
}
.text_content ol ol, .text_content ol ul {
  margin-bottom: 0;
}
.text_content table {
  margin-bottom: 25px;
  table-layout: fixed;
  width: 100%;
  border-collapse: collapse;
  border-bottom: 1px solid #E4E4E4;
  border-right: 1px solid #E4E4E4;
}
.text_content table thead tr {
  background: rgba(0, 0, 0, 0.02);
}
.text_content table thead tr td {
  padding: 20px;
  border-top: 1px solid #E4E4E4;
  border-left: 1px solid #E4E4E4;
  text-align: center;
  font-weight: bold;
}
.text_content table tbody tr td {
  padding: 10px 12px;
  border-top: 1px solid #E4E4E4;
  border-left: 1px solid #E4E4E4;
}

.popup__wrap {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: none;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.25);
  z-index: 9999;
}
.popup__wrap.open {
  display: flex;
}
.popup__window {
  display: flex;
  width: 100%;
  max-width: 537px;
  height: 222px;
  padding: 15px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 9px;
  background: #FFF;
  box-shadow: 0px 3px 27px 0px rgba(0, 0, 0, 0.15);
}
.popup__window p {
  margin-bottom: 20px;
  text-align: center;
  max-width: 358px;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.36px;
}
.popup__window .btn__v2 {
  min-width: 140px;
}

.table_scroll_wrap {
  overflow-x: auto;
}
.table_scroll_wrap table {
  min-width: 1000px;
}

.g-recaptcha {
  margin-bottom: 20px;
}
.top_nav__list {
  display: flex;
  list-style: none;
}
.top_nav__list li {
  margin-right: 46px;
}
.top_nav__list li:last-child {
  margin-right: 0;
}
.top_nav__list a {
  font-size: 14.552px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 0.291px;
  text-transform: capitalize;
  text-decoration: none;
  color: #222222;
}
.top_nav__list .framed {
  padding: 15px;
  border: 2px solid;
  -o-border-image: linear-gradient(90deg, #FFD555, #FFA06A);
     border-image: linear-gradient(90deg, #FFD555, #FFA06A);
  border-image-slice: 1;
  font-weight: 700;
  transition: opacity 0.15s;
}
.top_nav__list .framed:hover {
  opacity: 0.7;
}

.footer {
  display: flex;
  align-items: center;
  min-height: 157px;
  padding-left: 15px;
  padding-right: 15px;
  font-size: 13.37px;
  font-style: normal;
  font-weight: 600;
  line-height: 25px;
  letter-spacing: 0.267px;
  text-transform: capitalize;
}

.bottom_nav__list {
  display: flex;
  list-style: none;
}
.bottom_nav__list li {
  margin-right: 61px;
}
.bottom_nav__list li:last-child {
  margin-right: 0;
}
.bottom_nav__list a {
  text-decoration: none;
  color: #222;
}

.text_grad_1 {
  background: linear-gradient(90deg, #FFD555, #FFA06A);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.grad_1 {
  background: linear-gradient(90deg, #FFD555 0%, #FFA06A 100%);
  box-shadow: 0px 3px 9px 0px rgba(0, 0, 0, 0.04) inset;
}

.formats__items {
  display: flex;
  flex-wrap: wrap;
  margin: 0 auto;
  max-width: 1230px;
}
.formats__item {
  width: 100%;
  margin-bottom: 50px;
  padding-left: 25px;
  padding-right: 25px;
  max-width: 410px;
}
.formats__item_title {
  margin-bottom: 12px;
  text-align: center;
  font-size: 23.6px;
  font-style: normal;
  font-weight: 600;
  line-height: 34px;
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
  text-transform: capitalize;
}
.formats__item_img {
  margin-bottom: 12px;
}
.formats__item_img img {
  max-width: 100%;
}
.formats__item_text {
  font-size: 14.5px;
  font-style: normal;
  font-weight: 400;
  line-height: 25px;
}

.advertisers__header {
  margin-bottom: 35px;
  font-size: 61.8px;
  font-style: normal;
  font-weight: 800;
  line-height: 70px;
  text-transform: capitalize;
}
.advertisers__subheader {
  font-size: 38.1px;
  font-style: normal;
  font-weight: 400;
  line-height: 45px;
}
.advertisers__img {
  margin-left: auto;
  max-width: 600px;
}
.advertisers__img img {
  max-width: 100%;
}
.advertisers__text {
  margin-bottom: 100px;
  font-size: 23.6px;
  font-style: normal;
  font-weight: 500;
  line-height: 32px;
}
.advertisers__items {
  display: flex;
  flex-wrap: wrap;
}
.advertisers__item {
  display: flex;
  margin-bottom: 50px;
  width: 100%;
  max-width: 50%;
}
.advertisers__item:nth-of-type(odd) {
  margin-right: 50px;
  max-width: calc(50% - 50px);
}
.advertisers__item_img {
  position: relative;
  top: -12px;
  margin-right: 46px;
}
.advertisers__item_title {
  font-size: 23.6px;
  font-style: normal;
  font-weight: 600;
  line-height: 34px;
  text-transform: capitalize;
}
.advertisers__item_text {
  font-size: 14.5px;
  font-style: normal;
  font-weight: 400;
  line-height: 25px;
}

.mobile_btn {
  width: 24px;
  height: 24px;
  background: url(../images/mobile_btn.svg) 0 0/contain no-repeat;
}
.mobile_btn.close {
  background: url(../images/mobile_btn_close.svg) 0 0/contain no-repeat;
}

.modal-open {
  overflow: hidden;
}

@media (max-width: 767px) {
  .btn__v1 {
    padding: 13.126px;
    font-size: 15.488px;
    line-height: 22.314px;
  }
  .btn__v2 {
    height: 86px;
    width: 100%;
    font-size: 16px;
    line-height: 34px;
  }
  .input__field {
    border-radius: 11.22px;
    height: 47.622px;
  }
  .input__textarea {
    border-radius: 11.22px;
  }
  .top_nav__wrap {
    position: fixed;
    top: 100px;
    left: -100%;
    bottom: 0;
    width: 100%;
    background: #fff;
    z-index: 2;
    transition: left 0.2s;
  }
  .top_nav__wrap.open {
    left: 0;
  }
  .top_nav__list {
    flex-direction: column;
    align-items: center;
    padding-left: 20px;
    padding-right: 20px;
  }
  .top_nav__list li {
    margin-right: 0;
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .top_nav__list a {
    color: #000;
    text-align: center;
    font-size: 28.43px;
    font-weight: 700;
    line-height: 35.1px;
  }
  .top_nav__list .framed {
    display: inline-block;
    border: 3px solid;
    -o-border-image: linear-gradient(90deg, #FFD555, #FFA06A);
       border-image: linear-gradient(90deg, #FFD555, #FFA06A);
    border-image-slice: 1;
    font-size: 24.21px;
    font-style: normal;
    line-height: normal;
    letter-spacing: 0.484px;
  }
  .footer {
    font-size: 12px;
  }
  .bottom_nav__list {
    display: block;
  }
  .advertisers__header {
    font-size: 37.9px;
    font-weight: 700;
    line-height: 44px;
  }
  .advertisers__subheader {
    font-size: 26px;
    font-style: normal;
    font-weight: 700;
    line-height: 36px;
  }
  .advertisers__text {
    margin-bottom: 80px;
    font-size: 21.33px;
    line-height: 34px;
  }
  .advertisers__item {
    max-width: 100%;
  }
  .advertisers__item:nth-of-type(odd) {
    margin-right: 0;
    max-width: 100%;
  }
  .advertisers__item_img {
    margin-right: 25px;
  }
}

@media (max-width: 1260px) {
  .formats__items {
    max-width: 820px;
  }
  .formats__item {
    max-width: 402px;
  }
  .formats__item:last-of-type {
    max-width: 100%;
  }
  .formats__item:last-of-type img {
    max-width: 122px;
  }
}

@media (max-width: 833px) {
  .formats__items {
    max-width: 360px;
  }
  .formats__item {
    max-width: 360px;
    padding-left: 0;
    padding-right: 0;
  }
}

@media (max-width: 1024px) {
  .advertisers__img {
    margin-left: 0;
  }
}