@keyframes modal-video {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes modal-video-inner {
  from {
    transform: translate(0, 100px);
  }
  to {
    transform: translate(0, 0);
  }
}
.modal-video {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.75);
  z-index: 1000000;
  cursor: pointer;
  opacity: 0;
  animation-timing-function: ease-out;
  animation-duration: 0.3s;
  animation-name: modal-video;
  -webkit-transition: opacity 0.3s ease-out;
  -moz-transition: opacity 0.3s ease-out;
  -ms-transition: opacity 0.3s ease-out;
  -o-transition: opacity 0.3s ease-out;
  transition: opacity 0.3s ease-out;
}
.modal-video .modal-video-movie-wrap {
  -webkit-transform: translate(0, 100px);
  -moz-transform: translate(0, 100px);
  -ms-transform: translate(0, 100px);
  -o-transform: translate(0, 100px);
  transform: translate(0, 100px);
}
.modal-video.active {
  display: block;
  opacity: 1;
}
.modal-video.active .modal-video-movie-wrap {
  width: 100%;
  height: 0;
  position: relative;
  padding-bottom: 56.25%;
  background-color: #333333;
  animation-timing-function: ease-out;
  animation-duration: 0.3s;
  animation-name: modal-video-inner;
  -webkit-transform: translate(0, 0);
  -moz-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  -o-transform: translate(0, 0);
  transform: translate(0, 0);
  -webkit-transition: -webkit-transform 0.3s ease-out;
  -moz-transition: -moz-transform 0.3s ease-out;
  -ms-transition: -ms-transform 0.3s ease-out;
  -o-transition: -o-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
}
.modal-video.active .modal-video-movie-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.modal-video-close {
  opacity: 0;
}
.modal-video-close .modal-video-movie-wrap {
  -webkit-transform: translate(0, 100px);
  -moz-transform: translate(0, 100px);
  -ms-transform: translate(0, 100px);
  -o-transform: translate(0, 100px);
  transform: translate(0, 100px);
}
.modal-video-body {
  max-width: 940px;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  display: table;
}
.modal-video-inner {
  display: table-cell;
  vertical-align: middle;
  width: 100%;
  height: 100%;
}
.modal-video-close-btn {
  position: absolute;
  z-index: 2;
  top: -35px;
  right: 0;
  display: inline-block;
  width: 35px;
  height: 35px;
  padding: 0;
  overflow: hidden;
  border: none;
  background: transparent;
}
.modal-video-close-btn:before {
  transform: rotate(45deg);
}
.modal-video-close-btn:after {
  transform: rotate(-45deg);
}
.modal-video-close-btn:before,
.modal-video-close-btn:after {
  content: '';
  position: absolute;
  height: 2px;
  width: 100%;
  top: 50%;
  left: 0;
  margin-top: -1px;
  background: #fff;
  border-radius: 5px;
  margin-top: -6px;
}
/* Landscape */
@media only screen and (min-device-width: 320px) and (max-device-width: 768px) and (orientation: landscape) {
  .atvi-video .player {
    height: 100vh;
  }
  .modal-video-close-btn {
    top: 0;
    background-color: gray;
  }
  .modal-video-close-btn:before,
  .modal-video-close-btn:after {
    margin-top: -1px;
  }
}
/*
.atvi-modal {
  display: none;
  opacity: 0;
  -webkit-transition: opacity 0.5s ease;
  -moz-transition: opacity 0.5s ease;
  -ms-transition: opacity 0.5s ease;
  -o-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
}
.atvi-modal.active {
  display: block;
  opacity: 1;
}
.atvi-modal .background-container {
  position: fixed;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  top: 0;
  left: 0;
  z-index: 9999;
}
.atvi-modal .button-container.close {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 10000;
  text-indent: 102%;
  white-space: nowrap;
  overflow: hidden;
  display: block;
  letter-spacing: 0;
}
.atvi-modal .button-container.close a {
  padding: 13px 20px;
  transition: all .2s;
  position: relative;
  width: fit-content;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  border-top: 2px solid #cdc4bd;
  border-bottom: 2px solid #cdc4bd;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  justify-content: center;
  cursor: pointer;
  background-color: #e5e3e3;
  width: 60px;
  height: 60px;
  padding: 0px;
  text-indent: 102%;
  white-space: nowrap;
  overflow: hidden;
  display: block;
  letter-spacing: 0;
}
.atvi-modal .button-container.close a a {
  text-decoration: none;
}
.atvi-modal .button-container.close a:after {
  width: 10px;
  font-family: "Alegreya Sans", sans-serif;
  font-size: 10px;
  display: block;
  position: absolute;
  top: 5px;
  right: 5px;
  color: #66615c;
}
.atvi-modal .button-container.close a:before,
.atvi-modal .button-container.close a:after {
  content: "";
  display: block;
  height: 1px;
  width: 30px;
  position: absolute;
  background-color: #597985;
  left: calc(50% - 15px);
  top: 50%;
  transition: all ease .2s;
}
.atvi-modal .button-container.close a:before {
  transform: rotate(45deg);
}
.atvi-modal .button-container.close a:after {
  transform: rotate(-45deg);
}
.atvi-modal > .inner {
  width: 100%;
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 10000;
}
.atvi-modal > .inner .modal-content-container .external-link-overlay {
  display: none;
}
.atvi-modal > .inner .modal-content-container .controls {
  position: relative;
}
.atvi-modal > .inner .modal-content-container .controls .controls-container {
  display: block;
}
.atvi-modal img {
  width: 100%;
}
*/
/*
.atvi-modal {
  display: none;
  opacity: 0;
  -webkit-transition: opacity 0.5s ease;
  -moz-transition: opacity 0.5s ease;
  -ms-transition: opacity 0.5s ease;
  -o-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
}
.atvi-modal.active {
  display: block;
  opacity: 1;
}
.atvi-modal .background-container {
  position: fixed;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  top: 0;
  left: 0;
  z-index: 9999;
}
.atvi-modal .button-container.close {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 10000;
  text-indent: 102%;
  white-space: nowrap;
  overflow: hidden;
  display: block;
  letter-spacing: 0;
}
.atvi-modal .button-container.close a {
  padding: 13px 20px;
  transition: all .2s;
  position: relative;
  width: fit-content;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  border-top: 2px solid #cdc4bd;
  border-bottom: 2px solid #cdc4bd;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  justify-content: center;
  cursor: pointer;
  background-color: #e5e3e3;
  width: 60px;
  height: 60px;
  padding: 0px;
  text-indent: 102%;
  white-space: nowrap;
  overflow: hidden;
  display: block;
  letter-spacing: 0;
}
.atvi-modal .button-container.close a a {
  text-decoration: none;
}
.atvi-modal .button-container.close a:after {
  width: 10px;
  font-family: "Alegreya Sans", sans-serif;
  font-size: 10px;
  display: block;
  position: absolute;
  top: 5px;
  right: 5px;
  color: #66615c;
}
.atvi-modal .button-container.close a:before,
.atvi-modal .button-container.close a:after {
  content: "";
  display: block;
  height: 1px;
  width: 30px;
  position: absolute;
  background-color: #597985;
  left: calc(50% - 15px);
  top: 50%;
  transition: all ease .2s;
}
.atvi-modal .button-container.close a:before {
  transform: rotate(45deg);
}
.atvi-modal .button-container.close a:after {
  transform: rotate(-45deg);
}
.atvi-modal > .inner {
  width: 100%;
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 10000;
}
.atvi-modal > .inner .modal-content-container .external-link-overlay {
  display: none;
}
.atvi-modal > .inner .modal-content-container .controls {
  position: relative;
}
.atvi-modal > .inner .modal-content-container .controls .controls-container {
  display: block;
}
.atvi-modal img {
  width: 100%;
}
*/

