html {
  scroll-behavior: smooth;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Cairo", sans-serif !important;
}

body {
  direction: ltr;
  text-align: start;
  font-family: "Cairo", sans-serif !important;
  font-weight: bold;
  color: #000000;
  background-color: #e4f8fd;
}
body a.active {
  color: #39c0f3 !important;
}
body.premium {
  background-color: #fbf7f3;
}
body.premium a:hover {
  color: #c0984e !important;
}
body.premium a.active {
  color: #c0984e !important;
}
body.premium .listingDate .type {
  padding: 0 !important;
}
body.premium .listingDate .type:before {
  content: none !important;
}
body.premium .secondaryNews:before {
  background-image: url(../images/arrowGold.svg) !important;
}
body.premium header .topHeader .newsPaper:before {
  background-image: url(../images/goldNewsPaper.svg);
}
body.premium header .middleHeader .region .country {
  color: #c0984e;
  border-left: 0.5px solid rgba(192, 152, 78, 0.3764705882);
}
body.premium header .middleHeader .regionDropdown {
  display: block;
}
body.premium header .middleHeader .regionDropdown > a {
  position: relative;
  padding-inline: 30px;
  font-size: 18px;
  line-height: 18px;
}
body.premium header .middleHeader .regionDropdown > a:before {
  content: "";
  background-image: url("../images/globe.svg");
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  left: 0;
  height: 20px;
  width: 20px;
  top: 50%;
  transform: translateY(-50%);
}
body.premium header .middleHeader .regionDropdown > a:after {
  content: "";
  background-image: url("../images/triangleDown.svg");
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  right: 0;
  height: 9px;
  width: 15px;
  top: 50%;
  transform: translateY(-50%);
}
body.premium .featuredNewsSection1 .listingItemDIV.featured .listingInfos,
body.premium .featuredNewsSection2 .listingItemDIV.featured .listingInfos {
  background: #fbf7f3;
}
body.premium .type {
  color: #c0984e !important;
}

.hidden {
  display: none;
}

input {
  font-family: "Cairo", sans-serif !important;
}

img {
  width: 100%;
  display: block;
}

a {
  color: #000000;
  transition: all 0.3s ease-in-out;
}
a:hover {
  color: #39c0f3 !important;
}

.liveText {
  display: inline-flex;
  align-items: flex-start;
  height: -moz-fit-content;
  height: fit-content;
  padding-inline-start: 0 !important;
}
.liveText p {
  color: #ff0000;
  padding-inline-start: 15px;
  font-size: smaller;
}
.liveText .pulse-container {
  position: relative;
  height: 1.4em;
  width: 1.1em;
}
.liveText .pulse-container .pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0.8em;
  height: 0.8em;
  background-color: #ff0000;
  color: white;
  border-radius: 50%;
}
.liveText .pulse-container .pulse::after, .liveText .pulse-container .pulse::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 0.8em;
  height: 0.8em;
  background: rgb(255, 0, 0);
  border-radius: 50%;
  z-index: -1;
  animation: grow 1s ease-in-out infinite;
}
.liveText .pulse-container .pulse::after {
  background: rgba(255, 0, 0, 0.4);
}
.liveText .pulse-container .pulse::after::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 0.8em;
  height: 0.8em;
  background: rgb(95, 132, 255);
  border-radius: 50%;
  z-index: -1;
  animation: grow 1s ease-in-out infinite;
}
.liveText .pulse-container .pulse::before {
  background: rgba(255, 0, 0, 0.6);
  animation-delay: -0.5s;
}

@keyframes grow {
  0% {
    transform: scale(1, 1);
    opacity: 1;
  }
  100% {
    transform: scale(1.8, 1.8);
    opacity: 0;
  }
}
.btnContainer {
  margin: 30px 0;
}
.btnContainer input,
.btnContainer a {
  display: inline-block;
  position: relative;
  color: white;
  text-align: center;
  padding: 10px;
  min-width: 170px;
  line-height: 45px;
  font-weight: bold;
  line-height: normal;
  background: #c0984e;
  border-radius: 200px;
  transition: all 0.3s ease-in-out;
}
.btnContainer input,
.btnContainer a {
  font-size: 16px;
}
@media screen and (min-width: 320px) {
  .btnContainer input,
  .btnContainer a {
    font-size: calc(16px + 2 * (100vw - 320px) / 1601);
  }
}
@media screen and (min-width: 1921px) {
  .btnContainer input,
  .btnContainer a {
    font-size: 18px;
  }
}
.btnContainer input:hover,
.btnContainer a:hover {
  background-color: #39c0f3;
  color: white !important;
}

.listingItem .listingImage {
  overflow: hidden;
}
.listingItem .listingImage img {
  transition: transform 0.3s ease;
  width: 100%;
  height: auto;
}
.listingItem .listingImage:hover img {
  transform: scale(1.05);
}

header {
  padding-top: 40px;
  position: sticky;
  top: -221px;
  z-index: 99;
  background: #e4f8fd;
}
header:after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100vw;
  height: 100%;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.3);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
header.show-shadow::after {
  opacity: 1;
}
header .topHeader {
  display: flex;
  padding-bottom: 40px;
  margin-bottom: 5px;
  border-bottom: 0.5px solid rgba(121, 121, 111, 0.3764705882);
  justify-content: space-between;
  align-items: center;
}
header .topHeader .searchContainer {
  padding-left: 35px;
  position: relative;
}
header .topHeader .searchContainer label {
  margin-right: 20px;
}
header .topHeader .searchContainer label {
  font-size: 12px;
}
@media screen and (min-width: 320px) {
  header .topHeader .searchContainer label {
    font-size: calc(12px + 6 * (100vw - 320px) / 1601);
  }
}
@media screen and (min-width: 1921px) {
  header .topHeader .searchContainer label {
    font-size: 18px;
  }
}
header .topHeader .searchContainer label {
  line-height: 20px;
}
@media screen and (min-width: 320px) {
  header .topHeader .searchContainer label {
    line-height: calc(20px + 8 * (100vw - 320px) / 1601);
  }
}
@media screen and (min-width: 1921px) {
  header .topHeader .searchContainer label {
    line-height: 28px;
  }
}
header .topHeader .searchContainer label .searchBtn {
  background-image: url("../images/search.svg");
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  left: 0;
  height: 24px;
  width: 24px;
  top: 50%;
  transform: translateY(-50%);
}
header .topHeader .searchContainer input {
  border-radius: 30px;
  height: 34px;
  width: 230px;
  padding: 0 15px;
  border: 0.5px solid #979797;
  color: black;
  font-weight: bold;
}
header .topHeader .newsPaper {
  padding-left: 40px;
  position: relative;
}
header .topHeader .newsPaper {
  font-size: 18px;
}
@media screen and (min-width: 320px) {
  header .topHeader .newsPaper {
    font-size: calc(18px + 0 * (100vw - 320px) / 1601);
  }
}
@media screen and (min-width: 1921px) {
  header .topHeader .newsPaper {
    font-size: 18px;
  }
}
header .topHeader .newsPaper {
  line-height: 26px;
}
@media screen and (min-width: 320px) {
  header .topHeader .newsPaper {
    line-height: calc(26px + 0 * (100vw - 320px) / 1601);
  }
}
@media screen and (min-width: 1921px) {
  header .topHeader .newsPaper {
    line-height: 26px;
  }
}
header .topHeader .newsPaper:before {
  content: "";
  background-image: url("../images/blueNewspaper.svg");
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  left: 0;
  height: 29px;
  width: 29px;
  top: 50%;
  transform: translateY(-50%);
}
header .middleHeader {
  display: flex;
  margin-bottom: 15px;
  border-bottom: 0.5px solid rgba(121, 121, 111, 0.3764705882);
}
header .middleHeader .start {
  display: flex;
  margin-bottom: 10px;
  flex: 1 1 40%;
}
header .middleHeader .start span {
  color: #39c0f3;
  margin-left: 10px;
  margin-bottom: -10px;
  font-size: 20px;
  display: flex;
  align-items: center;
}
header .middleHeader .end {
  flex: 1 1 60%;
  display: flex;
  justify-content: end;
}
header .middleHeader .logoContainer {
  max-width: 250px;
  min-width: 170px;
}
header .middleHeader .region {
  flex: 1 1 25%;
  display: flex;
  justify-content: end;
  align-items: center;
  padding-right: 40px;
  position: relative;
}
header .middleHeader .region .country {
  display: none;
  color: #39c0f3;
  margin-right: 20px;
  padding-right: 20px;
  border-right: 0.5px solid rgba(92, 204, 245, 0.3764705882);
}
header .middleHeader .region .country {
  font-size: 18px;
}
@media screen and (min-width: 320px) {
  header .middleHeader .region .country {
    font-size: calc(18px + 0 * (100vw - 320px) / 1601);
  }
}
@media screen and (min-width: 1921px) {
  header .middleHeader .region .country {
    font-size: 18px;
  }
}
header .middleHeader .region .country {
  line-height: 26px;
}
@media screen and (min-width: 320px) {
  header .middleHeader .region .country {
    line-height: calc(26px + 0 * (100vw - 320px) / 1601);
  }
}
@media screen and (min-width: 1921px) {
  header .middleHeader .region .country {
    line-height: 26px;
  }
}
header .middleHeader .region .language {
  display: none;
}
header .middleHeader .region:after {
  content: "";
  width: 0.5px;
  position: absolute;
  top: 25%;
  bottom: 0;
  right: 0;
/*  background: rgba(121, 121, 111, 0.3764705882);*/
}
header .middleHeader .podcast {
  flex: 1 1 40%;
  padding-right: 30px;
  position: relative;
  display: flex;
  justify-content: end;
  align-items: center;
}
header .middleHeader .podcast:after {
  content: "";
  width: 0.5px;
  position: absolute;
  top: 25%;
  bottom: 0;
  right: 0;
  background: rgba(121, 121, 111, 0.3764705882);
}
header .middleHeader .podcast a {
  padding-right: 55px;
  position: relative;
}
header .middleHeader .podcast a {
  font-size: 18px;
}
@media screen and (min-width: 320px) {
  header .middleHeader .podcast a {
    font-size: calc(18px + 0 * (100vw - 320px) / 1601);
  }
}
@media screen and (min-width: 1921px) {
  header .middleHeader .podcast a {
    font-size: 18px;
  }
}
header .middleHeader .podcast a {
  line-height: 26px;
}
@media screen and (min-width: 320px) {
  header .middleHeader .podcast a {
    line-height: calc(26px + 0 * (100vw - 320px) / 1601);
  }
}
@media screen and (min-width: 1921px) {
  header .middleHeader .podcast a {
    line-height: 26px;
  }
}
header .middleHeader .podcast a:before {
  content: "";
  background-image: url("../images/podcast.svg");
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  right: 0;
  height: 44px;
  width: 44px;
  bottom: -5px;
}
header .middleHeader .loginRegister {
  flex: 1 1 35%;
  display: flex;
  justify-content: end;
  align-items: center;
}
header .middleHeader .loginRegister .login {
  margin-right: 20px;
  padding-inline: 20px;
  border-right: 0.5px solid rgba(92, 204, 245, 0.3764705882);
}
header .middleHeader .loginRegister .login a {
  color: #474747;
}
header .middleHeader .loginRegister .login a {
  font-size: 18px;
}
@media screen and (min-width: 320px) {
  header .middleHeader .loginRegister .login a {
    font-size: calc(18px + 0 * (100vw - 320px) / 1601);
  }
}
@media screen and (min-width: 1921px) {
  header .middleHeader .loginRegister .login a {
    font-size: 18px;
  }
}
header .middleHeader .loginRegister .login a {
  line-height: 26px;
}
@media screen and (min-width: 320px) {
  header .middleHeader .loginRegister .login a {
    line-height: calc(26px + 0 * (100vw - 320px) / 1601);
  }
}
@media screen and (min-width: 1921px) {
  header .middleHeader .loginRegister .login a {
    line-height: 26px;
  }
}
header .middleHeader .loginRegister .login a:hover {
  color: #39c0f3;
}
header .middleHeader .loginRegister .register a {
  color: #c0984e !important;
}
header .middleHeader .loginRegister .register a {
  font-size: 18px;
}
@media screen and (min-width: 320px) {
  header .middleHeader .loginRegister .register a {
    font-size: calc(18px + 0 * (100vw - 320px) / 1601);
  }
}
@media screen and (min-width: 1921px) {
  header .middleHeader .loginRegister .register a {
    font-size: 18px;
  }
}
header .middleHeader .loginRegister .register a {
  line-height: 26px;
}
@media screen and (min-width: 320px) {
  header .middleHeader .loginRegister .register a {
    line-height: calc(26px + 0 * (100vw - 320px) / 1601);
  }
}
@media screen and (min-width: 1921px) {
  header .middleHeader .loginRegister .register a {
    line-height: 26px;
  }
}
header .middleHeader .loginRegister .register a:hover {
  color: #39c0f3;
}
header .regionDropdown {
  position: relative;
}
header .regionDropdown {
  font-size: 18px;
}
@media screen and (min-width: 320px) {
  header .regionDropdown {
    font-size: calc(18px + 0 * (100vw - 320px) / 1601);
  }
}
@media screen and (min-width: 1921px) {
  header .regionDropdown {
    font-size: 18px;
  }
}
header .regionDropdown {
  line-height: 26px;
}
@media screen and (min-width: 320px) {
  header .regionDropdown {
    line-height: calc(26px + 0 * (100vw - 320px) / 1601);
  }
}
@media screen and (min-width: 1921px) {
  header .regionDropdown {
    line-height: 26px;
  }
}
header .regionDropdown > a {
  position: relative;
  padding-inline: 30px;
  font-weight: 400;
  font-size: 18px;
  line-height: 18px;
}
header .regionDropdown > a:before {
  content: "";
  background-image: url("../images/globe.svg");
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  left: 0;
  height: 20px;
  width: 20px;
  top: 50%;
  transform: translateY(-50%);
}
header .regionDropdown > a:after {
  content: "";
  background-image: url("../images/triangleDown.svg");
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  right: 0;
  height: 9px;
  width: 15px;
  top: 50%;
  transform: translateY(-50%);
}
header .regionDropdown .countryDropdown {
    display: none;
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    background-color: white;
    font-weight: normal;
    padding: 15px 30px;
    border: 1px solid rgba(121, 121, 111, 0.3764705882);
    z-index: 2;
    text-align: center;
    line-height: 1.8em;
}
header .regionDropdown.dropdownBurgerMenu .countryDropdown {
  left: auto;
}
header .bottomHeader {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 15px;
  position: relative;
  gap: 50px;
}
header .bottomHeader .burgerMenu {
  height: 48px;
  width: 48px;
}
header .bottomHeader .menu ul {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
}
header .bottomHeader .menu ul li a {
  font-weight: 800;
  color: #474747;
}
header .bottomHeader .menu ul li a {
  font-size: 16px;
}
@media screen and (min-width: 320px) {
  header .bottomHeader .menu ul li a {
    font-size: calc(16px + 4 * (100vw - 320px) / 1601);
  }
}
@media screen and (min-width: 1921px) {
  header .bottomHeader .menu ul li a {
    font-size: 20px;
  }
}
header .bottomHeader .menu ul li a {
  line-height: 16px;
}
@media screen and (min-width: 320px) {
  header .bottomHeader .menu ul li a {
    line-height: calc(16px + 6 * (100vw - 320px) / 1601);
  }
}
@media screen and (min-width: 1921px) {
  header .bottomHeader .menu ul li a {
    line-height: 22px;
  }
}
header .bottomHeader .menu ul li .ddSecondLevel {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: calc(100% + 15px);
  left: 15px;
  right: 15px;
  z-index: 9;
  background-color: white;
  padding: 30px 15px 70px 70px;
  transition: all 0.3s ease-in-out;
}
header .bottomHeader .menu ul li .ddSecondLevel ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
header .bottomHeader .menu ul li .ddSecondLevel ul li a {
  font-weight: normal;
}
header .bottomHeader .menu ul li .ddSecondLevel ul li a:hover {
  font-weight: 900;
  color: initial !important;
}
header .bottomHeader .menu ul li.hover .ddSecondLevel {
  transition-delay: 0.2s;
  opacity: 1;
  visibility: visible;
}
header .bottomHeader .menu .listingItemDIV .listingItem .listingImage {
  margin-bottom: 20px;
}
header .bottomHeader .menu .listingItemDIV .listingItem .listingDate {
  margin-bottom: 20px;
}
header .bottomHeader .menu .listingItemDIV .listingItem .listingDate {
  font-size: 16px;
}
@media screen and (min-width: 320px) {
  header .bottomHeader .menu .listingItemDIV .listingItem .listingDate {
    font-size: calc(16px + 0 * (100vw - 320px) / 1601);
  }
}
@media screen and (min-width: 1921px) {
  header .bottomHeader .menu .listingItemDIV .listingItem .listingDate {
    font-size: 16px;
  }
}
header .bottomHeader .menu .listingItemDIV .listingItem .listingDate {
  line-height: 22px;
}
@media screen and (min-width: 320px) {
  header .bottomHeader .menu .listingItemDIV .listingItem .listingDate {
    line-height: calc(22px + 0 * (100vw - 320px) / 1601);
  }
}
@media screen and (min-width: 1921px) {
  header .bottomHeader .menu .listingItemDIV .listingItem .listingDate {
    line-height: 22px;
  }
}
header .bottomHeader .menu .listingItemDIV .listingItem .listingDate .type {
  color: #39c0f3;
}
header .bottomHeader .menu .listingItemDIV .listingItem .listingTitle a {
  font-size: 22px;
}
@media screen and (min-width: 320px) {
  header .bottomHeader .menu .listingItemDIV .listingItem .listingTitle a {
    font-size: calc(22px + 6 * (100vw - 320px) / 1601);
  }
}
@media screen and (min-width: 1921px) {
  header .bottomHeader .menu .listingItemDIV .listingItem .listingTitle a {
    font-size: 28px;
  }
}
header .bottomHeader .menu .listingItemDIV .listingItem .listingTitle a {
  line-height: 24px;
}
@media screen and (min-width: 320px) {
  header .bottomHeader .menu .listingItemDIV .listingItem .listingTitle a {
    line-height: calc(24px + 8 * (100vw - 320px) / 1601);
  }
}
@media screen and (min-width: 1921px) {
  header .bottomHeader .menu .listingItemDIV .listingItem .listingTitle a {
    line-height: 32px;
  }
}
header .bottomHeader .menu .listingItemDIV .listingItem.premium .listingImage {
  position: relative;
}
header .bottomHeader .menu .listingItemDIV .listingItem.premium .listingImage:after {
  content: "";
  background-image: url("../images/gold83x83.jpg");
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  right: 0;
  bottom: 0;
  height: 5vw;
  min-height: 50px;
  max-height: 83px;
  width: 5vw;
  min-width: 50px;
  max-width: 83px;
}
header .bottomHeader .menu .listingItemDIV .listingItem.premium .type {
  color: #c0984e;
  position: relative;
}
header .bottomHeader .sideMenu {
  position: fixed;
  top: 0;
  left: -720px;
  width: 100vw;
  max-width: 700px;
  height: 100%;
  background-color: #e4f8fd;
  box-shadow: 0 2px 47px 0 rgba(0, 0, 0, 0.13);
  transition: all 0.3s ease;
  padding: 40px 70px 50px;
  z-index: 1000;
}
header .bottomHeader .sideMenu .topSideMenu {
  display: flex;
  justify-content: space-between;
  align-items: end;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(121, 121, 111, 0.3764705882);
}
header .bottomHeader .sideMenu .loginRegister {
  display: flex;
  padding: 0 !important;
}
header .bottomHeader .sideMenu .loginRegister .login {
  flex: 0 0 50%;
  padding: 10px 0;
  border-right: 1px solid rgba(121, 121, 111, 0.3764705882);
}
header .bottomHeader .sideMenu .loginRegister .register {
  flex: 0 0 50%;
  padding: 10px 0;
}
header .bottomHeader .sideMenu .loginRegister .register a {
  color: #c0984e !important;
}
header .bottomHeader .sideMenu .logoContainer {
  max-width: 200px;
  min-width: 150px;
}
header .bottomHeader .sideMenu .close {
  width: 25px;
}
header .bottomHeader .sideMenu.open {
  left: 0;
  overflow: auto;
}
header .bottomHeader .sideMenu .menuWrapper {
  min-height: 100%;
  display: flex;
  flex-direction: column;
}
header .bottomHeader .sideMenu .menuWrapper > ul {
  list-style: none;
  padding: 0;
  margin: 0;
  flex: 1;
  margin-bottom: 40px;
}
header .bottomHeader .sideMenu .menuWrapper > ul li {
  padding: 5px 0;
  border-bottom: 1px solid rgba(121, 121, 111, 0.3764705882);
}
header .bottomHeader .sideMenu .menuWrapper > ul li a {
  text-decoration: none;
  color: #000;
  display: block;
  font-weight: 800;
}
header .bottomHeader .sideMenu .menuWrapper > ul li a {
  font-size: 18px;
}
@media screen and (min-width: 320px) {
  header .bottomHeader .sideMenu .menuWrapper > ul li a {
    font-size: calc(18px + 2 * (100vw - 320px) / 1601);
  }
}
@media screen and (min-width: 1921px) {
  header .bottomHeader .sideMenu .menuWrapper > ul li a {
    font-size: 20px;
  }
}
header .bottomHeader .sideMenu .menuWrapper > ul li.hasSubmenu {
  position: relative;
}
header .bottomHeader .sideMenu .menuWrapper > ul li.hasSubmenu > a + span {
  background-image: url("../images/triangleDown.svg");
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  right: 0;
  height: 12px;
  width: 18px;
  top: 16px;
}
header .bottomHeader .sideMenu .menuWrapper > ul li.hasSubmenu.open > a + span {
  transform: translateY(-50%) rotate(180deg);
}
header .bottomHeader .sideMenu .ddSecondLevel {
  display: none;
}
header .bottomHeader .sideMenu .ddSecondLevel ul {
  margin-top: 5px;
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
}
header .bottomHeader .sideMenu .ddSecondLevel ul li {
  border: none;
  padding: 0;
  margin-inline: 15px;
}
header .bottomHeader .sideMenu .ddSecondLevel ul li a {
  font-weight: 400;
}
header .bottomHeader .sideMenu .loginRegister {
  padding: 10px 0;
  border-bottom: 1px solid rgba(121, 121, 111, 0.3764705882);
  text-align: center;
}
header .bottomHeader .sideMenu .loginRegister {
  font-size: 18px;
}
@media screen and (min-width: 320px) {
  header .bottomHeader .sideMenu .loginRegister {
    font-size: calc(18px + 2 * (100vw - 320px) / 1601);
  }
}
@media screen and (min-width: 1921px) {
  header .bottomHeader .sideMenu .loginRegister {
    font-size: 20px;
  }
}
header .bottomHeader .sideMenu .region {
  justify-content: space-between;
  margin: 20px 0;
  display: flex;
  align-items: center;
}
header .bottomHeader .sideMenu .region .btnContainer {
  text-align: center;
  margin: 0;
}
header .bottomHeader .sideMenu .region .btnContainer .options {
  display: inline-flex;
  justify-content: center;
  margin-inline: auto;
  border: 2px solid #39c0f3;
  border-radius: 30px;
  padding: 3px;
  background-color: white;
}
header .bottomHeader .sideMenu .region .btnContainer .options .option a {
  border-radius: 30px;
  display: block;
  padding: 5px 20px;
  background-color: white;
  color: #39c0f3;
  min-width: 150px;
}
header .bottomHeader .sideMenu .region .btnContainer .options .option a {
  font-size: 20px;
}
@media screen and (min-width: 320px) {
  header .bottomHeader .sideMenu .region .btnContainer .options .option a {
    font-size: calc(20px + 3 * (100vw - 320px) / 1601);
  }
}
@media screen and (min-width: 1921px) {
  header .bottomHeader .sideMenu .region .btnContainer .options .option a {
    font-size: 23px;
  }
}
header .bottomHeader .sideMenu .region .btnContainer .options .option a {
  line-height: 24px;
}
@media screen and (min-width: 320px) {
  header .bottomHeader .sideMenu .region .btnContainer .options .option a {
    line-height: calc(24px + 3 * (100vw - 320px) / 1601);
  }
}
@media screen and (min-width: 1921px) {
  header .bottomHeader .sideMenu .region .btnContainer .options .option a {
    line-height: 27px;
  }
}
header .bottomHeader .sideMenu .region .btnContainer .options .option a:hover {
  color: #39c0f3 !important;
}
header .bottomHeader .sideMenu .region .btnContainer .options .option.active a {
  color: white !important;
  background: #39c0f3;
}
header .bottomHeader .sideMenu .region .btnContainer .options .option.active a:hover {
  color: white !important;
}
header .bottomHeader .sideMenu .bottomSideMenu h5 {
  font-size: 18px;
}
@media screen and (min-width: 320px) {
  header .bottomHeader .sideMenu .bottomSideMenu h5 {
    font-size: calc(18px + 4 * (100vw - 320px) / 1601);
  }
}
@media screen and (min-width: 1921px) {
  header .bottomHeader .sideMenu .bottomSideMenu h5 {
    font-size: 22px;
  }
}
header .bottomHeader .sideMenu .bottomSideMenu p {
  font-weight: 500;
  margin-bottom: 10px;
}
header .bottomHeader .sideMenu .bottomSideMenu p {
  font-size: 18px;
}
@media screen and (min-width: 320px) {
  header .bottomHeader .sideMenu .bottomSideMenu p {
    font-size: calc(18px + 0 * (100vw - 320px) / 1601);
  }
}
@media screen and (min-width: 1921px) {
  header .bottomHeader .sideMenu .bottomSideMenu p {
    font-size: 18px;
  }
}
header .bottomHeader .sideMenu .newsLetter {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  padding-bottom: 40px;
  margin-top: 100px;
  border-bottom: 1px solid rgba(121, 121, 111, 0.3764705882);
}
header .bottomHeader .sideMenu .newsLetter h3 {
  font-size: 22px;
}
@media screen and (min-width: 320px) {
  header .bottomHeader .sideMenu .newsLetter h3 {
    font-size: calc(22px + 6 * (100vw - 320px) / 1601);
  }
}
@media screen and (min-width: 1921px) {
  header .bottomHeader .sideMenu .newsLetter h3 {
    font-size: 28px;
  }
}
header .bottomHeader .sideMenu .newsLetter h3 {
  line-height: 20px;
}
@media screen and (min-width: 320px) {
  header .bottomHeader .sideMenu .newsLetter h3 {
    line-height: calc(20px + 25 * (100vw - 320px) / 1601);
  }
}
@media screen and (min-width: 1921px) {
  header .bottomHeader .sideMenu .newsLetter h3 {
    line-height: 45px;
  }
}
header .bottomHeader .sideMenu .newsLetter p {
  font-weight: 500;
  letter-spacing: 0;
  margin-bottom: 0;
}
header .bottomHeader .sideMenu .newsLetter p {
  font-size: 16px;
}
@media screen and (min-width: 320px) {
  header .bottomHeader .sideMenu .newsLetter p {
    font-size: calc(16px + 0 * (100vw - 320px) / 1601);
  }
}
@media screen and (min-width: 1921px) {
  header .bottomHeader .sideMenu .newsLetter p {
    font-size: 16px;
  }
}
header .bottomHeader .sideMenu .newsLetter p {
  line-height: 24px;
}
@media screen and (min-width: 320px) {
  header .bottomHeader .sideMenu .newsLetter p {
    line-height: calc(24px + 0 * (100vw - 320px) / 1601);
  }
}
@media screen and (min-width: 1921px) {
  header .bottomHeader .sideMenu .newsLetter p {
    line-height: 24px;
  }
}
header .bottomHeader .sideMenu .newsLetter .newsLetterContainer {
  display: flex;
  gap: 15px;
  align-items: center;
  min-width: -moz-fit-content;
  min-width: fit-content;
}
header .bottomHeader .sideMenu .newsLetter .imgContainer {
  max-width: 70px;
}
header .bottomHeader .sideMenu .newsLetter .imgContainer img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
header .bottomHeader .sideMenu .newsLetter .newsletterInputWrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 400px;
  max-width: 450px;
}
header .bottomHeader .sideMenu .newsLetter .newsletterInputWrapper input {
  border-radius: 30px;
  background-color: white;
  height: 48px;
  padding: 0 30px;
}
header .bottomHeader .sideMenu .newsLetter .newsletterInputWrapper input {
  font-size: 18px;
}
@media screen and (min-width: 320px) {
  header .bottomHeader .sideMenu .newsLetter .newsletterInputWrapper input {
    font-size: calc(18px + 0 * (100vw - 320px) / 1601);
  }
}
@media screen and (min-width: 1921px) {
  header .bottomHeader .sideMenu .newsLetter .newsletterInputWrapper input {
    font-size: 18px;
  }
}
header .bottomHeader .sideMenu .newsLetter .newsletterInputWrapper input::-moz-placeholder {
  color: #cacaca;
}
header .bottomHeader .sideMenu .newsLetter .newsletterInputWrapper input::placeholder {
  color: #cacaca;
}
header .bottomHeader .sideMenu .newsLetter .newsletterInputWrapper a {
  line-height: 26px;
  position: absolute;
  top: 50%;
  padding: 11px 40px;
  border-radius: 0px 30px 30px 0px;
  transform: translateY(-50%);
  right: 0;
  color: white;
  background-color: #39c0f3;
  font-weight: 500;
  transform: translateY(-50%);
  transition: all 0.3s ease-in-out;
}
header .bottomHeader .sideMenu .newsLetter .newsletterInputWrapper a {
  font-size: 14px;
}
@media screen and (min-width: 320px) {
  header .bottomHeader .sideMenu .newsLetter .newsletterInputWrapper a {
    font-size: calc(14px + 12 * (100vw - 320px) / 1601);
  }
}
@media screen and (min-width: 1921px) {
  header .bottomHeader .sideMenu .newsLetter .newsletterInputWrapper a {
    font-size: 26px;
  }
}
header .bottomHeader .sideMenu .newsLetter .newsletterInputWrapper a:hover {
  color: white !important;
  opacity: 0.8;
}
header .bottomHeader .sideMenu .social {
  padding-top: 40px;
}
header .bottomHeader .sideMenu .social ul {
  display: flex;
  flex-wrap: wrap;
  -moz-column-gap: 30px;
       column-gap: 30px;
  row-gap: 10px;
}
header .bottomHeader .sideMenu .social ul li {
  margin-bottom: 15px;
}
header .bottomHeader .sideMenu .social ul li a {
  display: flex;
  align-items: center;
  gap: 10px;
}
header .bottomHeader .sideMenu .social ul li a {
  font-size: 12px;
}
@media screen and (min-width: 320px) {
  header .bottomHeader .sideMenu .social ul li a {
    font-size: calc(12px + 2 * (100vw - 320px) / 1601);
  }
}
@media screen and (min-width: 1921px) {
  header .bottomHeader .sideMenu .social ul li a {
    font-size: 14px;
  }
}
header .bottomHeader .sideMenu .social ul li a {
  line-height: 14px;
}
@media screen and (min-width: 320px) {
  header .bottomHeader .sideMenu .social ul li a {
    line-height: calc(14px + 2 * (100vw - 320px) / 1601);
  }
}
@media screen and (min-width: 1921px) {
  header .bottomHeader .sideMenu .social ul li a {
    line-height: 16px;
  }
}
header .bottomHeader .sideMenu .social ul li img {
  width: auto;
}
header .bottomHeader .sideMenu .social ul li:last-of-type {
  margin-bottom: 0;
}
header .bottomHeader .sideMenu .searchContainer {
  padding-left: 35px;
  position: relative;
}
header .bottomHeader .sideMenu .searchContainer label {
  margin-right: 20px;
}
header .bottomHeader .sideMenu .searchContainer label {
  font-size: 12px;
}
@media screen and (min-width: 320px) {
  header .bottomHeader .sideMenu .searchContainer label {
    font-size: calc(12px + 6 * (100vw - 320px) / 1601);
  }
}
@media screen and (min-width: 1921px) {
  header .bottomHeader .sideMenu .searchContainer label {
    font-size: 18px;
  }
}
header .bottomHeader .sideMenu .searchContainer label {
  line-height: 20px;
}
@media screen and (min-width: 320px) {
  header .bottomHeader .sideMenu .searchContainer label {
    line-height: calc(20px + 8 * (100vw - 320px) / 1601);
  }
}
@media screen and (min-width: 1921px) {
  header .bottomHeader .sideMenu .searchContainer label {
    line-height: 28px;
  }
}
header .bottomHeader .sideMenu .searchContainer label .searchBtn {
  background-image: url("../images/search.svg");
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  left: 0;
  height: 24px;
  width: 24px;
  top: 50%;
  transform: translateY(-50%);
}
header .bottomHeader .sideMenu .searchContainer input {
  border-radius: 30px;
  height: 34px;
  width: 230px;
  padding: 0 15px;
  border: 0.5px solid #979797;
  color: black;
  font-weight: bold;
}
header .bottomHeader .languageSelectorMobile {
  position: relative;
  display: none;
}
header .bottomHeader .languageSelectorMobile .languageDropdown {
  display: none;
  position: absolute;
  top: 40px;
  left: 0;
  transform: translateX(-50%);
  background-color: white;
  font-weight: normal;
  padding: 15px 30px;
  border: 1px solid rgba(121, 121, 111, 0.3764705882);
  z-index: 2;
}

