/** webfonts **/
@font-face {
  font-display: swap;
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/manrope-v14-latin-regular.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Manrope";
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/manrope-v14-latin-500.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Bahnschrift";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/bahnschrift.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "headingnow-26bold";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/headingnow-26bold-webfont.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "headingnow-35medium";
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/headingnow-35medium-webfont.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "headingnow-36bold";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/headingnow-36bold-webfont.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "queensvaritalic";
  font-style: italic;
  font-weight: 400;
  src: url("../fonts/queensvaritalictrial-webfont.woff2") format("woff2");
}
/** END webfonts **/
/** general **/
:root {
  --font-family-body: "Manrope";
  --font-family-heading: "Bahnschrift";
  --color-primary: #B29969;
  --color-black: #121212;
  --duration-short: 100ms;
  --duration-default: 250ms;
  --duration-long: 500ms;
}

body, html {
  min-height: 100%;
  overflow-x: hidden;
}

body {
  background-color: #F2F2F2;
  font-family: var(--font-family-body);
  font-size: 17px;
  font-weight: 500;
  color: #141414;
  overflow: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, .h1 {
  font-family: "headingnow-26bold";
  font-size: 80px;
  line-height: 1;
  font-weight: 400;
  text-transform: uppercase;
}

h2, .h2,
h3, .h3 {
  font-family: var(--font-family-heading);
  font-weight: 600;
  text-transform: uppercase;
}

h2, .h2 {
  font-size: 40px;
}

h3, .h3 {
  font-size: 32px;
}

a, a:hover, a:focus {
  text-decoration: none;
  outline: none;
}

img, svg, iframe, video {
  max-width: 100%;
  height: auto;
}

.container {
  --bs-gutter-x: 40px;
}

.row {
  --bs-gutter-x: 40px;
}

.nav,
.nav ul,
.menu,
.menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.button-unstyled {
  background-color: transparent;
  padding: 0;
  border: 0;
}

@media (max-width: 575.98px) {
  h2, .h2 {
    font-size: 34px;
  }
  h3, .h3 {
    font-size: 28px;
  }
}
/** END general **/
/** button **/
/** END button **/
/** form **/
button, input, textarea, select {
  outline: none;
}

/** END form **/
/** header **/
#header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 60px 0;
  z-index: 500;
  transition: background-color var(--duration-default);
}

#header .toggle-nav {
  position: relative;
  width: 32px;
  height: 21px;
}

#header .toggle-nav span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #fff;
  border-radius: 10px;
}

#header .toggle-nav.collapsed > span:nth-child(1) {
  top: 0;
}

#header .toggle-nav.collapsed > span:nth-child(2) {
  top: 50%;
  margin-top: -1.5px;
}

#header .toggle-nav.collapsed > span:nth-child(3) {
  bottom: 0;
}

#header .toggle-nav:not(.collapsed) > span:nth-child(1),
#header .toggle-nav:not(.collapsed) > span:nth-child(3) {
  top: 50%;
  margin-top: -1.5px;
}

#header .toggle-nav:not(.collapsed) > span:nth-child(1) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

#header .toggle-nav:not(.collapsed) > span:nth-child(2) {
  opacity: 0;
}

#header .toggle-nav:not(.collapsed) > span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

#header .nav {
  display: flex;
  align-items: center;
}

#header .nav .toggle {
  position: absolute;
  top: 13px;
  right: 0;
  width: 14px;
  height: 14px;
  background-color: transparent;
  border: 0;
  padding: 0;
  background-image: url(../svg/angle-down-sm-ffffff.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

#header .nav li {
  position: relative;
}

#header .nav li a {
  display: inline-block;
  font-size: 18px;
  color: #fff;
  transition: all var(--duration-default);
}

#header .nav li.menu-item-has-children > a {
  padding-right: 20px;
}

