*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@font-face {
  font-family: 'Sofia Pro';
  src: url('../fonts/Sofia Pro Regular Az.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Sofia Pro';
  src: url('../fonts/Sofia Pro Semi Bold Az.woff') format('woff');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Sofia Pro';
  src: url('../fonts/Sofia Pro Bold Az.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

body {
  font-family: 'Sofia Pro', sans-serif;
  background: #fff;
}

.logo {
  width: 129px;
  height: auto;
  cursor: pointer;
}

.header {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: white;
  border-bottom: 1px solid #ccc;
  z-index: 1000;
}

.header_inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  gap: 10px;
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  flex-wrap: nowrap;
}

#logo_container {
  width: 100%;
  max-width: 129px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

#logo {
  width: 129px !important;
  height: 26px !important;
  cursor: pointer;
}

#contact_us_container {
  width: 129px;
  height: 14px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.header_menu {
  display: flex;
  gap: 10px;
  flex-grow: 1;
  overflow-x: auto;
  white-space: nowrap;
  justify-content: center;
}

.header_menu_item {
  padding: 10px 16px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  color: black;
  border-radius: 6px;
  user-select: none;
  text-decoration: none;
  transition: background 0.3s, color 0.3s;
  /* opacity: 0; */
}

.header_menu_item:hover,
.header_menu_item.active {
  background-color: black;
  color: white;
  border-radius: 8px;
}

.header_menu_right {
  display: flex;
  align-items: center;
}

#searchInputContainer {
  width: auto;
  height: auto;
  position: relative;
}

#searchInput {
  width: 100%;
  max-width: 250px;
  height: 37px;
  padding: 6px 45px 6px 30px;
  border-radius: 20px;
  border: 1px solid #aaaaaa;
  font-size: 16px;
  font-weight: 600;
  color: #353535;
  box-sizing: border-box;
}

#searchInput:focus {
  outline: none;
}

#search_icon {
  position: absolute;
  right: 20px;
  top: 7px;
  width: 20px;
  height: auto;
}

.container {
  max-width: 1400px;
  width: 100%;
  margin: 88px auto 0;
  padding-top: 40px;
  position: relative;
}

.margin_div {
  margin: 0 20px;
}

.section {
  width: 100%;
  margin-bottom: 40px;
  padding: 50px 100px;
  border-radius: 5px;
  background-color: #f7f9fb;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}


.video_container video {
  object-fit: cover;
}

.section_info_block {
  width: 100%;
  height: auto;
  margin-bottom: 50px;
}

.section_heading {
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.black_bar {
  background: #1c1c1c;
  width: 100%;
  max-width: 60px;
  height: 2px;
  margin-bottom: 36px;
}

.section_subheading {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 36px;
  line-height: 28px;
}

.ad_specs {
  font-size: 18px;
  line-height: 32px;
  margin-bottom: 36px;
}

.font_bold {
  font-weight: 700;
}

.section_button_container {
  display: flex;
  gap: 12px;
  flex-direction: column;
}

.section_button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: #000;
  color: #fff;
  padding: 8px 16px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  font-size: 16px;
  transition: background-color 0.3s;
  white-space: nowrap;
  box-sizing: border-box;
  flex: 0 0 auto;
  width: auto;
  max-width: max-content;
  user-select: none;
  text-decoration: none;
}

.section_button img {
  width: 21px;
  height: auto;
  flex-shrink: 0;
}

.section_button:hover {
  background-color: #333;
}

.arrow_icon {
  width: 21px;
  height: auto;
}

#footer {
  width: 100%;
  height: auto;
  padding: 120px 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#footer_logo {
  width: 280px;
  height: auto;
  cursor: pointer;
}

#footer_links {
  width: auto;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

#fs_text_footer {
  width: 200px;
  cursor: pointer;
}

#privacy_notice {
  width: 130px;
  height: auto;
  text-align: center;
  color: #000;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  margin-bottom: 5px;
  transition: 0.3s ease-in-out;
}