.liveBanner {
  margin-top: 40px;
}
.liveBanner .blockBody {
  display: flex;
  flex-wrap: wrap;
}
.liveBanner .liveContainer {
  padding: 40px 30px;
  background: #ff0000;
  position: relative;
}
.liveBanner .liveContainer:after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  height: calc(100% - 40px);
  width: 1px;
  background: white;
}
.liveBanner .live {
  color: white;
  padding-left: 40px;
  position: relative;
}
.liveBanner .live {
  font-size: 20px;
}
@media screen and (min-width: 320px) {
  .liveBanner .live {
    font-size: calc(20px + 18 * (100vw - 320px) / 1601);
  }
}
@media screen and (min-width: 1921px) {
  .liveBanner .live {
    font-size: 38px;
  }
}
.liveBanner .live {
  line-height: 30px;
}
@media screen and (min-width: 320px) {
  .liveBanner .live {
    line-height: calc(30px + 37 * (100vw - 320px) / 1601);
  }
}
@media screen and (min-width: 1921px) {
  .liveBanner .live {
    line-height: 67px;
  }
}
.liveBanner .live:before {
  content: "";
  background-image: url("../images/liveCircle.png");
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  left: 0;
  height: 30px;
  width: 30px;
  top: 50%;
  transform: translateY(-50%);
  filter: brightness(0) invert(1);
}
.liveBanner .date {
  margin-top: 10px;
  color: white;
  font-weight: 400;
}
.liveBanner .title {
  padding: 40px;
  padding-inline-end: 30px;
  background: #ff0000;
  color: white;
}
.liveBanner .title {
  font-size: 20px;
}
@media screen and (min-width: 320px) {
  .liveBanner .title {
    font-size: calc(20px + 18 * (100vw - 320px) / 1601);
  }
}
@media screen and (min-width: 1921px) {
  .liveBanner .title {
    font-size: 38px;
  }
}
.liveBanner .title {
  line-height: 40px;
}
@media screen and (min-width: 320px) {
  .liveBanner .title {
    line-height: calc(40px + 10 * (100vw - 320px) / 1601);
  }
}
@media screen and (min-width: 1921px) {
  .liveBanner .title {
    line-height: 50px;
  }
}
.liveBanner.green .liveContainer {
  background: #a9ff38;
}
.liveBanner.green .liveContainer .live {
  color: #4d4d4d;
}
.liveBanner.green .liveContainer .live::before {
  filter: brightness(0);
}
.liveBanner.green .liveContainer:after {
  background: #4d4d4d;
}
.liveBanner.green .title {
  background: #a9ff38;
  color: #4d4d4d;
}
.liveBanner.green .date {
  color: #4d4d4d;
}

.featuredNewsSection1 .featuredNews,
.featuredNewsSection2 .featuredNews {
  border-bottom: 1px solid rgba(121, 121, 111, 0.3764705882);
}
.featuredNewsSection1 .listingItemDIV.featured .listingInfos,
.featuredNewsSection2 .listingItemDIV.featured .listingInfos {
  margin-top: -50px;
  margin-inline: auto;
  padding: 30px 25px 60px 30px;
  max-width: 960px;
  background: #e4f8fd;
  position: sticky;
  bottom: -22%;
  background: #e4f8fd;
}
.featuredNewsSection1 .listingItemDIV.featured .listingInfos .listingDate,
.featuredNewsSection2 .listingItemDIV.featured .listingInfos .listingDate {
  margin-bottom: 8px;
}
.featuredNewsSection1 .listingItemDIV.featured .listingInfos .listingDate,
.featuredNewsSection2 .listingItemDIV.featured .listingInfos .listingDate {
  font-size: 16px;
}
@media screen and (min-width: 320px) {
  .featuredNewsSection1 .listingItemDIV.featured .listingInfos .listingDate,
  .featuredNewsSection2 .listingItemDIV.featured .listingInfos .listingDate {
    font-size: calc(16px + 0 * (100vw - 320px) / 1601);
  }
}
@media screen and (min-width: 1921px) {
  .featuredNewsSection1 .listingItemDIV.featured .listingInfos .listingDate,
  .featuredNewsSection2 .listingItemDIV.featured .listingInfos .listingDate {
    font-size: 16px;
  }
}
.featuredNewsSection1 .listingItemDIV.featured .listingInfos .listingDate,
.featuredNewsSection2 .listingItemDIV.featured .listingInfos .listingDate {
  line-height: 16px;
}
@media screen and (min-width: 320px) {
  .featuredNewsSection1 .listingItemDIV.featured .listingInfos .listingDate,
  .featuredNewsSection2 .listingItemDIV.featured .listingInfos .listingDate {
    line-height: calc(16px + 2 * (100vw - 320px) / 1601);
  }
}
@media screen and (min-width: 1921px) {
  .featuredNewsSection1 .listingItemDIV.featured .listingInfos .listingDate,
  .featuredNewsSection2 .listingItemDIV.featured .listingInfos .listingDate {
    line-height: 18px;
  }
}
.featuredNewsSection1 .listingItemDIV.featured .listingInfos .listingDate .type,
.featuredNewsSection2 .listingItemDIV.featured .listingInfos .listingDate .type {
  color: #39c0f3;
}
.featuredNewsSection1 .listingItemDIV.featured .listingInfos .listingTitle,
.featuredNewsSection2 .listingItemDIV.featured .listingInfos .listingTitle {
  font-weight: bold;
  letter-spacing: -0.41px;
  color: black;
  max-width: 800px;
  margin-bottom: 20px;
}
.featuredNewsSection1 .listingItemDIV.featured .listingInfos .listingTitle,
.featuredNewsSection2 .listingItemDIV.featured .listingInfos .listingTitle {
  font-size: 20px;
}
@media screen and (min-width: 320px) {
  .featuredNewsSection1 .listingItemDIV.featured .listingInfos .listingTitle,
  .featuredNewsSection2 .listingItemDIV.featured .listingInfos .listingTitle {
    font-size: calc(20px + 25 * (100vw - 320px) / 1601);
  }
}
@media screen and (min-width: 1921px) {
  .featuredNewsSection1 .listingItemDIV.featured .listingInfos .listingTitle,
  .featuredNewsSection2 .listingItemDIV.featured .listingInfos .listingTitle {
    font-size: 45px;
  }
}
.featuredNewsSection1 .listingItemDIV.featured .listingInfos .listingTitle,
.featuredNewsSection2 .listingItemDIV.featured .listingInfos .listingTitle {
  line-height: 30px;
}
@media screen and (min-width: 320px) {
  .featuredNewsSection1 .listingItemDIV.featured .listingInfos .listingTitle,
  .featuredNewsSection2 .listingItemDIV.featured .listingInfos .listingTitle {
    line-height: calc(30px + 37 * (100vw - 320px) / 1601);
  }
}
@media screen and (min-width: 1921px) {
  .featuredNewsSection1 .listingItemDIV.featured .listingInfos .listingTitle,
  .featuredNewsSection2 .listingItemDIV.featured .listingInfos .listingTitle {
    line-height: 67px;
  }
}
.featuredNewsSection1 .listingItemDIV.featured .listingInfos .listingDescription,
.featuredNewsSection2 .listingItemDIV.featured .listingInfos .listingDescription {
  font-weight: 500;
  max-width: 800px;
}
.featuredNewsSection1 .listingItemDIV.featured .listingInfos .listingDescription,
.featuredNewsSection2 .listingItemDIV.featured .listingInfos .listingDescription {
  font-size: 16px;
}
@media screen and (min-width: 320px) {
  .featuredNewsSection1 .listingItemDIV.featured .listingInfos .listingDescription,
  .featuredNewsSection2 .listingItemDIV.featured .listingInfos .listingDescription {
    font-size: calc(16px + 8 * (100vw - 320px) / 1601);
  }
}
@media screen and (min-width: 1921px) {
  .featuredNewsSection1 .listingItemDIV.featured .listingInfos .listingDescription,
  .featuredNewsSection2 .listingItemDIV.featured .listingInfos .listingDescription {
    font-size: 24px;
  }
}
.featuredNewsSection1 .listingItemDIV.featured .listingInfos .listingDescription,
.featuredNewsSection2 .listingItemDIV.featured .listingInfos .listingDescription {
  line-height: 20px;
}
@media screen and (min-width: 320px) {
  .featuredNewsSection1 .listingItemDIV.featured .listingInfos .listingDescription,
  .featuredNewsSection2 .listingItemDIV.featured .listingInfos .listingDescription {
    line-height: calc(20px + 10 * (100vw - 320px) / 1601);
  }
}
@media screen and (min-width: 1921px) {
  .featuredNewsSection1 .listingItemDIV.featured .listingInfos .listingDescription,
  .featuredNewsSection2 .listingItemDIV.featured .listingInfos .listingDescription {
    line-height: 30px;
  }
}
.featuredNewsSection1 .otherNews,
.featuredNewsSection2 .otherNews {
  display: flex;
  flex-wrap: wrap;
  max-width: 1000px;
}
.featuredNewsSection1 .otherNews .listingItemDIV,
.featuredNewsSection2 .otherNews .listingItemDIV {
  border-right: 1px solid rgba(121, 121, 111, 0.3764705882);
}
.featuredNewsSection1 .otherNews .listingItemDIV .listingItem,
.featuredNewsSection2 .otherNews .listingItemDIV .listingItem {
  margin-top: -10px;
  padding-bottom: 15px;
  padding-left: 20px;
}
.featuredNewsSection1 .otherNews .listingItemDIV:last-of-type,
.featuredNewsSection2 .otherNews .listingItemDIV:last-of-type {
  border: none;
}
.featuredNewsSection1 .otherNews .listingItemDIV .listingItem.premium .type,
.featuredNewsSection2 .otherNews .listingItemDIV .listingItem.premium .type {
  padding-left: 25px;
  color: #c0984e;
  position: relative;
}
.featuredNewsSection1 .otherNews .listingItemDIV .listingItem.premium .type:before,
.featuredNewsSection2 .otherNews .listingItemDIV .listingItem.premium .type:before {
  content: "";
  background-image: url("../images/goldLock.svg");
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  left: 0;
  height: 21px;
  width: 16px;
  top: 50%;
  transform: translateY(-50%);
}
.featuredNewsSection1 .otherNews .listingDate,
.featuredNewsSection2 .otherNews .listingDate {
  margin-bottom: 16px;
}
.featuredNewsSection1 .otherNews .listingDate,
.featuredNewsSection2 .otherNews .listingDate {
  font-size: 16px;
}
@media screen and (min-width: 320px) {
  .featuredNewsSection1 .otherNews .listingDate,
  .featuredNewsSection2 .otherNews .listingDate {
    font-size: calc(16px + 0 * (100vw - 320px) / 1601);
  }
}
@media screen and (min-width: 1921px) {
  .featuredNewsSection1 .otherNews .listingDate,
  .featuredNewsSection2 .otherNews .listingDate {
    font-size: 16px;
  }
}
.featuredNewsSection1 .otherNews .listingDate,
.featuredNewsSection2 .otherNews .listingDate {
  line-height: 16px;
}
@media screen and (min-width: 320px) {
  .featuredNewsSection1 .otherNews .listingDate,
  .featuredNewsSection2 .otherNews .listingDate {
    line-height: calc(16px + 2 * (100vw - 320px) / 1601);
  }
}
@media screen and (min-width: 1921px) {
  .featuredNewsSection1 .otherNews .listingDate,
  .featuredNewsSection2 .otherNews .listingDate {
    line-height: 18px;
  }
}
.featuredNewsSection1 .otherNews .listingDate .type,
.featuredNewsSection2 .otherNews .listingDate .type {
  color: #39c0f3;
}
.featuredNewsSection1 .otherNews .listingTitle,
.featuredNewsSection2 .otherNews .listingTitle {
  font-size: 18px;
}
@media screen and (min-width: 320px) {
  .featuredNewsSection1 .otherNews .listingTitle,
  .featuredNewsSection2 .otherNews .listingTitle {
    font-size: calc(18px + 0 * (100vw - 320px) / 1601);
  }
}
@media screen and (min-width: 1921px) {
  .featuredNewsSection1 .otherNews .listingTitle,
  .featuredNewsSection2 .otherNews .listingTitle {
    font-size: 18px;
  }
}
.featuredNewsSection1 .otherNews .listingTitle,
.featuredNewsSection2 .otherNews .listingTitle {
  line-height: 26px;
}
@media screen and (min-width: 320px) {
  .featuredNewsSection1 .otherNews .listingTitle,
  .featuredNewsSection2 .otherNews .listingTitle {
    line-height: calc(26px + 0 * (100vw - 320px) / 1601);
  }
}
@media screen and (min-width: 1921px) {
  .featuredNewsSection1 .otherNews .listingTitle,
  .featuredNewsSection2 .otherNews .listingTitle {
    line-height: 26px;
  }
}