@media (min-width: 992px) {
  #header .nav li:hover > ul {
    margin-top: 0;
    opacity: 1;
    visibility: visible;
  }
  #header .nav > li {
    padding: 20px 0;
    margin-right: 30px;
  }
  #header .nav > li > .toggle {
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  #header .nav > li:last-child {
    margin-right: 0;
  }
  #header .nav > li:hover > a {
    opacity: 0.7;
  }
  #header .nav ul {
    position: absolute;
    top: 100%;
    min-width: 200px;
    background-color: #072B71;
    margin-top: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all var(--duration-default);
  }
  #header .nav ul .toggle {
    top: 16px;
    right: 15px;
    background-image: url(../svg/angle-down-sm-ffffff.svg);
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
  }
  #header .nav ul li a {
    display: block;
    padding: 10px 15px;
    color: #fff;
  }
  #header .nav ul li.menu-item-has-children > a {
    padding-right: 30px;
  }
  #header .nav ul li:hover > a {
    background-color: rgba(255, 255, 255, 0.1);
  }
  #header .nav ul ul {
    top: 0;
    left: 100%;
  }
}
@media (min-width: 1200px) {
  #header .nav > li {
    margin-right: 60px;
  }
  #header .nav > li > a {
    font-size: 20px;
  }
}
@media (max-width: 991.98px) {
  #header {
    padding: 20px 0;
  }
  #header .nav {
    display: block;
    padding-top: 20px;
  }
  #header .nav .toggle {
    right: 9px;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
  }
  #header .nav .toggle.active {
    opacity: 0.25;
  }
  #header .nav li a {
    display: block;
    padding: 6px 0;
  }
  #header .nav li.menu-item-has-children > a {
    padding-right: 32px;
  }
  #header .nav ul {
    display: none;
    padding-left: 20px;
  }
  #header.show-nav {
    background-color: #072B71;
  }
}
/** END header **/
/** footer **/
#footer {
  font-size: 14px;
  line-height: 1.6;
  color: #8E8E8E;
}
#footer hr {
  display: block;
  width: 100%;
  height: 1px;
  border: 0;
  background-color: #BCBCBC;
  margin: 0 0 80px;
}
#footer h4 {
  margin-bottom: 10px;
  font-family: var(--font-family-heading);
  font-size: 28px;
  font-weight: 600;
  color: #072B71;
  text-transform: uppercase;
}
#footer h4 a {
  color: inherit;
}
#footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
#footer ul > li {
  margin-bottom: 2px;
}
#footer ul > li > a {
  color: inherit;
}
#footer .container {
  --bs-gutter-x: 160px;
  position: relative;
  max-width: 1600px;
}
#footer .back-top {
  position: absolute;
  top: -44px;
  right: calc(0.5 * var(--bs-gutter-x));
  padding-left: 18px;
  font-family: "headingnow-36bold";
  font-size: 38px;
  line-height: 1;
  color: #CECECE;
  text-transform: uppercase;
}
#footer .back-top:before {
  content: "";
  position: absolute;
  top: 4px;
  left: 0;
  width: 11px;
  height: 30px;
  background-image: url(../svg/icon-backtop.svg);
  background-repeat: no-repeat;
  background-position: 0;
  background-size: contain;
}
@media (min-width: 992px) {
  #footer .row {
    --bs-gutter-x: 60px;
  }
  #footer .row > div {
    margin-bottom: 80px;
  }
}
@media (min-width: 1200px) {
  #footer h4 {
    white-space: nowrap;
  }
}
@media (max-width: 991.98px) {
  #footer .row > div {
    margin-bottom: 40px;
  }
}
@media (max-width: 575.98px) {
  #footer h4 {
    font-size: 22px;
  }
  #footer .container {
    --bs-gutter-x: 40px;
  }
}