#privacy_notice:hover {
  color: #63C7C7;
}

.category_heading {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #000;
  color: #fff;
  padding: 8px 16px;
  border-radius: 8px;
  border: none;
  font-size: 18px;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  box-sizing: border-box;
  user-select: none;
  position: absolute;
  top: -18px;
  left: 36px;
}

#share_button {
  cursor: pointer;
  position: absolute;
  top: -21px;
  width: 43px;
  height: auto;
  right: 50px;
}

#language_icon {
  width: 30px;
  height: auto;
}

/*--------- NON DROPDOWNS START ---------*/

.non_dropdown {
  background: #f7f9fb;
  margin-bottom: 40px;
}

.non_dropdown_header {
  width: 100%;
  padding: 50px 20px 15px 50px;
  font-size: 23px;
  line-height: 1;
  font-weight: bold;
}

.underline {
  width: 50px;
  height: 2px;
  background: #000000;
  margin-left: 50px;
}

.popular_formats_image {
  width: 320px;
}


/*--------- DROPDOWNS START ---------*/


.dropdown {
  background: #f7f9fb;
  margin-bottom: 40px;
}

.dropdown_header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 70px;
  padding: 20px;
  cursor: pointer;
  font-size: 23px;
  font-weight: bold;
  background: #ffffff;
  border: 2px solid #ededed;
  border-radius: 5px;
  user-select: none;
}

.arrow {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.arrow.up {
  transform: rotate(180deg);
}

.dropdown ul {
  padding: 0 20px;
}

.dropdown.collapsed ul {
  max-height: 0;
}

.collapsing_div {
  overflow: hidden;
}

.collapsing_div_inner {
  padding: 50px 100px;
}


/*--------- DROPDOWNS END ---------*/


/*--------- PREVIEW FORMATS START ---------*/


#preview_formats_inner {
  padding: 50px 20px !important;
  min-height: 494px;
}

.ad_carousel {
  max-width: 1000px;
  margin: auto;
  text-align: center;
}

.ad_carousel_size_buttons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-bottom: 30px;
}

.ad_carousel_size_buttons button {
  padding: 10px 20px;
  background: black;
  color: white;
  border: none;
  cursor: pointer;
  border-radius: 3px;
  position: relative;
}

.ad_carousel_controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 115px;
  margin-bottom: 30px;
}

.ad_carousel_controls button {
  padding: 10px 20px;
  font-size: 16px;
  background: white;
  border: 2px solid black;
  cursor: pointer;
}

.ad_carousel_main_carousel iframe {
  display: block;
  margin: auto;
  border: none;
}

.ad_carousel_main_carousel .carousel_cell {
  width: 100%;
  text-align: center;
}

.ad_carousel_replay {
  width: 100%;
  max-width: 104px;
  cursor: pointer;
}

.ad_carousel_prev {
  width: 45px;
  height: 45px;
  cursor: pointer;
}

.ad_carousel_next {
  width: 45px;
  height: 45px;
  cursor: pointer;
}

.active_size::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 4px;
  width: 100%;
  background: linear-gradient(to right, #25b3b1, #6ff5ee);
  border-radius: 0 0 3px 3px;
}


/*--------- PREVIEW FORMATS END ---------*/


/*--------- VISUAL CONCEPTS START ---------*/


#visual_concepts .carousel {
  width: 100%;
}

#visual_concepts .carousel-cell {
  width: 100%;
}

#visual_concepts .carousel-cell img {
  width: 100%;
  height: auto;
  display: block;
}

#visual_concepts .flickity-page-dots .dot {
  display: inline-block;
  width: 13px !important;
  height: 13px !important;
  margin: 0 5px;
  background: transparent !important;
  border: 2px #000 solid !important;
  border-radius: 50%;
  opacity: 1;
  cursor: pointer;
}

#visual_concepts .flickity-page-dots .dot.is-selected {
  opacity: 1;
  background: #000 !important;
}


/*--------- VISUAL CONCEPTS END ---------*/

/*--------- POPULAR FORMATS START ---------*/


