﻿/* === CTA button  === */


.cta-button{
  background: #aa8131;
  color: #000;
  border: 0;
  border-radius: 0;
  height: 40px;
  padding: 0 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;


  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  font-weight: 400;
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: 0;


  cursor: pointer;
  transition: background-color .2s ease, color .2s ease;
}


.cta-button:hover{
  background: #000;
  color: #aa8131;
}


.cta-button:focus-visible{
  outline: 2px solid #aa8131;
  outline-offset: 2px;
}