body {
  line-height: 150%;
  font-size: 14px;
  line-height: 150%;
  font-family: 'Noto Sans', Arial, serif;
  letter-spacing: -0.02em;
}
a,
a:visited {
  text-decoration: underline;
  color: #ffffff;
}
.container {
  padding-left: 0;
  padding-right: 0;
  max-width: 100%;
}


/* Component
--------------------------------- */

.error {
    color: red;
    font-size: 0.9em;
}

/* <> Button <> */
.btn {
  border-radius: 0;
  text-decoration: none;
  font-weight: bold;
  text-transform: uppercase;
  padding: 9px 16px 9px 16px;
}
.ctx-btn-white {
  background: #fff;
}
.ctx-btn-transparent {
  background: transparent;
}
.ctx-bg-black .ctx-btn-transparent {
  border: 2px solid #ffffff;
  color: #ffffff;
}
.ctx-bg-black .ctx-btn-transparent svg {
  fill:#ffffff;
}
.ctx-bg-black .ctx-btn-transparent:hover {
  color: #000000;
  background: #ffffff;
}
.ctx-bg-black .ctx-btn-transparent:hover svg{
  fill: #000000;
}

.ctx-bg-white .ctx-btn-transparent,
.ctx-bg-lightgrey .ctx-btn-transparent {
  border: 2px solid #000000;
  color: #000000;
}
.ctx-bg-white .ctx-btn-transparent svg,
.ctx-bg-lightgrey .ctx-btn-transparent svg{
  fill:#000000;
}
.ctx-bg-white .ctx-btn-transparent:hover,
.ctx-bg-lightgrey .ctx-btn-transparent:hover {
  background: #000000;
  color: #ffffff;
}
.ctx-bg-white .ctx-btn-transparent:hover svg,
.ctx-bg-lightgrey .ctx-btn-transparent:hover svg{
  fill: #ffffff;
}

.ctx-btn-orange {
  background: #F26522;
   border:2px solid #F26522;
}
.ctx-btn-orange:hover{
  color: #ffffff;
  background: transparent;
  border:2px solid #F26522;
}

/* <> Heading label <> */
.ctx-sec-label {
  opacity: 0.6;
}

/* <> Heading <> */
h1 {
  font-size: 30px;
  line-height: 120%;
  letter-spacing: -0.04em;
  font-weight: bold;
  font-family: 'Klavika', Arial, serif;
}
h2 {
  font-size: 26px;
  line-height: 110%;
  letter-spacing: -0.04em;
  font-family: 'Klavika', Arial, serif;
}
h3 {
  font-size: 24px;
  line-height: 110%;
  letter-spacing: -0.04em;
  font-family: 'Klavika', Arial, serif;
}




.ctx-title{
  max-width: 800px;
  margin: 0 auto;
  float: none;
}



/* <> Shortcut <> */
.scroll-shortcut {
  display: none;

  position: absolute;
  right: -140px;
  bottom: 80px;
  transform: rotate(-90deg);
  transform-origin: center left;
  transition: all .3s;
  width: 200px;
  text-decoration: none;
}
.scroll-shortcut svg {
  margin-right: 15px;
}
.scroll-shortcut:hover {
  color: #8246AF;
  text-decoration: none;
}
.scroll-shortcut svg path,
.scroll-shortcut svg line {
  stroke: #111;
  transition: all .3s;
}
.scroll-shortcut:hover svg path,
.scroll-shortcut:hover svg line {
  stroke: #8246AF;
}


/* Navigation
--------------------------------- */


.ci-sub-nav-outer {
        background-color: #000000;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        position: sticky;
        top: 0;
        z-index: 100;
      }
      .ci-sub-nav-inner {
        display: flex;
        align-items: center;
        justify-content: center;
      }
      .ci-sub-nav-outer ul {
        display: flex;
        align-items: center;
        padding: 12px 0;
        list-style: none;
      }
      .ci-sub-nav-outer ul li:not(:last-child) {
        border-right: 1px solid #777777;
        padding-right: 20px;
        margin-right: 20px;
      }
      .ci-sub-nav-outer ul li a {
        display: block;
        text-decoration: none;
        text-transform: uppercase;
        font-size: 0.875em;
        line-height: 150%;
        font-weight: bold;
        color: #ffffff;
      }
      @media screen and (max-width: 980px) {
        .ci-sub-nav-outer ul {
          overflow-x: scroll;
          overflow-y: hidden;
          white-space: nowrap;
        }
        .ci-sub-nav-outer ul {
          justify-content: flex-start;
        }
      }