#popular_formats .carousel {
  width: 100%;
}

/* #popular_formats .carousel-cell {
    width: 100%;
} */

.popular_formats_image {
  width: 320px;
  height: auto;
  display: block;
}

#popular_formats .flickity-page-dots .dot {
  display: inline-block;
  width: 13px !important;
  height: 13px !important;
  margin: 0 5px;
  background: transparent !important;
  border: 2px #000 solid !important;
  border-radius: 50%;
  opacity: 1;
  cursor: pointer;
}

#popular_formats .flickity-page-dots .dot.is-selected {
  opacity: 1;
  background: #000 !important;
}

#popular_formats_carousel .carousel-cell img {
  transition: transform 0.3s ease;
  transform: scale(0.8);
}

#popular_formats_carousel .is-selected img {
  transform: scale(1);
  z-index: 2;
}


/*--------- POPULAR FORMATS END ---------*/


/*--------- ASSET REQUIREMENTS START ---------*/


#asset_requirements_2_column_container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.asset_requirements_2_column_inner {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 50px;
}

#asset_requirements_2_column_left {
  width: 35%;
}

#asset_requirements_2_column_right {
  width: 65%;
}

#asset_requirements_2_column_left img {
  width: 100%;
  max-width: 250px;
}

#asset_requirements_2_column_right img {
  width: 100%;
  max-width: 650px;
}

.table_container {
  overflow-x: auto;
  border-radius: 12px;
}

#assets_table {
  background: #ffffff;
  width: 100%;
  border-collapse: separate;
  min-width: 600px;
  max-width: 897px;
  font-size: 16px;
  margin: 0 auto;
}

th,
td {
  background-color: #fff;
  padding: 20px;
  border: none;
}

th {
  text-align: left;
  background-color: #f4f6f8;
  font-weight: 700;
}

tr {
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03);
}

tr td:first-child {
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
}

tr td:last-child {
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
}

#tracking_table {
  background: #ffffff;
  width: 100%;
  border-collapse: separate;
  max-width: 800px;
  font-size: 16px;
  margin: 0 auto;
}

#tracking_table th,
#tracking_table td {
  background-color: #fff;
  padding: 15px;
  width: 50% !important;
  border: none;
}

#tracking_table th {
  text-align: left;
  background-color: #f4f6f8;
  font-weight: 700;
}

.asset-cell {
  display: flex;
  align-items: center;
  gap: 30px;
}

.asset-icon {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.hide_on_mobile {
  display: block !important;
}

.hide_on_mobile_img {
  width: 300px;
  height: 250px;
  margin: 0 auto;
  display: none !important;
}



/*--------- ASSET REQUIREMENTS END ---------*/

/*--------- EVENT TRACKING START ---------*/


#event_tracking_inner {
  font-size: 18px;
  line-height: 1.5;
  word-wrap: break-word;
  overflow-wrap: break-word;
}


/*--------- EVENT TRACKING END ---------*/

/*--------- ADDITIONAL INFO START ---------*/


#additional_info_inner {
  font-size: 18px;
  line-height: 1.5;
  word-wrap: break-word;
  overflow-wrap: break-word;
}


/*--------- ADDITIONAL INFO END ---------*/

/*--------- FAQ START ---------*/

#faq .container {
  max-width: 900px;
  margin: 0 auto;
  background: #fff;
  padding: 32px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
  border-radius: 10px;
  font-family: 'Sofia Pro', sans-serif;
}

#faq ul {
  padding-left: 20px !important;
}

#faq li {
  line-height: 1.5;
  list-style-type: disc !important;
  font-weight: 400;
  margin: 15px 0;
}


/*--------- FAQ END ---------*/

/*--------- CTA PHRASE START ---------*/

.cta_phrase_container {
  background: #ffffff;
  width: 100%;
  max-width: 800px;
  text-align: center;
  border-radius: 15px;
  padding: 50px;
  font-size: 27px;
  line-height: 32px;
  font-weight: 600;
  margin: 100px auto 30px;
}