.newsSection1 {
  display: flex;
  margin-bottom: 150px;
}
.newsSection1 .newsSection {
  display: flex;
  flex-wrap: wrap;
}
.newsSection1 .firstColumn {
  padding-top: 70px;
  border-bottom: 1px solid rgba(121, 121, 111, 0.3764705882);
}
.newsSection1 .firstColumn .listingHolder {
  border-top: 3px solid black;
  margin-right: 10px;
  position: sticky;
  top: 110px;
}
.newsSection1 .firstColumn .title {
  font-weight: 900;
  margin-bottom: 10px;
  padding-top: 15px;
}
.newsSection1 .firstColumn .title {
  font-size: 26px;
}
@media screen and (min-width: 320px) {
  .newsSection1 .firstColumn .title {
    font-size: calc(26px + 4 * (100vw - 320px) / 1601);
  }
}
@media screen and (min-width: 1921px) {
  .newsSection1 .firstColumn .title {
    font-size: 30px;
  }
}
.newsSection1 .firstColumn .title {
  line-height: 30px;
}
@media screen and (min-width: 320px) {
  .newsSection1 .firstColumn .title {
    line-height: calc(30px + 15 * (100vw - 320px) / 1601);
  }
}
@media screen and (min-width: 1921px) {
  .newsSection1 .firstColumn .title {
    line-height: 45px;
  }
}
.newsSection1 .firstColumn .date {
  color: #4c4c4c;
  font-weight: 300;
}
.newsSection1 .firstColumn .date {
  font-size: 18px;
}
@media screen and (min-width: 320px) {
  .newsSection1 .firstColumn .date {
    font-size: calc(18px + 5 * (100vw - 320px) / 1601);
  }
}
@media screen and (min-width: 1921px) {
  .newsSection1 .firstColumn .date {
    font-size: 23px;
  }
}
.newsSection1 .firstColumn .date {
  line-height: 20px;
}
@media screen and (min-width: 320px) {
  .newsSection1 .firstColumn .date {
    line-height: calc(20px + 8 * (100vw - 320px) / 1601);
  }
}
@media screen and (min-width: 1921px) {
  .newsSection1 .firstColumn .date {
    line-height: 28px;
  }
}
.newsSection1 .secondColumn {
  padding-top: 70px;
  padding-inline: 0;
  border-right: 1px solid rgba(121, 121, 111, 0.3764705882);
  border-bottom: 1px solid rgba(121, 121, 111, 0.3764705882);
  flex: 1;
}
.newsSection1 .secondColumn .listingImage {
  margin-bottom: 20px;
}
.newsSection1 .secondColumn .listingDate {
  margin-bottom: 8px;
}
.newsSection1 .secondColumn .listingDate {
  font-size: 16px;
}
@media screen and (min-width: 320px) {
  .newsSection1 .secondColumn .listingDate {
    font-size: calc(16px + 0 * (100vw - 320px) / 1601);
  }
}
@media screen and (min-width: 1921px) {
  .newsSection1 .secondColumn .listingDate {
    font-size: 16px;
  }
}
.newsSection1 .secondColumn .listingDate {
  line-height: 16px;
}
@media screen and (min-width: 320px) {
  .newsSection1 .secondColumn .listingDate {
    line-height: calc(16px + 2 * (100vw - 320px) / 1601);
  }
}
@media screen and (min-width: 1921px) {
  .newsSection1 .secondColumn .listingDate {
    line-height: 18px;
  }
}
.newsSection1 .secondColumn .listingDate .type {
  color: #39c0f3;
}
.newsSection1 .secondColumn .listingItemDIV .listingItem {
  padding-bottom: 25px;
  margin-bottom: 75px;
  padding-right: 60px;
  border-bottom: 1px solid rgba(121, 121, 111, 0.3764705882);
}
.newsSection1 .secondColumn .listingItemDIV .listingItem.premium .listingImage {
  position: relative;
}
.newsSection1 .secondColumn .listingItemDIV .listingItem.premium .listingImage:after {
  content: "";
  background-image: url("../images/gold83x83.jpg");
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  right: 0;
  bottom: 0;
  height: 5vw;
  min-height: 50px;
  max-height: 83px;
  width: 5vw;
  min-width: 50px;
  max-width: 83px;
}
.newsSection1 .secondColumn .listingItemDIV .listingItem.premium .type {
  padding-left: 25px;
  color: #c0984e;
  position: relative;
}
.newsSection1 .secondColumn .listingItemDIV .listingItem.premium .type:before {
  content: "";
  background-image: url("../images/goldLock.svg");
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  left: 0;
  height: 21px;
  width: 16px;
  top: 50%;
  transform: translateY(-50%);
}
.newsSection1 .secondColumn .listingItemDIV:last-of-type .listingItem {
  margin-bottom: 0;
  border-bottom: none;
}
.newsSection1 .secondColumn .listingTitle {
  margin-bottom: 10px;
}
.newsSection1 .secondColumn .listingTitle {
  font-size: 20px;
}
@media screen and (min-width: 320px) {
  .newsSection1 .secondColumn .listingTitle {
    font-size: calc(20px + 14 * (100vw - 320px) / 1601);
  }
}
@media screen and (min-width: 1921px) {
  .newsSection1 .secondColumn .listingTitle {
    font-size: 34px;
  }
}
.newsSection1 .secondColumn .listingTitle {
  line-height: 30px;
}
@media screen and (min-width: 320px) {
  .newsSection1 .secondColumn .listingTitle {
    line-height: calc(30px + 20 * (100vw - 320px) / 1601);
  }
}
@media screen and (min-width: 1921px) {
  .newsSection1 .secondColumn .listingTitle {
    line-height: 50px;
  }
}
.newsSection1 .secondColumn .listingDescription {
  font-weight: 500;
}
.newsSection1 .secondColumn .listingDescription {
  font-size: 16px;
}
@media screen and (min-width: 320px) {
  .newsSection1 .secondColumn .listingDescription {
    font-size: calc(16px + 6 * (100vw - 320px) / 1601);
  }
}
@media screen and (min-width: 1921px) {
  .newsSection1 .secondColumn .listingDescription {
    font-size: 22px;
  }
}
.newsSection1 .secondColumn .listingDescription {
  line-height: 24px;
}
@media screen and (min-width: 320px) {
  .newsSection1 .secondColumn .listingDescription {
    line-height: calc(24px + 8 * (100vw - 320px) / 1601);
  }
}
@media screen and (min-width: 1921px) {
  .newsSection1 .secondColumn .listingDescription {
    line-height: 32px;
  }
}
.newsSection1 .thirdColumn {
  padding-top: 40px;
  padding-left: 25px;
  border-bottom: 1px solid rgba(121, 121, 111, 0.3764705882);
  min-width: 360px;
}
.newsSection1 .thirdColumn .listingHolder {
  padding-left: 15px;
}
.newsSection1 .thirdColumn .ad {
  text-align: center;
  margin-bottom: 75px;
}
.newsSection1 .thirdColumn .ad span {
  color: rgba(121, 121, 111, 0.3764705882);
}
.newsSection1 .thirdColumn .ad span {
  font-size: 12px;
}
@media screen and (min-width: 320px) {
  .newsSection1 .thirdColumn .ad span {
    font-size: calc(12px + 0 * (100vw - 320px) / 1601);
  }
}
@media screen and (min-width: 1921px) {
  .newsSection1 .thirdColumn .ad span {
    font-size: 12px;
  }
}
.newsSection1 .thirdColumn .ad span {
  line-height: 12px;
}
@media screen and (min-width: 320px) {
  .newsSection1 .thirdColumn .ad span {
    line-height: calc(12px + 6 * (100vw - 320px) / 1601);
  }
}
@media screen and (min-width: 1921px) {
  .newsSection1 .thirdColumn .ad span {
    line-height: 18px;
  }
}
.newsSection1 .thirdColumn .ad .imgContainer {
  padding: 5px;
  border: 1px solid rgba(121, 121, 111, 0.3764705882);
}
.newsSection1 .thirdColumn .latestNews,
.newsSection1 .thirdColumn .streamNews {
  margin-bottom: 40px;
}
.newsSection1 .thirdColumn .latestNews h4,
.newsSection1 .thirdColumn .streamNews h4 {
  color: black;
  font-weight: 900;
  padding-top: 22px;
  border-top: 3px solid black;
  margin-bottom: 35px;
}
.newsSection1 .thirdColumn .latestNews h4,
.newsSection1 .thirdColumn .streamNews h4 {
  font-size: 20px;
}
@media screen and (min-width: 320px) {
  .newsSection1 .thirdColumn .latestNews h4,
  .newsSection1 .thirdColumn .streamNews h4 {
    font-size: calc(20px + 3 * (100vw - 320px) / 1601);
  }
}
@media screen and (min-width: 1921px) {
  .newsSection1 .thirdColumn .latestNews h4,
  .newsSection1 .thirdColumn .streamNews h4 {
    font-size: 23px;
  }
}
.newsSection1 .thirdColumn .latestNews h4,
.newsSection1 .thirdColumn .streamNews h4 {
  line-height: 16px;
}
@media screen and (min-width: 320px) {
  .newsSection1 .thirdColumn .latestNews h4,
  .newsSection1 .thirdColumn .streamNews h4 {
    line-height: calc(16px + 10 * (100vw - 320px) / 1601);
  }
}
@media screen and (min-width: 1921px) {
  .newsSection1 .thirdColumn .latestNews h4,
  .newsSection1 .thirdColumn .streamNews h4 {
    line-height: 26px;
  }
}
.newsSection1 .thirdColumn .latestNews .listingTitle,
.newsSection1 .thirdColumn .streamNews .listingTitle {
  font-size: 18px;
}
@media screen and (min-width: 320px) {
  .newsSection1 .thirdColumn .latestNews .listingTitle,
  .newsSection1 .thirdColumn .streamNews .listingTitle {
    font-size: calc(18px + 0 * (100vw - 320px) / 1601);
  }
}
@media screen and (min-width: 1921px) {
  .newsSection1 .thirdColumn .latestNews .listingTitle,
  .newsSection1 .thirdColumn .streamNews .listingTitle {
    font-size: 18px;
  }
}
.newsSection1 .thirdColumn .latestNews .listingTitle,
.newsSection1 .thirdColumn .streamNews .listingTitle {
  line-height: 26px;
}
@media screen and (min-width: 320px) {
  .newsSection1 .thirdColumn .latestNews .listingTitle,
  .newsSection1 .thirdColumn .streamNews .listingTitle {
    line-height: calc(26px + 0 * (100vw - 320px) / 1601);
  }
}
@media screen and (min-width: 1921px) {
  .newsSection1 .thirdColumn .latestNews .listingTitle,
  .newsSection1 .thirdColumn .streamNews .listingTitle {
    line-height: 26px;
  }
}
.newsSection1 .thirdColumn .latestNews .listingItemDIV .listingItem,
.newsSection1 .thirdColumn .streamNews .listingItemDIV .listingItem {
  border-bottom: 1px solid rgba(121, 121, 111, 0.3764705882);
  padding-bottom: 10px;
  margin-bottom: 20px;
}
.newsSection1 .thirdColumn .latestNews .listingItemDIV .listingItem.premium .type,
.newsSection1 .thirdColumn .streamNews .listingItemDIV .listingItem.premium .type {
  padding-left: 25px;
  color: #c0984e;
  position: relative;
}
.newsSection1 .thirdColumn .latestNews .listingItemDIV .listingItem.premium .type:before,
.newsSection1 .thirdColumn .streamNews .listingItemDIV .listingItem.premium .type:before {
  content: "";
  background-image: url("../images/goldLock.svg");
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  left: 0;
  height: 21px;
  width: 16px;
  top: 50%;
  transform: translateY(-50%);
}
.newsSection1 .thirdColumn .latestNews .listingItemDIV:last-of-type .listingItem,
.newsSection1 .thirdColumn .streamNews .listingItemDIV:last-of-type .listingItem {
  margin-bottom: 0;
  border-bottom: none;
}
.newsSection1 .thirdColumn .latestNews .listingDate,
.newsSection1 .thirdColumn .streamNews .listingDate {
  margin-bottom: 8px;
}
.newsSection1 .thirdColumn .latestNews .listingDate,
.newsSection1 .thirdColumn .streamNews .listingDate {
  font-size: 16px;
}
@media screen and (min-width: 320px) {
  .newsSection1 .thirdColumn .latestNews .listingDate,
  .newsSection1 .thirdColumn .streamNews .listingDate {
    font-size: calc(16px + 0 * (100vw - 320px) / 1601);
  }
}
@media screen and (min-width: 1921px) {
  .newsSection1 .thirdColumn .latestNews .listingDate,
  .newsSection1 .thirdColumn .streamNews .listingDate {
    font-size: 16px;
  }
}
.newsSection1 .thirdColumn .latestNews .listingDate,
.newsSection1 .thirdColumn .streamNews .listingDate {
  line-height: 24px;
}
@media screen and (min-width: 320px) {
  .newsSection1 .thirdColumn .latestNews .listingDate,
  .newsSection1 .thirdColumn .streamNews .listingDate {
    line-height: calc(24px + 0 * (100vw - 320px) / 1601);
  }
}
@media screen and (min-width: 1921px) {
  .newsSection1 .thirdColumn .latestNews .listingDate,
  .newsSection1 .thirdColumn .streamNews .listingDate {
    line-height: 24px;
  }
}
.newsSection1 .thirdColumn .latestNews .listingDate .type,
.newsSection1 .thirdColumn .streamNews .listingDate .type {
  color: #39c0f3;
}
.newsSection1 .thirdColumn .latestNews .listingDate .listingtitle,
.newsSection1 .thirdColumn .streamNews .listingDate .listingtitle {
  font-size: 18px;
}
@media screen and (min-width: 320px) {
  .newsSection1 .thirdColumn .latestNews .listingDate .listingtitle,
  .newsSection1 .thirdColumn .streamNews .listingDate .listingtitle {
    font-size: calc(18px + 0 * (100vw - 320px) / 1601);
  }
}
@media screen and (min-width: 1921px) {
  .newsSection1 .thirdColumn .latestNews .listingDate .listingtitle,
  .newsSection1 .thirdColumn .streamNews .listingDate .listingtitle {
    font-size: 18px;
  }
}
.newsSection1 .thirdColumn .latestNews .listingDate .listingtitle,
.newsSection1 .thirdColumn .streamNews .listingDate .listingtitle {
  line-height: 26px;
}
@media screen and (min-width: 320px) {
  .newsSection1 .thirdColumn .latestNews .listingDate .listingtitle,
  .newsSection1 .thirdColumn .streamNews .listingDate .listingtitle {
    line-height: calc(26px + 0 * (100vw - 320px) / 1601);
  }
}
@media screen and (min-width: 1921px) {
  .newsSection1 .thirdColumn .latestNews .listingDate .listingtitle,
  .newsSection1 .thirdColumn .streamNews .listingDate .listingtitle {
    line-height: 26px;
  }
}
.newsSection1 .thirdColumn .streamNews .listingItemDIV .listingItem {
  padding-bottom: 25px;
}
.newsSection1 .thirdColumn .streamNews .listingItemDIV:first-of-type .listingImage {
  padding-right: 0;
}
.newsSection1 .thirdColumn .streamNews .listingItemDIV:last-of-type .listingItem {
  border-bottom: 0;
}
.newsSection1 .thirdColumn .streamNews .listingImage {
  margin-bottom: 15px;
  padding-right: 60px;
}
.newsSection1 .thirdColumn .streamNews .listingDate {
  margin-bottom: 8px;
}
.newsSection1 .thirdColumn .streamNews .listingDate {
  font-size: 16px;
}
@media screen and (min-width: 320px) {
  .newsSection1 .thirdColumn .streamNews .listingDate {
    font-size: calc(16px + 0 * (100vw - 320px) / 1601);
  }
}
@media screen and (min-width: 1921px) {
  .newsSection1 .thirdColumn .streamNews .listingDate {
    font-size: 16px;
  }
}
.newsSection1 .thirdColumn .streamNews .listingDate {
  line-height: 24px;
}
@media screen and (min-width: 320px) {
  .newsSection1 .thirdColumn .streamNews .listingDate {
    line-height: calc(24px + 0 * (100vw - 320px) / 1601);
  }
}
@media screen and (min-width: 1921px) {
  .newsSection1 .thirdColumn .streamNews .listingDate {
    line-height: 24px;
  }
}
.newsSection1 .thirdColumn .streamNews .listingTitle {
  margin-bottom: 20px;
}
.newsSection1 .thirdColumn .streamNews .listingTitle {
  font-size: 16px;
}
@media screen and (min-width: 320px) {
  .newsSection1 .thirdColumn .streamNews .listingTitle {
    font-size: calc(16px + 6 * (100vw - 320px) / 1601);
  }
}
@media screen and (min-width: 1921px) {
  .newsSection1 .thirdColumn .streamNews .listingTitle {
    font-size: 22px;
  }
}
.newsSection1 .thirdColumn .streamNews .listingTitle {
  line-height: 20px;
}
@media screen and (min-width: 320px) {
  .newsSection1 .thirdColumn .streamNews .listingTitle {
    line-height: calc(20px + 10 * (100vw - 320px) / 1601);
  }
}
@media screen and (min-width: 1921px) {
  .newsSection1 .thirdColumn .streamNews .listingTitle {
    line-height: 30px;
  }
}
.newsSection1 .thirdColumn .streamNews .listingDescription {
  font-weight: 500;
  color: #393938;
}
.newsSection1 .thirdColumn .streamNews .listingDescription {
  font-size: 16px;
}
@media screen and (min-width: 320px) {
  .newsSection1 .thirdColumn .streamNews .listingDescription {
    font-size: calc(16px + 0 * (100vw - 320px) / 1601);
  }
}
@media screen and (min-width: 1921px) {
  .newsSection1 .thirdColumn .streamNews .listingDescription {
    font-size: 16px;
  }
}
.newsSection1 .thirdColumn .streamNews .listingDescription {
  line-height: 24px;
}
@media screen and (min-width: 320px) {
  .newsSection1 .thirdColumn .streamNews .listingDescription {
    line-height: calc(24px + 0 * (100vw - 320px) / 1601);
  }
}
@media screen and (min-width: 1921px) {
  .newsSection1 .thirdColumn .streamNews .listingDescription {
    line-height: 24px;
  }
}
.newsSection1 .readMore {
  font-size: 16px;
}

.secondColumn {
  padding-top: 0;
  padding-left: 25px;
  border-bottom: 1px solid rgba(121, 121, 111, 0.3764705882);
}

