/* MASTER STYLE GUIDE FOR EXECATLAS WEBSITE */
html {
font-size: 20px;
color: red; /*Fallback RED to catch missing text styles. Do not remove.*/
}
html body {
display: block;
margin: auto;
}
:root {
--navy: #0E1461;
--teal: #8BDFBE;
--peach: #FFBB8D;
--lightgreen: #CDF0B6;
--lightyellow: #FDEEC3;
--lightgray: #f1f1f1;
--gray: #ACB5BD;
--black: #181818;
--gradient1: linear-gradient(to top, var(--teal), var(--lightgreen));
--gradient2: linear-gradient(to right, var(--teal), var(--lightgreen));
--gradient3: linear-gradient(to bottom, var(--navy), var(--black));
--normal: 400;
--semibold: 600;
--bold: 600;
}
::selection {
background-color: var(--lightgreen);
color: var(--navy);
}
::-moz-selection {
background-color: var(--lightgreen);
color: var(--navy);
}
div, section {
box-sizing: border-box;    
}
hr {
background: var(--gray);
margin: 15px 0;
height: 1px;
width: 100%;
border: unset;
}
img {
box-sizing: border-box;    
}
b {
font-weight: var(--semibold);    
}
h1, h2, h3 {
display: block;
margin-top: 0;
margin-bottom: 0.5em;
line-height: 130%;
}
h4 {
display: block;
margin-top: 0;
margin-bottom: 0.75em;
line-height: 140%;
}
p {
display: block;
margin-top: 0;
margin-bottom: 0;
line-height: 160%;
}
img {
display: block;
width: 100%;
}
h1 {
font-size: 2.6rem;
font-family: "Sora", sans-serif;
font-weight: var(--bold);
color: var(--navy);
text-align: center;
}
h2 {
font-size: 2.0rem;
font-family: "Sora", sans-serif;
font-weight: var(--semibold);
color: var(--navy);
text-align: center;
}
.numbers h1 {
font-size: 2.2rem;
font-weight: var(--normal);
color: var(--black);
}
.numbers p {
text-align: center;
}
h3 {
font-size: 1.6rem;
font-family: "Geist", sans-serif;
font-weight: var(--semibold);
color: var(--navy);
}
h4 {
font-size: 1.25rem;
font-family: "Geist", sans-serif;
font-weight: var(--semibold);
color: var(--black);
}
p {
font-size: 0.9rem;
font-family: 'Geist', sans-serif;
font-weight: var(--normal);
color: var(--black);
}
.quote::before {
content: '\201C';
float: left;
margin-left: -7px;
}
.quote::after {
content: '\201D';
}
a {
font-size: 0.9rem;
font-family: "Geist", sans-serif;
font-weight: var(--semibold);
color: var(--navy);
text-decoration: none;
word-break: normal;
white-space: normal;
}
/*CTA Link With Arrow*/
a[data-variant="arrow"] {
display: inline-block;
}
a[data-variant="arrow"]::after {
content: "";
display: inline-block;
width: 0.7em;
height: 0.7em;
background: url("data:image/svg+xml;utf8, <svg xmlns='http://www.w3.org/2000/svg' stroke='%230E1461' fill='none' stroke-width='2' viewBox='6 6 12 12'> <path d='M7 17L17 7M7 7h10v10'/> </svg>") no-repeat center;
background-size: contain;
margin-left: 0.5em;
transition: 0.3s ease;
vertical-align: middle;
transform: rotate(0deg);
}
a[data-variant="arrow"]:hover::after {
margin-left: 1em;
transform: rotate(45deg);
}
a[data-variant="whitearrow"] {
color: white;
}
a[data-variant="whitearrow"]::after {
content: "";
display: inline-block;
width: 0.7em;
height: 0.7em;
background: url("data:image/svg+xml;utf8, <svg xmlns='http://www.w3.org/2000/svg' stroke='%230E1461' fill='none' stroke-width='2' viewBox='6 6 12 12'> <path d='M7 17L17 7M7 7h10v10'/> </svg>") no-repeat center;
background-size: contain;
filter: brightness(0) invert(1);
margin-left: 0.5em;
transition: 0.3s ease;
vertical-align: middle;
transform: rotate(0deg);
}
a[data-variant="whitearrow"]:hover::after {
margin-left: 1em;
transform: rotate(45deg);
}
/*CTA Link in Navy Pill*/
a[data-variant="navybutton"] {
display: inline-block;
background: var(--navy);
border: 1px solid var(--navy);
font-size: 0.9rem;
font-family: "Geist", sans-serif;
font-weight: var(--semibold);
color: white;
padding: 1em 2.25em;
margin: 1em 0;
border-radius: 5em;
cursor: pointer;
transition: 0.3s ease;
}
a[data-variant="navybutton"]:hover {
border: 1px solid var(--navy);
background: white;
color: var(--navy);
}
a[data-variant="lightgreenbutton"] {
display: inline-block;
background: var(--lightgreen);
border: 1px solid var(--lightgreen);
font-size: 0.9rem;
font-family: "Geist", sans-serif;
font-weight: var(--semibold);
color: var(--navy);
padding: 1em 2.25em;
margin: 1em 0;
border-radius: 5em;
cursor: pointer;
transition: 0.3s ease;
}
a[data-variant="lightgreenbutton"]:hover {
border: 1px solid var(--lightgreen);
background: white;
color: var(--navy);
}