/** END footer **/
/** welcome **/
#welcome {
  position: relative;
  padding: 260px 0 0;
}
#welcome .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 70%;
  background-image: var(--bg-image);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  z-index: 1;
}
#welcome .text {
  position: relative;
  margin-left: -20px;
  margin-right: -20px;
}
#welcome .text h1 {
  position: absolute;
  top: 14.2%;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
  font-size: 8.5vw;
  text-align: center;
  z-index: 10;
}
#welcome .text h1 span {
  display: inline-block;
}
#welcome .text h1 span.ln-1 {
  color: #CA0303;
}
#welcome .text h1 span.ln-2 {
  padding: 0 14px;
  font-family: "queensvaritalic";
  font-size: 70%;
  color: #000;
  text-transform: none;
}
#welcome .text h1 span.ln-3 {
  color: #072B71;
}
#welcome .text img {
  display: block;
  position: relative;
  width: 100%;
  height: auto;
  z-index: 1;
}
@media (min-width: 1200px) {
  #welcome .text h1 {
    font-size: 110px;
  }
  #welcome .text h1 span.ln-2 {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (min-width: 1400px) {
  #welcome .text h1 {
    font-size: 140px;
  }
}
@media (max-width: 991.98px) {
  #welcome {
    padding-top: 180px;
  }
}
@media (max-width: 575.98px) {
  #welcome .text {
    margin-left: -10px;
    margin-right: -10px;
  }
  #welcome .text h1 span.ln-2 {
    padding-left: 10px;
    padding-right: 10px;
  }
}

/** END welcome **/
/** introduction **/
#introduction {
  padding: 120px 0;
}
#introduction h2 {
  color: #CC0606;
}
#introduction .text {
  color: #072B71;
}
@media (min-width: 1200px) {
  #introduction .section-inner {
    padding-left: 80px;
    padding-right: 80px;
  }
}
@media (max-width: 1199.98px) {
  #introduction h2 {
    margin-bottom: 40px;
  }
}
@media (max-width: 991.98px) {
  #introduction {
    padding: 80px 0;
  }
}