.ctx-sec-nav {
  position: relative;
  z-index: 2;
  font-family: 'Klavika', Arial, serif;
  font-weight: bold;
}
.ctx-sec-nav.scroll {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  width: 100%;
  max-width: 100%;
  background: #000000;
}
.ctx-sec-nav.scroll .ctx-brand {
  padding-top: 20px;
  padding-bottom: 20px;
}
.ctx-nav {
  display: none;
}
.ctx-nav ul {
  text-align: right;
  margin-right: 30px;
}
.ctx-nav ul li {
  display: inline-block;
  margin-left: 30px;
}
.ctx-nav ul li a {
  display: block;
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  text-transform: uppercase;
}
.ctx-sec-nav .ctx-brand {
  padding-top: 30px;
  padding-bottom: 30px;
}
.ctx-sec-nav .ctx-brand figure img {
  display: block;
}
.ctx-sec-nav .ctx-brand .logo-amd {
  height: 34px;
  width: auto;
}
.ctx-icon-hamburger {
  cursor: pointer;
  fill: #fff;
}
.ctx-icon-hamburger .ham-close {
  display: none;
}
.ctx-icon-hamburger.active .ham-close {
  display: block;
  position: absolute;
  z-index: 9;
  top: 30px;
  right: 165px;
}
.ctx-icon-hamburger.active .ham-open {
  display: none;
}

/* Mobile nav */
.ctx-nav.active {
  display: block;
  position: fixed;
  z-index: 9;
  top: 0;
  right: 0;
  background: #111;
  padding: 30px;
  width: 200px;
  height: 100vh;
  padding-top: 80px;
  font-size: 1em !important;
}
.ctx-nav.active ul {
  margin-left: 0;
  margin-right:0;
}
.ctx-nav.active span {
  margin-left: 30px;
}
.ctx-nav.active li {
  display: block;
  margin-left: 0;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(255,255,255, 0.2);
  text-align: left;
}
  .ctx-nav.active li:last-child {
    border: 0;
  }
.ctx-nav.active li a br {
  display: none;
}

/* Header
--------------------------------- */
.ctx-sec-header {
 
  height: 100%;
    max-height: 520px;
  position: relative;
  z-index: -10;
  overflow: hidden;
}

.ctx-sec-header .gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to left, rgba(0, 0, 0, 20), transparent); /* Right to left gradient */
    z-index: 1; /* Ensure it's above the video */
}

.ctx-sec-header h1{
  line-height: 100%;
}
.ctx-sec-header p{
  color: #CCCCCC;
}

.ctx-sec-header .ctx-sec-inner{
      position: absolute;
        bottom: -35px;
        padding-left: 22px;
}


.ctx-sec-header .ctx-header-inner {
  display: flex;
  justify-content: flex-end;
  position: relative;
  z-index: 2;
}
.ctx-sec-header .ctx-header-inner .ctx-sec-header-detail{
  flex: 0 0 50%;
  padding-top: 80px;
  color: #ffffff;
  position: relative;
}



.ctx-sec-header video {
  width: 60%;
}

/* .ctx-sec-header .fullscreen-bg {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
  z-index: -100;
}*/

.ctx-sec-header .trusted-video {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  transform: translateY(-50%);
} 


.ctx-sec-header .image{
  position: absolute;
  top: 50%;
  left: -15%;
  transform: translateY(-50%);
  z-index: 10;
  
  text-align: center;
}
.ctx-sec-header .image img{
  max-height: 500px;
  margin: 0 auto;
  text-align: center;
  height: 100% !important;
  transform: scale(0.7);
}

.ctx-sec-header .contentdata{
      position: absolute;
    left: 50%;
    z-index: 10;
}


/* Sections
--------------------------------- */

/* <> Global Style <> */
.section video {
  width: 100%;
}
.modal .modal-content {
  border-radius: 0 !important;
}

/* <> Introducing 4th <> */

.ctx-sec-introducing{
    background-image: url(../images/20241015-epyc-intro.png);
    background-position: top left;
    background-size: cover;
    background-repeat: no-repeat;
}

.ctx-sec-introducing .subhead{
  font-size: 30px;
  font-weight: 700;
  font-family: 'Klavika', Arial, serif;
  color: #ffffff;
}

.ctx-sec-introducing .title{
  color: #007C97;
  line-height: 120%;
}

.ctx-sec-introducing .watchvideo:hover{
  color: #ffffff;
}
 