.newsSection1Alt {
  display: flex;
  margin-bottom: 150px;
}
.newsSection1Alt .newsSection {
  display: flex;
  flex-wrap: wrap;
  border-top: none !important;
  border-top: 0;
}
.newsSection1Alt .listingHolder {
  padding-left: 15px;
}
.newsSection1Alt .latestNews h4 {
  color: black;
  font-weight: 900;
  padding-top: 22px;
  border-top: 3px solid black;
  margin-bottom: 35px;
}
.newsSection1Alt .latestNews h4 {
  font-size: 18px;
}
@media screen and (min-width: 320px) {
  .newsSection1Alt .latestNews h4 {
    font-size: calc(18px + 5 * (100vw - 320px) / 1601);
  }
}
@media screen and (min-width: 1921px) {
  .newsSection1Alt .latestNews h4 {
    font-size: 23px;
  }
}
.newsSection1Alt .latestNews h4 {
  line-height: 16px;
}
@media screen and (min-width: 320px) {
  .newsSection1Alt .latestNews h4 {
    line-height: calc(16px + 10 * (100vw - 320px) / 1601);
  }
}
@media screen and (min-width: 1921px) {
  .newsSection1Alt .latestNews h4 {
    line-height: 26px;
  }
}
.newsSection1Alt .latestNews .listingTitle {
  font-size: 18px;
}
@media screen and (min-width: 320px) {
  .newsSection1Alt .latestNews .listingTitle {
    font-size: calc(18px + 0 * (100vw - 320px) / 1601);
  }
}
@media screen and (min-width: 1921px) {
  .newsSection1Alt .latestNews .listingTitle {
    font-size: 18px;
  }
}
.newsSection1Alt .latestNews .listingTitle {
  line-height: 26px;
}
@media screen and (min-width: 320px) {
  .newsSection1Alt .latestNews .listingTitle {
    line-height: calc(26px + 0 * (100vw - 320px) / 1601);
  }
}
@media screen and (min-width: 1921px) {
  .newsSection1Alt .latestNews .listingTitle {
    line-height: 26px;
  }
}
.newsSection1Alt .latestNews .listingItemDIV .listingItem {
  border-bottom: 1px solid rgba(121, 121, 111, 0.3764705882);
  padding-bottom: 10px;
  margin-bottom: 20px;
}
.newsSection1Alt .latestNews .listingItemDIV .listingItem.premium .type {
  padding-left: 25px;
  color: #c0984e;
  position: relative;
}
.newsSection1Alt .latestNews .listingItemDIV .listingItem.premium .type:before {
  content: "";
  background-image: url("../images/goldLock.svg");
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  left: 0;
  height: 21px;
  width: 16px;
  top: 50%;
  transform: translateY(-50%);
}
.newsSection1Alt .latestNews .listingItemDIV:last-of-type .listingItem {
  margin-bottom: 0;
  border-bottom: none;
}
.newsSection1Alt .latestNews .listingDate {
  margin-bottom: 8px;
}
.newsSection1Alt .latestNews .listingDate {
  font-size: 16px;
}
@media screen and (min-width: 320px) {
  .newsSection1Alt .latestNews .listingDate {
    font-size: calc(16px + 0 * (100vw - 320px) / 1601);
  }
}
@media screen and (min-width: 1921px) {
  .newsSection1Alt .latestNews .listingDate {
    font-size: 16px;
  }
}
.newsSection1Alt .latestNews .listingDate {
  line-height: 24px;
}
@media screen and (min-width: 320px) {
  .newsSection1Alt .latestNews .listingDate {
    line-height: calc(24px + 0 * (100vw - 320px) / 1601);
  }
}
@media screen and (min-width: 1921px) {
  .newsSection1Alt .latestNews .listingDate {
    line-height: 24px;
  }
}
.newsSection1Alt .latestNews .listingDate .type {
  color: #39c0f3;
}
.newsSection1Alt .latestNews .listingDate .listingtitle {
  font-size: 18px;
}
@media screen and (min-width: 320px) {
  .newsSection1Alt .latestNews .listingDate .listingtitle {
    font-size: calc(18px + 0 * (100vw - 320px) / 1601);
  }
}
@media screen and (min-width: 1921px) {
  .newsSection1Alt .latestNews .listingDate .listingtitle {
    font-size: 18px;
  }
}
.newsSection1Alt .latestNews .listingDate .listingtitle {
  line-height: 16px;
}
@media screen and (min-width: 320px) {
  .newsSection1Alt .latestNews .listingDate .listingtitle {
    line-height: calc(16px + 10 * (100vw - 320px) / 1601);
  }
}
@media screen and (min-width: 1921px) {
  .newsSection1Alt .latestNews .listingDate .listingtitle {
    line-height: 26px;
  }
}
.newsSection1Alt .listingHolder {
  padding-left: 15px;
}
.newsSection1Alt .second-section .ad {
  text-align: center;
  margin-bottom: 75px;
}
.newsSection1Alt .second-section .ad span {
  color: rgba(121, 121, 111, 0.3764705882);
}
.newsSection1Alt .second-section .ad span {
  font-size: 12px;
}
@media screen and (min-width: 320px) {
  .newsSection1Alt .second-section .ad span {
    font-size: calc(12px + 0 * (100vw - 320px) / 1601);
  }
}
@media screen and (min-width: 1921px) {
  .newsSection1Alt .second-section .ad span {
    font-size: 12px;
  }
}
.newsSection1Alt .second-section .ad span {
  line-height: 12px;
}
@media screen and (min-width: 320px) {
  .newsSection1Alt .second-section .ad span {
    line-height: calc(12px + 6 * (100vw - 320px) / 1601);
  }
}
@media screen and (min-width: 1921px) {
  .newsSection1Alt .second-section .ad span {
    line-height: 18px;
  }
}
.newsSection1Alt .second-section .ad .imgContainer {
  padding: 5px;
  border: 1px solid rgba(121, 121, 111, 0.3764705882);
}
.newsSection1Alt .second-section .streamNews {
  margin-bottom: 40px;
}
.newsSection1Alt .second-section .streamNews h4 {
  color: black;
  font-weight: 900;
  padding-top: 15px;
  border-top: 3px solid black;
  margin-bottom: 25px;
}
.newsSection1Alt .second-section .streamNews h4 {
  font-size: 18px;
}
@media screen and (min-width: 320px) {
  .newsSection1Alt .second-section .streamNews h4 {
    font-size: calc(18px + 5 * (100vw - 320px) / 1601);
  }
}
@media screen and (min-width: 1921px) {
  .newsSection1Alt .second-section .streamNews h4 {
    font-size: 23px;
  }
}
.newsSection1Alt .second-section .streamNews h4 {
  line-height: 16px;
}
@media screen and (min-width: 320px) {
  .newsSection1Alt .second-section .streamNews h4 {
    line-height: calc(16px + 10 * (100vw - 320px) / 1601);
  }
}
@media screen and (min-width: 1921px) {
  .newsSection1Alt .second-section .streamNews h4 {
    line-height: 26px;
  }
}
.newsSection1Alt .second-section .streamNews .listingTitle {
  font-size: 18px;
}
@media screen and (min-width: 320px) {
  .newsSection1Alt .second-section .streamNews .listingTitle {
    font-size: calc(18px + 0 * (100vw - 320px) / 1601);
  }
}
@media screen and (min-width: 1921px) {
  .newsSection1Alt .second-section .streamNews .listingTitle {
    font-size: 18px;
  }
}
.newsSection1Alt .second-section .streamNews .listingTitle {
  line-height: 26px;
}
@media screen and (min-width: 320px) {
  .newsSection1Alt .second-section .streamNews .listingTitle {
    line-height: calc(26px + 0 * (100vw - 320px) / 1601);
  }
}
@media screen and (min-width: 1921px) {
  .newsSection1Alt .second-section .streamNews .listingTitle {
    line-height: 26px;
  }
}
.newsSection1Alt .second-section .streamNews .listingItemDIV .listingItem {
  border-bottom: 1px solid rgba(121, 121, 111, 0.3764705882);
  padding-bottom: 10px;
  margin-bottom: 20px;
}
.newsSection1Alt .second-section .streamNews .listingItemDIV .listingItem.premium .type {
  padding-left: 25px;
  color: #c0984e;
  position: relative;
}
.newsSection1Alt .second-section .streamNews .listingItemDIV .listingItem.premium .type:before {
  content: "";
  background-image: url("../images/goldLock.svg");
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  left: 0;
  height: 21px;
  width: 16px;
  top: 50%;
  transform: translateY(-50%);
}
.newsSection1Alt .second-section .streamNews .listingItemDIV:last-of-type .listingItem {
  margin-bottom: 0;
  border-bottom: none;
}
.newsSection1Alt .second-section .streamNews .listingDate {
  margin-bottom: 8px;
}
.newsSection1Alt .second-section .streamNews .listingDate {
  font-size: 16px;
}
@media screen and (min-width: 320px) {
  .newsSection1Alt .second-section .streamNews .listingDate {
    font-size: calc(16px + 0 * (100vw - 320px) / 1601);
  }
}
@media screen and (min-width: 1921px) {
  .newsSection1Alt .second-section .streamNews .listingDate {
    font-size: 16px;
  }
}
.newsSection1Alt .second-section .streamNews .listingDate {
  line-height: 24px;
}
@media screen and (min-width: 320px) {
  .newsSection1Alt .second-section .streamNews .listingDate {
    line-height: calc(24px + 0 * (100vw - 320px) / 1601);
  }
}
@media screen and (min-width: 1921px) {
  .newsSection1Alt .second-section .streamNews .listingDate {
    line-height: 24px;
  }
}
.newsSection1Alt .second-section .streamNews .listingDate .type {
  color: #39c0f3;
}
.newsSection1Alt .second-section .streamNews .listingDate .listingtitle {
  font-size: 18px;
}
@media screen and (min-width: 320px) {
  .newsSection1Alt .second-section .streamNews .listingDate .listingtitle {
    font-size: calc(18px + 0 * (100vw - 320px) / 1601);
  }
}
@media screen and (min-width: 1921px) {
  .newsSection1Alt .second-section .streamNews .listingDate .listingtitle {
    font-size: 18px;
  }
}
.newsSection1Alt .second-section .streamNews .listingDate .listingtitle {
  line-height: 26px;
}
@media screen and (min-width: 320px) {
  .newsSection1Alt .second-section .streamNews .listingDate .listingtitle {
    line-height: calc(26px + 0 * (100vw - 320px) / 1601);
  }
}
@media screen and (min-width: 1921px) {
  .newsSection1Alt .second-section .streamNews .listingDate .listingtitle {
    line-height: 26px;
  }
}
.newsSection1Alt .second-section .streamNews .listingItemDIV .listingItem {
  padding-bottom: 25px;
}
.newsSection1Alt .second-section .streamNews .listingItemDIV:first-of-type .listingImage {
  padding-right: 0;
}
.newsSection1Alt .second-section .streamNews .listingItemDIV:last-of-type .listingItem {
  border-bottom: 0;
}
.newsSection1Alt .second-section .streamNews .listingImage {
  margin-bottom: 15px;
  padding-right: 60px;
}
.newsSection1Alt .second-section .streamNews .listingDate {
  margin-bottom: 8px;
}
.newsSection1Alt .second-section .streamNews .listingDate {
  font-size: 16px;
}
@media screen and (min-width: 320px) {
  .newsSection1Alt .second-section .streamNews .listingDate {
    font-size: calc(16px + 0 * (100vw - 320px) / 1601);
  }
}
@media screen and (min-width: 1921px) {
  .newsSection1Alt .second-section .streamNews .listingDate {
    font-size: 16px;
  }
}
.newsSection1Alt .second-section .streamNews .listingDate {
  line-height: 24px;
}
@media screen and (min-width: 320px) {
  .newsSection1Alt .second-section .streamNews .listingDate {
    line-height: calc(24px + 0 * (100vw - 320px) / 1601);
  }
}
@media screen and (min-width: 1921px) {
  .newsSection1Alt .second-section .streamNews .listingDate {
    line-height: 24px;
  }
}
.newsSection1Alt .second-section .streamNews .listingTitle {
  margin-bottom: 20px;
}
.newsSection1Alt .second-section .streamNews .listingTitle {
  font-size: 16px;
}
@media screen and (min-width: 320px) {
  .newsSection1Alt .second-section .streamNews .listingTitle {
    font-size: calc(16px + 6 * (100vw - 320px) / 1601);
  }
}
@media screen and (min-width: 1921px) {
  .newsSection1Alt .second-section .streamNews .listingTitle {
    font-size: 22px;
  }
}
.newsSection1Alt .second-section .streamNews .listingTitle {
  line-height: 20px;
}
@media screen and (min-width: 320px) {
  .newsSection1Alt .second-section .streamNews .listingTitle {
    line-height: calc(20px + 10 * (100vw - 320px) / 1601);
  }
}
@media screen and (min-width: 1921px) {
  .newsSection1Alt .second-section .streamNews .listingTitle {
    line-height: 30px;
  }
}
.newsSection1Alt .second-section .streamNews .listingDescription {
  font-weight: 500;
  color: #393938;
}
.newsSection1Alt .second-section .streamNews .listingDescription {
  font-size: 16px;
}
@media screen and (min-width: 320px) {
  .newsSection1Alt .second-section .streamNews .listingDescription {
    font-size: calc(16px + 0 * (100vw - 320px) / 1601);
  }
}
@media screen and (min-width: 1921px) {
  .newsSection1Alt .second-section .streamNews .listingDescription {
    font-size: 16px;
  }
}
.newsSection1Alt .second-section .streamNews .listingDescription {
  line-height: 24px;
}
@media screen and (min-width: 320px) {
  .newsSection1Alt .second-section .streamNews .listingDescription {
    line-height: calc(24px + 0 * (100vw - 320px) / 1601);
  }
}
@media screen and (min-width: 1921px) {
  .newsSection1Alt .second-section .streamNews .listingDescription {
    line-height: 24px;
  }
}

.registerBannerSection {
  background: #c0984e;
  margin-bottom: 120px;
}
.registerBannerSection .listingImage {
  max-width: 215px;
  margin-bottom: 15px;
}
.registerBannerSection .listingItem {
  padding: 25px 0 40px;
}
.registerBannerSection .listingTitle {
  font-weight: bold;
  letter-spacing: 0;
  max-width: 560px;
  margin-bottom: 10px;
}
.registerBannerSection .listingTitle {
  font-size: 20px;
}
@media screen and (min-width: 320px) {
  .registerBannerSection .listingTitle {
    font-size: calc(20px + 39 * (100vw - 320px) / 1601);
  }
}
@media screen and (min-width: 1921px) {
  .registerBannerSection .listingTitle {
    font-size: 59px;
  }
}
.registerBannerSection .listingTitle {
  line-height: 20px;
}
@media screen and (min-width: 320px) {
  .registerBannerSection .listingTitle {
    line-height: calc(20px + 49 * (100vw - 320px) / 1601);
  }
}
@media screen and (min-width: 1921px) {
  .registerBannerSection .listingTitle {
    line-height: 69px;
  }
}
.registerBannerSection .listingDescription {
  font-weight: 500;
  letter-spacing: 0;
  max-width: 560px;
  margin-bottom: 40px;
}
.registerBannerSection .listingDescription {
  font-size: 16px;
}
@media screen and (min-width: 320px) {
  .registerBannerSection .listingDescription {
    font-size: calc(16px + 18 * (100vw - 320px) / 1601);
  }
}
@media screen and (min-width: 1921px) {
  .registerBannerSection .listingDescription {
    font-size: 34px;
  }
}
.registerBannerSection .listingDescription {
  line-height: 16px;
}
@media screen and (min-width: 320px) {
  .registerBannerSection .listingDescription {
    line-height: calc(16px + 12 * (100vw - 320px) / 1601);
  }
}
@media screen and (min-width: 1921px) {
  .registerBannerSection .listingDescription {
    line-height: 28px;
  }
}
.registerBannerSection .registerInfo {
  display: flex;
  align-items: center;
  gap: 20px;
}
.registerBannerSection .link a {
  display: block;
  line-height: 50px;
  font-weight: 500;
  height: 58px;
  padding: 0 65px;
  background: black;
  color: white;
  border-radius: 30px;
}
.registerBannerSection .link a {
  font-size: 16px;
}
@media screen and (min-width: 320px) {
  .registerBannerSection .link a {
    font-size: calc(16px + 16 * (100vw - 320px) / 1601);
  }
}
@media screen and (min-width: 1921px) {
  .registerBannerSection .link a {
    font-size: 32px;
  }
}
.registerBannerSection .price {
  color: #f9d28a;
}
.registerBannerSection .price {
  font-size: 20px;
}
@media screen and (min-width: 320px) {
  .registerBannerSection .price {
    font-size: calc(20px + 24 * (100vw - 320px) / 1601);
  }
}
@media screen and (min-width: 1921px) {
  .registerBannerSection .price {
    font-size: 44px;
  }
}
.registerBannerSection .price {
  line-height: 16px;
}
@media screen and (min-width: 320px) {
  .registerBannerSection .price {
    line-height: calc(16px + 12 * (100vw - 320px) / 1601);
  }
}
@media screen and (min-width: 1921px) {
  .registerBannerSection .price {
    line-height: 28px;
  }
}
.registerBannerSection .bannerImage {
  display: flex;
  align-items: end;
  max-width: 650px;
}

