html,
body {
  margin: 0;
  padding: 0;
}

/* ========== BUTTONS STYLE ========== */
.c-button {
  border: 1px solid transparent;
  box-shadow: 0 0 10px 0 transparent;
  cursor: pointer;
  display: inline-block;
  font: 500 1rem forma-djr-micro, Arial, sans-serif;
  outline: none;
  padding: 0 16px;
  position: relative;
  text-align: center;
  transition: color .2s linear, background-color .2s linear, border-color .2s linear, box-shadow .1s linear;
  vertical-align: middle;
  height: 33px;
  max-width: 100%;
  min-width: 57px;
  text-decoration: none !important;
  color: #fff;
  background: #165dba;
}

.c-button:hover {
  background: #5a5a5a;
}

.c-button.black-c {
  background: #000000;
}

.c-button-link-with-arrow.black-c,
.c-button-link.black-c {
  color: #000000;
}

.link-arrow-svg.black-c {
  fill: #000000;
}

.link-arrow-svg.white-c {
  fill: #FFFFFF;
}

.c-button-secondary-v2.white-c svg {
  fill: #FFFFFF;
}

.c-button-secondary-v2.white-c:after {
  background: #000000;
}

.c-button-secondary-v2.white-c .c-button__text p {
  color: #FFFFFF;
}

.c-button-secondary-v2.white-c.hover,
.c-button-secondary-v2.white-c:hover,
body:not(.c-mouse-event) .c-button-secondary-v2.white-c:focus {
  background: transparent;
  color: #FFF;
}

body:not(.c-mouse-event) .c-button-secondary-v2:focus {
  outline: none;
}

.c-button.transparent-c {
  color: #2c3038;
  border-color: #5a5a5a;
  background: transparent;
}

.c-button.transparent-c:hover {
  color: #FFFFFF;
  background-color: #000000;
}

.c-button.transparent-c-white {
  color: #FFFFFF;
  border-color: #FFFFFF;
  background: transparent;
}

.c-button.transparent-c-white:hover {
  color: #000000;
  background: #FFFFFF;
}

.c-button .c-button__text {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  width: 100%;
  height: 100%;
  line-height: 33px;
  max-width: 248px;
  display: block;
}

.c-button .c-button__text p {
  margin: 0 !important;
  line-height: 31px;
}

.c-button__text>* {
  overflow: hidden;
  text-overflow: ellipsis;
}

.c-button-link {
  border: 1px solid transparent;
  box-shadow: 0 0 10px 0 transparent;
  cursor: pointer;
  display: inline-block;
  font: 500 1rem forma-djr-micro, Arial, sans-serif;
  outline: none;
  position: relative;
  text-align: center;
  transition: color .2s linear, background-color .2s linear, border-color .2s linear, box-shadow .1s linear;
  vertical-align: middle;
  height: 33px;
  max-width: 100%;
  min-width: 57px;
  text-decoration: none !important;
  min-width: 0;
  padding: 0 3px;
  margin-left: -2px;
  margin-right: 2px;
  color: #165dba;
  background: transparent;
}

.c-button-link .c-button__text {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  width: 100%;
  height: 100%;
  line-height: 33px;
  max-width: 248px;
  display: block;
}

.c-button-link .c-button__text p {
  margin: 0 !important;
}

.c-button-link p,
.c-button p {
  line-height: 31px;
}

.c-button__text>* {
  overflow: hidden;
  text-overflow: ellipsis;
}

.c-button-link .c-button__text:after {
  content: "";
  position: absolute;
  width: 0;
  bottom: 4px;
  left: 0;
  transition: width .2s linear;
  height: 1px;
  border-bottom: 1px solid;
}

.c-button-link.hover .c-button__text:after,
.c-button-link:hover .c-button__text:after,
body:not(.c-mouse-event) .c-button-link:focus .c-button__text:after {
  width: 100%;
}