/** END introduction **/
/** key-insights **/
#key-insights .key-insights__heading {
  position: relative;
  background-image: url(../images/bg-1.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 80px 60px;
  border-radius: 20px;
  margin-bottom: 200px;
  color: #F2F2F2;
}
#key-insights .key-insights__heading h2 {
  margin-bottom: 40px;
  color: #E23B3B;
}
#key-insights .key-insights__heading .ivoted {
  display: block;
  position: absolute;
  width: 160px;
  height: 160px;
  background-image: url(../images/img-ivoted.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
#key-insights .key-insights__heading .ivoted--1 {
  top: 92px;
  right: -92.5px;
}
#key-insights .key-insights__heading .ivoted--2 {
  top: 202px;
  left: -86px;
  -webkit-transform: rotate(-20deg);
          transform: rotate(-20deg);
}
#key-insights .key-insights__heading .ivoted--3 {
  left: 140px;
  bottom: -48px;
  -webkit-transform: rotate(20deg);
          transform: rotate(20deg);
}
#key-insights .key-insights__heading .list {
  margin: 0;
  padding: 0;
  list-style: none;
}
#key-insights .key-insights__heading .list > li {
  border-bottom: 1px solid #353535;
  padding-bottom: 20px;
  margin-bottom: 40px;
  font-family: var(--font-family-heading);
  font-size: 20px;
  line-height: 1.25;
  letter-spacing: 0.005em;
  text-transform: uppercase;
}
#key-insights .key-insights__heading .list > li strong {
  display: inline-block;
  color: #E23B3B;
  font-weight: 400;
}
#key-insights .key-insights__heading .list > li:last-child {
  margin-bottom: 0;
}
@media (min-width: 1200px) {
  #key-insights .key-insights__heading {
    padding: 100px 75px;
  }
  #key-insights .key-insights__heading .ivoted {
    width: 180px;
    height: 180px;
  }
  #key-insights .key-insights__heading .list > li {
    font-size: 24px;
  }
}
@media (max-width: 991.98px) {
  #key-insights .key-insights__heading .ivoted {
    width: 136px;
    height: 136px;
  }
}
@media (max-width: 767.98px) {
  #key-insights .key-insights__heading {
    padding: 60px 40px;
  }
  #key-insights .key-insights__heading .ivoted {
    display: none;
  }
  #key-insights .key-insights__heading .ivoted--1 {
    display: block;
    top: -60px;
    right: -20px;
  }
  #key-insights .key-insights__heading .list br {
    display: none;
  }
}
@media (max-width: 575.98px) {
  #key-insights .key-insights__heading {
    margin-bottom: 120px;
  }
}
#key-insights .key-insights__main {
  position: relative;
}
#key-insights #toc-sticky-wrapper {
  height: auto !important;
}
#key-insights #toc {
  position: absolute;
  top: 0;
  width: 39px !important;
  background-color: #1C1C1C;
}
#key-insights #toc > li > a {
  display: block;
  position: relative;
  font-family: "headingnow-36bold";
  font-size: 34px;
  color: #515151;
  text-transform: uppercase;
  text-align: center;
  transition: all var(--duration-default);
}
#key-insights #toc > li > a:before, #key-insights #toc > li > a:after {
  content: "";
  position: absolute;
}
#key-insights #toc > li > a:before {
  width: 0;
  height: 0;
  top: 50%;
  left: -19px;
  margin-top: -7px;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 12px solid #CC0606;
  opacity: 0;
  transition: opacity var(--duration-default);
}
#key-insights #toc > li > a:after {
  right: 7px;
  bottom: 0;
  left: 7px;
  height: 1px;
  background-color: #000;
}
#key-insights #toc > li > a:hover, #key-insights #toc > li > a.active {
  color: #F2F2F2;
  background-color: #CC0606;
}
#key-insights #toc > li > a.active:before {
  opacity: 1;
}
#key-insights #toc > li:last-child > a:after {
  display: none;
}
#key-insights .section {
  max-width: 820px;
  margin: 0 auto 140px;
}
#key-insights .section__heading {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  height: 110px;
  padding-top: 2px;
  padding-right: 30px;
  margin-right: -20px;
  margin-bottom: 50px;
  background-repeat: no-repeat;
  background-position: top left;
  background-size: contain;
}
#key-insights .section__heading h2 {
  margin-bottom: 0;
  font-size: 90px;
  color: #fff;
}
#key-insights .section__content h3 {
  position: relative;
  margin-bottom: 25px;
  font-size: 30px;
  line-height: 1.15;
  font-weight: 600;
  color: #072B71;
}
#key-insights .section__content h3 strong {
  font-weight: 600;
  color: #CC0606;
}
#key-insights .section__content .text {
  margin-bottom: 50px;
}
#key-insights .section__content .text:last-child {
  margin-bottom: 0;
}
#key-insights .section__content .image {
  margin-bottom: 50px;
}
#key-insights .section__content .image:last-child {
  margin-bottom: 0;
}
#key-insights .section__content .table table {
  width: 100%;
  border: 0;
}
#key-insights .section__content .table table tr td {
  padding: 40px 40px 10px 0;
  border-bottom: 1px solid #BFBFBF;
  vertical-align: bottom;
}
#key-insights .section__content .table table tr td:first-child {
  width: 20%;
  line-height: 1.2;
}
#key-insights .section__content .table table tr td:first-child strong {
  display: block;
  font-family: var(--font-family-heading);
  font-size: 30px;
  font-weight: 600;
  color: #CC0606;
}
@media (max-width: 991.98px) {
  #key-insights #toc-sticky-wrapper,
#key-insights #toc {
    display: none !important;
  }
  #key-insights .section__heading {
    height: 96px;
  }
  #key-insights .section__heading h2 {
    font-size: 75px;
  }
  #key-insights .section__content h3 {
    font-size: 28px;
  }
}
@media (max-width: 767.98px) {
  #key-insights .section__heading {
    height: 76px;
    padding-right: 20px;
  }
  #key-insights .section__heading h2 {
    font-size: 55px;
  }
}
@media (max-width: 575.98px) {
  #key-insights .section {
    margin-bottom: 100px;
  }
  #key-insights .section__heading {
    margin-bottom: 30px;
  }
  #key-insights .section__heading h2 {
    font-size: 10vw;
  }
}

