/**
    Theme Name: Gateway Psychology
 */


/**
------------------------------------------------------------------

  [ 0 ]  Root Variables

------------------------------------------------------------------
 */
:root {
    --gw-green: #5DC0A6;
    --gw-nav-depth-1: #F0F0F0;
    --gw-nav-depth-2: #DDDDDD;
    --gw-nav-depth-3: #CCCCCC;
}

/**
------------------------------------------------------------------

  [ 1 ]  CSS Reset

------------------------------------------------------------------
 */
html,
body {
    border: none;
    margin: 0;
    padding: 0;

    font-family: "PT Sans", sans-serif;
}

body {
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, p,
blockquote, address, big, cite, code, em,
font, img, small, strike, sub, sup,
li, ol, ul, fieldset, form,
label, legend, button, table, caption,
tr, th, td {
    border: none;
    font-size: inherit;
    line-height: inherit;
    margin: 0;
    padding: 0;
    text-align: inherit;
}

blockquote::before,
blockquote::after {
    content: "";
}

/**
------------------------------------------------------------------

  [ 2 ]  Helper Classes

------------------------------------------------------------------
 */


.no-select {
    -webkit-touch-callout: none; /* iOS Safari */
      -webkit-user-select: none; /* Safari */
       -khtml-user-select: none; /* Konqueror HTML */
         -moz-user-select: none; /* Old versions of Firefox */
          -ms-user-select: none; /* Internet Explorer/Edge */
              user-select: none; /* Non-prefixed version, currently
                                  supported by Chrome, Opera and Firefox */
}

.margin-auto {
    margin: auto;
}

.text-center {
    text-align: center;
}

.full-width {
    width: 100%;
}

.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.half-width {
    width: 50%;
}

.pre-line {
    white-space: pre-line;
}


/**
------------------------------------------------------------------

  [ 3 ]      Main CSS Section

  [ 3 | 1 ]  Gateway Header

------------------------------------------------------------------
 */

nav.gateway-nav ul {
    list-style-type: none;
}

.gateway-header {
    height: 406px;
    text-align: center;

    font-family: "PT Sans", sans-serif;
}

.gateway-header .custom-logo {
    margin-top: 37px;
}

.gateway-nav {
    margin-top: 47px;
    height: 47px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.gateway-nav .menu {
    display: flex;
}

.gateway-nav .menu > li {
    position: relative;
    display: block;

    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1.5px;

    text-align: center;
    vertical-align: middle;
}

.gateway-nav .menu > li:last-child a {
    background-color: var(--gw-green);
    color: white;
    font-weight: bold;
    padding-left: 18px;
    padding-right: 18px;

    margin-right: 20px;
}

.gateway-nav a {
    width: auto;
    min-width: max-content;

    display: block;
    color: black;
    text-decoration: none;
    padding-left: 20px;
    padding-right: 20px;
    height: 40px;
    line-height: 40px;
}

.green-line {
    height: 0;
    width: 128px;

    border-top: 1px solid var(--gw-green);
    border-bottom: 1px solid var(--gw-green);
}

.book-now-button {
    height: 47px;
    text-transform: uppercase;
}

.gateway-nav .menu > li > ul.sub-menu {
    display: none;
    position: absolute;
    list-style-type: none;
    left: 0;
}

.gateway-nav .menu > li > ul.sub-menu > li {
    position: relative;
    z-index: 999;
    text-align: left;
}

ul.sub-menu {
    width: max-content !important;
}

ul.sub-menu > li > ul.sub-menu {
    display: none;
    position: absolute;
    top: 0;
    left: 100%;
    width: 220px;
}

@media (max-width: 1024.98px) {
    nav .green-line {
        display: none;
    }
}

@media only screen and (min-width: 714.01px) {
    .gateway-nav .menu > li > ul.sub-menu {
        background-color: var(--gw-nav-depth-1);
    }

    .gateway-nav .menu > li > ul.sub-menu > li {
        background-color: var(--gw-nav-depth-1);
    }

    .gateway-nav .menu > li > ul.sub-menu > li:hover {
        background-color: var(--gw-nav-depth-2);
    }

    .gateway-nav .menu > li > ul.sub-menu > li:hover > ul {
        display: block;
    }

    .gateway-nav .menu > li > ul.sub-menu > li > ul.sub-menu > li:hover {
        background-color: var(--gw-nav-depth-3);
    }

    .gateway-nav .menu > li:hover:not(:last-child) {
        background-color: var(--gw-nav-depth-1);
    }

    .gateway-nav .menu > li:hover > ul.sub-menu {
        display: block;
    }

    ul.sub-menu > li > ul.sub-menu {
        background-color: var(--gw-nav-depth-2);
    }
}


.nav-menu-button + input[type="checkbox"] {
    display: none;
}

@media only screen and (max-width: 714px) {
    .gateway-header {
        height: fit-content;
    }

    .gateway-header > nav.gateway-nav {
        background-color: var(--gw-green);
        display: block;
        height: fit-content;
    }

    .gateway-header > nav.gateway-nav ul {
        display: block !important;
        position: initial !important;
    }

    .gateway-nav .menu > li {
        text-align: left !important;
    }

    .gateway-nav .menu > li:last-child {
        display: none;
    }

    .gateway-nav .menu {
        padding-bottom: 6px;
    }

    .sub-menu {
        padding-left: 22px;
    }

    nav.gateway-nav > label {
        width: 100%;
        display: block;
    }

    nav.gateway-nav > label > img {
        margin-top: 12px;
        margin-bottom: 6px;
    }

    nav.gateway-nav > label:hover {
        cursor: pointer;
    }

    .nav-menu-button + input[type="checkbox"]:not(:checked) + div {
        display: none;
    }

    .nav-menu-button + input[type="checkbox"]:checked + div {
        display: block;
    }
}


/**
------------------------------------------------------------------

  [ 3 | 2 ]  Top Banner CSS

------------------------------------------------------------------
 */

.top-banner-container {
    width: 100%;
    min-height: 459px;
    /*background-color: red;*/
    display: flex;
    align-items: center;
    justify-content: center;

    padding: 24px;

    background-repeat: no-repeat;
    background-size: cover;
}

.top-banner {
    text-align: center;
    color: white;
    max-width: 1078px;
}

.top-banner h1 {
    font-size: 51px;
    font-family: "Playfair Display", sans-serif;
    font-weight: bold;

    display: inline-block;
}

.top-banner h2 {
    font-size: 20px;
    font-family: "PT Sans", sans-serif;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: normal;

    margin-top: 17px;

    display: inline-block;
}

.top-banner a {
    font-size: 14px;
    font-family: "PT Sans", sans-serif;
    font-weight: bold;

    letter-spacing: 1.5px;
    text-transform: uppercase;

    display: inline-block;
    padding: 21px 32px;
    margin-top: 40px;
    background-color: white;
    color: var(--gw-green);
}


/**
------------------------------------------------------------------

  [ 3 | 3 ]  Gateway Styled Buttons

------------------------------------------------------------------
 */

.gw-button {
    font-size: 14px;
    font-family: "PT Sans", sans-serif;
    font-weight: bold;

    letter-spacing: 1.5px;
    text-transform: uppercase;

    display: inline-block;

    margin: auto;
    cursor: pointer;
}

.gw-button-1 {
    border: 1px solid var(--gw-green);
    color: var(--gw-green);
    background-color: white;
}

.gw-button-2 {
    border: 1px solid white;
    color: white;
    background-color: transparent;
}

.gw-button-3 {
    border: 1px solid var(--gw-green);
    color: white;
    background-color: var(--gw-green);
}

.gw-button-4 {
    border: 1px solid var(--gw-green);
    color: var(--gw-green);
    background-color: transparent;
}

.gw-regular-button-size {
    height: 60px;
    width: 210px;
}


/**
------------------------------------------------------------------

  [ 3 | 4 ]  Headers and Headings

------------------------------------------------------------------
 */

.header-text {
    font-family: "Playfair Display", sans-serif;
    font-weight: bold;
    margin: auto;
    color: var(--gw-green);
}

.header-container {
    height: 54px;
    margin-top: 63px;
    display: flex;

    align-items: center;
    justify-content: center;
}

.header-container > .green-line {
    flex-grow: 1;
}

.header-container > .header-text {
    font-size: 41px;
    margin-left: 46px;
    margin-right: 46px;

    text-align: center;
}

@media only screen and (max-width: 880px) {
    .header-container {
        height: fit-content;
    }

    .header-container > .green-line {
        display: none;
    }

    .header-container > .header-text {
        margin-left: 12px;
        margin-right: 12px;
    }
}

@media only screen and (max-width: 766px) {
    .header-container > a.gw-button {
        margin-top: -20px;
    }
}


/**
------------------------------------------------------------------

  [ 3 | 5 ]  Two List Component CSS

------------------------------------------------------------------
 */

.two-col-container {
    width: 100%;
    max-width: 968px;

    border: 2px solid #9399A5;
    padding: 40px 78px;

    margin: 28px auto auto;
    display: flex;

    position: relative;
}

.two-col-subsection {
    width: 50%;
    text-align: center;
    white-space: pre-line;

    font-size: 15px;
}

.two-col-header {
    width: 218px;
    height: 55px;

    font-family: "Playfair Display", sans-serif;
    font-size: 23px;
    font-weight: bold;

    color: white;
    background-color: var(--gw-green);

    position: absolute;
    left: calc(50% - 109px);
    top: -28px;

    display: flex;
    align-items: center;
    justify-content: center;
}

@media only screen and (max-width: 766px) {
    .two-col-container {
        display: flex;
        flex-direction: column;
        padding-left: 12px;
        padding-right: 12px;
    }

    .two-col-subsection {
        width: 100%;
    }
}

/**
------------------------------------------------------------------

  [ 3 | 6 ]      Team Member Components

  [ 3 | 6 | 1 ]  Main Team Member Component CSS

------------------------------------------------------------------
 */

.member-container {
    height: 430px;
    width: 301px;

    border: 2px solid var(--gw-green);

    position: relative;

    margin: 85px auto auto;

    padding-top: 85px;
    padding-left: 25px;
    padding-right: 25px;

    text-align: center;
}

.member-image {
    height: 170px;
    width: 170px;

    border: 10px solid white;
    border-radius: 150px;
    background-color: grey;

    position: absolute;

    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}

.member-container > .member-image {
    margin: -85px auto auto;
}

.member-container > .member-name {
    font-size: 20px;
    font-family: "Playfair Display", sans-serif;
    font-weight: bold;

    margin-top: 20px;
}

.member-container > .member-profession,
.member-container > .member-provisions {
    margin-top: 17px;
    font-size: 15px;
    line-height: 23px;
}

.member-container > .highlighted {
    margin-top: 17px;
    font-size: 18px;
    font-family: "PT Sans", sans-serif;
    font-weight: bold;
    color: var(--gw-green);
}

.member-container > .gw-button {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;

    margin: auto auto 29px;
}

/**
------------------------------------------------------------------

  [ 3 | 6 | 2 ]  Dual Team Member Component CSS

------------------------------------------------------------------
 */

.dual-member-container {
    height: 430px;
    width: 635px;

    border: 2px solid var(--gw-green);

    position: relative;

    margin: 85px auto auto;

    padding-top: 85px;
    padding-left: 25px;
    padding-right: 25px;

    text-align: center;
}

.dual-member-container > .member-image {
    margin: -85px auto auto;
}

/*.dual-member-container > .member-image:first-child {*/
/*    margin-left: 133px;*/
/*}*/

/*.dual-member-container > .member-image:not(:first-child) {*/
/*    margin-right: 133px;*/
/*}*/

.dual-member-container > .member-name {
    font-size: 20px;
    font-family: "Playfair Display", sans-serif;
    font-weight: bold;

    margin-top: 20px;
}

.dual-member-container > .member-profession,
.dual-member-container > .team-summary {
    margin-top: 17px;
    font-size: 15px;
    line-height: 23px;
}

.dual-member-container > .team-summary {
    line-height: 31px;
}

.dual-member-container > .team-summary > p {
    margin-bottom: 6px;
}

.dual-member-container > .gw-button {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;

    margin: auto auto 29px;
}

@media only screen and (max-width: 626px) {
    .dual-member-container {
        width: auto;
        height: fit-content;

        padding-top: 15px;
    }

    .dual-member-container > .member-image {
        display: none;
    }
}

/**
------------------------------------------------------------------

  [ 3 | 7 ]  Custom Text Component CSS

------------------------------------------------------------------
 */

.custom-area {
    line-height: normal;
    letter-spacing: normal;
}

.custom-area p {
    font-size: 15px;
    font-family: "PT Sans", sans-serif;
}

/**
------------------------------------------------------------------

  [ 3 | 8 ]  Gateway Specialized Contact Form CSS

  Overrides many Gravity Form styles, hence the enormous use of
  the '!important' property. All styling properties here should
  have the '.gw-contact-form' class prefix before the selector.

  This class is used for the contact form widget only and will
  therefore not interfere with other Gravity Forms.

------------------------------------------------------------------
 */

.gw-contact-form {
    width: 100%;
    max-width: 968px;
    margin: auto;
}

.gw-contact-form ul {
    list-style-type: none;
    /* display: flex !important;
    flex-direction: column;
    flex-wrap: wrap; */
    width: 100%;
    /* height: 234px; */

    align-content: space-between;

    margin: auto;
}

.gw-contact-form ul > li {
    padding-right: 0 !important;
    flex-grow: 1;
}

.gw-contact-form ul > li:last-child {
    position: absolute;
    overflow: hidden;
    height: 0;
    width: 0;
}

.gw-contact-form textarea {
    height: 190px !important;
}

.gw-contact-form ul > li > label {
    font-size: 12px !important;
    font-weight: normal !important;
    color: #555555 !important;
    text-transform: uppercase;
}

@media only screen and (min-width: 641px) {
  .gform_fields {
    display: grid;
    grid-template-columns: repeat(2, 1fr);  
    column-gap: 30px;
    row-gap: 30px;
  }
}

.gw-contact-form input[type="text"],
.gw-contact-form textarea,
.gw-contact-form .ginput_container {
    font-size: 16px;
    font-family: "PT Sans", sans-serif;
    width: 450px !important;
}

.gw-contact-form input[type="text"],
.gw-contact-form textarea, 
.gw-contact-form select {
    padding-top: 6px;
    padding-bottom: 6px;
    padding-left: 8px;
    padding-right: 8px;
    width: 100%;

    border-radius: 2px;
    border: 1px solid #9399A5;

    display: block;
}

.gw-contact-form textarea {
    resize: none;
}

.gw-contact-form .ginput_counter {
    display: none !important;
}

.gw-contact-form .ginput_container {
    margin-top: 4px !important;
}

.gw-contact-form input::placeholder,
.gw-contact-form textarea::placeholder {
    font-style: italic;
}

.gw-contact-form .gform_footer {
    margin-top: 8px !important;
}

.gw-contact-form input[type="submit"] {
    font-size: 14px;
    font-family: "PT Sans", sans-serif;
    font-weight: bold;

    letter-spacing: 1.5px;
    text-transform: uppercase;

    display: inline-block;

    cursor: pointer;

    margin-right: 0 !important;
    padding: 14px 18px;
    margin-top: 25px;

    border: 1px solid var(--gw-green);
    color: white;
    background-color: var(--gw-green);
}

@media screen and (max-width: 956px) {
    .gw-contact-form ul {
        flex-wrap: initial;

        height: fit-content;
    }

    .gw-contact-form input[type="text"], .gw-contact-form textarea, .gw-contact-form .ginput_container {
        width: 100% !important;
    }

    .gw-contact-form ul > li {
        margin-top: 12px;
    }

    .gw-contact-form input[type="submit"] {
        margin-top: 12px;
    }
}

/**
------------------------------------------------------------------

  [ 3 | 9 ]  Gateway Footer

------------------------------------------------------------------
 */

.site-footer {
    margin-top: 65px;
    height: 189px;
    background-color: var(--gw-green);
}

footer .inner-footer {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.inner-footer-section {
    font-size: 12px;
    font-family: "PT Sans", sans-serif;
    color: white;
}

.inner-footer-desc {
    line-height: 15px;
    width: 283px;
    margin-right: 58px;
}

.inner-footer-desc p:not(:last-child) {
    margin-bottom: 10px;
}

.inner-footer-separator {
    height: 91px;
    width: 1px;
    background-color: white;
}

.inner-footer-section ul,
.inner-footer-section a {
    list-style-type: none !important;
    color: white !important;
    text-decoration: none;
}

.inner-footer-section a:hover {
    text-decoration: underline;
}

.inner-footer-nav {
    line-height: 15px;
    margin-left: 58px;
    margin-right: 48px;
}

.inner-footer-nav p:not(:last-child) {
    margin-bottom: 5px;
}

.inner-footer-info {
    line-height: 15px;
    margin-left: 38px;
}

.inner-footer-info p:not(:last-child) {
    margin-bottom: 5px;
}

@media only screen and (max-width: 872px) {
    footer .inner-footer {
        justify-content: space-evenly !important;
    }

    .inner-footer-desc, .inner-footer-nav, .inner-footer-info {
        margin-left: 0;
        margin-right: 0;
    }
}

@media only screen and (max-width: 678px) {
    .inner-footer-desc, .inner-footer-desc + .inner-footer-separator {
        display: none;
    }

    .inner-footer-separator {
        margin-left: 6px;
        margin-right: 6px;
    }
}

/**
------------------------------------------------------------------

  [ 3 | 10 ]  Simple Box Component

------------------------------------------------------------------
 */

.simple-box {
    height: 138px;
    width: 238px;

    padding-left: 23px;
    padding-right: 23px;

    background-color: #5DC0A6;
    text-align: center;

    font-size: 14px;
    line-height: 19px;
    color: white;

    display: flex;
    align-items: center;
    justify-content: center;
}

.simple-box:not(:first-child) {
    margin-left: 24px;
}

.simple-box:not(:last-child) {
    margin-right: 24px;
}

/**
------------------------------------------------------------------

  [ 3 | 11 ]  FAQ section

------------------------------------------------------------------
 */

.faq-section {
    width: 100%;
    max-width: 920px;
}

.faq-item {
    width: 100%;
    cursor: pointer;
    display: flex;
}

.faq-checkbox {
    display: none;
}

.faq-button-section .faq-button-triangle {
    width: 0;
    height: 0;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;

    border-left: 6px solid #5DC0A6;
}

.faq-checkbox:checked + label.faq-item .faq-button-triangle {
    transform: rotate(90deg);
}

.faq-checkbox:checked + label.faq-item .faq-question-title {
    color: #555555;
}

.faq-checkbox:checked + label.faq-item .faq-question-answer {
    visibility: visible;
    opacity: 1;
    margin-top: 20px;
    margin-bottom: 36px;
}

.faq-checkbox:not(:checked) + label.faq-item .faq-question-answer {
    visibility: hidden;
    opacity: 0;
    height: 0;
    margin-top: -20px;
    margin-bottom: 20px;
}

.faq-question-answer {
    display: block;
}

.faq-section .faq-item:not(:last-child) {
    border-bottom: 1px solid #E1E1E1;
}

.faq-item .faq-button-section {
    height: 104px;
    width: 38px;
    min-width: 38px;

    float: left;

    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-item .faq-question-section {
    float: left;
}

.faq-question-title {
    margin-top: 38px;
    color: #9399A5;
    font-size: 22px;

    display: flex;
    align-items: center;
}

/**
------------------------------------------------------------------

  [ 3 | 12 ]  Pop-up Styling

------------------------------------------------------------------
 */

/* Elementor section - custom class */

.el-member-sec .elementor-row {
    max-width: 1140px;
    margin: auto;
}

.el-member-sec .elementor-background-overlay {
    display: none;
}

.overlay-container {
    background-color: white;
    opacity: 0.6;
    backdrop-filter: blur(70px);
    position: fixed;

    top: 0;

    height: 100%;
    width: 100%;

    z-index: 999;
}

.overlay-container:hover {
    cursor: pointer;
}

.pop-up-container {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}

.pop-up-hidden {
    display: none;
}

.pop-up-section {
    /*display: none;*/
    position: absolute;
    z-index: 9999;

    top: 0;
    left: 0;
    right: 0;

    margin: auto;

    height: fit-content;
    width: fit-content;

    max-width: 660px;

    padding: 50px;
    background-color: white;
    border: 1px solid #979797;
    border-radius: 4px;
}

.pop-up-section .pop-up-close {
    position: absolute;
    height: 22px;
    width: 22px;
    top: 35px;
    right: 35px;
}

.pop-up-section .pop-up-close:hover {
    cursor: pointer;
}

.pop-up-header {
    display: flex;

    margin-bottom: 36px;
}

.pop-up-right {
    margin-left: 18px;
}

.pop-up-image {
    height: 150px;
    width: 150px;
    border-radius: 150px;
}

.pop-up-section .member-info {
    height: 150px;
    display: flex;
    flex-direction: column;
}

.pop-up-section .member-info > p {
    font-family: "PT Sans", sans-serif;
    font-size: 15px;
    color: #555555;

    margin-top: 12px;
    margin-left: 2px;
}

.pop-up-section .member-name {
    font-family: "Playfair Display", sans-serif;
    font-size: 28px;
    font-weight: bold;

    color: var(--gw-green);
}

.pop-up-section .green-line {
    width: 100%;
}

.pop-up-section .pop-up-content {
    margin-top: 12px;
}

.pop-up-section h4 {
    font-family: "Playfair Display", sans-serif;
    font-size: 19px;
    font-weight: bold;

    color: #555555;

    margin-top: 23px;
    margin-bottom: 23px;
}

.pop-up-section .pop-up-content p {
    display: flow-root;

    font-family: "PT Sans", sans-serif;
    font-size: 15px;
    color: #555555;

    line-height: 25px;
    margin-bottom: 15px;

    white-space: pre-line;
}

.pop-up-section .code-column {
    width: 50%;
    float: left;
    padding-right: 18px;
}

.pop-up-section .grey-line {
    height: 0;
    width: 100%;

    border-top: 1px solid #F3F3F3;
    margin-top: 23px;
    margin-bottom: 23px;
}

.pop-up-section .code-quote {
    font-family: "Playfair Display", sans-serif;
    font-weight: bold;
    font-size: 28px;
    color: white;

    text-align: center;

    width: 497px;

    margin: 45px auto auto;
    padding: 27px 27px;

    background-color: var(--gw-green);
}

.pop-up-section .quote-citation {
    quotes: "‘" "’";
}

.pop-up-section .code-quote-author {
    display: block;

    font-family: "PT Sans", sans-serif;
    font-size: 15px;
    font-weight: normal;

    margin-top: 9px;
}

@media only screen and (min-width: 688.01px) {
    .el-member-sec .elementor-row .elementor-column,
    .el-member-sec .elementor-row .elementor-column-wrap,
    .el-member-sec .elementor-row .elementor-widget-wrap,
    .el-member-sec .elementor-row .elementor-widget {
        position: static;
    }
}

@media only screen and (max-width: 688px) {
    .pop-up-section {
        width: 95%;

        padding-left: 16px;
        padding-right: 16px;
    }

    .pop-up-section .code-column {
        width: 100%;
    }

    .pop-up-section .code-quote {
        width: 100%;
        font-size: 21px;
    }

    .pop-up-section .pop-up-header {
        display: block;
    }

    .pop-up-section .pop-up-header .pop-up-image {
        margin: auto;
    }

    .pop-up-section .pop-up-header .member-info {
        margin-top: -50px;
    }
}


/**
------------------------------------------------------------------

  [ 3 | 13 ]  Small Pop-up CSS

------------------------------------------------------------------
 */

.small-member-container {
    height: 226px;
    width: 301px;

    border: 2px solid var(--gw-green);

    position: relative;

    margin: 85px auto 40px;

    padding-top: 85px;
    padding-left: 25px;
    padding-right: 25px;

    text-align: center;

    color: #555555;

    z-index: 99;
}

.small-member-container > .member-name {
    font-size: 20px;
    font-family: "Playfair Display", sans-serif;
    font-weight: bold;

    margin-top: 20px;
}

.small-member-container > .member-image {
    margin: -85px auto auto;
}

.small-member-container > .member-profession {
    font-family: "PT Sans", sans-serif;
    font-size: 15px;
    line-height: 23px;
    margin-top: 12px;
}

.mini-pop-up > .small-pop-up-button,
.small-member-container > .small-pop-up-button {
    position: absolute;

    bottom: calc(-65px / 2);
    left: 0;
    right: 0;

    margin: auto;

    display: flex;
    align-items: center;
    justify-content: center;

    height: 65px;
    width: 65px;
    border-radius: 65px;

    background-color: var(--gw-green);
}

.mini-pop-up > .small-pop-up-button:hover,
.small-member-container > .small-pop-up-button:hover {
    cursor: pointer;
}


/**
------------------------------------------------------------------

  [ 3 | 14 ]  Mini Pop-Up CSS

------------------------------------------------------------------
 */

.mini-pop-up {
    height: 138px;
    width: 238px;

    border: 2px solid var(--gw-green);

    position: relative;

    margin: 20px auto 40px;

    padding-top: 25px;
    padding-left: 25px;
    padding-right: 25px;

    text-align: center;

    color: var(--gw-green);

    z-index: 99;
}

.mini-pop-up > p {
    font-family: "PT Sans", sans-serif;
    font-size: 15px;
    line-height: 23px;
    margin-top: 12px;
}


/**
------------------------------------------------------------------

  [ 3 | 15 ]  Mini Column CSS

------------------------------------------------------------------
 */

.mini-column-section {
    width: 202px;
    text-align: center;
    margin: auto;
}

.mini-column-section > .mini-column-header {
    height: 44px;
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: center;
}

.mini-column-section .green-line {
    height: 1px;
    width: 100%;

    background-color: var(--gw-green);
    border: none;
}

.mini-column-section .mini-column-icon {
    height: 42px;
    width: 42px;

    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--gw-green);

    border-radius: 42px;
    border: 1px solid #F3F3F3;
}

.mini-column-section > .mini-column-header-text {
    font-family: "Source Sans Pro", sans-serif;
    font-weight: bold;
    font-size: 15px;

    margin-top: 5px;
    text-align: center;

    color: var(--gw-green);
}

.mini-column-section > p {
    font-family: "PT Sans", sans-serif;
    font-size: 15px;

    text-align: center;

    margin-top: 15px;
}