.newsSection2 {
  padding-top: 80px;
  margin-bottom: 100px;
}
.newsSection2 .topSection {
  display: flex;
  flex-wrap: wrap;
  row-gap: 30px;
  align-items: baseline;
  padding-top: 20px;
  margin-bottom: 70px;
  border-top: 3px solid black;
}
.newsSection2 .topSection h2 {
  font-weight: 900;
  margin-right: 35px;
}
.newsSection2 .topSection h2 {
  font-size: 20px;
}
@media screen and (min-width: 320px) {
  .newsSection2 .topSection h2 {
    font-size: calc(20px + 10 * (100vw - 320px) / 1601);
  }
}
@media screen and (min-width: 1921px) {
  .newsSection2 .topSection h2 {
    font-size: 30px;
  }
}
.newsSection2 .topSection h2 {
  line-height: 16px;
}
@media screen and (min-width: 320px) {
  .newsSection2 .topSection h2 {
    line-height: calc(16px + 10 * (100vw - 320px) / 1601);
  }
}
@media screen and (min-width: 1921px) {
  .newsSection2 .topSection h2 {
    line-height: 26px;
  }
}
.newsSection2 .topSection .newsType {
  display: flex;
  flex-wrap: wrap;
  row-gap: 20px;
}
.newsSection2 .topSection .newsType .type {
  font-weight: 300;
  letter-spacing: -0.37px;
  border-right: 1px solid #474747;
  padding-right: 10px;
  margin-right: 10px;
}
.newsSection2 .topSection .newsType .type {
  font-size: 16px;
}
@media screen and (min-width: 320px) {
  .newsSection2 .topSection .newsType .type {
    font-size: calc(16px + 6 * (100vw - 320px) / 1601);
  }
}
@media screen and (min-width: 1921px) {
  .newsSection2 .topSection .newsType .type {
    font-size: 22px;
  }
}
.newsSection2 .topSection .newsType .type {
  line-height: 16px;
}
@media screen and (min-width: 320px) {
  .newsSection2 .topSection .newsType .type {
    line-height: calc(16px + 6 * (100vw - 320px) / 1601);
  }
}
@media screen and (min-width: 1921px) {
  .newsSection2 .topSection .newsType .type {
    line-height: 22px;
  }
}
.newsSection2 .topSection .newsType .type a {
  color: #474747;
}
.newsSection2 .topSection .newsType .type:last-of-type {
  border-right: none;
  padding-right: 0;
  margin-right: 0;
}
.newsSection2 .topSection .link {
  text-align: end;
  flex: 1;
}
.newsSection2 .topSection .link a {
  font-weight: 900;
}
.newsSection2 .topSection .link a {
  font-size: 12px;
}
@media screen and (min-width: 320px) {
  .newsSection2 .topSection .link a {
    font-size: calc(12px + 3 * (100vw - 320px) / 1601);
  }
}
@media screen and (min-width: 1921px) {
  .newsSection2 .topSection .link a {
    font-size: 15px;
  }
}
.newsSection2 .topSection .link a {
  line-height: 20px;
}
@media screen and (min-width: 320px) {
  .newsSection2 .topSection .link a {
    line-height: calc(20px + 6 * (100vw - 320px) / 1601);
  }
}
@media screen and (min-width: 1921px) {
  .newsSection2 .topSection .link a {
    line-height: 26px;
  }
}
.newsSection2 .newsSection {
  display: flex;
  flex-wrap: wrap;
}
.newsSection2 .newsSection .firstColumn {
  border-right: 1px solid rgba(121, 121, 111, 0.3764705882);
  border-bottom: 1px solid rgba(121, 121, 111, 0.3764705882);
  padding: 0;
  flex: 1;
}
.newsSection2 .newsSection .firstColumn .listingItemDIV .listingItem {
  display: flex;
  flex-direction: row-reverse;
  padding-bottom: 60px;
  margin-bottom: 75px;
  padding-right: 60px;
  border-bottom: 1px solid rgba(121, 121, 111, 0.3764705882);
}
.newsSection2 .newsSection .firstColumn .listingItemDIV .listingItem.premium .listingImage {
  position: relative;
}
.newsSection2 .newsSection .firstColumn .listingItemDIV .listingItem.premium .listingImage:after {
  content: "";
  background-image: url("../images/gold83x83.jpg");
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  right: 0;
  bottom: 0;
  height: 4vw;
  min-height: 50px;
  max-height: 83px;
  width: 4vw;
  min-width: 50px;
  max-width: 83px;
}
.newsSection2 .newsSection .firstColumn .listingItemDIV .listingItem.premium .type {
  padding-left: 25px;
  color: #c0984e;
  position: relative;
}
.newsSection2 .newsSection .firstColumn .listingItemDIV .listingItem.premium .type:before {
  content: "";
  background-image: url("../images/goldLock.svg");
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  left: 0;
  height: 21px;
  width: 16px;
  top: 50%;
  transform: translateY(-50%);
}
.newsSection2 .newsSection .firstColumn .listingItemDIV .listingItem .listingInfos {
  padding-right: 100px;
  flex: 0 0 50%;
  max-width: 450px;
}
.newsSection2 .newsSection .firstColumn .listingItemDIV:last-of-type .listingItem {
  margin-bottom: 0;
  border-bottom: none;
}
.newsSection2 .newsSection .firstColumn .listingDate {
  margin-bottom: 20px;
}
.newsSection2 .newsSection .firstColumn .listingDate {
  font-size: 16px;
}
@media screen and (min-width: 320px) {
  .newsSection2 .newsSection .firstColumn .listingDate {
    font-size: calc(16px + 0 * (100vw - 320px) / 1601);
  }
}
@media screen and (min-width: 1921px) {
  .newsSection2 .newsSection .firstColumn .listingDate {
    font-size: 16px;
  }
}
.newsSection2 .newsSection .firstColumn .listingDate {
  line-height: 24px;
}
@media screen and (min-width: 320px) {
  .newsSection2 .newsSection .firstColumn .listingDate {
    line-height: calc(24px + 0 * (100vw - 320px) / 1601);
  }
}
@media screen and (min-width: 1921px) {
  .newsSection2 .newsSection .firstColumn .listingDate {
    line-height: 24px;
  }
}
.newsSection2 .newsSection .firstColumn .listingDate .type {
  color: #39c0f3;
}
.newsSection2 .newsSection .firstColumn .listingTitle {
  margin-bottom: 20px;
}
.newsSection2 .newsSection .firstColumn .listingTitle {
  font-size: 16px;
}
@media screen and (min-width: 320px) {
  .newsSection2 .newsSection .firstColumn .listingTitle {
    font-size: calc(16px + 10 * (100vw - 320px) / 1601);
  }
}
@media screen and (min-width: 1921px) {
  .newsSection2 .newsSection .firstColumn .listingTitle {
    font-size: 26px;
  }
}
.newsSection2 .newsSection .firstColumn .listingTitle {
  line-height: 20px;
}
@media screen and (min-width: 320px) {
  .newsSection2 .newsSection .firstColumn .listingTitle {
    line-height: calc(20px + 16 * (100vw - 320px) / 1601);
  }
}
@media screen and (min-width: 1921px) {
  .newsSection2 .newsSection .firstColumn .listingTitle {
    line-height: 36px;
  }
}
.newsSection2 .newsSection .firstColumn .listingDescription {
  font-weight: 500;
}
.newsSection2 .newsSection .firstColumn .listingDescription {
  font-size: 16px;
}
@media screen and (min-width: 320px) {
  .newsSection2 .newsSection .firstColumn .listingDescription {
    font-size: calc(16px + 0 * (100vw - 320px) / 1601);
  }
}
@media screen and (min-width: 1921px) {
  .newsSection2 .newsSection .firstColumn .listingDescription {
    font-size: 16px;
  }
}
.newsSection2 .newsSection .firstColumn .listingDescription {
  line-height: 24px;
}
@media screen and (min-width: 320px) {
  .newsSection2 .newsSection .firstColumn .listingDescription {
    line-height: calc(24px + 0 * (100vw - 320px) / 1601);
  }
}
@media screen and (min-width: 1921px) {
  .newsSection2 .newsSection .firstColumn .listingDescription {
    line-height: 24px;
  }
}
.newsSection2 .newsSection .firstColumn .secondaryNews {
  margin-top: 75px;
  padding-left: 50px;
  position: relative;
}
.newsSection2 .newsSection .firstColumn .secondaryNews:before {
  content: "";
  background-image: url("../images/arrow.svg");
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  left: 0;
  height: 20px;
  width: 20px;
  top: 0;
}
.newsSection2 .newsSection .firstColumn .secondaryNews .listingDate {
  margin-bottom: 8px;
}
.newsSection2 .newsSection .firstColumn .secondaryNews .listingDate {
  font-size: 16px;
}
@media screen and (min-width: 320px) {
  .newsSection2 .newsSection .firstColumn .secondaryNews .listingDate {
    font-size: calc(16px + 0 * (100vw - 320px) / 1601);
  }
}
@media screen and (min-width: 1921px) {
  .newsSection2 .newsSection .firstColumn .secondaryNews .listingDate {
    font-size: 16px;
  }
}
.newsSection2 .newsSection .firstColumn .secondaryNews .listingDate {
  line-height: 16px;
}
@media screen and (min-width: 320px) {
  .newsSection2 .newsSection .firstColumn .secondaryNews .listingDate {
    line-height: calc(16px + 2 * (100vw - 320px) / 1601);
  }
}
@media screen and (min-width: 1921px) {
  .newsSection2 .newsSection .firstColumn .secondaryNews .listingDate {
    line-height: 18px;
  }
}
.newsSection2 .newsSection .firstColumn .secondaryNews .listingTitle {
  font-size: 18px;
}
@media screen and (min-width: 320px) {
  .newsSection2 .newsSection .firstColumn .secondaryNews .listingTitle {
    font-size: calc(18px + 0 * (100vw - 320px) / 1601);
  }
}
@media screen and (min-width: 1921px) {
  .newsSection2 .newsSection .firstColumn .secondaryNews .listingTitle {
    font-size: 18px;
  }
}
.newsSection2 .newsSection .firstColumn .secondaryNews .listingTitle {
  line-height: 26px;
}
@media screen and (min-width: 320px) {
  .newsSection2 .newsSection .firstColumn .secondaryNews .listingTitle {
    line-height: calc(26px + 0 * (100vw - 320px) / 1601);
  }
}
@media screen and (min-width: 1921px) {
  .newsSection2 .newsSection .firstColumn .secondaryNews .listingTitle {
    line-height: 26px;
  }
}
.newsSection2 .newsSection .secondColumn {
  border-bottom: 1px solid rgba(121, 121, 111, 0.3764705882);
  padding-left: 25px;
  min-width: 360px;
}
.newsSection2 .newsSection .secondColumn .listingHolder {
  padding-left: 15px;
}
.newsSection2 .newsSection .secondColumn .listingItemDIV {
  width: 100%;
}
.newsSection2 .newsSection .secondColumn .listingItemDIV .listingItem {
  border-bottom: 1px solid rgba(121, 121, 111, 0.3764705882);
  padding-bottom: 25px;
  margin-bottom: 20px;
}
.newsSection2 .newsSection .secondColumn .listingItemDIV .listingItem.premium .type {
  padding-left: 25px;
  color: #c0984e;
  position: relative;
}
.newsSection2 .newsSection .secondColumn .listingItemDIV .listingItem.premium .type:before {
  content: "";
  background-image: url("../images/goldLock.svg");
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  left: 0;
  height: 21px;
  width: 16px;
  top: 50%;
  transform: translateY(-50%);
}
.newsSection2 .newsSection .secondColumn .listingItemDIV:not(:first-of-type) .listingItem {
  display: flex;
  flex-direction: row-reverse;
  gap: 20px;
}
.newsSection2 .newsSection .secondColumn .listingItemDIV:not(:first-of-type) .listingInfos {
  flex: 1;
}
.newsSection2 .newsSection .secondColumn .listingItemDIV:not(:first-of-type) .listingInfos .listingDate {
  margin-bottom: 8px;
}
.newsSection2 .newsSection .secondColumn .listingItemDIV:not(:first-of-type) .listingInfos .listingDate {
  font-size: 16px;
}
@media screen and (min-width: 320px) {
  .newsSection2 .newsSection .secondColumn .listingItemDIV:not(:first-of-type) .listingInfos .listingDate {
    font-size: calc(16px + 0 * (100vw - 320px) / 1601);
  }
}
@media screen and (min-width: 1921px) {
  .newsSection2 .newsSection .secondColumn .listingItemDIV:not(:first-of-type) .listingInfos .listingDate {
    font-size: 16px;
  }
}
.newsSection2 .newsSection .secondColumn .listingItemDIV:not(:first-of-type) .listingInfos .listingDate {
  line-height: 16px;
}
@media screen and (min-width: 320px) {
  .newsSection2 .newsSection .secondColumn .listingItemDIV:not(:first-of-type) .listingInfos .listingDate {
    line-height: calc(16px + 2 * (100vw - 320px) / 1601);
  }
}
@media screen and (min-width: 1921px) {
  .newsSection2 .newsSection .secondColumn .listingItemDIV:not(:first-of-type) .listingInfos .listingDate {
    line-height: 18px;
  }
}
.newsSection2 .newsSection .secondColumn .listingItemDIV:not(:first-of-type) .listingInfos .listingTitle {
  font-size: 18px;
}
@media screen and (min-width: 320px) {
  .newsSection2 .newsSection .secondColumn .listingItemDIV:not(:first-of-type) .listingInfos .listingTitle {
    font-size: calc(18px + 0 * (100vw - 320px) / 1601);
  }
}
@media screen and (min-width: 1921px) {
  .newsSection2 .newsSection .secondColumn .listingItemDIV:not(:first-of-type) .listingInfos .listingTitle {
    font-size: 18px;
  }
}
.newsSection2 .newsSection .secondColumn .listingItemDIV:not(:first-of-type) .listingInfos .listingTitle {
  line-height: 26px;
}
@media screen and (min-width: 320px) {
  .newsSection2 .newsSection .secondColumn .listingItemDIV:not(:first-of-type) .listingInfos .listingTitle {
    line-height: calc(26px + 0 * (100vw - 320px) / 1601);
  }
}
@media screen and (min-width: 1921px) {
  .newsSection2 .newsSection .secondColumn .listingItemDIV:not(:first-of-type) .listingInfos .listingTitle {
    line-height: 26px;
  }
}
.newsSection2 .newsSection .secondColumn .listingItemDIV:last-of-type .listingItem {
  margin-bottom: 0;
  border-bottom: none;
}
.newsSection2 .newsSection .secondColumn .listingItemDIV .listingDate {
  margin-bottom: 8px;
}
.newsSection2 .newsSection .secondColumn .listingItemDIV .listingDate {
  font-size: 16px;
}
@media screen and (min-width: 320px) {
  .newsSection2 .newsSection .secondColumn .listingItemDIV .listingDate {
    font-size: calc(16px + 0 * (100vw - 320px) / 1601);
  }
}
@media screen and (min-width: 1921px) {
  .newsSection2 .newsSection .secondColumn .listingItemDIV .listingDate {
    font-size: 16px;
  }
}
.newsSection2 .newsSection .secondColumn .listingItemDIV .listingDate {
  line-height: 16px;
}
@media screen and (min-width: 320px) {
  .newsSection2 .newsSection .secondColumn .listingItemDIV .listingDate {
    line-height: calc(16px + 2 * (100vw - 320px) / 1601);
  }
}
@media screen and (min-width: 1921px) {
  .newsSection2 .newsSection .secondColumn .listingItemDIV .listingDate {
    line-height: 18px;
  }
}
.newsSection2 .newsSection .secondColumn .listingItemDIV .listingDate .type {
  color: #39c0f3;
}
.newsSection2 .newsSection .secondColumn .listingItemDIV .listingDate .listingtitle {
  font-size: 18px;
}
@media screen and (min-width: 320px) {
  .newsSection2 .newsSection .secondColumn .listingItemDIV .listingDate .listingtitle {
    font-size: calc(18px + 0 * (100vw - 320px) / 1601);
  }
}
@media screen and (min-width: 1921px) {
  .newsSection2 .newsSection .secondColumn .listingItemDIV .listingDate .listingtitle {
    font-size: 18px;
  }
}
.newsSection2 .newsSection .secondColumn .listingItemDIV .listingDate .listingtitle {
  line-height: 26px;
}
@media screen and (min-width: 320px) {
  .newsSection2 .newsSection .secondColumn .listingItemDIV .listingDate .listingtitle {
    line-height: calc(26px + 0 * (100vw - 320px) / 1601);
  }
}
@media screen and (min-width: 1921px) {
  .newsSection2 .newsSection .secondColumn .listingItemDIV .listingDate .listingtitle {
    line-height: 26px;
  }
}
.newsSection2 .newsSection .secondColumn .listingImage {
  margin-bottom: 25px;
  flex: 1;
}
.newsSection2 .newsSection .secondColumn .listingTitle {
  margin-bottom: 20px;
}
.newsSection2 .newsSection .secondColumn .listingTitle {
  font-size: 16px;
}
@media screen and (min-width: 320px) {
  .newsSection2 .newsSection .secondColumn .listingTitle {
    font-size: calc(16px + 6 * (100vw - 320px) / 1601);
  }
}
@media screen and (min-width: 1921px) {
  .newsSection2 .newsSection .secondColumn .listingTitle {
    font-size: 22px;
  }
}
.newsSection2 .newsSection .secondColumn .listingTitle {
  line-height: 20px;
}
@media screen and (min-width: 320px) {
  .newsSection2 .newsSection .secondColumn .listingTitle {
    line-height: calc(20px + 10 * (100vw - 320px) / 1601);
  }
}
@media screen and (min-width: 1921px) {
  .newsSection2 .newsSection .secondColumn .listingTitle {
    line-height: 30px;
  }
}
.newsSection2 .newsSection .secondColumn .listingDescription {
  font-weight: 500;
  color: #393938;
}
.newsSection2 .newsSection .secondColumn .listingDescription {
  font-size: 16px;
}
@media screen and (min-width: 320px) {
  .newsSection2 .newsSection .secondColumn .listingDescription {
    font-size: calc(16px + 0 * (100vw - 320px) / 1601);
  }
}
@media screen and (min-width: 1921px) {
  .newsSection2 .newsSection .secondColumn .listingDescription {
    font-size: 16px;
  }
}
.newsSection2 .newsSection .secondColumn .listingDescription {
  line-height: 24px;
}
@media screen and (min-width: 320px) {
  .newsSection2 .newsSection .secondColumn .listingDescription {
    line-height: calc(24px + 0 * (100vw - 320px) / 1601);
  }
}
@media screen and (min-width: 1921px) {
  .newsSection2 .newsSection .secondColumn .listingDescription {
    line-height: 24px;
  }
}

.mostReadSection .blockHead {
  padding-top: 20px;
  margin-bottom: 60px;
  border-top: 3px solid black;
}
.mostReadSection .blockHead h2 {
  font-weight: 900;
}
.mostReadSection .blockHead h2 {
  font-size: 20px;
}
@media screen and (min-width: 320px) {
  .mostReadSection .blockHead h2 {
    font-size: calc(20px + 10 * (100vw - 320px) / 1601);
  }
}
@media screen and (min-width: 1921px) {
  .mostReadSection .blockHead h2 {
    font-size: 30px;
  }
}
.mostReadSection .blockHead h2 {
  line-height: 16px;
}
@media screen and (min-width: 320px) {
  .mostReadSection .blockHead h2 {
    line-height: calc(16px + 10 * (100vw - 320px) / 1601);
  }
}
@media screen and (min-width: 1921px) {
  .mostReadSection .blockHead h2 {
    line-height: 26px;
  }
}
.mostReadSection .listingHolder {
  row-gap: 20px;
}
.mostReadSection .news {
  padding-bottom: 50px;
  margin-bottom: 50px;
  border-bottom: 1px solid rgba(121, 121, 111, 0.3764705882);
}
.mostReadSection .listingItemDIV .listingItem.premium .type {
  padding-left: 25px;
  color: #c0984e;
  position: relative;
}
.mostReadSection .listingItemDIV .listingItem.premium .type:before {
  content: "";
  background-image: url("../images/goldLock.svg");
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  left: 0;
  height: 21px;
  width: 16px;
  top: 50%;
  transform: translateY(-50%);
}
.mostReadSection .listingItemDIV .listingImage {
  position: relative;
  margin-bottom: 40px;
}
.mostReadSection .listingItemDIV .listingImage a {
  position: relative;
  display: inline-block;
}
.mostReadSection .listingItemDIV .listingImage a:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  background: linear-gradient(223.44deg, rgba(5, 163, 237, 0.18) 50%, #034181 100%);
  height: 100%;
  width: 100%;
  z-index: 1;
  transform: scaleX(-1);
  transition: all 0.3s ease-in-out;
}
.mostReadSection .listingItemDIV .listingImage:after {
  font-weight: 300;
  color: white;
  position: absolute;
  left: 10px;
  top: 50px;
  z-index: 1;
}
.mostReadSection .listingItemDIV .listingImage:after {
  font-size: 60px;
}
@media screen and (min-width: 320px) {
  .mostReadSection .listingItemDIV .listingImage:after {
    font-size: calc(60px + 86 * (100vw - 320px) / 1601);
  }
}
@media screen and (min-width: 1921px) {
  .mostReadSection .listingItemDIV .listingImage:after {
    font-size: 146px;
  }
}
.mostReadSection .listingItemDIV .listingImage:after {
  line-height: 16px;
}
@media screen and (min-width: 320px) {
  .mostReadSection .listingItemDIV .listingImage:after {
    line-height: calc(16px + 10 * (100vw - 320px) / 1601);
  }
}
@media screen and (min-width: 1921px) {
  .mostReadSection .listingItemDIV .listingImage:after {
    line-height: 26px;
  }
}
.mostReadSection .listingItemDIV .listingImage img {
  height: 100%;
}
.mostReadSection .listingItemDIV .listingImage:hover a:before {
  transform: scaleX(-1) scale(1.05);
}
.mostReadSection .listingItemDIV:nth-of-type(1) .listingImage::after {
  content: "1";
}
.mostReadSection .listingItemDIV:nth-of-type(2) .listingImage::after {
  content: "2";
}
.mostReadSection .listingItemDIV:nth-of-type(3) .listingImage::after {
  content: "3";
}
.mostReadSection .listingItemDIV:nth-of-type(4) .listingImage::after {
  content: "4";
}
.mostReadSection .listingItemDIV:last-of-type .listingInfos:after {
  content: none;
}
.mostReadSection .listingInfos {
  position: relative;
}
.mostReadSection .listingInfos:after {
  content: "";
  width: 1px;
  background: rgba(121, 121, 111, 0.3764705882);
  position: absolute;
  right: -15px;
  top: -10px;
  bottom: -10px;
}
.mostReadSection .listingDate {
  margin-bottom: 8px;
}
.mostReadSection .listingDate {
  font-size: 16px;
}
@media screen and (min-width: 320px) {
  .mostReadSection .listingDate {
    font-size: calc(16px + 0 * (100vw - 320px) / 1601);
  }
}
@media screen and (min-width: 1921px) {
  .mostReadSection .listingDate {
    font-size: 16px;
  }
}
.mostReadSection .listingDate {
  line-height: 16px;
}
@media screen and (min-width: 320px) {
  .mostReadSection .listingDate {
    line-height: calc(16px + 2 * (100vw - 320px) / 1601);
  }
}
@media screen and (min-width: 1921px) {
  .mostReadSection .listingDate {
    line-height: 18px;
  }
}
.mostReadSection .listingDate .type {
  color: #39c0f3;
}
.mostReadSection .listingTitle {
  margin-bottom: 20px;
}
.mostReadSection .listingTitle {
  font-size: 18px;
}
@media screen and (min-width: 320px) {
  .mostReadSection .listingTitle {
    font-size: calc(18px + 0 * (100vw - 320px) / 1601);
  }
}
@media screen and (min-width: 1921px) {
  .mostReadSection .listingTitle {
    font-size: 18px;
  }
}
.mostReadSection .listingTitle {
  line-height: 26px;
}
@media screen and (min-width: 320px) {
  .mostReadSection .listingTitle {
    line-height: calc(26px + 0 * (100vw - 320px) / 1601);
  }
}
@media screen and (min-width: 1921px) {
  .mostReadSection .listingTitle {
    line-height: 26px;
  }
}
.mostReadSection .listingDescription {
  font-weight: 500;
}
.mostReadSection .listingDescription {
  font-size: 16px;
}
@media screen and (min-width: 320px) {
  .mostReadSection .listingDescription {
    font-size: calc(16px + 0 * (100vw - 320px) / 1601);
  }
}
@media screen and (min-width: 1921px) {
  .mostReadSection .listingDescription {
    font-size: 16px;
  }
}
.mostReadSection .listingDescription {
  line-height: 22px;
}
@media screen and (min-width: 320px) {
  .mostReadSection .listingDescription {
    line-height: calc(22px + 0 * (100vw - 320px) / 1601);
  }
}
@media screen and (min-width: 1921px) {
  .mostReadSection .listingDescription {
    line-height: 22px;
  }
}

.adSection,
.adSection2 {
  text-align: center;
  padding: 15px 0 35px 0;
  background: white;
}
.adSection span,
.adSection2 span {
  color: rgba(121, 121, 111, 0.3764705882);
}
.adSection span,
.adSection2 span {
  font-size: 12px;
}
@media screen and (min-width: 320px) {
  .adSection span,
  .adSection2 span {
    font-size: calc(12px + 0 * (100vw - 320px) / 1601);
  }
}
@media screen and (min-width: 1921px) {
  .adSection span,
  .adSection2 span {
    font-size: 12px;
  }
}
.adSection span,
.adSection2 span {
  line-height: 12px;
}
@media screen and (min-width: 320px) {
  .adSection span,
  .adSection2 span {
    line-height: calc(12px + 6 * (100vw - 320px) / 1601);
  }
}
@media screen and (min-width: 1921px) {
  .adSection span,
  .adSection2 span {
    line-height: 18px;
  }
}
.adSection .imgContainer,
.adSection2 .imgContainer {
  max-width: 75%;
  margin: auto;
}

.adSection2 .imgContainer {
  max-width: 100%;
}

.registerBannerSection2 {
  margin: 60px 0 100px;
  padding: 50px 0;
  background-color: rgba(0, 192, 243, 0.27);
}
.registerBannerSection2 .listingHolder {
  align-items: end;
  justify-content: space-between;
}
.registerBannerSection2 .listingImage {
  max-width: 250px;
  margin-bottom: 5px;
}
.registerBannerSection2 .listingTitle {
  font-weight: 200;
  margin-bottom: 40px;
}
.registerBannerSection2 .listingTitle {
  font-size: 20px;
}
@media screen and (min-width: 320px) {
  .registerBannerSection2 .listingTitle {
    font-size: calc(20px + 73 * (100vw - 320px) / 1601);
  }
}
@media screen and (min-width: 1921px) {
  .registerBannerSection2 .listingTitle {
    font-size: 93px;
  }
}
.registerBannerSection2 .listingTitle {
  line-height: 20px;
}
@media screen and (min-width: 320px) {
  .registerBannerSection2 .listingTitle {
    line-height: calc(20px + 61 * (100vw - 320px) / 1601);
  }
}
@media screen and (min-width: 1921px) {
  .registerBannerSection2 .listingTitle {
    line-height: 81px;
  }
}
.registerBannerSection2 .listingDescription {
  font-weight: 500;
}
.registerBannerSection2 .listingDescription {
  font-size: 16px;
}
@media screen and (min-width: 320px) {
  .registerBannerSection2 .listingDescription {
    font-size: calc(16px + 8 * (100vw - 320px) / 1601);
  }
}
@media screen and (min-width: 1921px) {
  .registerBannerSection2 .listingDescription {
    font-size: 24px;
  }
}
.registerBannerSection2 .listingDescription {
  line-height: 20px;
}
@media screen and (min-width: 320px) {
  .registerBannerSection2 .listingDescription {
    line-height: calc(20px + 8 * (100vw - 320px) / 1601);
  }
}
@media screen and (min-width: 1921px) {
  .registerBannerSection2 .listingDescription {
    line-height: 28px;
  }
}
.registerBannerSection2 .newsletterInputWrapper {
  display: flex;
  flex-direction: column;
  max-width: 600px;
}
.registerBannerSection2 .newsletterInputWrapper .inputContainer {
  position: relative;
  margin-bottom: 15px;
}
.registerBannerSection2 .newsletterInputWrapper .inputContainer.radio {
  display: flex;
  gap: 15px;
  align-items: center;
  padding-left: 20px;
  margin-bottom: 0;
}
.registerBannerSection2 .newsletterInputWrapper .inputContainer.radio label {
  font-weight: 500;
}
.registerBannerSection2 .newsletterInputWrapper .inputContainer.radio label {
  font-size: 18px;
}
@media screen and (min-width: 320px) {
  .registerBannerSection2 .newsletterInputWrapper .inputContainer.radio label {
    font-size: calc(18px + 0 * (100vw - 320px) / 1601);
  }
}
@media screen and (min-width: 1921px) {
  .registerBannerSection2 .newsletterInputWrapper .inputContainer.radio label {
    font-size: 18px;
  }
}
.registerBannerSection2 .newsletterInputWrapper .inputContainer.radio label {
  line-height: 26px;
}
@media screen and (min-width: 320px) {
  .registerBannerSection2 .newsletterInputWrapper .inputContainer.radio label {
    line-height: calc(26px + 0 * (100vw - 320px) / 1601);
  }
}
@media screen and (min-width: 1921px) {
  .registerBannerSection2 .newsletterInputWrapper .inputContainer.radio label {
    line-height: 26px;
  }
}
.registerBannerSection2 .newsletterInputWrapper input[type=text] {
  border-radius: 30px;
  background-color: white;
  height: 60px;
  padding: 0 40px;
  width: 100%;
}
.registerBannerSection2 .newsletterInputWrapper input[type=text] {
  font-size: 18px;
}
@media screen and (min-width: 320px) {
  .registerBannerSection2 .newsletterInputWrapper input[type=text] {
    font-size: calc(18px + 2 * (100vw - 320px) / 1601);
  }
}
@media screen and (min-width: 1921px) {
  .registerBannerSection2 .newsletterInputWrapper input[type=text] {
    font-size: 20px;
  }
}
.registerBannerSection2 .newsletterInputWrapper input[type=text]::-moz-placeholder {
  color: #cacaca;
}
.registerBannerSection2 .newsletterInputWrapper input[type=text]::placeholder {
  color: #cacaca;
}
.registerBannerSection2 .newsletterInputWrapper input[type=radio] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1px solid #39c0f3;
  background-color: #fff;
  position: relative;
  cursor: pointer;
  outline: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}