.cta_phrase {
  background: #ffffff;
  text-align: center;
  border-radius: 15px;
  font-size: 27px;
  line-height: 32px;
  font-weight: 400;
}

.cta_phrase a {
  color: #2FBDBB;
  text-decoration: underline;
}


/*--------- CTA PHRASE END ---------*/

/*--------- ACCORDION START ---------*/

.accordion,
.accordion-item {
  width: 100%;
  color: #646F86;
}

.accordion .accordion-item {
  border-bottom: 1px solid #000000;
}

.accordion button {
  position: relative;
  display: block;
  text-align: left;
  width: 100%;
  padding: 16px 0;
  color: #000000;
  font-size: 18px;
  font-weight: 400;
  border: none;
  background: none;
  outline: none;
  cursor: pointer;
}

.accordion button:hover,
.accordion button:focus {
  color: #2FBDBB;
}

.accordion button .accordion-title {
  width: 100%;
  display: block;
  padding-right: 34px;
  font-size: 18px;
  line-height: 30px;
}

.accordion button .icon {
  display: inline-block;
  position: absolute;
  top: 18px;
  right: 0;
  width: 22px;
  height: 22px;
  border: 1px solid;
  border-radius: 50%;
  transition: transform 0.3s ease;
}

.accordion button .icon::before {
  content: '';
  position: absolute;
  top: 9px;
  left: 5px;
  width: 10px;
  height: 2px;
  background: #2FBDBB;
}

.accordion button .icon::after {
  content: '';
  position: absolute;
  top: 5px;
  left: 9px;
  width: 2px;
  height: 10px;
  background: #2FBDBB;
}

/* When expanded, the vertical bar of the plus icon disappears */
.accordion button[aria-expanded='true'] .icon::after {
  width: 0;
}

/* Accordion content starts hidden — JS (GSAP) will animate these */
.accordion .accordion-content {
  height: 0;
  overflow: hidden;
  opacity: 0;
}

/* Optional: Keep first item open by default */
.accordion-item:first-child .accordion-content {
  height: auto;
  overflow: visible;
  opacity: 1;
}

/* Optional: Paragraph styling inside accordion */
.accordion .accordion-content p,
.accordion .accordion-content ul {
  font-size: 16px;
  line-height: 24px;
  font-weight: 300;
  margin: 32px 0;
  color: #646F86;
}

.accordion .accordion-item button[aria-expanded='true'] {
  border-bottom: 1px solid #2FBDBB;
}

/*--------- ACCORDION END ---------*/

.fwdrl-item-background {
  background-color: #F7F9FB !important;
}

/*--------- LANGUAGE SWITCHER START---------*/

.content-wrapper {
  margin-right: 10px;
}

#language-switcher {
  max-width: 156px;
  width: 100%;
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
}

#selector {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  height: 40px;
  padding: 8px 16px;
  font-size: 14px;
  background: #fff;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.36s ease-in-out;
}

#selector i {
  margin-right: 6px;
  font-size: 20px;
}

#default-lang i {
  display: none;
}

/* Options Dropdown */
#options {
  display: none;
  max-width: 156px;
  margin-top: 8px;
  padding: 8px;
  background: #fff;
  border: 1px solid rgba(15, 15, 15, 0.16);
  border-radius: 6px;
  position: relative;
  z-index: 5;
  position: absolute;
  white-space: nowrap;
  transition: all 0.36s ease-in-out;
}

#options.active {
  display: block;
}

/* Dropdown Arrow */
#options::before,
#options::after {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 24px;
  border: solid transparent;
  height: 0;
  width: 0;
  pointer-events: none;
}

#options::before {
  border-width: 8px;
  margin-left: -8px;
  border-bottom-color: rgba(15, 15, 15, 0.16);
}

#options::after {
  border-width: 7px;
  margin-left: -7px;
  border-bottom-color: #fff;
}

/* Option Items */
.option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  padding: 8px 12px;
  background: #fff;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.36s ease-in-out;
}

