:root {
  --soft-blue: #6F96B7;   
  --dark-blue: #2B3F50;
  --light-blue: #E5E9ED;
}    
@font-face {
    font-family: 'Matter Sans';
    src: url('fonts/Matter-Sans-Regular.woff2') format('woff2'),
        url('fonts/Matter-Sans-Regular.woff') format('woff'),
		url('fonts/Matter-Sans-Regular.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Matter Sans';
    src: url('fonts/Matter-Sans-Medium.woff2') format('woff2'),
        url('fonts/Matter-Sans-Medium.woff') format('woff'),
		url('fonts/Matter-Sans-Medium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Matter Sans';
    src: url('fonts/Matter-Sans-SemiBold.woff2') format('woff2'),
        url('fonts/Matter-Sans-SemiBold.woff') format('woff'),
		url('fonts/Matter-Sans-SemiBold.otf') format('opentype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

body {
    font-family: 'Matter Sans', Helvetica, Arial, sans-serif;
}

.header-background {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    /*
    background-image: url('brands/matterhorn-header1.svg');
    background-size: 600px auto;
    background-repeat: no-repeat;
    background-position: center top;
    */
    z-index: 0;
    overflow: hidden;
}
.header-background img {
    width: 600px;
    height: auto;
    max-width: unset;
    top: 0;
    left: 50%;
    position: absolute;
    transform: translateX(-50%);
}
.logo {
    margin: 50px auto 150px auto;
    line-height: 50px;
}
.logo-img {
    width: 350px;
    vertical-align: middle;
}



main {
    background-color: #2B3F50;
}
.holder {
    width: 100%;
    max-width: 400px;
    box-shadow: unset;
    text-align: left;
    padding-top: 0;
    margin: 0 auto 0 auto;
}
main .holder {
    padding-top: 1em;
    padding-bottom: 4em;
}
.contact-block {
    border: none;
    min-height: 50px;
    gap: 0.5em;
    margin-top: 2em;
    text-align: center;
}
.contact-block > div {
    border: none !important;
    background-color: var(--soft-blue);
    border-radius: 4px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.28); 
}
.contact-block > div:last-of-type {
    display: none;
}
.contact-block > div > a {
    font-size: 18px;
    font-weight: 500;
    text-transform: unset;
}
.action-buttons i,
.main-details a:first-of-type,
.contact-block > div > a br,
.contact-block > div > a i {
    display: none;
}
.headshot {
    height: 200px;
    width: 200px;
    border-radius: unset;
    margin: 0 auto 1.75em 0;
    position: relative;
}
.headshot::after {
    content: "";
    position: absolute;
    width: 50px;
    height: 50px;
    bottom: 0;
    right: 0;
    background-color: var(--dark-blue);
}


h1 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 0.25em;
}
h2 {
    font-size: 18px;
    font-weight: 400;
    margin: 0 0 1.75em 0;
}

.action-buttons-holder,
.main-details-holder {
    padding: 0;
}
.action-buttons-holder {
    margin: 2.25em 0 0 0;
}

.main-details-holder {
    font-size: 16px;
}

.action-buttons {
    background-color: var(--soft-blue) !important;
    color: white !important;
    border-radius: 4px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.28);
    margin-top: 1em;
    text-align: center;
}
.action-buttons a,
.action-buttons button {
    font-size: 18px;
    font-weight: 500;
    text-transform: unset;
    transition: background-color 200ms cubic-bezier(.19, .72, .62, .92);
}
.main-details {
    border-bottom: 1px solid rgba(229, 233, 237, 0.2);
    padding-bottom: 0.5em;
    margin-top: 0.5em;
}
.main-details a:last-of-type {
    display: flex;
    flex-direction: column-reverse;
    letter-spacing: 0.01em;
    font-weight: 500;
    line-height: 1.75;
}
.main-details small {
    color: var(--soft-blue);
    font-size: 12px;
    font-weight: 400;
}
.action-buttons:hover {
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.28);
}

.action-buttons a:hover,
.action-buttons button:hover {
    background-color: rgba(0, 0, 0, 0.15);
}

@media only screen and (max-width:600px) {
    .holder {
        width: 300px;
    }


}