.registerBannerSection2 .newsletterInputWrapper input[type=radio]:checked {
  background-color: #007bff;
  border-color: #007bff;
}
.registerBannerSection2 .newsletterInputWrapper input[type=radio]:checked::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  background-color: #fff;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.registerBannerSection2 .newsletterInputWrapper a {
  line-height: 26px;
  position: absolute;
  top: 50%;
  padding: 17px 60px;
  border-radius: 0px 30px 30px 0px;
  transform: translateY(-50%);
  right: 0;
  color: white;
  background-color: #39c0f3;
  font-weight: 500;
  transform: translateY(-50%);
  transition: all 0.3s ease-in-out;
}
.registerBannerSection2 .newsletterInputWrapper a {
  font-size: 14px;
}
@media screen and (min-width: 320px) {
  .registerBannerSection2 .newsletterInputWrapper a {
    font-size: calc(14px + 12 * (100vw - 320px) / 1601);
  }
}
@media screen and (min-width: 1921px) {
  .registerBannerSection2 .newsletterInputWrapper a {
    font-size: 26px;
  }
}
.registerBannerSection2 .newsletterInputWrapper a:hover {
  color: white !important;
  opacity: 0.8;
}

.newsSection3,
.newsSection5 {
  padding: 160px 0 80px;
  background: linear-gradient(180deg, rgba(0, 98, 183, 0.07) 0%, rgba(255, 255, 255, 0.07) 100%);
}
.newsSection3 .topSection,
.newsSection5 .topSection {
  display: flex;
  flex-wrap: wrap;
  row-gap: 30px;
  align-items: baseline;
  padding-top: 20px;
  margin-bottom: 70px;
  border-top: 3px solid black;
}
.newsSection3 .topSection h2,
.newsSection5 .topSection h2 {
  font-weight: 900;
  margin-right: 35px;
}
.newsSection3 .topSection h2,
.newsSection5 .topSection h2 {
  font-size: 20px;
}
@media screen and (min-width: 320px) {
  .newsSection3 .topSection h2,
  .newsSection5 .topSection h2 {
    font-size: calc(20px + 10 * (100vw - 320px) / 1601);
  }
}
@media screen and (min-width: 1921px) {
  .newsSection3 .topSection h2,
  .newsSection5 .topSection h2 {
    font-size: 30px;
  }
}
.newsSection3 .topSection h2,
.newsSection5 .topSection h2 {
  line-height: 16px;
}
@media screen and (min-width: 320px) {
  .newsSection3 .topSection h2,
  .newsSection5 .topSection h2 {
    line-height: calc(16px + 10 * (100vw - 320px) / 1601);
  }
}
@media screen and (min-width: 1921px) {
  .newsSection3 .topSection h2,
  .newsSection5 .topSection h2 {
    line-height: 26px;
  }
}
.newsSection3 .topSection .newsType,
.newsSection5 .topSection .newsType {
  display: flex;
  flex-wrap: wrap;
  row-gap: 20px;
}
.newsSection3 .topSection .newsType .type,
.newsSection5 .topSection .newsType .type {
  font-weight: 300;
  letter-spacing: -0.37px;
  border-right: 1px solid #474747;
  padding-right: 10px;
  margin-right: 10px;
}
.newsSection3 .topSection .newsType .type,
.newsSection5 .topSection .newsType .type {
  font-size: 16px;
}
@media screen and (min-width: 320px) {
  .newsSection3 .topSection .newsType .type,
  .newsSection5 .topSection .newsType .type {
    font-size: calc(16px + 6 * (100vw - 320px) / 1601);
  }
}
@media screen and (min-width: 1921px) {
  .newsSection3 .topSection .newsType .type,
  .newsSection5 .topSection .newsType .type {
    font-size: 22px;
  }
}
.newsSection3 .topSection .newsType .type,
.newsSection5 .topSection .newsType .type {
  line-height: 16px;
}
@media screen and (min-width: 320px) {
  .newsSection3 .topSection .newsType .type,
  .newsSection5 .topSection .newsType .type {
    line-height: calc(16px + 6 * (100vw - 320px) / 1601);
  }
}
@media screen and (min-width: 1921px) {
  .newsSection3 .topSection .newsType .type,
  .newsSection5 .topSection .newsType .type {
    line-height: 22px;
  }
}
.newsSection3 .topSection .newsType .type a,
.newsSection5 .topSection .newsType .type a {
  color: #474747;
}
.newsSection3 .topSection .newsType .type:last-of-type,
.newsSection5 .topSection .newsType .type:last-of-type {
  border-right: none;
  padding-right: 0;
  margin-right: 0;
}
.newsSection3 .topSection .link,
.newsSection5 .topSection .link {
  text-align: end;
  flex: 1;
}
.newsSection3 .topSection .link a,
.newsSection5 .topSection .link a {
  font-weight: 900;
}
.newsSection3 .topSection .link a,
.newsSection5 .topSection .link a {
  font-size: 12px;
}
@media screen and (min-width: 320px) {
  .newsSection3 .topSection .link a,
  .newsSection5 .topSection .link a {
    font-size: calc(12px + 3 * (100vw - 320px) / 1601);
  }
}
@media screen and (min-width: 1921px) {
  .newsSection3 .topSection .link a,
  .newsSection5 .topSection .link a {
    font-size: 15px;
  }
}
.newsSection3 .topSection .link a,
.newsSection5 .topSection .link a {
  line-height: 20px;
}
@media screen and (min-width: 320px) {
  .newsSection3 .topSection .link a,
  .newsSection5 .topSection .link a {
    line-height: calc(20px + 6 * (100vw - 320px) / 1601);
  }
}
@media screen and (min-width: 1921px) {
  .newsSection3 .topSection .link a,
  .newsSection5 .topSection .link a {
    line-height: 26px;
  }
}
.newsSection3 .newsSection,
.newsSection5 .newsSection {
  display: flex;
  flex-wrap: wrap;
}
.newsSection3 .firstColumn,
.newsSection5 .firstColumn {
  padding: 0;
  padding-right: 60px;
  border-bottom: 1px solid rgba(121, 121, 111, 0.3764705882);
  flex: 1;
}
.newsSection3 .firstColumn .listingItemDIV .listingItem,
.newsSection5 .firstColumn .listingItemDIV .listingItem {
  display: flex;
  flex-direction: row-reverse;
  align-items: start;
  padding-bottom: 60px;
  margin-bottom: 75px;
  border-bottom: 1px solid rgba(121, 121, 111, 0.3764705882);
}
.newsSection3 .firstColumn .listingItemDIV .listingItem.premium .listingImage,
.newsSection5 .firstColumn .listingItemDIV .listingItem.premium .listingImage {
  position: relative;
}
.newsSection3 .firstColumn .listingItemDIV .listingItem.premium .listingImage:after,
.newsSection5 .firstColumn .listingItemDIV .listingItem.premium .listingImage:after {
  content: "";
  background-image: url("../images/gold83x83.jpg");
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  right: 0;
  bottom: 0;
  height: 4vw;
  min-height: 50px;
  max-height: 83px;
  width: 4vw;
  min-width: 50px;
  max-width: 83px;
}
.newsSection3 .firstColumn .listingItemDIV .listingItem.premium .type,
.newsSection5 .firstColumn .listingItemDIV .listingItem.premium .type {
  padding-left: 25px;
  color: #c0984e;
  position: relative;
}
.newsSection3 .firstColumn .listingItemDIV .listingItem.premium .type:before,
.newsSection5 .firstColumn .listingItemDIV .listingItem.premium .type:before {
  content: "";
  background-image: url("../images/goldLock.svg");
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  left: 0;
  height: 21px;
  width: 16px;
  top: 50%;
  transform: translateY(-50%);
}
.newsSection3 .firstColumn .listingItemDIV .listingItem .listingInfos,
.newsSection5 .firstColumn .listingItemDIV .listingItem .listingInfos {
  padding-right: 100px;
  flex: 0 0 50%;
  max-width: 450px;
}
.newsSection3 .firstColumn .listingItemDIV:last-of-type .listingItem,
.newsSection5 .firstColumn .listingItemDIV:last-of-type .listingItem {
  margin-bottom: 0;
  border-bottom: none;
}
.newsSection3 .firstColumn .listingDate,
.newsSection5 .firstColumn .listingDate {
  margin-bottom: 20px;
}
.newsSection3 .firstColumn .listingDate,
.newsSection5 .firstColumn .listingDate {
  font-size: 16px;
}
@media screen and (min-width: 320px) {
  .newsSection3 .firstColumn .listingDate,
  .newsSection5 .firstColumn .listingDate {
    font-size: calc(16px + 0 * (100vw - 320px) / 1601);
  }
}
@media screen and (min-width: 1921px) {
  .newsSection3 .firstColumn .listingDate,
  .newsSection5 .firstColumn .listingDate {
    font-size: 16px;
  }
}
.newsSection3 .firstColumn .listingDate,
.newsSection5 .firstColumn .listingDate {
  line-height: 16px;
}
@media screen and (min-width: 320px) {
  .newsSection3 .firstColumn .listingDate,
  .newsSection5 .firstColumn .listingDate {
    line-height: calc(16px + 2 * (100vw - 320px) / 1601);
  }
}
@media screen and (min-width: 1921px) {
  .newsSection3 .firstColumn .listingDate,
  .newsSection5 .firstColumn .listingDate {
    line-height: 18px;
  }
}
.newsSection3 .firstColumn .listingDate .type,
.newsSection5 .firstColumn .listingDate .type {
  color: #39c0f3;
}
.newsSection3 .firstColumn .listingTitle,
.newsSection5 .firstColumn .listingTitle {
  margin-bottom: 20px;
}
.newsSection3 .firstColumn .listingTitle,
.newsSection5 .firstColumn .listingTitle {
  font-size: 16px;
}
@media screen and (min-width: 320px) {
  .newsSection3 .firstColumn .listingTitle,
  .newsSection5 .firstColumn .listingTitle {
    font-size: calc(16px + 10 * (100vw - 320px) / 1601);
  }
}
@media screen and (min-width: 1921px) {
  .newsSection3 .firstColumn .listingTitle,
  .newsSection5 .firstColumn .listingTitle {
    font-size: 26px;
  }
}
.newsSection3 .firstColumn .listingTitle,
.newsSection5 .firstColumn .listingTitle {
  line-height: 20px;
}
@media screen and (min-width: 320px) {
  .newsSection3 .firstColumn .listingTitle,
  .newsSection5 .firstColumn .listingTitle {
    line-height: calc(20px + 16 * (100vw - 320px) / 1601);
  }
}
@media screen and (min-width: 1921px) {
  .newsSection3 .firstColumn .listingTitle,
  .newsSection5 .firstColumn .listingTitle {
    line-height: 36px;
  }
}
.newsSection3 .firstColumn .listingDescription,
.newsSection5 .firstColumn .listingDescription {
  font-weight: 500;
}
.newsSection3 .firstColumn .listingDescription,
.newsSection5 .firstColumn .listingDescription {
  font-size: 16px;
}
@media screen and (min-width: 320px) {
  .newsSection3 .firstColumn .listingDescription,
  .newsSection5 .firstColumn .listingDescription {
    font-size: calc(16px + 0 * (100vw - 320px) / 1601);
  }
}
@media screen and (min-width: 1921px) {
  .newsSection3 .firstColumn .listingDescription,
  .newsSection5 .firstColumn .listingDescription {
    font-size: 16px;
  }
}
.newsSection3 .firstColumn .listingDescription,
.newsSection5 .firstColumn .listingDescription {
  line-height: 16px;
}
@media screen and (min-width: 320px) {
  .newsSection3 .firstColumn .listingDescription,
  .newsSection5 .firstColumn .listingDescription {
    line-height: calc(16px + 10 * (100vw - 320px) / 1601);
  }
}
@media screen and (min-width: 1921px) {
  .newsSection3 .firstColumn .listingDescription,
  .newsSection5 .firstColumn .listingDescription {
    line-height: 26px;
  }
}
.newsSection3 .firstColumn .secondaryNews,
.newsSection5 .firstColumn .secondaryNews {
  margin-top: 75px;
  padding-left: 50px;
  position: relative;
}
.newsSection3 .firstColumn .secondaryNews:before,
.newsSection5 .firstColumn .secondaryNews:before {
  content: "";
  background-image: url("../images/arrow.svg");
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  left: 0;
  height: 20px;
  width: 20px;
  top: 0;
}
.newsSection3 .firstColumn .secondaryNews .listingDate,
.newsSection5 .firstColumn .secondaryNews .listingDate {
  margin-bottom: 8px;
}
.newsSection3 .firstColumn .secondaryNews .listingDate,
.newsSection5 .firstColumn .secondaryNews .listingDate {
  font-size: 16px;
}
@media screen and (min-width: 320px) {
  .newsSection3 .firstColumn .secondaryNews .listingDate,
  .newsSection5 .firstColumn .secondaryNews .listingDate {
    font-size: calc(16px + 0 * (100vw - 320px) / 1601);
  }
}
@media screen and (min-width: 1921px) {
  .newsSection3 .firstColumn .secondaryNews .listingDate,
  .newsSection5 .firstColumn .secondaryNews .listingDate {
    font-size: 16px;
  }
}
.newsSection3 .firstColumn .secondaryNews .listingDate,
.newsSection5 .firstColumn .secondaryNews .listingDate {
  line-height: 24px;
}
@media screen and (min-width: 320px) {
  .newsSection3 .firstColumn .secondaryNews .listingDate,
  .newsSection5 .firstColumn .secondaryNews .listingDate {
    line-height: calc(24px + 0 * (100vw - 320px) / 1601);
  }
}
@media screen and (min-width: 1921px) {
  .newsSection3 .firstColumn .secondaryNews .listingDate,
  .newsSection5 .firstColumn .secondaryNews .listingDate {
    line-height: 24px;
  }
}
.newsSection3 .firstColumn .secondaryNews .listingTitle,
.newsSection5 .firstColumn .secondaryNews .listingTitle {
  font-size: 18px;
}
@media screen and (min-width: 320px) {
  .newsSection3 .firstColumn .secondaryNews .listingTitle,
  .newsSection5 .firstColumn .secondaryNews .listingTitle {
    font-size: calc(18px + 0 * (100vw - 320px) / 1601);
  }
}
@media screen and (min-width: 1921px) {
  .newsSection3 .firstColumn .secondaryNews .listingTitle,
  .newsSection5 .firstColumn .secondaryNews .listingTitle {
    font-size: 18px;
  }
}
.newsSection3 .firstColumn .secondaryNews .listingTitle,
.newsSection5 .firstColumn .secondaryNews .listingTitle {
  line-height: 26px;
}
@media screen and (min-width: 320px) {
  .newsSection3 .firstColumn .secondaryNews .listingTitle,
  .newsSection5 .firstColumn .secondaryNews .listingTitle {
    line-height: calc(26px + 0 * (100vw - 320px) / 1601);
  }
}
@media screen and (min-width: 1921px) {
  .newsSection3 .firstColumn .secondaryNews .listingTitle,
  .newsSection5 .firstColumn .secondaryNews .listingTitle {
    line-height: 26px;
  }
}
.newsSection3 .secondColumn,
.newsSection5 .secondColumn {
  border-bottom: 1px solid rgba(121, 121, 111, 0.3764705882);
  padding-left: 25px;
  min-width: 360px;
}
.newsSection3 .secondColumn .listingHolder,
.newsSection5 .secondColumn .listingHolder {
  padding-left: 15px;
}
.newsSection3 .secondColumn .listingItemDIV .listingItem,
.newsSection5 .secondColumn .listingItemDIV .listingItem {
  border-bottom: 1px solid rgba(121, 121, 111, 0.3764705882);
  padding-bottom: 25px;
  margin-bottom: 20px;
}
.newsSection3 .secondColumn .listingItemDIV .listingItem.premium .type,
.newsSection5 .secondColumn .listingItemDIV .listingItem.premium .type {
  padding-left: 25px;
  color: #c0984e;
  position: relative;
}
.newsSection3 .secondColumn .listingItemDIV .listingItem.premium .type:before,
.newsSection5 .secondColumn .listingItemDIV .listingItem.premium .type:before {
  content: "";
  background-image: url("../images/goldLock.svg");
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  left: 0;
  height: 21px;
  width: 16px;
  top: 50%;
  transform: translateY(-50%);
}
.newsSection3 .secondColumn .listingItemDIV:last-of-type .listingItem,
.newsSection5 .secondColumn .listingItemDIV:last-of-type .listingItem {
  margin-bottom: 0;
  border-bottom: none;
}
.newsSection3 .secondColumn .listingItemDIV .listingDate,
.newsSection5 .secondColumn .listingItemDIV .listingDate {
  margin-bottom: 8px;
}
.newsSection3 .secondColumn .listingItemDIV .listingDate,
.newsSection5 .secondColumn .listingItemDIV .listingDate {
  font-size: 16px;
}
@media screen and (min-width: 320px) {
  .newsSection3 .secondColumn .listingItemDIV .listingDate,
  .newsSection5 .secondColumn .listingItemDIV .listingDate {
    font-size: calc(16px + 0 * (100vw - 320px) / 1601);
  }
}
@media screen and (min-width: 1921px) {
  .newsSection3 .secondColumn .listingItemDIV .listingDate,
  .newsSection5 .secondColumn .listingItemDIV .listingDate {
    font-size: 16px;
  }
}
.newsSection3 .secondColumn .listingItemDIV .listingDate,
.newsSection5 .secondColumn .listingItemDIV .listingDate {
  line-height: 24px;
}
@media screen and (min-width: 320px) {
  .newsSection3 .secondColumn .listingItemDIV .listingDate,
  .newsSection5 .secondColumn .listingItemDIV .listingDate {
    line-height: calc(24px + 0 * (100vw - 320px) / 1601);
  }
}
@media screen and (min-width: 1921px) {
  .newsSection3 .secondColumn .listingItemDIV .listingDate,
  .newsSection5 .secondColumn .listingItemDIV .listingDate {
    line-height: 24px;
  }
}
.newsSection3 .secondColumn .listingItemDIV .listingDate .type,
.newsSection5 .secondColumn .listingItemDIV .listingDate .type {
  color: #39c0f3;
}
.newsSection3 .secondColumn .listingItemDIV .listingDate .listingtitle,
.newsSection5 .secondColumn .listingItemDIV .listingDate .listingtitle {
  font-size: 18px;
}
@media screen and (min-width: 320px) {
  .newsSection3 .secondColumn .listingItemDIV .listingDate .listingtitle,
  .newsSection5 .secondColumn .listingItemDIV .listingDate .listingtitle {
    font-size: calc(18px + 0 * (100vw - 320px) / 1601);
  }
}
@media screen and (min-width: 1921px) {
  .newsSection3 .secondColumn .listingItemDIV .listingDate .listingtitle,
  .newsSection5 .secondColumn .listingItemDIV .listingDate .listingtitle {
    font-size: 18px;
  }
}
.newsSection3 .secondColumn .listingItemDIV .listingDate .listingtitle,
.newsSection5 .secondColumn .listingItemDIV .listingDate .listingtitle {
  line-height: 26px;
}
@media screen and (min-width: 320px) {
  .newsSection3 .secondColumn .listingItemDIV .listingDate .listingtitle,
  .newsSection5 .secondColumn .listingItemDIV .listingDate .listingtitle {
    line-height: calc(26px + 0 * (100vw - 320px) / 1601);
  }
}
@media screen and (min-width: 1921px) {
  .newsSection3 .secondColumn .listingItemDIV .listingDate .listingtitle,
  .newsSection5 .secondColumn .listingItemDIV .listingDate .listingtitle {
    line-height: 26px;
  }
}
.newsSection3 .secondColumn .listingImage,
.newsSection5 .secondColumn .listingImage {
  margin-bottom: 25px;
}
.newsSection3 .secondColumn .listingTitle,
.newsSection5 .secondColumn .listingTitle {
  margin-bottom: 20px;
}
.newsSection3 .secondColumn .listingTitle,
.newsSection5 .secondColumn .listingTitle {
  font-size: 16px;
}
@media screen and (min-width: 320px) {
  .newsSection3 .secondColumn .listingTitle,
  .newsSection5 .secondColumn .listingTitle {
    font-size: calc(16px + 6 * (100vw - 320px) / 1601);
  }
}
@media screen and (min-width: 1921px) {
  .newsSection3 .secondColumn .listingTitle,
  .newsSection5 .secondColumn .listingTitle {
    font-size: 22px;
  }
}
.newsSection3 .secondColumn .listingTitle,
.newsSection5 .secondColumn .listingTitle {
  line-height: 20px;
}
@media screen and (min-width: 320px) {
  .newsSection3 .secondColumn .listingTitle,
  .newsSection5 .secondColumn .listingTitle {
    line-height: calc(20px + 10 * (100vw - 320px) / 1601);
  }
}
@media screen and (min-width: 1921px) {
  .newsSection3 .secondColumn .listingTitle,
  .newsSection5 .secondColumn .listingTitle {
    line-height: 30px;
  }
}
.newsSection3 .secondColumn .listingDescription,
.newsSection5 .secondColumn .listingDescription {
  font-weight: 500;
  color: #393938;
}
.newsSection3 .secondColumn .listingDescription,
.newsSection5 .secondColumn .listingDescription {
  font-size: 16px;
}
@media screen and (min-width: 320px) {
  .newsSection3 .secondColumn .listingDescription,
  .newsSection5 .secondColumn .listingDescription {
    font-size: calc(16px + 0 * (100vw - 320px) / 1601);
  }
}
@media screen and (min-width: 1921px) {
  .newsSection3 .secondColumn .listingDescription,
  .newsSection5 .secondColumn .listingDescription {
    font-size: 16px;
  }
}
.newsSection3 .secondColumn .listingDescription,
.newsSection5 .secondColumn .listingDescription {
  line-height: 16px;
}
@media screen and (min-width: 320px) {
  .newsSection3 .secondColumn .listingDescription,
  .newsSection5 .secondColumn .listingDescription {
    line-height: calc(16px + 10 * (100vw - 320px) / 1601);
  }
}
@media screen and (min-width: 1921px) {
  .newsSection3 .secondColumn .listingDescription,
  .newsSection5 .secondColumn .listingDescription {
    line-height: 26px;
  }
}