.c-button-secondary-v2 {
  border: 1px solid transparent;
  box-shadow: 0 0 10px 0 transparent;
  cursor: pointer;
  display: inline-block;
  font: 500 1rem forma-djr-micro, Arial, sans-serif;
  outline: none;
  position: relative;
  text-align: center;
  transition: color .2s linear, background-color .2s linear, border-color .2s linear, box-shadow .1s linear;
  vertical-align: middle;
  height: 33px;
  max-width: 100%;
  min-width: 57px;
  text-decoration: none !important;
  padding: 0 3px;
  margin-left: -3px;
  margin-right: 3px;
  text-align: left;
  color: #165dba;
  background: transparent;
}

.c-button-secondary-v2:before {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  border-bottom: 1px solid;
  left: 41px;
  width: 0;
  height: 1px;
  bottom: 4px;
  transition: width .2s linear;
  max-width: calc(100% - 44px);
}

.c-button-secondary-v2 .c-button__text {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  width: 100%;
  height: 100%;
  max-width: 248px;
  display: block;
}

.c-button-secondary-v2 svg {
  position: absolute;
  top: 0.5px;
  left: 3px;
  z-index: 1;
  width: 30px;
  height: 30px;
  transition: fill .3s ease;
}

.c-button-secondary-v2:after {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  position: absolute;
  left: 8px;
  top: 6px;
  border-radius: 100%;
  transition: background-color .2s linear;
}

.c-button-secondary-v2.hover:before,
.c-button-secondary-v2:hover:before,
body:not(.c-mouse-event) .c-button-secondary-v2:focus:before {
  width: 100%;
}

.c-button-secondary-v2 .c-button__text {
  padding-left: 38px;
  line-height: 33px;
}

.c-button-secondary-v2 .c-button__text span {
  margin: 0 !important;
}

.c-button__text>* {
  overflow: hidden;
  text-overflow: ellipsis;
}

.c-button-link-with-arrow {
  box-shadow: 0 0 10px 0 transparent;
  cursor: pointer;
  display: inline-block;
  font: 500 1rem forma-djr-micro, Arial, sans-serif;
  outline: none;
  position: relative;
  text-align: center;
  transition: color .2s linear, background-color .2s linear, border-color .2s linear, box-shadow .1s linear;
  vertical-align: middle;
  height: 33px;
  max-width: 100%;
  min-width: 57px;
  text-decoration: none !important;
  min-width: 0;
  border: 1px solid transparent;
  border-left-width: 3px;
  padding: 0 16px 0 0;
  margin-left: -3px;
  margin-right: 3px;
  color: #165dba;
  background: transparent;
}


.c-button-link-with-arrow .c-button__text {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  width: 100%;
  height: 100%;
  line-height: 33px;
  max-width: 248px;
  display: block;
  position: relative;
}

.c-button-link-with-arrow .c-button__text:after {
  content: "";
  position: absolute;
  width: 0;
  bottom: 4px;
  left: 0;
  transition: width .2s linear;
  height: 1px;
}

.c-button-link-with-arrow svg {
  position: absolute;
  top: 4px;
  right: 3px;
  fill: #165dba;
}

.c-button-link-with-arrow.hover:before,
.c-button-link-with-arrow:hover:before,
body:not(.c-mouse-event) .cc-button-link-with-arrow:focus:before {
  width: 100%;
}

.c-button:hover {
  background: #3e3e3e !important;
}

/*  ============ HEADING AND BODY TEXT SYLTE ========= */

.subtitle {
  font-size: 20px;
  line-height: 28px;
  font-family: forma-djr-micro, Arial, sans-serif;
  font-weight: 400;
  font-style: normal;
  margin: 0px 0px 0px 0px !important;
}


.body-regular {
  font-size: 16px;
  line-height: 22px;
  font-family: forma-djr-micro, Arial, sans-serif;
  font-weight: 400;
  font-style: normal;
  margin: 0px 0px 0px 0px !important;
}


.noti-wrapper {
  max-width: 100%;
  width: 100%;
  padding: 7px;
}

