.cta-button-wrapper {
max-width: 1375px;
margin-left: auto;
margin-right: auto;
gap: 30px;
flex-wrap: wrap;
align-items: stretch;
justify-content: space-evenly;
align-content: stretch;
display: flex;
}
.cta-button-wrapper .cta-button {
border: #fa4616 2px dotted;
border-radius: 100px;
text-align: center;
padding: 15px 30px;
position: relative;
cursor: pointer;
transition: all 0.4s ease-in-out;
text-decoration: none;
margin-bottom: 25px;
min-width: 300px;
width: 100%;
max-width: 420px;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
align-self: stretch;
}
.cta-button-wrapper .cta-button .cta-title {
font-family: "gentonasemibold";
font-size: 24px;
line-height: 36px;
text-align: center;
color: #0021a5;
position: absolute;
left: 0;
right: 0;
top: 0;
bottom: 0;
margin: auto;
z-index: 9999999;
display: flex;
align-items: center;
justify-content: center;
align-content: stretch;
transition: all 0.5s ease-in-out;
text-decoration: none;
}
@media (min-width: 800px) {
.cta-button-wrapper .cta-button .cta-title {
font-size: 36px;
line-height: 40px;
}
}
.cta-button-wrapper .cta-button .cta-text {
font-family: "gentonamedium";
font-size: 18px;
line-height: 22px;
text-align: center;
color: #0021a5;
opacity: 0;
transition: all 0.4s ease-in-out;
text-decoration: none;
max-width: 345px;
margin-left: auto;
margin-right: auto;
display: block;
}
@media (min-width: 800px) {
.cta-button-wrapper .cta-button .cta-text {
font-size: 19px;
line-height: 22px;
}
}
.cta-button-wrapper .cta-button:hover, .cta-button-wrapper .cta-button:focus {
background: #f3f1e9;
border-color: transparent;
}
.cta-button-wrapper .cta-button:hover .cta-title, .cta-button-wrapper .cta-button:focus .cta-title {
opacity: 0;
}
.cta-button-wrapper .cta-button:hover .cta-text, .cta-button-wrapper .cta-button:focus .cta-text {
opacity: 1;
}