* {
  box-sizing: border-box;
}

html {
  font-size: 16px;
  font-family: "proxima-soft", sans-serif;
  color: #000;
  display: block;
  margin: 0;
}
body {
  min-height: 100vh;
  width: 100%;
  margin: 0;
  padding-bottom: 120px;
}
section {
  position: relative;
  font-size: 1rem;
  width: 100%;
  display: flex;
}
.content {
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
}
.page {
  width: 100%;
  display: flex;
  padding-top: 60px;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
span {
  color: inherit;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Adelle-sans", Montserrat, sans-serif;
}

p {
  font-size: 1em;
  line-height: 1.5em;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  width: 100%;
}

button {
  font-size: 1.2rem;
  font-family: "proxima-soft", sans-serif;
  border: 0;
  border-radius: 6px;
  transition: all 0.3s;
  cursor: pointer;
  background-color: transparent;
}
.col-1 {
  width: 8.33%;
}

.col-2 {
  width: 16.66%;
}

.col-3 {
  width: 25%;
}

.col-4 {
  width: 33.33%;
}

.col-5 {
  width: 41.66%;
}

.col-6 {
  width: 50%;
}

.col-7 {
  width: 58.33%;
}

.col-8 {
  width: 66.66%;
}

.col-9 {
  width: 75%;
}

.col-10 {
  width: 83.33%;
}

.col-11 {
  width: 91.66%;
}

.col-12 {
  width: 100%;
}

[class*="col-"] {
  float: left;
  /*padding: 15px;*/
}

.row {
  width: 100%;
}

.row::after {
  content: "";
  clear: both;
  display: table;
}

.row[class*="grid-row-"] {
  display: grid;
}

.row[class*="grid-row-"] [class*="col-"] {
  width: 100%;
}

.grid-row-1 {
  grid-template-columns: 100%;
}
.grid-row-2 {
  grid-template-columns: 50% 50%;
}
.grid-row-3 {
  grid-template-columns: 33.33% 33.33% 33.33%;
}
.grid-row-4 {
  grid-template-columns: 25% 25% 25% 25%;
}

.boxed {
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  position: relative;
  z-index: 5;
}

button.btn-medium {
  padding: 0.5rem 3rem;
  font-size: 1.5rem;
}

[class*="white-on-"] {
  color: white;
}

[class*="-on-orange"] {
  background-color: #f7931e;
}

[class*="-on-grey"] {
  background-color: #ddd;
}

[class*="-on-blue"] {
  background-color: #61b4e4;
}

button.white-on-orange:hover {
  color: #f7931e;
  background-color: white;
  box-shadow: 0 0 3px 3px #ddd;
}

button.white-on-grey:hover {
  color: white;
  background-color: #61b4e4;
  box-shadow: 0 0 3px 3px rgb(70, 70, 70);
}

button span {
  font-size: inherit;
  font-family: inherit;
  font-weight: inherit;
  color: inherit;
}

div,
p,
span {
  color: #000;
  font-family: "proxima-soft", sans-serif;
  font-size: 1.25rem;
  font-weight: normal;
}

ul.no-bullets {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 0;
}
nav.navbar {
  padding: 16px 5%;
}
.logo-placement svg {
  width: 100%;
  max-width: 200px;
}
.logo-blue svg,
.logo-blue svg path,
.logo-blue svg text {
  fill: #61b4e4 !important;
}
.text-heading-1 {
  font-size: 1.5625rem;
  color: #000;
  font-family: "Adelle-sans", Montserrat, sans-serif;
  font-weight: bold;
  margin-bottom: 0.5em;
}
.text-heading-2 {
  font-size: 1.875rem;
  color: #000;
  font-family: "Adelle-sans", Montserrat, sans-serif;
  font-weight: bold;
  margin-bottom: 0.5em;
}
[class*="text-heading-"] span {
  font-size: inherit;
  color: inherit;
  font-weight: inherit;
  font-family: inherit;
}
[class*="-first-name"] {
  font-size: inherit;
  font-weight: inherit;
  font-family: inherit;
  color: inherit;
}
[class*="-group"] {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.h-divider.grey-2 hr {
  border-color: transparent;
  border-radius: 50%;
  background-color: #d9d9d9;
  margin-top: 2rem;
  margin-bottom: 2rem;
}
.h-divider.left-aligned {
  margin-right: auto;
}
.h-divider.short {
  width: 100%;
  max-width: 37px;
}
.flex {
  display: flex;
}
.fl-col {
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}
.fl-row {
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
}
.align-vert-center {
  align-items: center;
}
.justify-center {
  justify-content: center;
}
.card {
  border-radius: 4px;
  box-shadow: 0 3px 13px rgba(0, 0, 0, 0.1);
  padding: 1.75rem;
}

.radius-md {
  border-radius: 0.75rem;
}

.background-grey-1 {
  background-color: #f5f5f5;
}

.margins-md {
  margin-top: 5rem;
  margin-bottom: 5rem;
}

.std-line-height p,
.std-line-height span {
  line-height: 1em;
}

.skinny-column-1 > div {
  width: 100%;
  max-width: 426px;
}

.skinny-column-2 > div {
  width: 100%;
  max-width: 310px;
}

.fun-facts-heading {
  font-family: "Adelle-sans", Montserrat, sans-serif;
  font-size: 1.5625rem;
  font-weight: bold;
}

.profile-image-wrapper {
  position: relative;
}

.profile-image-wrapper.approved {
  margin-bottom: 84px;
}

.profile-image {
  overflow: hidden;
}
.profile-image img {
  aspect-ratio: auto;
  height: 100%;
  width: 100%;
  border-radius: 24px;
}

.wevett-approved-badge {
  position: absolute;
  bottom: -84px;
}
.contact-info li {
  margin-bottom: 0.5rem;
}

.contact-info .heading {
  margin-bottom: 0;
}

#socials-list {
  display: flex;
  flex-direction: row;
  column-gap: 12px;
}

.social-icon-button {
  height: 100%;
  width: 100%;
  max-width: 48px;
  max-height: 48px;
  font-size: 2.3rem;
}

.cta-card {
  padding: 5rem 2rem;
}
.agent-contact-info {
  padding-left: 0.75rem;
}
.contact-agent-button {
  padding-bottom: 1rem;
}
ul.licenses {
  margin: 0;
  padding: 0 12px 0 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 6px;
  column-gap: 12px;
  list-style-type: none;
  justify-content: flex-start;
  align-items: center;
  max-width: 360px;
}
.license-item {
  flex: 1 1 34%;
}
.license-item span {
  font-size: 0.95em;
  font-weight: 600;
  text-transform: uppercase;
}
#reviews-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 12px;
}

#reviews-list img {
  height: auto;
  max-width: 80%;
}

#reviews-list li,
#reviews-list a {
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media screen and (max-width: 980px) {
  .col-6 {
    width: 100%;
  }
  .section.main-profile {
    flex-direction: column-reverse;
    padding-left: 22px;
    padding-right: 22px;
  }
}