.newsSection4 {
  padding: 60px 0 80px;
}
.newsSection4 .topSection {
  display: flex;
  flex-wrap: wrap;
  row-gap: 30px;
  align-items: baseline;
  padding-top: 20px;
  margin-bottom: 70px;
  border-top: 3px solid black;
}
.newsSection4 .topSection h2 {
  font-weight: 900;
  margin-right: 35px;
}
.newsSection4 .topSection h2 {
  font-size: 20px;
}
@media screen and (min-width: 320px) {
  .newsSection4 .topSection h2 {
    font-size: calc(20px + 10 * (100vw - 320px) / 1601);
  }
}
@media screen and (min-width: 1921px) {
  .newsSection4 .topSection h2 {
    font-size: 30px;
  }
}
.newsSection4 .topSection h2 {
  line-height: 16px;
}
@media screen and (min-width: 320px) {
  .newsSection4 .topSection h2 {
    line-height: calc(16px + 10 * (100vw - 320px) / 1601);
  }
}
@media screen and (min-width: 1921px) {
  .newsSection4 .topSection h2 {
    line-height: 26px;
  }
}
.newsSection4 .topSection .link {
  text-align: end;
  flex: 1;
}
.newsSection4 .topSection .link a {
  font-weight: 900;
}
.newsSection4 .topSection .link a {
  font-size: 12px;
}
@media screen and (min-width: 320px) {
  .newsSection4 .topSection .link a {
    font-size: calc(12px + 3 * (100vw - 320px) / 1601);
  }
}
@media screen and (min-width: 1921px) {
  .newsSection4 .topSection .link a {
    font-size: 15px;
  }
}
.newsSection4 .topSection .link a {
  line-height: 20px;
}
@media screen and (min-width: 320px) {
  .newsSection4 .topSection .link a {
    line-height: calc(20px + 6 * (100vw - 320px) / 1601);
  }
}
@media screen and (min-width: 1921px) {
  .newsSection4 .topSection .link a {
    line-height: 26px;
  }
}
.newsSection4 .newsSection {
  display: flex;
  flex-wrap: wrap;
}
.newsSection4 .firstColumn {
  padding: 0;
  padding-right: 60px;
  border-bottom: 1px solid rgba(121, 121, 111, 0.3764705882);
  border-right: 1px solid rgba(121, 121, 111, 0.3764705882);
  flex: 1;
}
.newsSection4 .firstColumn .listingItemDIV .listingItem {
  display: flex;
  align-items: start;
  flex-direction: row-reverse;
  padding-bottom: 60px;
  margin-bottom: 75px;
  border-bottom: 1px solid rgba(121, 121, 111, 0.3764705882);
}
.newsSection4 .firstColumn .listingItemDIV .listingItem.premium .listingImage {
  position: relative;
}
.newsSection4 .firstColumn .listingItemDIV .listingItem.premium .listingImage:after {
  content: "";
  background-image: url("../images/gold83x83.jpg");
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  right: 0;
  bottom: 0;
  height: 4vw;
  min-height: 50px;
  max-height: 83px;
  width: 4vw;
  min-width: 50px;
  max-width: 83px;
}
.newsSection4 .firstColumn .listingItemDIV .listingItem.premium .type {
  padding-left: 25px;
  color: #c0984e;
  position: relative;
}
.newsSection4 .firstColumn .listingItemDIV .listingItem.premium .type:before {
  content: "";
  background-image: url("../images/goldLock.svg");
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  left: 0;
  height: 21px;
  width: 16px;
  top: 50%;
  transform: translateY(-50%);
}
.newsSection4 .firstColumn .listingItemDIV .listingItem .listingInfos {
  padding-right: 100px;
  flex: 0 0 50%;
  max-width: 450px;
}
.newsSection4 .firstColumn .listingItemDIV:last-of-type .listingItem {
  margin-bottom: 0;
  border-bottom: none;
}
.newsSection4 .firstColumn .listingAuthor {
  display: flex;
  align-items: end;
  gap: 20px;
}
.newsSection4 .firstColumn .listingAuthor {
  font-size: 16px;
}
@media screen and (min-width: 320px) {
  .newsSection4 .firstColumn .listingAuthor {
    font-size: calc(16px + 0 * (100vw - 320px) / 1601);
  }
}
@media screen and (min-width: 1921px) {
  .newsSection4 .firstColumn .listingAuthor {
    font-size: 16px;
  }
}
.newsSection4 .firstColumn .listingAuthor {
  line-height: 22px;
}
@media screen and (min-width: 320px) {
  .newsSection4 .firstColumn .listingAuthor {
    line-height: calc(22px + 2 * (100vw - 320px) / 1601);
  }
}
@media screen and (min-width: 1921px) {
  .newsSection4 .firstColumn .listingAuthor {
    line-height: 24px;
  }
}
.newsSection4 .firstColumn .listingAuthor .type {
  color: #39c0f3;
  display: block;
}
.newsSection4 .firstColumn .listingAuthor img {
  width: 50px;
  height: 50px;
}
.newsSection4 .firstColumn .listingTitle {
  margin-bottom: 20px;
}
.newsSection4 .firstColumn .listingTitle {
  font-size: 16px;
}
@media screen and (min-width: 320px) {
  .newsSection4 .firstColumn .listingTitle {
    font-size: calc(16px + 10 * (100vw - 320px) / 1601);
  }
}
@media screen and (min-width: 1921px) {
  .newsSection4 .firstColumn .listingTitle {
    font-size: 26px;
  }
}
.newsSection4 .firstColumn .listingTitle {
  line-height: 20px;
}
@media screen and (min-width: 320px) {
  .newsSection4 .firstColumn .listingTitle {
    line-height: calc(20px + 16 * (100vw - 320px) / 1601);
  }
}
@media screen and (min-width: 1921px) {
  .newsSection4 .firstColumn .listingTitle {
    line-height: 36px;
  }
}
.newsSection4 .firstColumn .listingDescription {
  font-weight: 500;
  margin-bottom: 50px;
}
.newsSection4 .firstColumn .listingDescription {
  font-size: 16px;
}
@media screen and (min-width: 320px) {
  .newsSection4 .firstColumn .listingDescription {
    font-size: calc(16px + 0 * (100vw - 320px) / 1601);
  }
}
@media screen and (min-width: 1921px) {
  .newsSection4 .firstColumn .listingDescription {
    font-size: 16px;
  }
}
.newsSection4 .firstColumn .listingDescription {
  line-height: 16px;
}
@media screen and (min-width: 320px) {
  .newsSection4 .firstColumn .listingDescription {
    line-height: calc(16px + 10 * (100vw - 320px) / 1601);
  }
}
@media screen and (min-width: 1921px) {
  .newsSection4 .firstColumn .listingDescription {
    line-height: 26px;
  }
}
.newsSection4 .secondColumn {
  border-bottom: 1px solid rgba(121, 121, 111, 0.3764705882);
  padding-left: 25px;
  min-width: 360px;
}
.newsSection4 .secondColumn .listingHolder {
  padding-left: 15px;
}
.newsSection4 .secondColumn .listingItemDIV {
  width: 100%;
}
.newsSection4 .secondColumn .listingItemDIV .listingItem {
  border-bottom: 1px solid rgba(121, 121, 111, 0.3764705882);
  padding-bottom: 25px;
  margin-bottom: 20px;
}
.newsSection4 .secondColumn .listingItemDIV .listingItem.premium .type {
  padding-left: 25px;
  color: #c0984e;
  position: relative;
}
.newsSection4 .secondColumn .listingItemDIV .listingItem.premium .type:before {
  content: "";
  background-image: url("../images/goldLock.svg");
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  left: 0;
  height: 21px;
  width: 16px;
  top: 50%;
  transform: translateY(-50%);
}
.newsSection4 .secondColumn .listingItemDIV .listingAuthor {
  display: flex;
  align-items: end;
  gap: 20px;
}
.newsSection4 .secondColumn .listingItemDIV .listingAuthor {
  font-size: 16px;
}
@media screen and (min-width: 320px) {
  .newsSection4 .secondColumn .listingItemDIV .listingAuthor {
    font-size: calc(16px + 0 * (100vw - 320px) / 1601);
  }
}
@media screen and (min-width: 1921px) {
  .newsSection4 .secondColumn .listingItemDIV .listingAuthor {
    font-size: 16px;
  }
}
.newsSection4 .secondColumn .listingItemDIV .listingAuthor {
  line-height: 24px;
}
@media screen and (min-width: 320px) {
  .newsSection4 .secondColumn .listingItemDIV .listingAuthor {
    line-height: calc(24px + 0 * (100vw - 320px) / 1601);
  }
}
@media screen and (min-width: 1921px) {
  .newsSection4 .secondColumn .listingItemDIV .listingAuthor {
    line-height: 24px;
  }
}
.newsSection4 .secondColumn .listingItemDIV .listingAuthor span {
  display: block;
}
.newsSection4 .secondColumn .listingItemDIV:last-of-type .listingItem {
  margin-bottom: 0;
  border-bottom: none;
}
.newsSection4 .secondColumn .listingItemDIV .listingDate .type {
  color: #39c0f3;
}
.newsSection4 .secondColumn .listingItemDIV .listingDate .listingtitle {
  font-size: 18px;
}
@media screen and (min-width: 320px) {
  .newsSection4 .secondColumn .listingItemDIV .listingDate .listingtitle {
    font-size: calc(18px + 0 * (100vw - 320px) / 1601);
  }
}
@media screen and (min-width: 1921px) {
  .newsSection4 .secondColumn .listingItemDIV .listingDate .listingtitle {
    font-size: 18px;
  }
}
.newsSection4 .secondColumn .listingItemDIV .listingDate .listingtitle {
  line-height: 26px;
}
@media screen and (min-width: 320px) {
  .newsSection4 .secondColumn .listingItemDIV .listingDate .listingtitle {
    line-height: calc(26px + 0 * (100vw - 320px) / 1601);
  }
}
@media screen and (min-width: 1921px) {
  .newsSection4 .secondColumn .listingItemDIV .listingDate .listingtitle {
    line-height: 26px;
  }
}
.newsSection4 .secondColumn .listingTitle {
  margin-bottom: 20px;
}
.newsSection4 .secondColumn .listingTitle {
  font-size: 16px;
}
@media screen and (min-width: 320px) {
  .newsSection4 .secondColumn .listingTitle {
    font-size: calc(16px + 0 * (100vw - 320px) / 1601);
  }
}
@media screen and (min-width: 1921px) {
  .newsSection4 .secondColumn .listingTitle {
    font-size: 16px;
  }
}
.newsSection4 .secondColumn .listingTitle {
  line-height: 22px;
}
@media screen and (min-width: 320px) {
  .newsSection4 .secondColumn .listingTitle {
    line-height: calc(22px + 0 * (100vw - 320px) / 1601);
  }
}
@media screen and (min-width: 1921px) {
  .newsSection4 .secondColumn .listingTitle {
    line-height: 22px;
  }
}
.newsSection4 .secondColumn .imgContainer {
  max-width: 50px;
}
.newsSection4 .secondColumn .imgContainer img {
  width: 50px;
  height: 50px;
}

.newsSection5 {
  padding: 70px 0 120px;
}
.newsSection5 .secondColumn {
  padding-left: 25px;
}
.newsSection5 .secondColumn .listingTitle {
  font-size: 18px;
}
@media screen and (min-width: 320px) {
  .newsSection5 .secondColumn .listingTitle {
    font-size: calc(18px + 0 * (100vw - 320px) / 1601);
  }
}
@media screen and (min-width: 1921px) {
  .newsSection5 .secondColumn .listingTitle {
    font-size: 18px;
  }
}
.newsSection5 .secondColumn .listingTitle {
  line-height: 20px;
}
@media screen and (min-width: 320px) {
  .newsSection5 .secondColumn .listingTitle {
    line-height: calc(20px + 8 * (100vw - 320px) / 1601);
  }
}
@media screen and (min-width: 1921px) {
  .newsSection5 .secondColumn .listingTitle {
    line-height: 28px;
  }
}

.featuredNewsSection2 {
  margin-bottom: 200px;
}
.featuredNewsSection2 .featured {
  margin-bottom: 90px;
}
.featuredNewsSection2 .featuredNews {
  border: none;
}
.featuredNewsSection2 .otherNews {
  max-width: unset;
}
.featuredNewsSection2 .otherNews .listingImage {
  margin-bottom: 20px;
}
.featuredNewsSection2 .otherNews .listingItemDIV {
  border: none;
}
.featuredNewsSection2 .otherNews .listingItemDIV .listingItem {
  border: none;
  padding: 0;
}
.featuredNewsSection2 .otherNews .listingTitle {
  font-size: 16px;
}
@media screen and (min-width: 320px) {
  .featuredNewsSection2 .otherNews .listingTitle {
    font-size: calc(16px + 6 * (100vw - 320px) / 1601);
  }
}
@media screen and (min-width: 1921px) {
  .featuredNewsSection2 .otherNews .listingTitle {
    font-size: 22px;
  }
}
.featuredNewsSection2 .otherNews .listingTitle {
  line-height: 24px;
}
@media screen and (min-width: 320px) {
  .featuredNewsSection2 .otherNews .listingTitle {
    line-height: calc(24px + 8 * (100vw - 320px) / 1601);
  }
}
@media screen and (min-width: 1921px) {
  .featuredNewsSection2 .otherNews .listingTitle {
    line-height: 32px;
  }
}

.firstColumn {
  padding-right: 60px;
  padding-left: 0;
}

.secondColumn {
  padding-left: 25px;
}

.firstColumn {
  padding-right: 60px;
  padding-left: 0;
  border-right: 1px solid rgba(121, 121, 111, 0.3764705882);
  border-bottom: 0;
}