.noti-wrapper .noti-inner {
  width: 100%;
  margin: 0 auto;
}

.noti-wrapper a .noti-inner {
  position: relative;
}

.noti-wrapper a .noti-inner ul {
  margin: 0px auto;
  padding: 0px;
  text-align: center;
  display: table;
}

.noti-wrapper a .noti-inner ul li {
  display: table-cell;
  vertical-align: middle;
  margin: 0;
}

.noti-wrapper a .noti-inner ul li div {
  padding: 0px 30px;
}

.noti-wrapper a {
  display: block;
  text-decoration: none !important;
}

.noti-wrapper a .noti-inner ul li .main-title {
  padding-right: 30px;
  padding-left: 20px;
}

.noti-wrapper a .noti-inner ul li .main-title p {
  text-decoration: none !important;
  color: #FFFFFF !important;
  text-align: left;
  margin: 0px;
  font-weight: 500;
}

.noti-wrapper a .noti-inner ul li .main-desc {
  max-width: 680px;
  padding-right: 20px;
  padding-left: 20px;
}

.noti-wrapper a .noti-inner ul li .main-desc p {
  text-decoration: none !important;
  color: #FFFFFF !important;
  text-align: left;
  margin: 0px;
}

.mobile-btn {
  align-items: center;
  display: flex;
  justify-content: center;
  padding: 8px;
  background-color: transparent;
  border: none;
}

.mobile-btn .mobile-btn-arrow {
  background-color: transparent;
  height: 12px;
  width: 12px;
}

.mobile-btn .mobile-btn-arrow.right-arrow {
  border-right: 2px solid rgba(255, 255, 255, 1);
  border-top: 2px solid rgba(255, 255, 255, 1);
  transform: translateX(-25%) rotate(45deg);
}

.main-cta button,
.main-cta button:hover {
  border: none !important;
  border-radius: 0px;
}

.show-in-mobile {
  display: none;
}

.hidden-text {
  display: none;
}

.mobile-btn {
  display: none !important;
}

#wrapper-featured-slider {
  width: 100%;
  height: 46px;
  overflow: hidden;
  position: relative;
}

#noti-slider {
  width: 100%;
  height: 46px;
  position: absolute;
  top: 0px;
  left: 0px;
}

.noti-slide {
  width: 100%;
  height: 46px;
  position: relative;
}

@media screen and (max-width: 991px) {
  .main-desc p {
    font-size: 14px;
  }

  .noti-wrapper a .noti-inner ul li .main-title p {
    font-size: 18px;
  }

  .noti-btn-desktop {
    display: none !important;
  }

  .mobile-btn {
    display: block !important;
  }

  .noti-wrapper a .noti-inner ul li div {
    padding: 0px;
  }

  .mobile-btn {
    border-radius: 100% 100% !important;
    width: 35px;
    height: 35px;
    background-color: #000000;
    padding: 10px;
  }
}

@media screen and (max-width: 768px) {
  .show-in-mobile {
    display: block;
  }

  .noti-btn-desktop {
    display: none !important;
  }

  .mobile-btn {
    display: block !important;
  }

  .noti-wrapper a .noti-inner ul li .main-desc {
    max-width: 290px;
  }

}

@media screen and (max-width: 650px) {

  .noti-btn-desktop {
    display: none;
  }

  .noti-wrapper a .noti-inner ul li:first-child {
    display: none;
  }

  .noti-wrapper a .noti-inner ul li .main-desc {
    padding: 0px;
  }

  .noti-wrapper a .noti-inner ul li .main-desc p {
    font-size: 13px;
    font-weight: 500;
    margin: 0px;
    padding-right: 20px;
    line-height: 20px;
  }

  .noti-wrapper a .noti-inner ul li div {
    padding: 0;
  }

  #wrapper-featured-slider {
    height: 56px;
  }
}

@media screen and (max-width: 350px) {
  .noti-wrapper a .noti-inner ul li .main-desc {
    max-width: 235px;
  }
}