.option i {
  margin-left: auto;
}

.option:hover:not(.active) {
  background: rgba(0, 0, 0, 0.08);
}

.option.active {
  background: #e9f7ff;
  color: #0870d3;
}

.option.active span,
.option.active i {
  color: #0870d3;
}


#format_library_logo, #format_library_logo_a {
  width: 220px;
  height: 44px;
}

/*--------- LANGUAGE SWITCHER END ---------*/

/*--------- MEDIA QUERIES START ---------*/


@media (max-width: 1200px) {

  .container {
    max-width: 950px;
    margin-top: 88px;
  }

  .header_inner {
    gap: 5px;
  }

  .header_menu {
    gap: 5px;
  }

  .header_menu_item {
    font-size: 16px;
    padding: 10px;
  }

  .header_menu_right {
    gap: 20px;
  }

  .phone_container {
    width: 248px;
    height: 476px;
    margin-left: 100px;
  }

  .phone {
    width: 248px;
  }

  .section_heading {
    font-size: 32px;
  }

  .ad_specs {
    font-size: 16px;
  }

  #footer {
    padding: 50px;
  }

  #footer_logo {
    width: 200px;
  }

  #asset_requirements_2_column_container {
    flex-direction: column;
  }

  #asset_requirements_2_column_left {
    width: 100%;
  }

  #asset_requirements_2_column_right {
    width: 100%;
  }

  .flickity-page-dots .dot {
    width: 10px !important;
    height: 10px !important;
    border: 1px #000 solid !important;
  }

  .dropdown_header {
    width: 100%;
    height: 50px;
    font-size: 18px;
  }

  .non_dropdown_header {
    font-size: 18px;
  }

  #share_button {
    cursor: pointer;
    position: absolute;
    top: -15px;
    width: 30px;
    height: auto;
    right: 3%;
  }

  .hide_on_mobile {
    display: none !important;
  }

  .hide_on_mobile_img {
    display: block !important;
  }

  .cta_phrase {
    font-size: 24px;
    line-height: 32px;
  }

  #logo_container {
    max-width: 129px;
  }

  .header_menu_right {
    max-width: auto;
  }



}

@media (max-width: 870px) {

  .section {
    flex-direction: column;
    padding: 50px 100px
  }

  .section_heading {
    font-size: 28px;
    margin-bottom: 12px;
    text-align: center;
  }

  .black_bar {
    margin: 0 auto 24px auto !important;
  }

  .section_subheading {
    text-align: center;
    margin-bottom: 24px;
  }

  .ad_specs {
    text-align: center;
    margin-bottom: 24px;
  }

  .section_button_container {
    justify-content: center;
    align-items: center;
  }

  .video_container {
    margin-left: 0 !important;
  }

  #footer {
    gap: 0px
  }

  #footer_logo {
    width: 180px;
  }

  .section {
    padding: 50px 20px;
  }

  .category_heading {
    left: 50%;
    transform: translateX(-50%);
    display: inline-flex;
    white-space: nowrap;
    font-size: 14px;
  }

  .collapsing_div_inner {
    padding: 50px;
  }

  #assets_table {
    font-size: 14px;
  }

  #tracking_table {
    font-size: 14px;
  }

  #event_tracking_inner {
    font-size: 14px;
  }

  #additional_info_inner {
    font-size: 14px;
  }

}

@media (max-width: 680px) {

  .container {
    margin-top: 77px;
  }

  #footer_links {
    flex-direction: column;
  }

  #footer_logo {
    width: 145px;
  }

  .section_info_block {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .collapsing_div_inner {
    padding: 50px 20px;
  }

  .accordion button .accordion-title {
    font-size: 14px;
    line-height: 22px;
  }

  .accordion .accordion-content p {
    font-size: 14px;
  }

  .accordion .accordion-content ul {
    font-size: 14px;
  }

  #logo {
    width: 100px !important;
    height: 20px !important;
  }

  #format_library_logo, #format_library_logo_a {
    width: 180px;
    height: 32px;
  }

}