/* MASTER LAYOUTS */
section {
width: 90%;
max-width: 1280px;
margin: 5.5em auto;
display: block;
border-radius: 0.5em;
}
.square-icon {
width: 2.5em;
height: 2.5em;
margin-bottom: 1em;
border: 0;
border-radius:0.5em;
background: var(--teal);
}
.column {
display: flex;
align-items: stretch;
gap: 1em;
margin: 1em auto;
}
.container {
padding: 1.1em;
border-radius: 0.5em;
width: 100%;
}
.numbers {
max-width: 1040px;
text-align: center;
}
.with-cta .container {
position: relative;
margin-top: 1.5em;
padding: 1.5em;
padding-bottom: 5em;
background: var(--lightgray);
}
.with-cta a[data-variant="arrow"] {
position: absolute;
display: inline-block;
bottom: 2em;
}

/* TICKER LOGO */
.trusted-logos-container {
margin-top: 0px;
}
.trusted-logos{
width:25%;
max-width: unset;
}
.trusted-logos-inner-container {
padding: 0;
background: #F7F9FC;
position: relative;
}
.swiper {
width: 100%;
}
.swiper-slide {
padding: 0.5em 2em;
display: flex;
justify-content: center;
max-width:10em;
box-sizing: unset;
}
.swiper-slide img {
display: block;
width: 100%;
display: block;
width: auto;
max-height: 2em;
}
.swiper-wrapper {
-webkit-transition-timing-function: linear !important;
-o-transition-timing-function: linear !important;
transition-timing-function: linear !important;
align-items: center;
}
#thanks-overlay {
position: fixed;
inset: 0;
background: var(--gradient1);
display: flex;
align-items: center;
justify-content: center;
font-size: 2rem;
color: black;
z-index: 100;
opacity: 1;
transition: opacity 0.5s ease;
}
#thanks-overlay.hide {
opacity: 0;
pointer-events: none;
}
.cookie-initial,
.cookie-preferences {
background: white;
border-radius: 0.5em;
box-shadow: rgb(0 0 0 / 15%) 0px 2px 54px;
padding: 1.5rem;
max-width: 360px;
font-size: 14px;
display: flex;
flex-direction: column !important;
position: fixed;
bottom: 20px;
left: 20px;
z-index: 9999;
}
.cookie-initial h4,
.cookie-preferences h4 {
font-size: 1.1rem;
margin-bottom: 0.5rem;
}
.cookie-initial p,
.cookie-preferences p {
font-size: 14px;
}
.cookie-initial p a,
.cookie-preferences p a {
font-size: 14px;
color: var(--navy);
cursor: pointer;
}
.cookie-buttons {
display: flex;
justify-content: space-between;
gap: 0.5rem;
}
.cookie-initial a[data-variant="navybutton"] {
display: inline-block;
background: white;
color: var(--navy);
padding: 0.8em 1.5em !important;
font-size: 0.8rem;
transition: 0.3s ease;
width: 100%;
text-align: center;
}
.cookie-initial a[data-variant="navybutton"].accept {
background: var(--navy);
color: white;
padding: 0.8em 1.5em !important;
font-size: 0.8rem;
transition: 0.3s ease;
width: 100%;
text-align: center;
}
.cookie-initial a[data-variant="navybutton"].accept:hover {
background: white;
color: var(--navy);
}
.cookie-preferences a[data-variant="navybutton"] {
display: inline-block;
background: white;
color: var(--navy);
padding: 0.8em 1.5em !important;
font-size: 0.8rem;
transition: 0.3s ease;
width: 100%;
text-align: center;
}
.cookie-preferences a[data-variant="navybutton"].accept {
background: var(--navy);
color: white;
border: 1px solid var(--navy);
padding: 0.8em 1.5em !important;
font-size: 0.8rem;
transition: 0.3s ease;
width: 100%;
text-align: center;
}
.cookie-preferences a[data-variant="navybutton"].accept:hover {
background: white;
color: var(--navy);
}
.cookie-link {
font-weight: bold;
font-size: 14px;
text-align: center;
color: var(--navy);
cursor: pointer;
margin-top: 15px;
}
.back-to-initial {
display: flex;
align-items: center;
gap: 0.5rem;
color: var(--navy);
font-weight: bold;
font-size: 14px;
margin-bottom: 1rem;
cursor: pointer;
}
.back-to-initial img {
transform: rotate(270deg);
width: 12px;
height: 12px;
}
.accordion-section {
border-top: 1px solid #ddd;
padding: 1rem 0;
}
.accordion-header {
display: flex;
align-items: center;
justify-content: space-between;
cursor: pointer;
}
.accordion-left {
display: flex;
align-items: center;
gap: 0.5rem;
flex-grow: 1;
}
.accordion-left img {
width: 12px;
height: 12px;
transition: transform 0.3s ease;
transform: rotate(180deg); /* starts pointing down */
}
.accordion-header.open .accordion-left img {
transform: rotate(0deg); /* points up when open */
}
.accordion-title {
margin: 0;
}
.accordion-toggle-label {
font-size: 14px;
margin: 0;
color: var(--navy);
}
.accordion-body {
overflow: hidden;
height: 0;
transition: height 0.3s ease;
}
.accordion-body-content p {
font-size: 14px;
margin: 0.75rem 0 0.25rem;
}
.toggle-row {
display: flex;
align-items: center;
justify-content: space-between;
padding-bottom: 0.5rem;
}
.switch {
position: relative;
display: inline-block;
width: 36px;
height: 20px;
}
.switch input {
opacity: 0;
width: 0;
height: 0;
}
.slider {
position: absolute;
cursor: pointer;
top: 0; left: 0; right: 0; bottom: 0;
background-color: var(--gray);
transition: .4s;
border-radius: 34px;
}
.slider:before {
position: absolute;
content: "";
height: 14px;
width: 14px;
left: 3px;
bottom: 3px;
background-color: white;
transition: .4s;
border-radius: 50%;
}
.switch input:checked + .slider {
background-color: var(--navy);
}
.switch input:checked + .slider:before {
transform: translateX(16px);
}
.st-btn {
border-radius: 1000px !important;
}
.form#pardot-form,
.form#pardot-form * {
box-sizing: border-box;
}
.form#pardot-form .form-field {
min-width: 0;
margin: 0;
}
.form#pardot-form {
width: 100%;
border-radius: 16px;
display: grid;
gap: 0.5em;
}
.form#pardot-form .text,
.form#pardot-form .select {
width: 100%;
max-width: 100%;
padding: 0.75rem;
border: 1px solid #d5d5d5;
border-radius: 0.5rem;
background: white;
font-family: Geist;
color: var(--navy);
font-size: 15px;
outline: none;
}
.form#pardot-form .text:not(:placeholder-shown) {
color: var(--navy);
}
.form#pardot-form .text:focus {
color: var(--navy);
}
.form#pardot-form .select:focus,
.form#pardot-form .select:valid {
color: var(--navy);
}
.form#pardot-form .text::placeholder {
color: var(--black);
}
.form#pardot-form .select:required:invalid {
color: var(--black);
}
.form#pardot-form .select:valid {
color: var(--navy);
}
.form#pardot-form .select option[value=""] {
color: var(--black);
}
.form#pardot-form .text:focus,
.form#pardot-form .select:focus {
border-color: var(--navy);
}
.form#pardot-form .select {
appearance: none;
-webkit-appearance: none;
background: white;
background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 20 20' fill='%2300193F'><polygon points='5,7 15,7 10,13'/></svg>");
background-repeat: no-repeat;
background-position: right 14px center;
background-size: 14px;
padding-right: 40px;
}
.form#pardot-form .submit input[type="submit"] {
display: inline-block;
width: 100%;
padding: 1em 2.25em;
border: 1px solid var(--navy);
border-radius: 999px;
background: var(--navy);
color: #fff;
font-family: 'Geist';
font-weight: var(--semibold);
font-size: 0.9em;
cursor: pointer;
transition: 0.3s ease;
}
.form#pardot-form .submit input[type="submit"]:hover {
border: 1px solid var(--navy);
background: white;
color: var(--navy);
}
.form#pardot-form.show-errors .text:required:invalid,
.form#pardot-form.show-errors .select:required:invalid {
border-color: red !important;
}
.mailto-menu {
position: absolute;
display: none;
background: white;
border: 1px solid var(--lightgray);
border-radius: 8px;
box-shadow: 0 6px 24px rgba(0,0,0,.12);
z-index: 99999;
min-width: 220px;
padding: 4px;
}
.mailto-menu[aria-hidden="false"] { display: block; }
.mailto-menu button {
display: block;
width: 100%;
background: transparent;
border: 0;
padding: 10px 12px;
text-align: left;
cursor: pointer;
font: 14px/1.2 Geist;
border-radius: 0.5em;
}
.mailto-menu button:hover {
background: #f3f3f3;
outline: none;
}
.mailto-menu button:focus {
background: transparent; /* no stuck gray */
outline: none;
}
.mailto-menu button:focus:hover {
background: #f3f3f3; /* allow hover to override */
}
.mailto-menu .sep { 
height: 1px;
background: #eee;
margin: 4px 6px;
}
@media (max-width: 1000px) {
html {
font-size: 16px;
}
p {
font-size: 1rem;
}
a {
font-size: 1rem;
}
a[data-variant="arrow"] {
font-size: 1rem;
}
a[data-variant="navybutton"] {
font-size: 1rem;
}
a[data-variant="tealbutton"] {
font-size: 1rem;
}
}
@media (max-width: 768px) {
.column {
flex-direction: column;
}
.container {
width: unset;
}
.cookie-initial, .cookie-preferences {
max-width: 100%;
right:0;
left: 0;
bottom: 0;
}
}
@media (min-width: 600px) {
.form#pardot-form {
grid-template-columns: 1fr 1fr;
column-gap: 0.5em; /* space between columns */
}
.form#pardot-form .CP_FName { grid-column: 1; }
.form#pardot-form .CP_LName { grid-column: 2; }
.form#pardot-form .CP_Title { grid-column: 1; }
.form#pardot-form .CP_Company { grid-column: 2; }
.form#pardot-form .form-field:not(.CP_FName):not(.CP_LName):not(.CP_Title):not(.CP_Company),
.form#pardot-form .submit {
grid-column: 1 / -1;
}
}