.ctx-sec-introducing p{
  color: #DDDDDD;
}



/* <> Advancing Data <> */


.ctx-sec-advancing{
  position: relative;
  background-image: url(../images/20241015-epyc-advancing.png);
  background-position: bottom;
  background-size: cover;
  background-repeat: no-repeat;

}

.ctx-sec-advancing .title {
  font-size: 18px;
  line-height: 120%;
  /*font-family: 'Klavika', Arial, serif;*/
}

.ctx-sec-advancing .desc{
  font-size: 12px;
  line-height: 120%;
  color: #CCCCCC;
  
}


.ctx-sec-epyc-9004-series{
    background-image: url(../images/20241015-epyc-epyc-series.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.ctx-sec-epyc-9004-series p, .ctx-sec-epyc-9004-series ul li{
  color: #cccccc;
}

.ctx-sec-epyc-9004-series .item-title{
  font-size: 22px;
  line-height: 120%;
  color: #DEDEDE;
}
.ctx-sec-epyc-9004-series .item-container{

  background: rgb(10,5,2);
  background: -moz-linear-gradient(153deg, rgba(10,5,2,1) 27%, rgba(84,43,21,1) 84%);
  background: -webkit-linear-gradient(153deg, rgba(10,5,2,1) 27%, rgba(84,43,21,1) 84%);
  background: linear-gradient(153deg, rgba(10,5,2,1) 27%, rgba(84,43,21,1) 84%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#0a0502",endColorstr="#542b15",GradientType=1);
  position: relative;
  height: auto;
}
.ctx-sec-epyc-9004-series .item-container:before{
  
  background-image: url(../images/20241015-epyc-border.png);
  position: absolute;
  width: 100%;
  height: 1px ;
  content: '';
  right: 0;
  top: 0;
}

.ctx-sec-epyc-9004-series .item-description{
  color: #DEDEDE;
}


.ctx-sec-epyc-9004-series .item-sub{
  font-size: 12px;
  line-height: 120%;
}


/* <> 5 Reasons Why the Newest AMD <> */
.ctx-sec-five-reason{
    background-image: url(../images/20241015-epyc-reasons.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}



.ctx-sec-five-reason h2 strong span{
  font-size: 30px;
  line-height: 120%;
  color: #000000;
}

.ctx-sec-five-reason .title{
  font-size: 54px;
  line-height: 120%;
  color: #007C97;
}

.ctx-sec-five-reason .ctx-btn-discover-more:hover{

  color: #F26522;
}
.ctx-sec-five-reason .ctx-btn-discover-more:hover .arrowpath{
  fill:#F26522;
}


.ctx-sec-five-reason .content .list-item .item-number p{
  font-size: 40px;
  line-height: 100%;
  color: #007C97;
  font-family: 'Klavika', Arial, serif;
}

.ctx-sec-five-reason .content .list-item .item-number img{
  width: 18px;
  height: auto;
}

.ctx-sec-five-reason .content .list-item .item-content .item-title{
  font-size: 20px;
  color: #000000;
  line-height: 120%;
}

.ctx-sec-five-reason .content .list-item .item-content .item-description {
  color: #444444;
  font-weight: 400;
}


/* <> Watch 4th Gen AMD EPYC™ In Action <> */

.ctx-sec-epyc-in-action{
    background-image: url(../images/20241015-epcy-in-action.jpg);
    background-position: top;
    background-size: cover;
    background-repeat: no-repeat;
}

.ctx-sec-epyc-in-action .item-box{
  border:1px solid #DDDDDD;
  box-shadow: -1px 16px 25px -20px rgba(0, 0, 0, 0.76);
  -webkit-box-shadow: -1px 16px 25px -20px rgba(0, 0, 0, 0.76);
  -moz-box-shadow: -1px 16px 25px -20px rgba(0, 0, 0, 0.76);
  height: 100%;
}



/* <> Optimize Your AI Lifecycle with AMD <> */

.ctx-sec-optimize-ai{
    background-image: url(../images/20241015-epyc-ai-bg.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.ctx-sec-optimize-ai p{
  color: #DDDDDD;
}

/* <> Innovative Design for a Wide Range of Workloads  <> */

.ctx-sec-innovative{
    background:#000000;
    background-image: url(../images/20241015-epyc-innovation.jpg);
    background-position: top;
    background-size: 100%;
    background-repeat: no-repeat;
}

.ctx-sec-innovative p{
  color: #DDDDDD;
}

.ctx-sec-innovative .content-inner{
  padding-top: 100%;
}


/* <> 4 Items  <> */

.ctx-sec-architecture{
    background:#0A414B;
    background-image: url(../images/20241015-epyc-epyc-architecture.png);
    background-position: bottom;
    background-size: cover;
    background-repeat: no-repeat;
}

.ctx-sec-architecture p{
  color: #DDDDDD;
}


/*.ctx-sec-architecture .items{
  height: 350px;
}
*/
.ctx-sec-architecture .item-first{
  height: auto;
}


.ctx-sec-architecture a{
  color: #DEDEDE;
  text-decoration: none;
  display: block;
  border-bottom:1px solid #515151;
  padding-bottom: 10px;
}
.ctx-sec-architecture a::after{
  content: '>';
  position: absolute;
  right: 20px;
  transform: rotate(90deg);
}

 .ctx-sec-architecture a.general.colaps::after {
    transform: rotate(270deg);
}

.ctx-sec-architecture a.technical.colaps::after {
    transform: rotate(270deg);
}
.ctx-sec-architecture a.cloud.colaps::after {
    transform: rotate(270deg);
}
.ctx-sec-architecture a.cloudservices.colaps::after {
    transform: rotate(270deg);
}


.ctx-sec-architecture a:hover {
  color: #DEDEDE;
}

.ctx-sec-architecture ul li{
  color:#CCCCCC;
}



/* <> World’s Best Data Center CPU  <> */

.ctx-sec-bestdatacenter{
    background:#000000;
    background-image: url(../images/20241015-epyc-datacenter.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.ctx-sec-bestdatacenter p{
  color: #DDDDDD;
}


/* <> AMD EPYC™ processors power  <> */

.ctx-sec-processors-power{
    background:#000000;
    background-image: url(../images/20241015-epyc-processor-power.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.ctx-sec-processors-power h3{
  color: #DEDEDE;
}
.ctx-sec-processors-power p{
  color: #DEDEDE;
}
.ctx-sec-processors-power .number{
  font-family: 'Klavika', Arial, serif;

  background: #007C97;
background: linear-gradient(to bottom, #007C97 0%, #34B7D5 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
    line-height: 110%;
    font-size:86px
        
}


/* <> Our Ecosystem Partners <> */

.ctx-sec-ecosystem {
  background-image: url(../images/20241015-epcy-partner.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 100%;
}

.ctx-sec-ecosystem .nav-tabs{
  border:0;
}
.ctx-sec-ecosystem .tab-content>.tab-pane{
  background-image: url(../images/20241015-epcy-tab.png);
  background-repeat: no-repeat;
  background-size: 100%;
}

.ctx-sec-ecosystem .nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active{
background: rgb(0, 124, 151);
  background: -moz-linear-gradient(176deg, rgba(0, 124, 151, 1) 0%, rgba(5, 95, 114, 1) 91%);
  background: -webkit-linear-gradient(176deg, rgba(0, 124, 151, 1) 0%, rgba(5, 95, 114, 1) 91%);
  background: linear-gradient(176deg, rgba(0, 124, 151, 1) 0%, rgba(5, 95, 114, 1) 91%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#007c97", endColorstr="#055f72", GradientType=1);
  border: 0;
  color: #ffffff;
}

.ctx-sec-ecosystem .tab-pane img{
  max-width: 145px;
  width: 100%;
}

.ctx-sec-ecosystem .nav-tabs .active{
color: #ffffff !important;
}

.ctx-sec-ecosystem .nav-tabs .nav-item{
  margin-right: 30px;
}

.ctx-sec-ecosystem .nav-tabs .nav-item:last-child {
margin-right: 0px;
}

.ctx-sec-ecosystem .nav-tabs .nav-link:focus,
.nav-tabs .nav-link:hover{
  border: 0;
}

.ctx-sec-ecosystem .nav-tabs .nav-link{
color: #869DA9;
  text-decoration: none;
  font-weight: 700;
  font-family: 'Klavika', Arial, serif;
  font-size: 22px;
  line-height: 120%;
  border:0;
}

/* <> Accelerating Business Results <> */



        

.ctx-sec-accelerating{
    background-image: url(../images/20241015-epcy-accelerating.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.ctx-sec-accelerating .sub-title{
  color: #DDDDDD;
}
.ctx-sec-accelerating .stat-title{
  font-size: 30px;
  line-height: 120%;
  font-family: 'Klavika', Arial, serif;
}

.ctx-sec-accelerating .stat-sub-title {
  color: #DDDDDD;
}

.ctx-sec-accelerating .stat-detail {
  color: #DDDDDD;
  font-size: 12px;
}

.ctx-sec-accelerating .stats .bar1{
  background-color: #007C97;
  width: 0%;
}

.ctx-sec-accelerating .stats .bar2 {
  background-color: #004A5A;
  width: 0%;
}

.ctx-sec-accelerating .stats .bar3 {
  background-color: #636466;
  width: 0%;
}

.ctx-sec-accelerating .stats .activebar {
  -webkit-transition: width 2s ease-in-out;
  -moz-transition: width 2s ease-in-out;
  -o-transition: width 2s ease-in-out;
  transition: width 2s ease-in-out;
  width:100%;
}

.ctx-sec-accelerating .stats .activebar2 {
  -webkit-transition: width 2s ease-in-out;
  -moz-transition: width 2s ease-in-out;
  -o-transition: width 2s ease-in-out;
  transition: width 2s ease-in-out;
  width: 50%;
}

.ctx-sec-accelerating .stats .activebar3 {
  -webkit-transition: width 2s ease-in-out;
  -moz-transition: width 2s ease-in-out;
  -o-transition: width 2s ease-in-out;
  transition: width 2s ease-in-out;
  width: 40%;
}

/* <> Energy Efficiency Leadership <> */


.ctx-sec-energy-efficiency p{
  color: #DDDDDD;
}

/* <> Discover <> */

.ctx-sec-discover {
  background: #9D9FA2;
}

.ctx-sec-discover .item {
  background-position: top;
  background-size: cover;
  background-repeat: no-repeat;
  height: 430px;
}


.ctx-sec-discover .item-title{
  font-size: 22px;
  line-height: 120%;
  font-family: 'Klavika', Arial, serif;
 
}

.ctx-sec-discover .item-cta{
  margin-top: 0;
}


/* <>Get in touch <> */

.ctx-sec-gettouch{
    background-image: url(../images/20241015-epcy-in-cta-bg.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.ctx-sec-gettouch a:hover{
    color:#ffffff;
}

/* <> Footnote <> */
.ctx-sec-footnote{
  background-color: #F2F3F4;
}

.ctx-sec-footnote ol{
  list-style-type: auto;
}

.ctx-sec-footnote .card{
  background: transparent;
  border: 0;
}

.ctx-sec-footnote .card-header{
  background: transparent;
  border:0;
  padding:0;
}
.ctx-sec-footnote .card-body{
  padding:0;
}
.ctx-sec-footnote .btn-link{
  color: #000000;
  font-family: 'Klavika', Arial, serif;
  text-decoration: none;
  box-shadow: none;
  position: relative;
}

.ctx-sec-footnote .btn-link::before {
  content: '';
  position: absolute;
  background-image: url(../images/20241015-epcy-footnote.png);
  width: 12px;
  height: 10px;
  background-size: 100%;
  left: -5px;
  bottom: 42%;
}

.ctx-sec-footnote .btn-link.collapsed::before {
      transform: rotate(270deg);
}

@media (max-width: 767px) {

    .ctx-sec-video{
      position: relative;
    }
    .ctx-sec-video .fullscreen-bg {
      height: 0;
      padding-bottom: 100%;
      overflow: hidden;
      position: relative;
      z-index: 1;
      margin-left: -20px;
      margin-right: -20px;
    }
    .ctx-sec-video .advanced-video {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      /* width: 126%; */
    }
    .ctx-sec-video .fullscreen-bg::after {
      content: '';
      position: absolute;
      z-index: 2;
      bottom: 0;
      left: 0;
      height: 100px;
      width: 100%;
      background-color: rgba(0,0,0, 0);
      background-image: linear-gradient(to bottom, rgba(0,0,0, 0) , rgba(0,0,0,1));
    }
}




.ctx-btn-solution:hover svg #Path_1739 {
    fill: #000000;
    background: #ffffff;
}

.modal-video .modal-dialog {
  display: flex;
  justify-content: center;
  align-items: center;
  height: calc(100vh - 60px);
  max-width: 80vw;
  width: 80vw;
}
.modal-video .modal-body {
  padding:5px;
}





/* <> Registration <> */
/* Form
--------------------------------- */

.l-block-form p{
  font-size: 22px;
  font-family: 'Klavika', Arial, serif;
  line-height: 120%;

}
#mktoContainer .mktoForm .mktoFormRow input,
#mktoContainer .mktoForm .mktoFormRow select,
#mktoContainer .mktoForm .mktoFormRow textarea {
  border-radius: 0;
}
#mktoContainer .mktoForm button.mktoButton {
  background-color: #FF6A00;
  border-color: #FF6A00;
  border-radius: 0;
}
#mktoContainer .mktoForm .mktoRequiredField label.mktoLabel,
#mktoContainer .mktoForm label.mktoLabel {
  font-size: 14px;
  line-height: 150%;
  font-weight: bold;
}

#mktoContainer .mktoForm .mktoFormRow.ctxCompany {
  width: 100%;
}
#mktoContainer .mktoForm .mktoFormRow.ctxsubscribe, #mktoContainer .mktoForm .mktoFormRow.ctxmkto_optin {
  margin-bottom: 10px;
}
#mktoContainer .mktoForm .mktoFormRow.ctxsubscribe .mktoFieldWrap label, #mktoContainer .mktoForm .mktoFormRow.ctxmkto_optin .mktoFieldWrap label {
  display: block;
  font-weight: normal;
}
#mktoContainer .mktoForm .mktoFormRow.ctxsubscribe .mktoFieldWrap label a, #mktoContainer .mktoForm .mktoFormRow.ctxmkto_optin .mktoFieldWrap label a {
  color: #111;
  padding: 0;
}

/* Footer
--------------------------------- */

.ctx-sec-footer{
  color: #CCCCCC;
  font-family: 'Klavika', Arial, serif;
}

.ctx-sec-footer .link-inner-2 a svg{
  vertical-align: top;
}
.ctx-sec-footer .links{
  border-bottom: 1px solid #343434;
}

.ctx-sec-footer .links a{
  text-decoration: none;
  color: #cccccc;
}
.ctx-follow{
  font-size: 16px;
  font-weight: bold;
  font-family: 'Klavika', Arial, serif;
}

.ctx-details{
  font-family: 'Klavika', Arial, serif;
  color: #CCCCCC;
}
.ctx-colophon {
  align-items: center;
  justify-content: flex-end;
}
.ctx-colophon .ctx-socials {
  margin-bottom: 15px;
}
.ctx-colophon .ctx-socials li {
  display: inline-block;
  width: 16px;
  height: 14px;
  margin-right: 15px;
}


.backtoptop img{
  max-width: 40px;
}


/* -- Back to top -- */
.back-to-top {
  position: fixed;
  z-index: 900;
  bottom: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  border-radius: 100%;
  background: #007C97;
  color: #fff;
  font-size: 1.5rem;
  overflow: hidden;
  text-indent: -200px;
  text-align: center;
}
.back-to-top::after {
  font-family: "Material Icons Outlined";
  font-display: swap;
  content: "\e5d8";
  font-weight: normal;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.2s ease-in;
  text-indent: 0;
}


#backtotop {
  display: none; /* Hidden by default */
  position: fixed; /* Fixed/sticky position */
  bottom: 20px; /* Place the button at the bottom of the page */
  right: 30px; /* Place the button 30px from the right */
  z-index: 99; /* Make sure it does not overlap */
  cursor: pointer; /* Add a mouse pointer on hover */
}

#sharebutton {
  position: fixed; /* Fixed/sticky position */
  top: 120px; /* Place the top at the bottom of the page */
  left: 0px; /* Place the button 0px from the left */
  z-index: 100; /* Make sure it does not overlap */
  cursor: pointer; /* Add a mouse pointer on hover */
  background: #eee;
  padding: 15px 15px 10px 15px;
}

#sharebutton .share-text{
  font-size: 12px;
  font-weight: bold;
  color: #111;
}

.ctx-share-button li {
  display: block;
  text-align: center;
  /*width: 16px;
  height: 14px;*/
  margin-bottom: 15px;
  border-bottom: 1px solid #cccccc;
}


.ctx-share-button li:last-child  {
    margin-bottom: 0;
    border-bottom: 0;
  }


.backtoptop img:hover{
  opacity: 0.7;
}

/* Modal */
.modal-content .byn-close-modal {
    position: absolute;
    top: 0;
    right: 0;
    width: 30px;
    height: 30px;
    border: 0;
    background: #F26522;
    color: #fff;
    font-size: 30px;
    border-radius: 0;
}
/* Modal */

.modal-header, .modal-content{
  background: transparent;
  border: 0;
}

.modal-header .close{
  color: #ffffff;
  font-family: 'Klavika', Arial, serif;
  font-size: 16px;
  text-shadow: none;
  opacity: 1;
  font-family: 'Klavika', Arial, serif;
}