.featuredNewsSectionAlt {
  margin-bottom: 50px;
  margin-top: 0;
}
.featuredNewsSectionAlt .newsSection {
  display: flex;
  flex-wrap: wrap;
}
.featuredNewsSectionAlt .first-news-section .listingInfos {
  position: sticky;
  bottom: 0px;
  background: #e4f8fd;
  padding: 20px 0 10px;
}
.featuredNewsSectionAlt .first-news-section .listingItem.premium .type {
  padding-left: 25px;
  color: #c0984e;
  position: relative;
}
.featuredNewsSectionAlt .first-news-section .listingItem.premium .type:before {
  content: "";
  background-image: url("../images/goldLock.svg");
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  left: 0;
  height: 21px;
  width: 16px;
  top: 50%;
  transform: translateY(-50%);
}
.featuredNewsSectionAlt .first-news-section .listingDate {
  margin-bottom: 20px;
}
.featuredNewsSectionAlt .first-news-section .listingDate {
  font-size: 16px;
}
@media screen and (min-width: 320px) {
  .featuredNewsSectionAlt .first-news-section .listingDate {
    font-size: calc(16px + 0 * (100vw - 320px) / 1601);
  }
}
@media screen and (min-width: 1921px) {
  .featuredNewsSectionAlt .first-news-section .listingDate {
    font-size: 16px;
  }
}
.featuredNewsSectionAlt .first-news-section .listingDate {
  line-height: 16px;
}
@media screen and (min-width: 320px) {
  .featuredNewsSectionAlt .first-news-section .listingDate {
    line-height: calc(16px + 2 * (100vw - 320px) / 1601);
  }
}
@media screen and (min-width: 1921px) {
  .featuredNewsSectionAlt .first-news-section .listingDate {
    line-height: 18px;
  }
}
.featuredNewsSectionAlt .first-news-section .listingDate .type {
  color: #39c0f3;
}
.featuredNewsSectionAlt .first-news-section .featured .listingItem {
  margin-bottom: 60px;
  border-bottom: 1px solid rgba(121, 121, 111, 0.3764705882);
  padding-bottom: 50px;
}
.featuredNewsSectionAlt .first-news-section .featured .listingImage {
  margin-bottom: 20px;
}
.featuredNewsSectionAlt .first-news-section .featured .listingTitle {
  margin-bottom: 20px;
  margin-top: 5px;
}
.featuredNewsSectionAlt .first-news-section .featured .listingTitle {
  font-size: 20px;
}
@media screen and (min-width: 320px) {
  .featuredNewsSectionAlt .first-news-section .featured .listingTitle {
    font-size: calc(20px + 23 * (100vw - 320px) / 1601);
  }
}
@media screen and (min-width: 1921px) {
  .featuredNewsSectionAlt .first-news-section .featured .listingTitle {
    font-size: 43px;
  }
}
.featuredNewsSectionAlt .first-news-section .featured .listingTitle {
  line-height: 28px;
}
@media screen and (min-width: 320px) {
  .featuredNewsSectionAlt .first-news-section .featured .listingTitle {
    line-height: calc(28px + 36 * (100vw - 320px) / 1601);
  }
}
@media screen and (min-width: 1921px) {
  .featuredNewsSectionAlt .first-news-section .featured .listingTitle {
    line-height: 64px;
  }
}
.featuredNewsSectionAlt .first-news-section .featured .listingDescription {
  font-weight: 500;
}
.featuredNewsSectionAlt .first-news-section .featured .listingDescription {
  font-size: 16px;
}
@media screen and (min-width: 320px) {
  .featuredNewsSectionAlt .first-news-section .featured .listingDescription {
    font-size: calc(16px + 8 * (100vw - 320px) / 1601);
  }
}
@media screen and (min-width: 1921px) {
  .featuredNewsSectionAlt .first-news-section .featured .listingDescription {
    font-size: 24px;
  }
}
.featuredNewsSectionAlt .first-news-section .featured .listingDescription {
  line-height: 20px;
}
@media screen and (min-width: 320px) {
  .featuredNewsSectionAlt .first-news-section .featured .listingDescription {
    line-height: calc(20px + 10 * (100vw - 320px) / 1601);
  }
}
@media screen and (min-width: 1921px) {
  .featuredNewsSectionAlt .first-news-section .featured .listingDescription {
    line-height: 30px;
  }
}
.featuredNewsSectionAlt .first-news-section .featured .listingDate {
  margin-bottom: 5px;
}
.featuredNewsSectionAlt .first-news-section .otherNews {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 60px;
}
.featuredNewsSectionAlt .first-news-section .otherNews .listingItemDIV {
  border-right: 1px solid rgba(121, 121, 111, 0.3764705882);
  padding-bottom: 10px;
}
.featuredNewsSectionAlt .first-news-section .otherNews .listingItemDIV:last-of-type {
  border: none;
}
.featuredNewsSectionAlt .first-news-section .otherNews .listingItem {
  margin-top: -10px;
}
.featuredNewsSectionAlt .first-news-section .otherNews .listingDate {
  margin-bottom: 15px;
}
.featuredNewsSectionAlt .first-news-section .otherNews .listingDate {
  font-size: 16px;
}
@media screen and (min-width: 320px) {
  .featuredNewsSectionAlt .first-news-section .otherNews .listingDate {
    font-size: calc(16px + 0 * (100vw - 320px) / 1601);
  }
}
@media screen and (min-width: 1921px) {
  .featuredNewsSectionAlt .first-news-section .otherNews .listingDate {
    font-size: 16px;
  }
}
.featuredNewsSectionAlt .first-news-section .otherNews .listingDate {
  line-height: 24px;
}
@media screen and (min-width: 320px) {
  .featuredNewsSectionAlt .first-news-section .otherNews .listingDate {
    line-height: calc(24px + 0 * (100vw - 320px) / 1601);
  }
}
@media screen and (min-width: 1921px) {
  .featuredNewsSectionAlt .first-news-section .otherNews .listingDate {
    line-height: 24px;
  }
}
.featuredNewsSectionAlt .first-news-section .otherNews .listingTitle {
  font-size: 18px;
}
@media screen and (min-width: 320px) {
  .featuredNewsSectionAlt .first-news-section .otherNews .listingTitle {
    font-size: calc(18px + 0 * (100vw - 320px) / 1601);
  }
}
@media screen and (min-width: 1921px) {
  .featuredNewsSectionAlt .first-news-section .otherNews .listingTitle {
    font-size: 18px;
  }
}
.featuredNewsSectionAlt .first-news-section .otherNews .listingTitle {
  line-height: 26px;
}
@media screen and (min-width: 320px) {
  .featuredNewsSectionAlt .first-news-section .otherNews .listingTitle {
    line-height: calc(26px + 0 * (100vw - 320px) / 1601);
  }
}
@media screen and (min-width: 1921px) {
  .featuredNewsSectionAlt .first-news-section .otherNews .listingTitle {
    line-height: 26px;
  }
}
.featuredNewsSectionAlt .second-news-section {
  border-top: 3px solid black;
}
.featuredNewsSectionAlt .second-news-section .topSection {
  margin-bottom: 50px;
  margin-top: 5px;
}
.featuredNewsSectionAlt .second-news-section .topSection .title {
  font-weight: 900;
  margin-bottom: 5px;
  padding-top: 5px;
}
.featuredNewsSectionAlt .second-news-section .topSection .title {
  font-size: 20px;
}
@media screen and (min-width: 320px) {
  .featuredNewsSectionAlt .second-news-section .topSection .title {
    font-size: calc(20px + 10 * (100vw - 320px) / 1601);
  }
}
@media screen and (min-width: 1921px) {
  .featuredNewsSectionAlt .second-news-section .topSection .title {
    font-size: 30px;
  }
}
.featuredNewsSectionAlt .second-news-section .topSection .title {
  line-height: 30px;
}
@media screen and (min-width: 320px) {
  .featuredNewsSectionAlt .second-news-section .topSection .title {
    line-height: calc(30px + 15 * (100vw - 320px) / 1601);
  }
}
@media screen and (min-width: 1921px) {
  .featuredNewsSectionAlt .second-news-section .topSection .title {
    line-height: 45px;
  }
}
.featuredNewsSectionAlt .second-news-section .topSection .date {
  color: #4c4c4c;
  font-weight: 300;
}
.featuredNewsSectionAlt .second-news-section .topSection .date {
  font-size: 18px;
}
@media screen and (min-width: 320px) {
  .featuredNewsSectionAlt .second-news-section .topSection .date {
    font-size: calc(18px + 5 * (100vw - 320px) / 1601);
  }
}
@media screen and (min-width: 1921px) {
  .featuredNewsSectionAlt .second-news-section .topSection .date {
    font-size: 23px;
  }
}
.featuredNewsSectionAlt .second-news-section .topSection .date {
  line-height: 20px;
}
@media screen and (min-width: 320px) {
  .featuredNewsSectionAlt .second-news-section .topSection .date {
    line-height: calc(20px + 8 * (100vw - 320px) / 1601);
  }
}
@media screen and (min-width: 1921px) {
  .featuredNewsSectionAlt .second-news-section .topSection .date {
    line-height: 28px;
  }
}
.featuredNewsSectionAlt .second-news-section .listingItemDIV .listingItem {
  padding-bottom: 80px;
  border-bottom: 2px solid black;
  margin-bottom: 40px;
}
.featuredNewsSectionAlt .second-news-section .listingItemDIV .listingItem.premium .listingImage {
  position: relative;
}
.featuredNewsSectionAlt .second-news-section .listingItemDIV .listingItem.premium .listingImage:after {
  content: "";
  background-image: url("../images/gold83x83.jpg");
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  right: 0;
  bottom: 0;
  height: 4vw;
  min-height: 50px;
  max-height: 83px;
  width: 4vw;
  min-width: 50px;
  max-width: 83px;
}
.featuredNewsSectionAlt .second-news-section .listingItemDIV .listingItem.premium .type {
  padding-left: 25px;
  color: #c0984e;
  position: relative;
}
.featuredNewsSectionAlt .second-news-section .listingItemDIV .listingItem.premium .type:before {
  content: "";
  background-image: url("../images/goldLock.svg");
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  left: 0;
  height: 21px;
  width: 16px;
  top: 50%;
  transform: translateY(-50%);
}
.featuredNewsSectionAlt .second-news-section .listingImage {
  margin-bottom: 20px;
}
.featuredNewsSectionAlt .second-news-section .listingDate {
  margin-bottom: 20px;
}
.featuredNewsSectionAlt .second-news-section .listingDate {
  font-size: 16px;
}
@media screen and (min-width: 320px) {
  .featuredNewsSectionAlt .second-news-section .listingDate {
    font-size: calc(16px + 0 * (100vw - 320px) / 1601);
  }
}
@media screen and (min-width: 1921px) {
  .featuredNewsSectionAlt .second-news-section .listingDate {
    font-size: 16px;
  }
}
.featuredNewsSectionAlt .second-news-section .listingDate {
  line-height: 16px;
}
@media screen and (min-width: 320px) {
  .featuredNewsSectionAlt .second-news-section .listingDate {
    line-height: calc(16px + 2 * (100vw - 320px) / 1601);
  }
}
@media screen and (min-width: 1921px) {
  .featuredNewsSectionAlt .second-news-section .listingDate {
    line-height: 18px;
  }
}
.featuredNewsSectionAlt .second-news-section .listingDate .type {
  color: #39c0f3;
}
.featuredNewsSectionAlt .second-news-section .listingTitle {
  margin-bottom: 20px;
}
.featuredNewsSectionAlt .second-news-section .listingTitle {
  font-size: 22px;
}
@media screen and (min-width: 320px) {
  .featuredNewsSectionAlt .second-news-section .listingTitle {
    font-size: calc(22px + 6 * (100vw - 320px) / 1601);
  }
}
@media screen and (min-width: 1921px) {
  .featuredNewsSectionAlt .second-news-section .listingTitle {
    font-size: 28px;
  }
}
.featuredNewsSectionAlt .second-news-section .listingTitle {
  line-height: 24px;
}
@media screen and (min-width: 320px) {
  .featuredNewsSectionAlt .second-news-section .listingTitle {
    line-height: calc(24px + 8 * (100vw - 320px) / 1601);
  }
}
@media screen and (min-width: 1921px) {
  .featuredNewsSectionAlt .second-news-section .listingTitle {
    line-height: 32px;
  }
}
.featuredNewsSectionAlt .second-news-section .listingDescription {
  color: #393938;
  font-weight: 500;
  letter-spacing: -0.412px;
}
.featuredNewsSectionAlt .second-news-section .listingDescription {
  font-size: 18px;
}
@media screen and (min-width: 320px) {
  .featuredNewsSectionAlt .second-news-section .listingDescription {
    font-size: calc(18px + 4 * (100vw - 320px) / 1601);
  }
}
@media screen and (min-width: 1921px) {
  .featuredNewsSectionAlt .second-news-section .listingDescription {
    font-size: 22px;
  }
}
.featuredNewsSectionAlt .second-news-section .listingDescription {
  line-height: 22px;
}
@media screen and (min-width: 320px) {
  .featuredNewsSectionAlt .second-news-section .listingDescription {
    line-height: calc(22px + 10 * (100vw - 320px) / 1601);
  }
}
@media screen and (min-width: 1921px) {
  .featuredNewsSectionAlt .second-news-section .listingDescription {
    line-height: 32px;
  }
}

footer {
  background: rgba(0, 192, 243, 0.27);
  padding: 50px 0;
}
footer .topFooter {
  display: flex;
  margin-bottom: 50px;
}
footer .topFooter .logoContainer {
  max-width: 310px;
  margin-bottom: 75px;
}
footer .topFooter .social h3 {
  margin-bottom: 10px;
}
footer .topFooter .social h3 {
  font-size: 22px;
}
@media screen and (min-width: 320px) {
  footer .topFooter .social h3 {
    font-size: calc(22px + 6 * (100vw - 320px) / 1601);
  }
}
@media screen and (min-width: 1921px) {
  footer .topFooter .social h3 {
    font-size: 28px;
  }
}
footer .topFooter .social h3 {
  line-height: 20px;
}
@media screen and (min-width: 320px) {
  footer .topFooter .social h3 {
    line-height: calc(20px + 25 * (100vw - 320px) / 1601);
  }
}
@media screen and (min-width: 1921px) {
  footer .topFooter .social h3 {
    line-height: 45px;
  }
}
footer .topFooter .social li {
  margin-bottom: 15px;
}
footer .topFooter .social li a {
  display: flex;
  gap: 10px;
}
footer .topFooter .social li a {
  font-size: 12px;
}
@media screen and (min-width: 320px) {
  footer .topFooter .social li a {
    font-size: calc(12px + 2 * (100vw - 320px) / 1601);
  }
}
@media screen and (min-width: 1921px) {
  footer .topFooter .social li a {
    font-size: 14px;
  }
}
footer .topFooter .social li a {
  line-height: 14px;
}
@media screen and (min-width: 320px) {
  footer .topFooter .social li a {
    line-height: calc(14px + 2 * (100vw - 320px) / 1601);
  }
}
@media screen and (min-width: 1921px) {
  footer .topFooter .social li a {
    line-height: 16px;
  }
}
footer .topFooter .social li img {
  width: auto;
}
footer .topFooter .social li:last-of-type {
  margin-bottom: 0;
}
footer .topFooter .menusMain {
  margin-left: 90px;
}
footer .topFooter .menusMain .row {
  width: 100%;
}
footer .topFooter .menusMain ul {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}
footer .topFooter .menusMain ul li a {
  color: black;
  display: inline-block;
  height: 26px;
}
footer .topFooter .menusMain ul li a:hover {
  color: #39c0f3;
}
footer .topFooter .menusMain .ddSecondLevel ul {
  flex-direction: column;
  margin-top: 5px;
  gap: 5px;
}
footer .topFooter .menusMain .ddSecondLevel ul li {
  height: unset;
  font-weight: normal;
}
footer .bottomFooter {
  display: flex;
  justify-content: space-between;
  align-items: end;
}
footer .bottomFooter .newsLetter h3 {
  font-size: 22px;
}
@media screen and (min-width: 320px) {
  footer .bottomFooter .newsLetter h3 {
    font-size: calc(22px + 6 * (100vw - 320px) / 1601);
  }
}
@media screen and (min-width: 1921px) {
  footer .bottomFooter .newsLetter h3 {
    font-size: 28px;
  }
}
footer .bottomFooter .newsLetter h3 {
  line-height: 20px;
}
@media screen and (min-width: 320px) {
  footer .bottomFooter .newsLetter h3 {
    line-height: calc(20px + 25 * (100vw - 320px) / 1601);
  }
}
@media screen and (min-width: 1921px) {
  footer .bottomFooter .newsLetter h3 {
    line-height: 45px;
  }
}
footer .bottomFooter .newsLetter p {
  font-weight: 500;
  letter-spacing: 0;
}
footer .bottomFooter .newsLetter p {
  font-size: 16px;
}
@media screen and (min-width: 320px) {
  footer .bottomFooter .newsLetter p {
    font-size: calc(16px + 0 * (100vw - 320px) / 1601);
  }
}
@media screen and (min-width: 1921px) {
  footer .bottomFooter .newsLetter p {
    font-size: 16px;
  }
}
footer .bottomFooter .newsLetter p {
  line-height: 24px;
}
@media screen and (min-width: 320px) {
  footer .bottomFooter .newsLetter p {
    line-height: calc(24px + 0 * (100vw - 320px) / 1601);
  }
}
@media screen and (min-width: 1921px) {
  footer .bottomFooter .newsLetter p {
    line-height: 24px;
  }
}
footer .bottomFooter .newsLetter .newsletterInputWrapper {
  margin-top: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  width: 450px;
}
footer .bottomFooter .newsLetter .newsletterInputWrapper input {
  border-radius: 30px;
  background-color: white;
  height: 48px;
  padding: 0 30px;
}
footer .bottomFooter .newsLetter .newsletterInputWrapper input {
  font-size: 18px;
}
@media screen and (min-width: 320px) {
  footer .bottomFooter .newsLetter .newsletterInputWrapper input {
    font-size: calc(18px + 0 * (100vw - 320px) / 1601);
  }
}
@media screen and (min-width: 1921px) {
  footer .bottomFooter .newsLetter .newsletterInputWrapper input {
    font-size: 18px;
  }
}
footer .bottomFooter .newsLetter .newsletterInputWrapper input::-moz-placeholder {
  color: #cacaca;
}
footer .bottomFooter .newsLetter .newsletterInputWrapper input::placeholder {
  color: #cacaca;
}
footer .bottomFooter .newsLetter .newsletterInputWrapper a {
    line-height: 26px;
    position: absolute;
    top: 50%;
    padding: 11px 40px;
    border-radius: 0px 30px 30px 0px;
    transform: translateY(-50%);
    right: 0;
    color: white;
    background-color: #39c0f3;
    font-weight: 500;
    transform: translateY(-50%);
    transition: all 0.3s ease-in-out;
}
footer .bottomFooter .newsLetter .newsletterInputWrapper a {
  font-size: 14px;
}
@media screen and (min-width: 320px) {
  footer .bottomFooter .newsLetter .newsletterInputWrapper a {
    font-size: calc(14px + 12 * (100vw - 320px) / 1601);
  }
}
@media screen and (min-width: 1921px) {
  footer .bottomFooter .newsLetter .newsletterInputWrapper a {
    font-size: 26px;
  }
}
footer .bottomFooter .newsLetter .newsletterInputWrapper a:hover {
  color: white !important;
  opacity: 0.8;
}
footer .bottomFooter .dev,
footer .bottomFooter .copyright {
  font-size: 12px;
}
@media screen and (min-width: 320px) {
  footer .bottomFooter .dev,
  footer .bottomFooter .copyright {
    font-size: calc(12px + 2 * (100vw - 320px) / 1601);
  }
}
@media screen and (min-width: 1921px) {
  footer .bottomFooter .dev,
  footer .bottomFooter .copyright {
    font-size: 14px;
  }
}
footer .bottomFooter .dev,
footer .bottomFooter .copyright {
  line-height: 20px;
}
@media screen and (min-width: 320px) {
  footer .bottomFooter .dev,
  footer .bottomFooter .copyright {
    line-height: calc(20px + 3 * (100vw - 320px) / 1601);
  }
}
@media screen and (min-width: 1921px) {
  footer .bottomFooter .dev,
  footer .bottomFooter .copyright {
    line-height: 23px;
  }
}

.loader {
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 999;
}
.loader:before {
  content: "";
  border: 10px solid #f3f3f3;
  border-top: 10px solid #39c0f3;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  animation: spin 2s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.error-text {
  display: inline-block;
  color: Red;
  position: absolute;
  top: 100%;
  inset-inline-end: 0;
  font-size: 14px;
  font-weight: 400;
}

.radioLabel {
  position: relative;
}

#newsletter-success {
  margin-bottom: 0;
}

.women-landing-page {
  background-image: url("../images/bahij-background.jpg");
  background-position: center;
  background-size: cover;
}
.women-landing-page * {
  font-family: "Bahij TheSansArabic Plain" !important;
}
.women-landing-page .container .row {
  --bs-gutter-x: 50px;
  min-height: 100vh;
  align-items: center;
}
.women-landing-page .flag-container .image-holder {
  position: relative;
  width: 80%;
  margin: auto;
}
.women-landing-page .flag-container .image-holder .loading-bar {
  width: 120%;
  height: 20%;
  background-color: #de1e30;
  position: absolute;
  inset-inline-start: 50%;
  top: 50%;
  transform: translate(-47%, -45%) rotate(-47deg);
}
.women-landing-page .flag-container .image-holder .loading-bar-2 {
  width: 120%;
  height: 20%;
  position: absolute;
  inset-inline-end: 50%;
  top: 50%;
  transform: translate(-47%, -45%) rotate(-47deg);
}
.women-landing-page .flag-container .image-holder .loading-bar-2 .track {
  position: relative;
  width: 100%;
  height: 100%;
}
.women-landing-page .flag-container .image-holder .loading-bar-2 .track .bar {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgb(222, 30, 48) 50%, rgba(222, 30, 48, 0.2) 100%);
}
.women-landing-page .flag-container .image-holder img {
  max-width: 100%;
}
.women-landing-page .flag-container .signature-container {
  margin-top: 50px;
  color: black;
  text-align: center;
}
.women-landing-page .flag-container .signature-container h3 {
  direction: ltr;
}
.women-landing-page .flag-container .signature-container h3 {
  font-size: 14px;
}
@media screen and (min-width: 320px) {
  .women-landing-page .flag-container .signature-container h3 {
    font-size: calc(14px + 13 * (100vw - 320px) / 1601);
  }
}
@media screen and (min-width: 1921px) {
  .women-landing-page .flag-container .signature-container h3 {
    font-size: 27px;
  }
}
.women-landing-page .form-container .section-intro {
  text-align: center;
  margin-bottom: 2rem;
}
.women-landing-page .form-container .section-intro .logo-holder {
  margin: auto;
  margin-bottom: 40px;
  width: 40%;
}
.women-landing-page .form-container .section-intro .logo-holder img {
  max-width: 100%;
}
.women-landing-page .form-container .section-intro .section-title {
  line-height: 1.2;
  color: black;
  font-weight: bold;
}
.women-landing-page .form-container .section-intro .section-title span {
  display: block;
}
.women-landing-page .form-container .section-intro .section-title span {
  font-size: 14px;
}
@media screen and (min-width: 320px) {
  .women-landing-page .form-container .section-intro .section-title span {
    font-size: calc(14px + 12 * (100vw - 320px) / 1601);
  }
}
@media screen and (min-width: 1921px) {
  .women-landing-page .form-container .section-intro .section-title span {
    font-size: 26px;
  }
}
.women-landing-page .form-container .form-container-campaign {
  width: 250px;
  margin: auto;
}
.women-landing-page .form-container .form-container-campaign .input-container {
  position: relative;
  margin-bottom: 7.5px;
}
.women-landing-page .form-container .form-container-campaign .input-container input {
  background-color: #cfcfcf;
  color: black;
  font-size: 14px;
  text-align: center;
  padding: 5px 10px;
  width: 100%;
  transition: 0.3s all;
}
.women-landing-page .form-container .form-container-campaign .input-container input:focus {
  background-color: #ededed;
}
.women-landing-page .form-container .form-container-campaign .button-container a {
  display: block;
  width: 100%;
  background-color: #ededed;
  color: black;
  font-size: 14px;
  line-height: 1.1;
  text-align: center;
  padding: 11px 10px;
  transition: 0.3s all;
}
.women-landing-page .form-container .form-container-campaign .button-container a:hover {
  background-color: #cfcfcf;
}
.women-landing-page .form-container .form-container-campaign .captcha-box {
  margin-top: 20px;
  height: 70px;
  padding: 0;
  margin-bottom: 20px;
}
.women-landing-page .form-container .form-container-campaign .captcha-box .input-container {
  padding: 0;
}
.women-landing-page .form-container .form-container-campaign .error {
  display: block;
  text-align: center;
  font-size: 12px;
  color: #de1e30;
}

@media screen and (max-width: 992px) {
  .women-landing-page .form-container .form-container-campaign {
    width: 100%;
    max-width: 304px;
  }
  .women-landing-page .form-container .form-container-campaign .input-container {
    padding: 0;
  }
}
@media screen and (max-width: 768px) {
  .women-landing-page .flag-container .image-holder .loading-bar {
    width: 100%;
  }
  .women-landing-page .offset-xl-2 {
    margin: 0;
  }
}
.women-landing-page-popup-container {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}
.women-landing-page-popup-container * {
  font-family: "Bahij TheSansArabic Plain" !important;
}
.women-landing-page-popup-container .overlay {
  background-color: rgba(0, 0, 0, 0.405);
  position: absolute;
  inset: 0;
}
.women-landing-page-popup-container .popup-container {
  background-image: url("../images/bahij-background.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 600px;
  max-width: 95%;
  max-height: 90vh;
  border-radius: 10px;
  padding: 3rem 1.5rem;
  position: relative;
}
.women-landing-page-popup-container .popup-container .close-container {
  width: 25px;
  height: 25px;
  position: absolute;
  inset-inline-end: 25px;
  top: 25px;
  cursor: pointer;
  transition: all 0.3s;
}
.women-landing-page-popup-container .popup-container .close-container:hover {
  opacity: 0.7;
}
.women-landing-page-popup-container .popup-container .close-container img {
  max-width: 100%;
}
.women-landing-page-popup-container .popup-container .row {
  --bs-gutter-y: 50px;
}
.women-landing-page-popup-container .popup-container .flag-container {
  margin-bottom: 20px;
}
.women-landing-page-popup-container .popup-container .flag-container .image-holder {
  max-width: 40%;
  margin: auto;
  position: relative;
}
.women-landing-page-popup-container .popup-container .flag-container .image-holder img {
  width: 100%;
  margin: auto;
  max-width: 100%;
}
.women-landing-page-popup-container .popup-container .flag-container .image-holder .loading-bar {
  width: 120%;
  height: 20%;
  background-color: #de1e30;
  position: absolute;
  inset-inline-end: 50%;
  top: 50%;
  transform: translate(-47%, -45%) rotate(-47deg);
}
.women-landing-page-popup-container .popup-container .form-container .section-intro {
  text-align: center;
}
.women-landing-page-popup-container .popup-container .form-container .section-intro .logo-holder {
  margin: auto;
  width: 150px;
}
.women-landing-page-popup-container .popup-container .form-container .section-intro .logo-holder img {
  max-width: 100%;
}
.women-landing-page-popup-container .popup-container .form-container .section-intro .section-title {
  line-height: 1.1;
  color: black;
  font-weight: bold;
  margin: 3rem 0;
}
.women-landing-page-popup-container .popup-container .form-container .section-intro .section-title span {
  display: block;
  margin-bottom: 10px;
}
.women-landing-page-popup-container .popup-container .form-container .section-intro .section-title span {
  font-size: 16px;
}
@media screen and (min-width: 320px) {
  .women-landing-page-popup-container .popup-container .form-container .section-intro .section-title span {
    font-size: calc(16px + 5 * (100vw - 320px) / 1601);
  }
}
@media screen and (min-width: 1921px) {
  .women-landing-page-popup-container .popup-container .form-container .section-intro .section-title span {
    font-size: 21px;
  }
}/*# sourceMappingURL=annahar-en.css.map */