#one .section__heading {
  background-image: url(../images/bg-heading-1.png);
}
#one .section__content .text--2 {
  margin-top: -40px;
}
#one .section__content .image--1 {
  margin-bottom: 30px;
}
#one .section__content .image--2 p {
  margin-bottom: 15px;
  color: #C9C9C9;
}
#one .section__content .image--2 img {
  display: block;
  width: 100%;
  height: auto;
}
#one .section__content .image--3 {
  text-align: center;
}
#one .section__content .heading--1 {
  max-width: 500px;
}
#one .section__content .heading--2 {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 25px;
  margin-bottom: 40px;
  text-align: center;
}
#one .section__content .heading--2:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 30px;
  height: 7px;
  margin: 0 auto;
  background-image: url(../svg/three-dots.svg);
  background-repeat: no-repeat;
  background-position: 0;
  background-size: contain;
}
#one .section__content .search-input {
  display: flex;
  align-items: center;
  position: relative;
  width: 100%;
  height: 55px;
  padding-right: 10px;
  padding-bottom: 5px;
  padding-left: 55px;
  margin-bottom: 30px;
  background-image: url(../images/bg-search-input.png);
  background-repeat: no-repeat;
  background-position: 0;
  background-size: 100% 100%;
  font-size: 19px;
  line-height: 1.1;
  color: #161616;
}
#one .section__content .search-input:before {
  content: "";
  position: absolute;
  top: 14px;
  left: 16px;
  width: 21px;
  height: 21px;
  background-image: url(../svg/icon-search.svg);
  background-repeat: no-repeat;
  background-position: 0;
  background-size: contain;
}
#one .section__content .candidates h4 {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-family: var(--font-family-heading);
  font-size: 15px;
  font-weight: 600;
  color: #141414;
  text-transform: uppercase;
  text-align: center;
}
#one .section__content .candidates h4 img {
  margin-right: 3px;
}
#one .section__content .candidates ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
#one .section__content .candidates ul li {
  padding: 0 10px 20px;
  font-family: var(--font-family-heading);
  font-size: 11px;
  font-weight: 400;
  color: #848484;
  text-align: center;
}
#one .section__content .candidates ul li img {
  display: block;
  margin: 0 auto 8px;
}
#one .section__content .candidates__left h4 {
  color: #072B71;
}
#one .section__content .candidates__center h4 {
  color: #CF0809;
}
@media (min-width: 768px) {
  #one .section__content .candidates {
    display: flex;
    flex-wrap: wrap;
    margin-right: -24px;
    margin-bottom: 30px;
  }
  #one .section__content .candidates__left {
    width: 125px;
  }
  #one .section__content .candidates__left ul {
    display: block;
  }
  #one .section__content .candidates__center {
    position: relative;
    width: calc(100% - 125px - 125px);
    padding: 0 20px;
  }
  #one .section__content .candidates__center:before, #one .section__content .candidates__center:after {
    content: "";
    position: absolute;
    top: 48px;
    bottom: 38px;
    width: 1px;
    background-color: #919191;
  }
  #one .section__content .candidates__center:before {
    left: 0;
  }
  #one .section__content .candidates__center:after {
    right: 0;
  }
  #one .section__content .candidates__center ul {
    justify-content: flex-start;
  }
  #one .section__content .candidates__right {
    width: 125px;
  }
}
@media (max-width: 767.98px) {
  #one .section__content .search-input {
    font-size: 15px;
  }
  #one .section__content .candidates__center {
    padding: 20px 0;
  }
}