@media (max-width: 584px) {

  .container {
    margin-top: 72px;
  }

  .header_menu {
    width: 100%;
    justify-content: flex-start;
    padding-bottom: 10px;
  }

  #footer {
    gap: 0px
  }

  #footer {
    flex-direction: column;
  }

  #footer_logo {
    margin-bottom: 50px;
  }

  #assets_table {
    font-size: 14px;
  }

  #tracking_table {
    font-size: 14px;
  }

  th,
  td {
    padding: 10px;
  }

  #additional_info_inner {
    font-size: 14px;
  }

  #event_tracking_inner {
    font-size: 14px;
  }

  .margin_div {
    margin: 0 10px;
  }

  .ad_carousel_controls {
    gap: 20px;
  }

  #preview_formats_inner {
    padding: 50px 0 !important;
  }

  #footer_logo {
    margin-bottom: 50px;
  }

  #format_library_logo, #format_library_logo_a {
    width: 148px;
    height: 28px;
  }

  .content-wrapper {
    margin-right: 2px;
  }

  #language-switcher {
    max-width: 156px;
    width: 100%;
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
  }

  #selector {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    height: 30px;
    padding: 2px 7px;
    font-size: 13px;
    background: #fff;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.36s ease-in-out;
  }

  #selector i {
    margin-right: 0;
    font-size: 16px;
  }

  #default-lang {
    display: none;
  }

  #options {
    display: none;
    width: 100%;
    max-width: none;
    margin-top: 8px;
    padding: 8px;
    background: #fff;
    border: 1px solid rgba(15, 15, 15, 0.16);
    border-radius: 6px;
    z-index: 5;
    position: absolute;
    left: 0;
    top: 62px;
    white-space: nowrap;
    transition: all 0.36s ease-in-out;
  }

  #options::before,
  #options::after {
    display: none;
  }

}

@media (max-width: 450px) {

  .container {
    margin-top: 69px;
  }

  #logo_container {
    width: 90px;
  }

  #logo {
    width: 90px !important;
    height: 15px !important;
  }

  #format_library_logo, #format_library_logo_a {
    width: 150px;
    height: 25px;
  }

  .header_menu_right {
    max-width: 90px;
  }

  #contact_us_container {
    width: 90px;
    height: 14px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }

  #contact_us_icon {
    width: 90px;
  }

  #language_icon {
    width: 30px;
    height: auto;
  }

}

@media (max-width: 425px) {

  .section_subheading {
    font-size: 15px;
  }

  #popular_formats .carousel-cell {
    width: 100%;
  }

  .popular_formats_image {
    width: 100%;
  }

  .cta_phrase {
    font-size: 20px;
    line-height: 32px;
  }

  #logo_container {
    max-width: 65px;
  }

  #logo {
    width: 65px !important;
    height: 15px !important;
  }

  #format_library_logo, #format_library_logo_a {
    width: 120px;
    height: 25px;
  }

  .header_menu_right {
    max-width: 65px;
  }

  #contact_us_container {
    width: 65px;
    height: 14px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }

  #contact_us_icon {
    width: 65px;
  }

  #options {
    top: 62px;
  }

  #language_icon {
    width: 20px;
    height: auto;
  }

  #selector {
    padding-left: 0;
  }

}

@media (max-width: 376px) {

  #footer {
    padding: 35px;
  }

  #footer_logo {
    width: 120px;
    margin-bottom: 35px;
  }

  #footer_links {
    gap: 10px;
  }

  #fs_text_footer {
    width: 150px;
  }

  #privacy_notice {
    font-size: 15px;
  }

  .ad_specs {
    font-size: 14px;
  }

  #share_button {
    right: 10px;
  }

  .cta_phrase_container {
    padding: 20px;
  }

  .cta_phrase {
    font-size: 18px;
    line-height: 32px;
  }

  #format_library_logo, #format_library_logo_a {
    width: 100px;
    height: 25px;
  }


}


/*--------- MEDIA QUERIES END ---------*/