@import url('https://fonts.googleapis.com/css?family=Arvo|Electrolize|Montserrat|Open+Sans|Open+Sans+Condensed:300');
@import url('https://fonts.googleapis.com/css?family=Oswald:300,400,600&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:100,200,300,400,700');
@import url('https://fonts.googleapis.com/css?family=Alegreya+Sans:700,800,900');
@import url('https://fonts.googleapis.com/css?family=Open+Sans+Condensed:300,700&display=swap');
@import url('https://fonts.googleapis.com/css?family=Montserrat:400,600&display=swap');
/*  COLORS
 ************/
/* 2021 FONTS AND TYPOGRAPHY
 *******************************/
/*  UI ELEMENTS 
 *****************/
.icon-crosshair {
  position: relative;
  display: block;
  box-sizing: border-box;
  background: currentColor;
}
.icon-crosshair::after {
  display: block;
  box-sizing: border-box;
  background: currentColor;
  content: "";
  position: absolute;
  width: 2px;
  height: 12px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.icon-crosshair::before {
  display: block;
  box-sizing: border-box;
  background: currentColor;
  content: "";
  position: absolute;
  width: 12px;
  height: 2px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
/* MIXINs */
/* CLASSES */
.row {
  display: flex;
  flex-wrap: wrap;
}
.row > * {
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
}
.col {
  flex: 1 0 0%;
}
.row-cols-auto > * {
  flex: 0 0 auto;
  width: auto;
}
.row-cols-1 > * {
  flex: 0 0 auto;
  width: 100%;
}
.row-cols-2 > * {
  flex: 0 0 auto;
  width: 50%;
}
.row-cols-3 > * {
  flex: 0 0 auto;
  width: 33.3333333333%;
}
.row-cols-4 > * {
  flex: 0 0 auto;
  width: 25%;
}
.row-cols-5 > * {
  flex: 0 0 auto;
  width: 20%;
}
.row-cols-6 > * {
  flex: 0 0 auto;
  width: 16.6666666667%;
}
.col-auto {
  flex: 0 0 auto;
  width: auto;
}
.col-1 {
  flex: 0 0 auto;
  width: 8.3333333333%;
}
.col-2 {
  flex: 0 0 auto;
  width: 16.6666666667%;
}
.col-3 {
  flex: 0 0 auto;
  width: 25%;
}
.col-4 {
  flex: 0 0 auto;
  width: 33.3333333333%;
}
.col-5 {
  flex: 0 0 auto;
  width: 41.6666666667%;
}
.col-6 {
  flex: 0 0 auto;
  width: 50%;
}
.col-7 {
  flex: 0 0 auto;
  width: 58.3333333333%;
}
.col-8 {
  flex: 0 0 auto;
  width: 66.6666666667%;
}
.col-9 {
  flex: 0 0 auto;
  width: 75%;
}
.col-10 {
  flex: 0 0 auto;
  width: 83.3333333333%;
}
.col-11 {
  flex: 0 0 auto;
  width: 91.6666666667%;
}
.col-12 {
  flex: 0 0 auto;
  width: 100%;
}
@media (min-width: 425px) {
  .col-sm {
    flex: 1 0 0%;
  }
  .row-cols-sm-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-sm-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-sm-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-sm-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-sm-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-sm-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-sm-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-sm-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-sm-1 {
    flex: 0 0 auto;
    width: 8.3333333333%;
  }
  .col-sm-2 {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-sm-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-sm-4 {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .col-sm-5 {
    flex: 0 0 auto;
    width: 41.6666666667%;
  }
  .col-sm-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-sm-7 {
    flex: 0 0 auto;
    width: 58.3333333333%;
  }
  .col-sm-8 {
    flex: 0 0 auto;
    width: 66.6666666667%;
  }
  .col-sm-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-sm-10 {
    flex: 0 0 auto;
    width: 83.3333333333%;
  }
  .col-sm-11 {
    flex: 0 0 auto;
    width: 91.6666666667%;
  }
  .col-sm-12 {
    flex: 0 0 auto;
    width: 100%;
  }
}
@media (min-width: 768px) {
  .col-md {
    flex: 1 0 0%;
  }
  .row-cols-md-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-md-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-md-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-md-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-md-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-md-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-md-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-md-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-md-1 {
    flex: 0 0 auto;
    width: 8.3333333333%;
  }
  .col-md-2 {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-md-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-md-4 {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .col-md-5 {
    flex: 0 0 auto;
    width: 41.6666666667%;
  }
  .col-md-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-md-7 {
    flex: 0 0 auto;
    width: 58.3333333333%;
  }
  .col-md-8 {
    flex: 0 0 auto;
    width: 66.6666666667%;
  }
  .col-md-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-md-10 {
    flex: 0 0 auto;
    width: 83.3333333333%;
  }
  .col-md-11 {
    flex: 0 0 auto;
    width: 91.6666666667%;
  }
  .col-md-12 {
    flex: 0 0 auto;
    width: 100%;
  }
}
@media (min-width: 1024px) {
  .col-lg {
    flex: 1 0 0%;
  }
  .row-cols-lg-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-lg-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-lg-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-lg-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-lg-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-lg-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-lg-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-lg-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-lg-1 {
    flex: 0 0 auto;
    width: 8.3333333333%;
  }
  .col-lg-2 {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-lg-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-lg-4 {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .col-lg-5 {
    flex: 0 0 auto;
    width: 41.6666666667%;
  }
  .col-lg-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-lg-7 {
    flex: 0 0 auto;
    width: 58.3333333333%;
  }
  .col-lg-8 {
    flex: 0 0 auto;
    width: 66.6666666667%;
  }
  .col-lg-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-lg-10 {
    flex: 0 0 auto;
    width: 83.3333333333%;
  }
  .col-lg-11 {
    flex: 0 0 auto;
    width: 91.6666666667%;
  }
  .col-lg-12 {
    flex: 0 0 auto;
    width: 100%;
  }
}
/*.tag-list {
    display: none !important;
}*/
#cq-sk,
#CQ,
#CQ DIV,
#CQ OL,
#CQ UL,
#CQ FORM,
#CQ P {
  display: none !important;
}
body > .root > .aem-Grid > .experiencefragment:last-of-type {
  margin-top: 0px !important;
}
.cod-header-container .cod-global-header .cod-global-header-right .cod-purchase a,
.cod-header-container .mobile-header .mobile-top-nav .cod-purchase a {
  padding: 13px 20px;
  transition-property: text-shadow, background-color, border, color;
  transition-duration: 1s;
  position: relative;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: bold;
  font-family: 'Montserrat', sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.15;
  text-transform: uppercase;
  width: fit-content;
  text-decoration: none;
  text-shadow: 0px 0px 0px #e1d297;
  background-color: #242424;
  box-shadow: inset 0px 0px 5px #857a59;
  background: url('../../../../../../content/dam/atvi/callofduty/cod-touchui/kronos/common/ui-elements/btn-bg-gold-tile.jpg') center center !important;
  background-size: 2px;
  box-shadow: inset 0px 0px 5px #b59228;
  border: 1px solid #d0a137;
  padding: 17px 20px !important;
  font-size: 13px !important;
}
.cod-header-container .cod-global-header .cod-global-header-right .cod-purchase a a,
.cod-header-container .mobile-header .mobile-top-nav .cod-purchase a a {
  color: #FFF;
  text-decoration: none;
  font-weight: bold;
}
.cod-header-container .cod-global-header .cod-global-header-right .cod-purchase a:after,
.cod-header-container .mobile-header .mobile-top-nav .cod-purchase a:after,
.cod-header-container .cod-global-header .cod-global-header-right .cod-purchase a:before,
.cod-header-container .mobile-header .mobile-top-nav .cod-purchase a:before {
  width: 100%;
  content: "";
  height: 2px;
  display: block;
  position: absolute;
  background: linear-gradient(to right, rgba(253, 217, 150, 0.5), #ffc558 20%, #ffc558 80%, rgba(253, 217, 150, 0.5)) center center;
  transition: all ease .8s;
  transform: scaleX(0);
  top: -1px;
  left: 0;
}
.cod-header-container .cod-global-header .cod-global-header-right .cod-purchase a:after,
.cod-header-container .mobile-header .mobile-top-nav .cod-purchase a:after {
  bottom: -1px;
  top: initial;
}
.cod-header-container .cod-global-header .cod-global-header-right .cod-purchase a:before,
.cod-header-container .mobile-header .mobile-top-nav .cod-purchase a:before {
  color: #b6bec0;
  text-shadow: 0px 0px 10px #ffffff;
}
.cod-header-container .cod-global-header .cod-global-header-right .cod-purchase a:hover,
.cod-header-container .mobile-header .mobile-top-nav .cod-purchase a:hover {
  background-color: #282828;
  text-shadow: 0px 0px 10px #ffeec8;
  color: #ffeec8;
}
.cod-header-container .cod-global-header .cod-global-header-right .cod-purchase a:hover:after,
.cod-header-container .mobile-header .mobile-top-nav .cod-purchase a:hover:after,
.cod-header-container .cod-global-header .cod-global-header-right .cod-purchase a:hover:before,
.cod-header-container .mobile-header .mobile-top-nav .cod-purchase a:hover:before {
  -webkit-transition: all ease 0.8s;
  -moz-transition: all ease 0.8s;
  -ms-transition: all ease 0.8s;
  -o-transition: all ease 0.8s;
  transition: all ease 0.8s;
  transform: scaleX(1);
  box-shadow: 0px 0px 10px;
}
.cod-header-container .cod-game-header .cod-game-header-left .logo ul li.vgd-link .link-icon {
  height: 40px;
}
.atvi-video .agegate h2.dob-prompt {
  color: #FFF;
  text-transform: uppercase;
}
.atvi-video .agegate .submit-wrapper a {
  background-color: #FFF;
  color: #000;
  text-transform: uppercase;
}
.cod-global-footer:before {
  display: none !important;
}
.cod-global-footer .footer-links a:hover,
.cod-global-footer .footer-links a:focus {
  color: #ffffff;
}
.cod-global-footer #ot-sdk-btn.ot-sdk-show-settings,
.cod-global-footer #ot-sdk-btn.optanon-show-settings {
  margin: 0 auto;
}
body {
  overflow-x: hidden;
  font-family: 'Open Sans Condensed', sans-serif;
  font-size: 14px;
  font-weight: 400;
  background: #fdfdfd;
  color: #000000;
}
i {
  font-style: italic;
}
a {
  color: #000000;
  text-decoration: none;
}
a:hover,
a:focus {
  color: #b4afa6;
}
button,
.btn {
  /**
     * Undo the above focused button styles when the element received focus
     * via mouse click or touch, but not keyboard navigation.
    */
  font-family: "Open Sans Condensed", Verdana, Arial, Helvetica, sans-serif;
  font-weight: bold;
  font-family: 'Open Sans Condensed', sans-serif;
  font-style: normal;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  padding: 1rem 2rem;
  margin: 0;
  text-decoration: none;
  background: transparent;
  color: #fafafa;
  font-size: 18px;
  letter-spacing: 1px;
  cursor: pointer;
  text-align: center;
  transition: background 250ms ease-in-out, transform 150ms ease;
  -webkit-appearance: none;
  -moz-appearance: none;
  /**
     * Undo the above focused button styles when the element received focus
     * via mouse click or touch, but not keyboard navigation.
    */
}
button:not(.outline),
.btn:not(.outline) {
  border: 1px solid transparent;
}
button:hover,
.btn:hover {
  text-decoration: none;
}
button[disabled],
.btn[disabled],
button.disabled,
.btn.disabled {
  opacity: 0.5;
  pointer-events: none;
}
button:focus,
.btn:focus {
  outline: 0;
  border-radius: 3px;
  box-shadow: 0 0 0 2px #000;
}
button:focus:not(:focus-visible),
.btn:focus:not(:focus-visible) {
  outline: 0 !important;
  border-radius: 0;
  box-shadow: none !important;
}
button.notch-br,
.btn.notch-br {
  clip-path: polygon(0 0, 100% 0%, 100% calc(100% - 24px), calc(100% - 24px) 100%, 0 100%);
}
button .icon,
.btn .icon {
  display: none;
}
button.icon-arrows,
.btn.icon-arrows {
  justify-content: space-between;
}
button.icon-arrows .icon,
.btn.icon-arrows .icon {
  background: url("data:image/svg+xml;charset=utf8,%3Csvg id='selector-arrows' width='18' height='14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg stroke='%23F3F3F3'%3E%3Cpath d='M1 6l8 7 8-7'/%3E%3Cpath d='M1 1l8 7 8-7'/%3E%3C/g%3E%3C/svg%3E") no-repeat center center;
  background-size: contain;
  width: 20px;
  height: 20px;
  display: inline-block;
  float: right;
  margin-left: 30px;
}
button:not(.outline),
.btn:not(.outline) {
  border: 1px solid transparent;
}
button:hover,
.btn:hover {
  text-decoration: none;
}
button[disabled],
.btn[disabled],
button.disabled,
.btn.disabled {
  opacity: 0.5;
  pointer-events: none;
}
button:focus,
.btn:focus {
  outline: 0;
  border-radius: 3px;
  box-shadow: 0 0 0 2px #000;
}
button:focus:not(:focus-visible),
.btn:focus:not(:focus-visible) {
  outline: 0 !important;
  border-radius: 0;
  box-shadow: none !important;
}
button.notch-br,
.btn.notch-br {
  clip-path: polygon(0 0, 100% 0%, 100% calc(100% - 24px), calc(100% - 24px) 100%, 0 100%);
}
button .icon,
.btn .icon {
  display: none;
}
button.icon-arrows,
.btn.icon-arrows {
  justify-content: space-between;
}
button.icon-arrows .icon,
.btn.icon-arrows .icon {
  background: url("data:image/svg+xml;charset=utf8,%3Csvg id='selector-arrows' width='18' height='14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg stroke='%23F3F3F3'%3E%3Cpath d='M1 6l8 7 8-7'/%3E%3Cpath d='M1 1l8 7 8-7'/%3E%3C/g%3E%3C/svg%3E") no-repeat center center;
  background-size: contain;
  width: 20px;
  height: 20px;
  display: inline-block;
  float: right;
  margin-left: 30px;
}
button-black,
.btn-black {
  color: #fafafa;
}
button-black span.base,
.btn-black span.base {
  border: 1px solid transparent;
}
button[disabled] {
  opacity: 0.5;
  pointer-events: none;
}
img {
  vertical-align: middle;
}
sup {
  vertical-align: super;
  font-size: 45%;
}
.visually-hidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Open Sans Condensed", Verdana, Arial, Helvetica, sans-serif;
  font-weight: bold;
  font-family: 'Open Sans Condensed', sans-serif;
  font-style: normal;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 14px;
}
h1 {
  font-size: 100px;
}
h2 {
  font-size: 40px;
}
h3 {
  font-size: 32px;
}
h4 {
  font-size: 24px;
}
.bg-dark {
  background: #000000;
  color: #fafafa;
}
.bg-dark a {
  color: #fafafa;
}
.bg-dark a:hover,
.bg-dark a:focus {
  color: #b4afa6;
}
.bg-light {
  background: #fdfdfd;
  color: #000000;
}
.underline-light {
  background: linear-gradient(to top, transparent 18px, #ffffff 18px 34px, 34px, transparent);
}
.underline-dark {
  background: linear-gradient(to top, transparent 18px, #000000 18px 34px, 34px, transparent);
}
.card-xl,
.card-lg,
.card-md,
.card-sm,
.card-horiz,
.card {
  font-family: "Open Sans Condensed", Verdana, Arial, Helvetica, sans-serif;
  font-weight: bold;
  font-family: 'Open Sans Condensed', sans-serif;
  font-style: normal;
  font-weight: 700;
  text-transform: uppercase;
}
.card-xl .eyebrow,
.card-lg .eyebrow,
.card-md .eyebrow,
.card-sm .eyebrow,
.card-horiz .eyebrow,
.card .eyebrow {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: bold;
  font-family: 'Montserrat', sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 1px;
}
.card-xl .title h2,
.card-lg .title h2,
.card-md .title h2,
.card-sm .title h2,
.card-horiz .title h2,
.card .title h2 {
  font-size: 24px;
  letter-spacing: -0.2px;
}
.card-xl .tag-list li,
.card-lg .tag-list li,
.card-md .tag-list li,
.card-sm .tag-list li,
.card-horiz .tag-list li,
.card .tag-list li {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: bold;
  font-family: 'Montserrat', sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 9px;
  letter-spacing: 0.5px;
}
@media (min-width: 768px) {
  .card-xl .title h2,
  .card-lg .title h2 {
    font-size: 40px;
    letter-spacing: -0.5px;
  }
}
.card-xl,
.card-lg,
.card-md,
.card-sm,
.card-horiz,
.card {
  padding-top: 45px;
}
.card-xl .card-inner,
.card-lg .card-inner,
.card-md .card-inner,
.card-sm .card-inner,
.card-horiz .card-inner,
.card .card-inner {
  position: relative;
}
.card-xl .flag-overlay,
.card-lg .flag-overlay,
.card-md .flag-overlay,
.card-sm .flag-overlay,
.card-horiz .flag-overlay,
.card .flag-overlay {
  position: absolute;
  top: -45px;
  left: 0;
  display: flex;
  align-items: center;
  z-index: 1;
  width: 260px;
  height: 44px;
  background: linear-gradient(270deg, rgba(18, 18, 18, 0.0001) 0%, #121212 32.31%);
  padding-left: 30px;
}
.card-xl .flag-overlay h1,
.card-lg .flag-overlay h1,
.card-md .flag-overlay h1,
.card-sm .flag-overlay h1,
.card-horiz .flag-overlay h1,
.card .flag-overlay h1 {
  font-size: 28px;
}
@media (min-width: 1024px) {
  .card-xl .flag-overlay,
  .card-lg .flag-overlay,
  .card-md .flag-overlay,
  .card-sm .flag-overlay,
  .card-horiz .flag-overlay,
  .card .flag-overlay {
    top: -1px;
  }
}
@media (min-width: 1024px) {
  .card-xl,
  .card-lg,
  .card-md,
  .card-sm,
  .card-horiz,
  .card {
    padding-top: 0px;
  }
}
.card-xl ul.icon-list,
.card-lg ul.icon-list,
.card-md ul.icon-list,
.card-sm ul.icon-list,
.card-horiz ul.icon-list,
.card ul.icon-list {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  position: absolute;
  bottom: 0;
  left: 0;
}
.card-xl ul.icon-list > li,
.card-lg ul.icon-list > li,
.card-md ul.icon-list > li,
.card-sm ul.icon-list > li,
.card-horiz ul.icon-list > li,
.card ul.icon-list > li {
  width: 41px;
  height: 41px;
  position: relative;
  margin-right: 1px;
  padding: 0;
  background-color: #c6c8c0;
}
.card-xl ul.icon-list > li .logo-icon,
.card-lg ul.icon-list > li .logo-icon,
.card-md ul.icon-list > li .logo-icon,
.card-sm ul.icon-list > li .logo-icon,
.card-horiz ul.icon-list > li .logo-icon,
.card ul.icon-list > li .logo-icon {
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.card-xl .graphics,
.card-lg .graphics,
.card-md .graphics,
.card-sm .graphics,
.card-horiz .graphics,
.card .graphics {
  position: relative;
}
.card-xl .graphics .bg,
.card-lg .graphics .bg,
.card-md .graphics .bg,
.card-sm .graphics .bg,
.card-horiz .graphics .bg,
.card .graphics .bg {
  position: relative;
}
.card-xl .graphics .bg:before,
.card-lg .graphics .bg:before,
.card-md .graphics .bg:before,
.card-sm .graphics .bg:before,
.card-horiz .graphics .bg:before,
.card .graphics .bg:before {
  display: block;
  content: "";
  width: 100%;
  height: 0;
  padding-top: 56.25%;
}
.card-xl .graphics .bg > img,
.card-lg .graphics .bg > img,
.card-md .graphics .bg > img,
.card-sm .graphics .bg > img,
.card-horiz .graphics .bg > img,
.card .graphics .bg > img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.card-xl .graphics .bg > img,
.card-lg .graphics .bg > img,
.card-md .graphics .bg > img,
.card-sm .graphics .bg > img,
.card-horiz .graphics .bg > img,
.card .graphics .bg > img {
  -webkit-transition: transform 0.5s ease;
  -moz-transition: transform 0.5s ease;
  -ms-transition: transform 0.5s ease;
  -o-transition: transform 0.5s ease;
  transition: transform 0.5s ease;
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.card-xl .graphics .bg > img.desktop,
.card-lg .graphics .bg > img.desktop,
.card-md .graphics .bg > img.desktop,
.card-sm .graphics .bg > img.desktop,
.card-horiz .graphics .bg > img.desktop,
.card .graphics .bg > img.desktop {
  display: none;
}
@media (min-width: 768px) {
  .card-xl .graphics .bg > img.desktop,
  .card-lg .graphics .bg > img.desktop,
  .card-md .graphics .bg > img.desktop,
  .card-sm .graphics .bg > img.desktop,
  .card-horiz .graphics .bg > img.desktop,
  .card .graphics .bg > img.desktop {
    display: block;
  }
  .card-xl .graphics .bg > img.mobile,
  .card-lg .graphics .bg > img.mobile,
  .card-md .graphics .bg > img.mobile,
  .card-sm .graphics .bg > img.mobile,
  .card-horiz .graphics .bg > img.mobile,
  .card .graphics .bg > img.mobile {
    display: none;
  }
}
.card-xl .blog-video,
.card-lg .blog-video,
.card-md .blog-video,
.card-sm .blog-video,
.card-horiz .blog-video,
.card .blog-video {
  position: absolute;
  top: 0;
  left: 0;
}
.card-xl .blog-video .preview,
.card-lg .blog-video .preview,
.card-md .blog-video .preview,
.card-sm .blog-video .preview,
.card-horiz .blog-video .preview,
.card .blog-video .preview {
  -webkit-transition: transform 0.5s ease;
  -moz-transition: transform 0.5s ease;
  -ms-transition: transform 0.5s ease;
  -o-transition: transform 0.5s ease;
  transition: transform 0.5s ease;
  object-fit: cover;
  width: 100%;
  height: 100%;
  cursor: pointer;
}
.card-xl .blog-video .overlay,
.card-lg .blog-video .overlay,
.card-md .blog-video .overlay,
.card-sm .blog-video .overlay,
.card-horiz .blog-video .overlay,
.card .blog-video .overlay {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 15vw;
  max-width: 50px;
  cursor: pointer;
}
@media (hover: hover) {
  .card-xl .blog-video .overlay:hover,
  .card-lg .blog-video .overlay:hover,
  .card-md .blog-video .overlay:hover,
  .card-sm .blog-video .overlay:hover,
  .card-horiz .blog-video .overlay:hover,
  .card .blog-video .overlay:hover {
    opactiy: 0.8;
  }
}
.card-xl .blog-video iframe,
.card-lg .blog-video iframe,
.card-md .blog-video iframe,
.card-sm .blog-video iframe,
.card-horiz .blog-video iframe,
.card .blog-video iframe {
  position: absolute;
  top: 0%;
  left: 0%;
  width: 100%;
  height: 100%;
}
.card-xl .text,
.card-lg .text,
.card-md .text,
.card-sm .text,
.card-horiz .text,
.card .text {
  display: flex;
  flex-direction: column;
  margin-top: 12px;
}
.card-xl .eyebrow,
.card-lg .eyebrow,
.card-md .eyebrow,
.card-sm .eyebrow,
.card-horiz .eyebrow,
.card .eyebrow {
  position: relative;
  padding-bottom: 5px;
  margin-bottom: 10px;
}
.card-xl .eyebrow::after,
.card-lg .eyebrow::after,
.card-md .eyebrow::after,
.card-sm .eyebrow::after,
.card-horiz .eyebrow::after,
.card .eyebrow::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  border-top: 1.5px solid;
  width: 55px;
}
.card-xl .tag-list,
.card-lg .tag-list,
.card-md .tag-list,
.card-sm .tag-list,
.card-horiz .tag-list,
.card .tag-list {
  margin-top: 15px;
}
.card-xl .tag-list li,
.card-lg .tag-list li,
.card-md .tag-list li,
.card-sm .tag-list li,
.card-horiz .tag-list li,
.card .tag-list li {
  display: inline-block;
  padding: 5px 10px 4px 10px;
  text-decoration: none;
  border: 1px solid;
  margin-right: 5px;
  margin-bottom: 5px;
  cursor: pointer;
  text-transform: uppercase;
}
.card-xl .tag-list li.has-notch,
.card-lg .tag-list li.has-notch,
.card-md .tag-list li.has-notch,
.card-sm .tag-list li.has-notch,
.card-horiz .tag-list li.has-notch,
.card .tag-list li.has-notch {
  clip-path: polygon(0 0, 100% 0%, 100% calc(100% - 5px), calc(100% - 10px) 100%, 0 100%);
}
.card-xl .tag-list li.is-skewed,
.card-lg .tag-list li.is-skewed,
.card-md .tag-list li.is-skewed,
.card-sm .tag-list li.is-skewed,
.card-horiz .tag-list li.is-skewed,
.card .tag-list li.is-skewed {
  -webkit-transform: skew(-10deg);
  -moz-transform: skew(-10deg);
  -ms-transform: skew(-10deg);
  -o-transform: skew(-10deg);
  transform: skew(-10deg);
}
.card-xl .tag-list li.is-skewed > *,
.card-lg .tag-list li.is-skewed > *,
.card-md .tag-list li.is-skewed > *,
.card-sm .tag-list li.is-skewed > *,
.card-horiz .tag-list li.is-skewed > *,
.card .tag-list li.is-skewed > * {
  display: inline-block;
  transform: skew(10deg);
}
.card-xl .tag-list li:last-child,
.card-lg .tag-list li:last-child,
.card-md .tag-list li:last-child,
.card-sm .tag-list li:last-child,
.card-horiz .tag-list li:last-child,
.card .tag-list li:last-child {
  margin-right: 0;
}
.card-xl.has-gradient .graphics .picture::after,
.card-lg.has-gradient .graphics .picture::after,
.card-md.has-gradient .graphics .picture::after,
.card-sm.has-gradient .graphics .picture::after,
.card-horiz.has-gradient .graphics .picture::after,
.card.has-gradient .graphics .picture::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 33%;
  background: linear-gradient(165deg, rgba(241, 241, 241, 0.75) 0%, rgba(241, 241, 241, 0) 60%);
}
.card-xl.has-gradient.bg-dark .graphics .picture::after,
.card-lg.has-gradient.bg-dark .graphics .picture::after,
.card-md.has-gradient.bg-dark .graphics .picture::after,
.card-sm.has-gradient.bg-dark .graphics .picture::after,
.card-horiz.has-gradient.bg-dark .graphics .picture::after,
.card.has-gradient.bg-dark .graphics .picture::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 33%;
  background: linear-gradient(165deg, rgba(19, 19, 17, 0.75) 0%, rgba(19, 19, 17, 0) 60%);
}
.card-xl.has-notch .notch-br,
.card-lg.has-notch .notch-br,
.card-md.has-notch .notch-br,
.card-sm.has-notch .notch-br,
.card-horiz.has-notch .notch-br,
.card.has-notch .notch-br {
  clip-path: polygon(0 0, 100% 0%, 100% calc(100% - 40px), calc(100% - 40px) 100%, 0 100%);
}
@media (min-width: 1024px) {
  .card-xl.has-shadow .graphics,
  .card-lg.has-shadow .graphics,
  .card-md.has-shadow .graphics,
  .card-sm.has-shadow .graphics,
  .card-horiz.has-shadow .graphics,
  .card.has-shadow .graphics {
    box-shadow: 10px 10px 0px rgba(0, 0, 0, 0.4);
  }
}
.card-xl.has-frame .frame-bottom,
.card-lg.has-frame .frame-bottom,
.card-md.has-frame .frame-bottom,
.card-sm.has-frame .frame-bottom,
.card-horiz.has-frame .frame-bottom,
.card.has-frame .frame-bottom,
.card-xl.has-frame .frame-top,
.card-lg.has-frame .frame-top,
.card-md.has-frame .frame-top,
.card-sm.has-frame .frame-top,
.card-horiz.has-frame .frame-top,
.card.has-frame .frame-top {
  display: block;
}
@media (min-width: 1024px) {
  .card-xl.has-frame .frame-bottom::after,
  .card-lg.has-frame .frame-bottom::after,
  .card-md.has-frame .frame-bottom::after,
  .card-sm.has-frame .frame-bottom::after,
  .card-horiz.has-frame .frame-bottom::after,
  .card.has-frame .frame-bottom::after,
  .card-xl.has-frame .frame-bottom::before,
  .card-lg.has-frame .frame-bottom::before,
  .card-md.has-frame .frame-bottom::before,
  .card-sm.has-frame .frame-bottom::before,
  .card-horiz.has-frame .frame-bottom::before,
  .card.has-frame .frame-bottom::before {
    content: '';
    position: absolute;
    background-color: #000;
    bottom: 0;
    left: 0;
  }
  .card-xl.has-frame .frame-bottom::after,
  .card-lg.has-frame .frame-bottom::after,
  .card-md.has-frame .frame-bottom::after,
  .card-sm.has-frame .frame-bottom::after,
  .card-horiz.has-frame .frame-bottom::after,
  .card.has-frame .frame-bottom::after {
    width: 4px;
    height: 50%;
    clip-path: polygon(0 0, 100% 4px, 100% 100%, 0 100%);
  }
  .card-xl.has-frame .frame-bottom::before,
  .card-lg.has-frame .frame-bottom::before,
  .card-md.has-frame .frame-bottom::before,
  .card-sm.has-frame .frame-bottom::before,
  .card-horiz.has-frame .frame-bottom::before,
  .card.has-frame .frame-bottom::before {
    width: 28.1%;
    height: 4px;
    clip-path: polygon(0 0, calc(100% - 4px) 0, 100% 100%, 0 100%);
  }
  .card-xl.has-frame .frame-top::after,
  .card-lg.has-frame .frame-top::after,
  .card-md.has-frame .frame-top::after,
  .card-sm.has-frame .frame-top::after,
  .card-horiz.has-frame .frame-top::after,
  .card.has-frame .frame-top::after,
  .card-xl.has-frame .frame-top::before,
  .card-lg.has-frame .frame-top::before,
  .card-md.has-frame .frame-top::before,
  .card-sm.has-frame .frame-top::before,
  .card-horiz.has-frame .frame-top::before,
  .card.has-frame .frame-top::before {
    content: '';
    position: absolute;
    background-color: #000;
    top: 0;
    right: 0;
  }
  .card-xl.has-frame .frame-top::after,
  .card-lg.has-frame .frame-top::after,
  .card-md.has-frame .frame-top::after,
  .card-sm.has-frame .frame-top::after,
  .card-horiz.has-frame .frame-top::after,
  .card.has-frame .frame-top::after {
    width: 4px;
    height: 50%;
    clip-path: polygon(0 0, 100% 0%, 100% 100%, 0 calc(100% - 4px));
  }
  .card-xl.has-frame .frame-top::before,
  .card-lg.has-frame .frame-top::before,
  .card-md.has-frame .frame-top::before,
  .card-sm.has-frame .frame-top::before,
  .card-horiz.has-frame .frame-top::before,
  .card.has-frame .frame-top::before {
    width: 28.1%;
    height: 4px;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 6px 100%);
  }
}
.card-xl.has-flourish .flourish,
.card-lg.has-flourish .flourish,
.card-md.has-flourish .flourish,
.card-sm.has-flourish .flourish,
.card-horiz.has-flourish .flourish,
.card.has-flourish .flourish {
  display: block;
}
@media (min-width: 1024px) {
  .card-xl.has-flourish::before,
  .card-lg.has-flourish::before,
  .card-md.has-flourish::before,
  .card-sm.has-flourish::before,
  .card-horiz.has-flourish::before,
  .card.has-flourish::before {
    content: "";
    position: absolute;
    top: 50%;
    left: -10px;
    transform: translateY(-50%);
    width: 1px;
    height: 50%;
    border-left: 1.5px solid #f2c625;
  }
  .card-xl.has-flourish::after,
  .card-lg.has-flourish::after,
  .card-md.has-flourish::after,
  .card-sm.has-flourish::after,
  .card-horiz.has-flourish::after,
  .card.has-flourish::after {
    content: "";
    position: absolute;
    bottom: 20%;
    right: -10px;
    width: 1px;
    height: 30%;
    border-right: 1.5px solid #f2c625;
  }
}
@media (min-width: 768px) {
  .card-xl.card-horiz .card-inner,
  .card-lg.card-horiz .card-inner,
  .card-md.card-horiz .card-inner,
  .card-sm.card-horiz .card-inner,
  .card-horiz.card-horiz .card-inner,
  .card.card-horiz .card-inner {
    display: flex;
  }
  .card-xl.card-horiz .graphics,
  .card-lg.card-horiz .graphics,
  .card-md.card-horiz .graphics,
  .card-sm.card-horiz .graphics,
  .card-horiz.card-horiz .graphics,
  .card.card-horiz .graphics {
    width: 100%;
    max-width: 325px;
    margin-right: 30px;
  }
}
@media (max-width: 1024px - 0.5px) {
  .card-xl.card-sm .card-inner,
  .card-lg.card-sm .card-inner,
  .card-md.card-sm .card-inner,
  .card-sm.card-sm .card-inner,
  .card-horiz.card-sm .card-inner,
  .card.card-sm .card-inner {
    display: flex;
  }
  .card-xl.card-sm .graphics,
  .card-lg.card-sm .graphics,
  .card-md.card-sm .graphics,
  .card-sm.card-sm .graphics,
  .card-horiz.card-sm .graphics,
  .card.card-sm .graphics {
    width: 100%;
    max-width: 50%;
    margin-right: 15px;
  }
  .card-xl.card-sm .text,
  .card-lg.card-sm .text,
  .card-md.card-sm .text,
  .card-sm.card-sm .text,
  .card-horiz.card-sm .text,
  .card.card-sm .text {
    margin-top: 0;
  }
  .card-xl.card-sm .tag-list,
  .card-lg.card-sm .tag-list,
  .card-md.card-sm .tag-list,
  .card-sm.card-sm .tag-list,
  .card-horiz.card-sm .tag-list,
  .card.card-sm .tag-list {
    display: none;
  }
}
.card-xl.has-frame .graphics .overlay .frame-top::before,
.card-lg.has-frame .graphics .overlay .frame-top::before,
.card-md.has-frame .graphics .overlay .frame-top::before,
.card-sm.has-frame .graphics .overlay .frame-top::before,
.card-horiz.has-frame .graphics .overlay .frame-top::before,
.card.has-frame .graphics .overlay .frame-top::before,
.card-xl.has-frame .graphics .overlay .frame-bottom::before,
.card-lg.has-frame .graphics .overlay .frame-bottom::before,
.card-md.has-frame .graphics .overlay .frame-bottom::before,
.card-sm.has-frame .graphics .overlay .frame-bottom::before,
.card-horiz.has-frame .graphics .overlay .frame-bottom::before,
.card.has-frame .graphics .overlay .frame-bottom::before,
.card-xl.has-frame .graphics .overlay .frame-top::after,
.card-lg.has-frame .graphics .overlay .frame-top::after,
.card-md.has-frame .graphics .overlay .frame-top::after,
.card-sm.has-frame .graphics .overlay .frame-top::after,
.card-horiz.has-frame .graphics .overlay .frame-top::after,
.card.has-frame .graphics .overlay .frame-top::after,
.card-xl.has-frame .graphics .overlay .frame-bottom::after,
.card-lg.has-frame .graphics .overlay .frame-bottom::after,
.card-md.has-frame .graphics .overlay .frame-bottom::after,
.card-sm.has-frame .graphics .overlay .frame-bottom::after,
.card-horiz.has-frame .graphics .overlay .frame-bottom::after,
.card.has-frame .graphics .overlay .frame-bottom::after {
  background-color: #c6c8c0;
}
@media (min-width: 768px) {
  .card-lg ul.icon-list > li {
    width: 55px;
    height: 55px;
  }
  .card-lg.has-notch .notch-br {
    clip-path: polygon(0 0, 100% 0%, 100% calc(100% - 50px), calc(100% - 50px) 100%, 0 100%);
  }
  .card-lg .text {
    margin-top: 20px;
  }
  .card-lg .blog-video .overlay {
    max-width: 75px;
  }
}
@media (min-width: 1024px) {
  .card-lg.has-shadow .graphics {
    box-shadow: 15px 15px 0px rgba(0, 0, 0, 0.4);
  }
}
.card-sm.has-notch .notch-br {
  clip-path: polygon(0 0, 100% 0%, 100% calc(100% - 25px), calc(100% - 25px) 100%, 0 100%);
}
.btn {
  /**
     * Undo the above focused button styles when the element received focus
     * via mouse click or touch, but not keyboard navigation.
    */
  font-family: "Open Sans Condensed", Verdana, Arial, Helvetica, sans-serif;
  font-weight: bold;
  font-family: 'Open Sans Condensed', sans-serif;
  font-style: normal;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  padding: 1rem 2rem;
  margin: 0;
  text-decoration: none;
  background: transparent;
  color: #fafafa;
  font-size: 18px;
  letter-spacing: 1px;
  cursor: pointer;
  text-align: center;
  transition: background 250ms ease-in-out, transform 150ms ease;
  -webkit-appearance: none;
  -moz-appearance: none;
  /**
     * Undo the above focused button styles when the element received focus
     * via mouse click or touch, but not keyboard navigation.
    */
}
.btn:not(.outline) {
  border: 1px solid transparent;
}
.btn:hover {
  text-decoration: none;
}
.btn[disabled],
.btn.disabled {
  opacity: 0.5;
  pointer-events: none;
}
.btn:focus {
  outline: 0;
  border-radius: 3px;
  box-shadow: 0 0 0 2px #000;
}
.btn:focus:not(:focus-visible) {
  outline: 0 !important;
  border-radius: 0;
  box-shadow: none !important;
}
.btn.notch-br {
  clip-path: polygon(0 0, 100% 0%, 100% calc(100% - 24px), calc(100% - 24px) 100%, 0 100%);
}
.btn .icon {
  display: none;
}
.btn.icon-arrows {
  justify-content: space-between;
}
.btn.icon-arrows .icon {
  background: url("data:image/svg+xml;charset=utf8,%3Csvg id='selector-arrows' width='18' height='14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg stroke='%23F3F3F3'%3E%3Cpath d='M1 6l8 7 8-7'/%3E%3Cpath d='M1 1l8 7 8-7'/%3E%3C/g%3E%3C/svg%3E") no-repeat center center;
  background-size: contain;
  width: 20px;
  height: 20px;
  display: inline-block;
  float: right;
  margin-left: 30px;
}
.btn:not(.outline) {
  border: 1px solid transparent;
}
.btn:hover {
  text-decoration: none;
}
.btn[disabled],
.btn.disabled {
  opacity: 0.5;
  pointer-events: none;
}
.btn:focus {
  outline: 0;
  border-radius: 3px;
  box-shadow: 0 0 0 2px #000;
}
.btn:focus:not(:focus-visible) {
  outline: 0 !important;
  border-radius: 0;
  box-shadow: none !important;
}
.btn.notch-br {
  clip-path: polygon(0 0, 100% 0%, 100% calc(100% - 24px), calc(100% - 24px) 100%, 0 100%);
}
.btn .icon {
  display: none;
}
.btn.icon-arrows {
  justify-content: space-between;
}
.btn.icon-arrows .icon {
  background: url("data:image/svg+xml;charset=utf8,%3Csvg id='selector-arrows' width='18' height='14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg stroke='%23F3F3F3'%3E%3Cpath d='M1 6l8 7 8-7'/%3E%3Cpath d='M1 1l8 7 8-7'/%3E%3C/g%3E%3C/svg%3E") no-repeat center center;
  background-size: contain;
  width: 20px;
  height: 20px;
  display: inline-block;
  float: right;
  margin-left: 30px;
}
.btn-black {
  color: #fafafa;
}
.btn-black span.base {
  border: 1px solid transparent;
}
.noisy::after {
  content: "";
  display: block;
  width: 100vw;
  height: 100vh;
  opacity: 0.15;
  background-image: url(../../../../../../content/dam/atvi/callofduty/cod-touchui/zeus/common/ui/noise-gif-square-anim.gif);
  overflow: hidden;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 10;
}
.blog-video {
  position: relative;
  order: 1;
}
.blog-video .preview {
  width: 100%;
  cursor: pointer;
}
.blog-video .overlay {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 15vw;
  max-width: 100px;
  cursor: pointer;
}
@media (hover: hover) {
  .blog-video .overlay:hover {
    opactiy: 0.8;
  }
}
.blog-video iframe {
  position: absolute;
  top: 0%;
  left: 0%;
  width: 100%;
  height: 100%;
}

@import url('https://fonts.googleapis.com/css?family=Open+Sans+Condensed:300,700&display=swap');
@import url('https://fonts.googleapis.com/css?family=Montserrat:400,600&display=swap');
/*  COLORS
 ************/
/* 2021 FONTS AND TYPOGRAPHY
 *******************************/
/*  UI ELEMENTS 
 *****************/
.icon-crosshair {
  position: relative;
  display: block;
  box-sizing: border-box;
  background: currentColor;
}
.icon-crosshair::after {
  display: block;
  box-sizing: border-box;
  background: currentColor;
  content: "";
  position: absolute;
  width: 2px;
  height: 12px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.icon-crosshair::before {
  display: block;
  box-sizing: border-box;
  background: currentColor;
  content: "";
  position: absolute;
  width: 12px;
  height: 2px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
/* MIXINs */
/* CLASSES */
.row {
  display: flex;
  flex-wrap: wrap;
}
.row > * {
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
}
.col {
  flex: 1 0 0%;
}
.row-cols-auto > * {
  flex: 0 0 auto;
  width: auto;
}
.row-cols-1 > * {
  flex: 0 0 auto;
  width: 100%;
}
.row-cols-2 > * {
  flex: 0 0 auto;
  width: 50%;
}
.row-cols-3 > * {
  flex: 0 0 auto;
  width: 33.3333333333%;
}
.row-cols-4 > * {
  flex: 0 0 auto;
  width: 25%;
}
.row-cols-5 > * {
  flex: 0 0 auto;
  width: 20%;
}
.row-cols-6 > * {
  flex: 0 0 auto;
  width: 16.6666666667%;
}
.col-auto {
  flex: 0 0 auto;
  width: auto;
}
.col-1 {
  flex: 0 0 auto;
  width: 8.3333333333%;
}
.col-2 {
  flex: 0 0 auto;
  width: 16.6666666667%;
}
.col-3 {
  flex: 0 0 auto;
  width: 25%;
}
.col-4 {
  flex: 0 0 auto;
  width: 33.3333333333%;
}
.col-5 {
  flex: 0 0 auto;
  width: 41.6666666667%;
}
.col-6 {
  flex: 0 0 auto;
  width: 50%;
}
.col-7 {
  flex: 0 0 auto;
  width: 58.3333333333%;
}
.col-8 {
  flex: 0 0 auto;
  width: 66.6666666667%;
}
.col-9 {
  flex: 0 0 auto;
  width: 75%;
}
.col-10 {
  flex: 0 0 auto;
  width: 83.3333333333%;
}
.col-11 {
  flex: 0 0 auto;
  width: 91.6666666667%;
}
.col-12 {
  flex: 0 0 auto;
  width: 100%;
}
@media (min-width: 425px) {
  .col-sm {
    flex: 1 0 0%;
  }
  .row-cols-sm-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-sm-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-sm-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-sm-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-sm-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-sm-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-sm-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-sm-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-sm-1 {
    flex: 0 0 auto;
    width: 8.3333333333%;
  }
  .col-sm-2 {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-sm-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-sm-4 {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .col-sm-5 {
    flex: 0 0 auto;
    width: 41.6666666667%;
  }
  .col-sm-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-sm-7 {
    flex: 0 0 auto;
    width: 58.3333333333%;
  }
  .col-sm-8 {
    flex: 0 0 auto;
    width: 66.6666666667%;
  }
  .col-sm-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-sm-10 {
    flex: 0 0 auto;
    width: 83.3333333333%;
  }
  .col-sm-11 {
    flex: 0 0 auto;
    width: 91.6666666667%;
  }
  .col-sm-12 {
    flex: 0 0 auto;
    width: 100%;
  }
}
@media (min-width: 768px) {
  .col-md {
    flex: 1 0 0%;
  }
  .row-cols-md-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-md-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-md-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-md-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-md-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-md-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-md-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-md-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-md-1 {
    flex: 0 0 auto;
    width: 8.3333333333%;
  }
  .col-md-2 {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-md-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-md-4 {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .col-md-5 {
    flex: 0 0 auto;
    width: 41.6666666667%;
  }
  .col-md-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-md-7 {
    flex: 0 0 auto;
    width: 58.3333333333%;
  }
  .col-md-8 {
    flex: 0 0 auto;
    width: 66.6666666667%;
  }
  .col-md-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-md-10 {
    flex: 0 0 auto;
    width: 83.3333333333%;
  }
  .col-md-11 {
    flex: 0 0 auto;
    width: 91.6666666667%;
  }
  .col-md-12 {
    flex: 0 0 auto;
    width: 100%;
  }
}
@media (min-width: 1024px) {
  .col-lg {
    flex: 1 0 0%;
  }
  .row-cols-lg-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-lg-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-lg-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-lg-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-lg-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-lg-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-lg-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-lg-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-lg-1 {
    flex: 0 0 auto;
    width: 8.3333333333%;
  }
  .col-lg-2 {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-lg-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-lg-4 {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .col-lg-5 {
    flex: 0 0 auto;
    width: 41.6666666667%;
  }
  .col-lg-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-lg-7 {
    flex: 0 0 auto;
    width: 58.3333333333%;
  }
  .col-lg-8 {
    flex: 0 0 auto;
    width: 66.6666666667%;
  }
  .col-lg-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-lg-10 {
    flex: 0 0 auto;
    width: 83.3333333333%;
  }
  .col-lg-11 {
    flex: 0 0 auto;
    width: 91.6666666667%;
  }
  .col-lg-12 {
    flex: 0 0 auto;
    width: 100%;
  }
}
.color-dark {
  color: #000000;
}
.bg-dark {
  background-color: #000000;
}
.btn-dark {
  color: #ffffff;
  background-color: #000000;
}
.btn-outline-dark {
  color: #ffffff;
  background-color: transparent;
  border: #000000;
  color: #000000;
}
@media (min-width: 768px) {
  [data-theme="dark"] .underline {
    background: linear-gradient(to top, transparent 9px, #979797 9px 16px, 16px, transparent);
  }
}
[data-theme="dark"] .eyebrow {
  color: #000000;
}
[data-theme="dark"] .eyebrow a {
  color: #000000;
}
[data-theme="dark"] .eyebrow::after {
  border-color: #000000;
}
[data-theme="dark"] li.tag-item {
  border-color: #d4d7c6;
}
[data-theme="dark"] .card-inner:hover .title a {
  color: #b4afa6;
}
@media (min-width: 768px) {
  .bg-dark .underline,
  .bg-dark [data-theme="dark"] .underline {
    background: linear-gradient(to top, transparent 9px, #979797 9px 16px, 16px, transparent);
  }
}
.color-light {
  color: #ffffff;
}
.bg-light {
  background-color: #ffffff;
}
.btn-light {
  color: #000000;
  background-color: #ffffff;
}
.btn-outline-light {
  color: #000000;
  background-color: transparent;
  border: #ffffff;
  color: #ffffff;
}
@media (min-width: 768px) {
  [data-theme="light"] .underline {
    background: linear-gradient(to top, transparent 9px, #979797 9px 16px, 16px, transparent);
  }
}
[data-theme="light"] .eyebrow {
  color: #ffffff;
}
[data-theme="light"] .eyebrow a {
  color: #ffffff;
}
[data-theme="light"] .eyebrow::after {
  border-color: #ffffff;
}
[data-theme="light"] li.tag-item {
  border-color: #d4d7c6;
}
[data-theme="light"] .card-inner:hover .title a {
  color: #b4afa6;
}
@media (min-width: 768px) {
  .bg-dark .underline,
  .bg-dark [data-theme="light"] .underline {
    background: linear-gradient(to top, transparent 9px, #979797 9px 16px, 16px, transparent);
  }
}
.color-cod {
  color: #d1d4c6;
}
.bg-cod {
  background-color: #d1d4c6;
}
.btn-cod {
  color: #000000;
  background-color: #d1d4c6;
}
.btn-outline-cod {
  color: #000000;
  background-color: transparent;
  border: #d1d4c6;
  color: #d1d4c6;
}
@media (min-width: 768px) {
  [data-theme="cod"] .underline {
    background: linear-gradient(to top, transparent 9px, #636460 9px 16px, 16px, transparent);
  }
}
[data-theme="cod"] .eyebrow {
  color: #d1d4c6;
}
[data-theme="cod"] .eyebrow a {
  color: #d1d4c6;
}
[data-theme="cod"] .eyebrow::after {
  border-color: #d1d4c6;
}
[data-theme="cod"] li.tag-item {
  border-color: #d4d7c6;
}
[data-theme="cod"] .card-inner:hover .title a {
  color: #b4afa6;
}
@media (min-width: 768px) {
  .bg-dark .underline,
  .bg-dark [data-theme="cod"] .underline {
    background: linear-gradient(to top, transparent 9px, #636460 9px 16px, 16px, transparent);
  }
}