#two .section__heading {
  background-image: url(../images/bg-heading-2.png);
  padding-top: 0;
  padding-right: 35px;
}
#two .section__content .image--1 {
  position: relative;
  margin-left: -20px;
  margin-right: -20px;
  text-align: center;
}
#two .section__content .image--1 h3 {
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  #two .section__content .image--1 {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: -60px;
    margin-right: -60px;
  }
  #two .section__content .image--1 h3 {
    position: absolute;
    top: 217px;
    left: 280px;
    width: 328px;
    margin-bottom: 0;
    text-align: left;
    z-index: 10;
  }
}
@media (min-width: 992px) {
  #two .section__content .image--1 h3 {
    top: 255px;
    left: 330px;
    width: 375px;
  }
}
@media (min-width: 768px) and (max-width: 991.98px) {
  #two .section__content .image--1 img {
    width: 800px;
    max-width: 800px;
  }
}
#three .section__heading {
  padding-top: 5px;
  padding-right: 40px;
  background-image: url(../images/bg-heading-3.png);
}
#three .section__heading h2 {
  font-size: 75px;
}
#three .section__content .heading--1 {
  margin-bottom: 50px;
}
#three .section__content .image--1 {
  position: relative;
  background-color: #DDDDDD;
  border-radius: 35px;
  padding: 25px 35px;
  margin-bottom: 60px;
}
#three .section__content .image--1 .image__text {
  position: relative;
  border-top: 2px solid #B1B1B1;
  padding: 25px 0 0 160px;
  font-size: 15px;
  color: #000;
}
#three .section__content .image--1 .image__text:before {
  content: "";
  position: absolute;
  top: -3px;
  left: 0;
  width: 230px;
  height: 4px;
  background-color: #BE1212;
}
#three .section__content .image--1 .image__text .number {
  position: absolute;
  top: 0;
  left: 0;
  font-family: "headingnow-35medium";
  font-size: 80px;
  color: #BE1212;
}
#three .section__content .image--2 {
  margin-bottom: 30px;
}
#three .section__content .image--2 p {
  margin-bottom: 0;
  padding-top: 10px;
  font-family: "headingnow-26bold";
  font-size: 84px;
  line-height: 0.92;
  font-weight: 400;
  text-transform: uppercase;
}
#three .section__content .image--2 img {
  mix-blend-mode: darken;
}
#three .section__content .image--3 {
  text-align: center;
}
#three .section__content .image--3 img {
  display: block;
  margin: 0 auto 15px;
}
#three .section__content .image--3 p {
  margin-bottom: 0;
  font-weight: 400;
  color: #535353;
}
@media (min-width: 768px) {
  #three .section__content .image--1 {
    padding-left: 270px;
    min-height: 171px;
  }
  #three .section__content .image--1 img {
    position: absolute;
    top: -30px;
    left: 5px;
  }
}
@media (max-width: 991.98px) {
  #three .section__heading h2 {
    font-size: 65px;
  }
  #three .section__content .image--2 {
    text-align: center;
  }
  #three .section__content .image--2 p {
    padding-top: 0;
    margin-bottom: 30px;
    font-size: 60px;
  }
}
@media (max-width: 767.98px) {
  #three .section__heading {
    padding-right: 30px;
  }
  #three .section__heading h2 {
    font-size: 45px;
  }
}
@media (max-width: 575.98px) {
  #three .section__heading h2 {
    font-size: 8.5vw;
  }
  #three .section__content .image--1 {
    padding: 20px 20px;
  }
  #three .section__content .image--1 .image__text {
    padding-top: 20px;
    padding-left: 110px;
  }
  #three .section__content .image--1 .image__text .number {
    font-size: 55px;
  }
}

#four .section__heading {
  justify-content: center;
  height: auto;
  margin-bottom: 70px;
}
#four .section__heading h2 {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 110px;
  color: #CA0303;
  text-align: center;
}
#four .section__heading h2:after {
  content: "";
  position: absolute;
  bottom: -28px;
  right: -14px;
  width: 301px;
  height: 52px;
  background-image: url(../images/img-public-concerns.png);
  background-repeat: no-repeat;
  background-position: 0;
  background-size: contain;
}
#four .section__heading h2 span {
  display: inline-block;
  width: 36px;
  margin: 0 20px;
  font-size: 32px;
  color: #0C0C0C;
}
#four .section__content .row {
  --bs-gutter-x: 10px;
  margin-left: -15px;
  margin-right: -15px;
  margin-bottom: 30px;
}
#four .section__content .heading--1 {
  max-width: 620px;
  padding-bottom: 30px;
  margin: 0 auto 30px;
  text-align: center;
}
#four .section__content .heading--1:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 30px;
  height: 7px;
  margin: 0 auto;
  background-image: url(../svg/three-dots.svg);
  background-repeat: no-repeat;
  background-position: 0;
  background-size: contain;
}
@media (max-width: 991.98px) {
  #four .section__heading h2 {
    font-size: 90px;
  }
}
@media (max-width: 767.98px) {
  #four .section__heading h2 {
    font-size: 52px;
  }
  #four .section__heading h2 span {
    width: 22px;
    margin: 0 10px;
    font-size: 24px;
  }
}

/** END key-insights **/
/** extra **/
section h1,
section h2,
section h3,
section .image img {
  opacity: 0;
}

/** END extra **/