.main-screen__back-desktop {
    background-size: cover!important;
    background-position: center!important;
}

@media (min-width: 320px) and (max-width: 480px) {
    .main-screen__back-mobile {
        background-size: cover!important;
        background-position: center!important;
        background-repeat: no-repeat!important;
    }
    .main-screen__back-mobile:after {
        background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 75%, rgba(0, 0, 0, 0.6) 100%);
        background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 75%, rgba(0, 0, 0, 0.6) 100%);
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 75%, rgba(0, 0, 0, 0.6) 100%);
    }
    .main-screen__wrapper {
        bottom: 16px;
        padding-left: 1rem;
        padding-right: 1rem;
    }
    .main-screen__title {
        font-family: inherit;
        font-size: 2rem;
    }
}


/* Smartphones (portrait and landscape) ----------- */

@media only screen and (min-device-width: 320px) and (max-device-width: 480px) {
    .page-template .main-screen {
        margin-bottom: 0;
    }
    .page-template main {
        padding: 0 16px;
    }
}

#circle-container {
    margin: 0%;
}

#circle {
    position: absolute;
    width: 100%;
    left: 125px;
    top: 400px;
}

#circle text {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: .4px;
}

#circle svg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 540px;
    -webkit-animation-name: rotate;
    -moz-animation-name: rotate;
    -ms-animation-name: rotate;
    -o-animation-name: rotate;
    animation-name: rotate;
    -webkit-animation-duration: 5s;
    -moz-animation-duration: 5s;
    -ms-animation-duration: 5s;
    -o-animation-duration: 5s;
    animation-duration: 5s;
    -webkit-animation-iteration-count: infinite;
    -moz-animation-iteration-count: infinite;
    -ms-animation-iteration-count: infinite;
    -o-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    -moz-animation-timing-function: linear;
    -ms-animation-timing-function: linear;
    -o-animation-timing-function: linear;
    animation-timing-function: linear;
}

@-webkit-keyframes rotate {
    from {
        -webkit-transform: rotate(360deg);
    }
    to {
        -webkit-transform: rotate(0);
    }
}

@-moz-keyframes rotate {
    from {
        -moz-transform: rotate(360deg);
    }
    to {
        -moz-transform: rotate(0);
    }
}

@-ms-keyframes rotate {
    from {
        -ms-transform: rotate(360deg);
    }
    to {
        -ms-transform: rotate(0);
    }
}

@-o-keyframes rotate {
    from {
        -o-transform: rotate(360deg);
    }
    to {
        -o-transform: rotate(0);
    }
}

@keyframes rotate {
    from {
        transform: rotate(360deg);
    }
    to {
        transform: rotate(0);
    }
}

.team__card {
    position: relative;
    display: flex;
    justify-content: flex-start;
    margin-top: 30px;
    background-color: #fff;
    border: 1px solid #4d4d4d;
}

.team__card::before {
    position: absolute;
    top: -1px;
    right: -1px;
    width: 41px;
    height: 41px;
    background-image: linear-gradient(45deg, #4d4d4d 50%, #fff 50%, #fff 100%);
    content: '';
}

.team__card:before {
    width: 64px;
    height: 64px;
}

.team__card:before {
    width: 53px;
    height: 53px;
}

.team__card .team__photo img {
    width: 280px;
    height: 388px;
    object-fit: cover;
    display: block;
    margin: 0 auto;
}

.team__photo {
    position: relative;
    padding: 30px 15px 30px 30px;
}

.team__card h4 {
    color: #233042;
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 48px;
    margin: 0;
}

.team__card h6 {
    color: #BBBEBF;
    font-weight: 500;
    font-size: 1.125rem;
    line-height: 24px;
}

.team__card p {
    color: #778085;
    font-size: 1rem;
    line-height: 30px;
}

.team__card .team__content {
    display: flex;
    flex-flow: wrap column;
    justify-content: center;
    padding: 30px 52px 30px 15px;
}

.team__card .team__content a:hover {
    color: #795eab;
    text-decoration: underline;
}

.team__card h4:hover {
    color: #f25836;
    text-decoration: underline;
}

.team__card .team__content ul {
    font-size: 0.875rem;
    margin-top: 30px;
}

.member__list {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-gap: 1rem;
    grid-template-columns: repeat(2, 1fr);
}

.member__card {
    background-color: #fff;
    padding: 1rem;
    height: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    align-items: center;
    height: 15rem;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    /* border: 1px solid #ececec; */
}

.member__photo {
    width: 100px;
    height: 100px;
    background-color: #ececec;
    border-radius: 100%;
    margin-top: 16px;
    margin-bottom: 8px;
    overflow: hidden;
}

.member__photo img {
    width: 100%;
    height: 100%;
    min-width: 100px;
    object-fit: cover;
    object-position: center;
}

.member__content,
.member__content a {
    display: flex;
    flex-direction: column;
    justify-content: start;
    text-align: center;
    align-items: center;
    text-decoration: none;
    color: inherit;
}

.member__name {
    font-size: 1.125rem;
    font-weight: 500;
    color: #14213d;
    margin-top: 8px;
    line-height: normal;
}

.member__position {
    font-size: 0.875rem;
    font-weight: 400;
    color: #757575;
    height: 75px;
}

.member__footer {
    display: flex;
    justify-content: center;
    align-items: center;
    vertical-align: middle;
    text-align: center;
    position: absolute;
    width: 100%;
    height: 48px;
    bottom: 0;
    left: 0;
}


/* .member__footer:before {
        position: absolute;
        content: "";
        width: 100%;
        border-top: 1px solid #ececec;
        top: 0;
        left: 0;
      } */

.member__link {
    font-size: 0.875rem;
    color: #795eac;
    text-decoration: none;
}


/* iPAD */

@media (min-width: 480px) and (max-width: 1024px) {
    .page {
        background: #f5f5f5;
    }
}