/*-- -------------------------- -->
<---          Landing           -->
<--- -------------------------- -*/
/* Mobile */
@media only screen and (min-width: 0em) {
  #hero {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: relative;
    z-index: 1;
    min-height: 50vh;
  }
  #hero:before {
    content: '';
    position: absolute;
    display: block;
    height: 100%;
    width: 100%;
    background: #000;
    opacity: .7;
    top: 0;
    left: 0;
    z-index: -1;
  }
  #hero picture {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: -2;
  }
  #hero picture img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
  }
  #hero h1 {
    color: #fff;
    font-size: 2.13333333em;
    text-align: center;
    margin: 0 auto;
    position: relative;
    width: 96%;
    max-width: 7.8125em;
    margin-top: 1.09375em;
    margin-bottom: 0.46875em;
  }
  #hero p {
    color: #fff;
    text-align: center;
    max-width: 22.22222222em;
    font-size: 0.9em;
    margin: auto;
    margin-bottom: 1.66666667em;
    display: block;
    width: 96%;
  }
}
/* Tablet */
@media only screen and (min-width: 48em) {
  #hero {
    font-size: 20px;
  }
  #hero h1 {
    font-size: 3.2em;
  }
}
/* Small Desktop */
@media only screen and (min-width: 64em) {
  #hero {
    min-height: 15em;
    height: auto;
    padding-top: 9em;
    padding-block-end: 5em;
    background-attachment: fixed;
    font-size: inherit;
  }
}
/*-- -------------------------- -->
<---           About            -->
<--- -------------------------- -*/
/* Mobile */
@media only screen and (min-width: 0em) {
  #about-content .container {
    padding: 0;
    width: 96%;
    margin: auto;
  }
  #about-content .image {
    position: relative;
    width: 96%;
    height: auto;
    margin: auto;
    margin-bottom: 2.5em;
  }
  #about-content .image img {
    width: 100%;
    height: auto;
    margin: auto;
    display: block;
  }
  #about-content .audio-box {
    padding: 1em;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    max-width: 20em;
    background: #f1f3f4;
    margin: auto;
    margin-top: 2.5em;
    margin-bottom: 4em;
  }
  #about-content .audio-box .name {
    display: block;
    font-size: 0.85em;
  }
  #about-content .audio-box .music {
    font-size: 0.8em;
    opacity: .9;
    margin-bottom: 1em;
  }
  #about-content .content .topper {
    font-size: 0.7em;
    line-height: 1.35714286;
    color: var(--primary);
    letter-spacing: .06em;
    margin-bottom: 0.42857143em;
    display: block;
    text-transform: uppercase;
    font-weight: bold;
    text-align: left;
  }
  #about-content .content h2 {
    font-size: 1.8em;
    line-height: 1.16666667;
    color: #000;
    font-weight: 900;
    margin-bottom: 0.66666667em;
    position: relative;
    text-align: left;
  }
  #about-content .content h2:before {
    content: '';
    position: absolute;
    display: block;
    height: 4.16666667em;
    width: 4.16666667em;
    background: var(--primary);
    opacity: .05;
    top: -1.38888889em;
    left: -1.38888889em;
    z-index: -1;
  }
  #about-content .content .decoration {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 0.9em;
  }
  #about-content .content .decoration img {
    width: 1.5em;
    height: 1.5em;
    display: inline-block;
    margin-right: 0.75em;
  }
  #about-content .content .decoration .line {
    width: 80%;
    height: 1px;
    background: var(--primary);
  }
  #about-content .content p {
    font-size: 0.9em;
    line-height: 1.5;
    color: #595959;
  }
  body.dark-mode #about-content .content h2 {
    color: #fff;
  }
  body.dark-mode #about-content .content p {
    color: #fff;
    opacity: .9;
  }
}
/* Tablet */
@media only screen and (min-width: 48em) {
  #about-content {
    padding-top: 5em;
  }
  #about-content .container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    max-width: 57.2em;
    font-size: min(2.2vw, 1em);
  }
  #about-content .image {
    margin: 0;
    max-width: 15em;
    height: auto;
    margin-right: 2em;
  }
  #about-content .content {
    width: 27.5em;
    margin-left: 2.5em;
    margin-top: 1.25em;
  }
}
/*-- -------------------------- -->
<---      Content Template      -->
<--- -------------------------- -*/
/* Mobile */
@media only screen and (min-width: 0em) {
  .content-template .topper {
    font-size: 0.9em;
    font-weight: bold;
    letter-spacing: .5em;
    color: var(--primary);
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 0.83333333em;
    display: block;
  }
  .content-template h2 {
    font-size: min(12vw, 2.4em);
    line-height: 1em;
    margin: auto;
    margin-bottom: 0.83333333em;
    text-align: center;
    width: 100%;
    max-width: 17.0625em;
    font-weight: 500;
  }
  .content-template p {
    font-size: 0.9em;
    line-height: 1.5;
    width: 100%;
    max-width: 34.66666667em;
    margin: auto;
    text-align: center;
  }
  body.dark-mode .content-template .topper {
    color: #ed342f;
  }
}
/*-- -------------------------- -->
<---          Services          -->
<--- -------------------------- -*/
/* Mobile */
@media only screen and (min-width: 0em) {
  #services {
    padding-top: 5em;
    position: relative;
  }
  #services .background {
    display: none;
    pointer-events: none;
  }
  #services .services {
    margin: auto;
    margin-top: 5em;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    font-size: min(3vw, 1em);
    flex-wrap: wrap;
    width: 96%;
    max-width: 33.5em;
  }
  #services .item {
    width: 15em;
    margin-bottom: 3.75em;
    text-decoration: none;
  }
  #services .item .image-group picture img {
    border-radius: 50%;
    display: block;
    width: 10em;
    height: 10em;
    margin: auto;
    margin-bottom: 1.5em;
  }
  #services .item h3 {
    text-align: center;
    font-size: 1.8em;
    font-weight: 500;
    line-height: 1em;
    margin-bottom: 0.27777778em;
  }
  #services .item p {
    text-align: center;
    font-size: 0.9em;
    line-height: 1.5;
  }
  #services .item .notes {
    display: none;
  }
  #services .button-solid {
    margin: auto;
    display: block;
    width: 12.38888889em;
    padding: 0;
  }
}
/* Tablet */
@media only screen and (min-width: 48em) {
  #services {
    padding-top: 5em;
  }
  #services .container {
    max-width: 65em;
  }
  #services .services {
    font-size: min(1.5vw, 1em);
    width: 100%;
    max-width: 60em;
  }
}
/* Small Desktop */
@media only screen and (min-width: 64em) {
  #services {
    position: relative;
    z-index: 10;
    padding-bottom: 0;
  }
  #services .background {
    display: block;
    opacity: .1;
    left: 50%;
    margin-left: -75em;
    top: -10em;
    position: absolute;
    z-index: -1;
  }
  #services .item .image-group {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 10em;
    height: 10em;
    overflow: hidden;
    margin: auto;
    margin-bottom: 1.5em;
    border-radius: 50%;
  }
  #services .item .image-group:before {
    content: '';
    position: absolute;
    display: block;
    height: 10em;
    width: 10em;
    background: var(--primary);
    opacity: 0;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 50%;
    transition: opacity .3s;
    z-index: 10;
  }
  #services .item .image-group picture img {
    margin: 0;
    transition: transform .6s;
  }
  #services .item:hover .image-group:before {
    opacity: .7;
  }
  #services .item:hover .image-group .notes {
    opacity: 1;
    transform: translateY(0);
    transition: transform .4s ease, opacity .3s;
  }
  #services .item:hover .image-group picture img {
    transform: scale(1.2);
    transition: transform .3s;
  }
  #services .item:hover h3 {
    transform: translateY(-0.41666667em);
  }
  #services .item:hover p {
    transform: translateY(-0.83333333em);
  }
  #services .item .notes {
    display: block;
    position: absolute;
    display: flex;
    justify-content: center;
    opacity: 0;
    transform: translateY(1em);
    pointer-events: none;
    z-index: 11;
  }
  #services .item .notes img {
    width: 1.4em;
    height: 1.4em;
    display: block;
  }
  #services .item .notes img:nth-of-type(1) {
    -webkit-animation-name: bobbleOne;
    animation-name: bobbleOne;
    -webkit-animation-duration: 1.2s;
    animation-duration: 1.2s;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-direction: reverse;
    animation-direction: reverse;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
  }
  #services .item .notes img:nth-of-type(2) {
    margin: -0.75em -0.25em 0 -0.25em;
    -webkit-animation-name: bobbleOne;
    animation-name: bobbleOne;
    animation-delay: .3s;
    -webkit-animation-duration: 1.2s;
    animation-duration: 1.2s;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-direction: reverse;
    animation-direction: reverse;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
  }
  #services .item .notes img:nth-of-type(3) {
    margin-top: -0.25em;
    margin-left: -0.25em;
    -webkit-animation-name: bobbleOne;
    animation-name: bobbleOne;
    animation-delay: .6s;
    -webkit-animation-duration: 1.2s;
    animation-duration: 1.2s;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-direction: reverse;
    animation-direction: reverse;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
  }
  #services .item h3,
  #services .item p {
    transition: transform .3s;
  }
  #services .item p {
    transition-delay: .05s;
  }
}
/*-- -------------------------- -->
<---          Location          -->
<--- -------------------------- -*/
/* Mobile */
@media only screen and (min-width: 0em) {
  #location {
    padding-top: 5em;
  }
  #location .container {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  #location .content-template {
    order: 2;
  }
  #location .content-template .address-group {
    display: flex;
    font-size: 0.9em;
    line-height: 1.33333333;
    justify-content: center;
  }
  #location .content-template .address-group .box {
    text-decoration: none;
    text-align: center;
    margin: 0 1.11111111em;
  }
  #location .content-template .address-group .box .header {
    font-weight: bold;
    display: block;
    text-transform: uppercase;
    margin-bottom: 0.55555556em;
  }
  #location .content-template .address-group .box a {
    text-decoration: none;
    display: block;
  }
  #location .content-template .address-group a,
  #location .content-template .address-group span {
    line-height: 1.66666667em;
  }
  #location .content-template .address-group a .add {
    line-height: 1.66666667;
  }
  #location .content-template .address-group a .add span {
    display: block;
    line-height: 1.75;
  }
  #location .content-template p strong {
    color: var(--primary);
    font-weight: bold !important;
  }
  #location .content-template .button-solid {
    display: block;
    margin: auto;
    width: 10.72222222em;
    padding: 0;
    margin-top: 1.66666667em;
  }
  #location .right-box {
    position: relative;
    width: 70%;
    max-width: 19em;
    height: 18.5em;
    z-index: 1;
    margin: auto;
    margin-bottom: 3.5em;
    transform: translateX(-0.5em);
    order: 1;
  }
  #location .right-box a {
    display: block;
    width: 100%;
    height: 100%;
  }
  #location .right-box:before {
    content: '';
    position: absolute;
    display: block;
    height: 100%;
    width: 100%;
    border: 0.05em solid var(--primary);
    opacity: 1;
    top: 1em;
    left: 1em;
    z-index: -1;
  }
  #location .right-box img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
  }
  #location .right-box .button {
    width: 6em;
    height: 6em;
    background: var(--primary);
    text-align: center;
    justify-content: center;
    align-items: center;
    display: flex;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    color: #fff;
    font-size: 0.7em;
    line-height: 1.14285714;
    padding-top: 0.35714286em;
    transition: transform .3s;
  }
  #location .right-box .button:hover {
    transform: translate(-50%, -50%) scale(1.2);
  }
  body.dark-mode #location .content-template .address-group .box {
    color: #fff;
  }
  body.dark-mode #location .content-template .address-group .box .header {
    color: #fff;
  }
  body.dark-mode #location .content-template .address-group .box a {
    color: #fff;
  }
  body.dark-mode #location .content-template p strong {
    color: var(--shade);
  }
}
/* Landscape */
@media only screen and (min-width: 666px) {
  #location {
    padding-bottom: 7.5em;
    position: relative;
    z-index: 100;
  }
  #location .content-template h2 {
    max-width: 12.5em;
  }
  #location .content-template p:first-of-type {
    max-width: 27.77777778em;
  }
  #location .content-template a:hover .add {
    text-decoration: underline;
  }
}
/* Small Desktop */
@media only screen and (min-width: 64em) {
  #location {
    padding-bottom: 10em;
  }
  #location .container {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    max-width: 60em;
  }
  #location .content-template {
    order: 2;
    width: 100%;
    max-width: 31.15em;
  }
  #location .content-template .topper,
  #location .content-template h2,
  #location .content-template p {
    text-align: left;
    margin-left: 0;
  }
  #location .content-template h2 {
    width: 100%;
    max-width: 100%;
  }
  #location .content-template p {
    max-width: 32.22222222em;
  }
  #location .content-template p a {
    color: var(--primary);
  }
  #location .content-template .address-group {
    justify-content: flex-start;
  }
  #location .content-template .address-group .box {
    text-align: left;
    margin-left: 0;
    margin-right: 4.44444444em;
  }
  #location .content-template .button-solid {
    margin-left: 0;
  }
  #location a:hover {
    text-decoration: underline;
  }
  #location .right-box {
    order: 1;
    transform: none;
    margin: 0;
    height: 30.5em;
    width: 44.05em;
    max-width: 34.05em;
    margin-right: 2.5em;
  }
  #location .right-box:before {
    top: 2em;
    left: -2em;
  }
  #location .right-box img {
    width: 100%;
  }
  body.dark-mode #methods .content-template p a {
    color: #ff7361;
    font-weight: bold;
  }
}
/*-- -------------------------- -->
<---           Methods          -->
<--- -------------------------- -*/
/* Mobile */
@media only screen and (min-width: 0em) {
  #methods .container {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  #methods .content-template {
    order: 2;
  }
  #methods .content-template .button-solid {
    display: block;
    margin: auto;
    width: 10.72222222em;
    padding: 0;
    margin-top: 1.66666667em;
  }
  #methods .right-box {
    position: relative;
    width: 70%;
    max-width: 19em;
    height: 18.5em;
    z-index: 1;
    margin: auto;
    margin-bottom: 3.5em;
    transform: translateX(-0.5em);
    order: 1;
  }
  #methods .right-box:before {
    content: '';
    position: absolute;
    display: block;
    height: 100%;
    width: 100%;
    border: 0.05em solid var(--primary);
    opacity: 1;
    top: 1em;
    left: 1em;
    z-index: -1;
  }
  #methods .right-box img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
  }
}
@media only screen and (min-width: 666px) {
  #methods {
    padding-bottom: 7.5em;
  }
  #methods .content-template h2 {
    max-width: 12.5em;
  }
}
/* Small Desktop */
@media only screen and (min-width: 64em) {
  #methods {
    padding-top: 0em;
    padding-bottom: 5em;
  }
  #methods .container {
    flex-direction: row;
    align-items: center;
  }
  #methods .content-template {
    order: 1;
    width: 100%;
    max-width: 31.15em;
    margin-right: 3.65em;
  }
  #methods .content-template .topper,
  #methods .content-template h2,
  #methods .content-template p {
    text-align: right;
    margin-right: 0;
  }
  #methods .content-template h2 {
    width: 100%;
    max-width: 100%;
  }
  #methods .content-template p {
    max-width: 32.22222222em;
  }
  #methods .content-template p a {
    color: var(--primary);
  }
  #methods .content-template .button-solid {
    margin-right: 0;
  }
  #methods .right-box {
    order: 2;
    transform: none;
    margin: 0;
    height: 25em;
    width: 19em;
  }
  #methods .right-box:before {
    top: 2em;
    left: 2em;
  }
  body.dark-mode #methods .content-template p a {
    color: #ff7361;
    font-weight: bold;
  }
}
/*-- -------------------------- -->
<---           Mentor           -->
<--- -------------------------- -*/
/* Mobile */
@media only screen and (min-width: 0em) {
  #mentor .container {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  #mentor .content-template {
    order: 2;
  }
  #mentor .content-template .button-solid {
    display: block;
    margin: auto;
    width: 10.72222222em;
    padding: 0;
    margin-top: 1.66666667em;
  }
  #mentor .right-box {
    position: relative;
    width: 70%;
    max-width: 19em;
    height: 18.5em;
    z-index: 1;
    margin: auto;
    margin-bottom: 3.5em;
    transform: translateX(-0.5em);
    order: 1;
  }
  #mentor .right-box:before {
    content: '';
    position: absolute;
    display: block;
    height: 100%;
    width: 100%;
    border: 0.05em solid var(--primary);
    opacity: 1;
    top: 1em;
    left: 1em;
    z-index: -1;
  }
  #mentor .right-box img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
  }
}
@media only screen and (min-width: 666px) {
  #mentor {
    padding-bottom: 7.5em;
  }
}
/* Small Desktop */
@media only screen and (min-width: 64em) {
  #mentor {
    padding-top: 7.5em;
    padding-bottom: 10em;
  }
  #mentor .container {
    flex-direction: row;
    align-items: center;
  }
  #mentor .content-template {
    order: 1;
    width: 100%;
    max-width: 30.15em;
    margin-left: 3.65em;
    order: 2;
  }
  #mentor .content-template .topper,
  #mentor .content-template h2,
  #mentor .content-template p {
    text-align: left;
    margin-right: 0;
  }
  #mentor .content-template p a {
    color: var(--primary);
  }
  #mentor .content-template .button-solid {
    margin-left: 0;
  }
  #mentor .right-box {
    order: 2;
    transform: none;
    margin: 0;
    height: 25em;
    width: 19em;
    order: 1;
  }
  #mentor .right-box:before {
    top: 2em;
    left: -2em;
  }
}
/*-- -------------------------- -->
<---          Adults            -->
<--- -------------------------- -*/
/* Mobile */
@media only screen and (min-width: 0em) {
  #adults .container {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  #adults .content-template {
    order: 2;
  }
  #adults .content-template .button-solid {
    display: block;
    margin: auto;
    width: 10.72222222em;
    padding: 0;
    margin-top: 1.66666667em;
  }
  #adults .right-box {
    position: relative;
    width: 70%;
    max-width: 19em;
    height: 18.5em;
    z-index: 1;
    margin: auto;
    margin-bottom: 3.5em;
    transform: translateX(-0.5em);
    order: 1;
  }
  #adults .right-box:before {
    content: '';
    position: absolute;
    display: block;
    height: 100%;
    width: 100%;
    border: 0.05em solid var(--primary);
    opacity: 1;
    top: 1em;
    left: 1em;
    z-index: -1;
  }
  #adults .right-box img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
  }
}
@media only screen and (min-width: 666px) {
  #adults {
    padding-bottom: 7.5em;
  }
  #adults .content-template h2 {
    max-width: 12.5em;
  }
}
/* Small Desktop */
@media only screen and (min-width: 64em) {
  #adults {
    padding-top: 0em;
    padding-bottom: 5em;
  }
  #adults .container {
    flex-direction: row;
    align-items: center;
  }
  #adults .content-template {
    order: 1;
    width: 100%;
    max-width: 31.15em;
    margin-right: 3.65em;
  }
  #adults .content-template .topper,
  #adults .content-template h2,
  #adults .content-template p {
    text-align: right;
    margin-right: 0;
  }
  #adults .content-template h2 {
    width: 100%;
    max-width: 100%;
  }
  #adults .content-template p {
    max-width: 32.22222222em;
  }
  #adults .content-template p a {
    color: var(--primary);
  }
  #adults .content-template .button-solid {
    margin-right: 0;
  }
  #adults .right-box {
    order: 2;
    transform: none;
    margin: 0;
    height: 25em;
    width: 19em;
  }
  #adults .right-box:before {
    top: 2em;
    left: 2em;
  }
  body.dark-mode #methods .content-template p a {
    color: #ff7361;
    font-weight: bold;
  }
}
/*-- -------------------------- -->
<---           Reviews          -->
<--- -------------------------- -*/
/* Mobile */
@media only screen and (min-width: 0em) {
  #reviews {
    padding-top: 3.75em;
    padding-bottom: 3.75em;
    margin: auto;
    text-align: center;
  }
  #reviews .container {
    width: 96%;
    max-width: 66em;
  }
  #reviews .title {
    margin-bottom: 3.29166667em;
  }
  #reviews .review {
    padding: 3.2em 1.5em 0.9em 1.5em;
    box-shadow: 0px 20px 40px rgba(0, 0, 0, 0.05);
    width: 100%;
    max-width: 20.5em;
    margin: auto;
    margin-bottom: 5em;
    border-radius: 0.25em;
    position: relative;
    background: #fff;
    display: flex;
    flex-direction: column;
  }
  #reviews .review:last-of-type {
    margin-bottom: 0;
  }
  #reviews .review .profile {
    display: block;
    height: 4.95em;
    width: 4.95em;
    margin-left: 0;
    border-radius: 50%;
    margin-bottom: 0.8em;
    position: absolute;
    left: 1.5em;
    top: -2.55em;
  }
  #reviews .review p {
    line-height: 1.33333333;
    margin-bottom: 1.55555556em;
    text-align: left;
  }
  #reviews .review .star-group {
    border-top: 1px solid #E7E7E7;
    padding-top: 0.8em;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    margin-top: auto;
  }
  #reviews .review .star-group .name {
    color: #1A1A1A;
    font-size: 0.9em;
    line-height: 1.33333333em;
    text-align: left;
    font-weight: bold;
    display: block;
  }
  #reviews .review .star-group .desc {
    color: #575757;
    font-weight: 400;
    display: block;
  }
  #reviews .review .star-group img {
    display: block;
    width: 4.55em;
    height: 0.75em;
    margin: 0;
  }
  #reviews .button-solid {
    margin-top: 4.16666667em;
  }
}
/* Tablet */
@media only screen and (min-width: 48em) {
  #reviews {
    padding-top: 2.5em;
    padding-bottom: 4.5em;
  }
  #reviews .container {
    font-size: min(1.4vw, 1em);
    display: flex;
    justify-content: space-between;
    padding: 0;
  }
  #reviews .title {
    margin-bottom: 2.5em;
  }
  #reviews .review {
    margin: 0;
  }
  #reviews .review p {
    text-align: left;
  }
}
/* Dark Mode */
@media only screen and (min-width: 0em) {
  body.dark-mode #reviews .review {
    background: var(--medium);
  }
  body.dark-mode #reviews .review .name {
    color: #fff;
  }
  body.dark-mode #reviews .review .desc {
    color: #fff;
    opacity: .7;
  }
}
/*-- -------------------------- -->
<---         Portfolio          -->
<--- -------------------------- -*/
/* Mobile */
@media only screen and (min-width: 0em) {
  #portfolio {
    background: #F8F8F8;
    padding-top: 3.75em;
    padding-bottom: 7.75em;
    position: relative;
    z-index: 5;
  }
  #portfolio .title {
    margin-bottom: 2.08333333em;
  }
  #portfolio .container {
    width: 96%;
    max-width: 66.1em;
    padding: 0;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 1.5em;
    font-size: min(1.3vw, 1em);
  }
  #portfolio .container .row {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 1.5em;
  }
  #portfolio .container .row:nth-of-type(1) picture:nth-of-type(1) {
    width: 21em;
    height: 28.35em;
  }
  #portfolio .container .row:nth-of-type(1) picture:nth-of-type(2) {
    width: 21em;
    height: 31.45em;
  }
  #portfolio .container .row:nth-of-type(1) picture:nth-of-type(3) {
    width: 21em;
    height: 25.6em;
  }
  #portfolio .container .row:nth-of-type(2) picture:nth-of-type(1) {
    width: 21em;
    height: 24.6em;
  }
  #portfolio .container .row:nth-of-type(2) picture:nth-of-type(2) {
    width: 21em;
    height: 25.85em;
  }
  #portfolio .container .row:nth-of-type(2) picture:nth-of-type(3) {
    width: 21em;
    height: 31.45em;
  }
  #portfolio .container .row:nth-of-type(3) picture:nth-of-type(1) {
    width: 21em;
    height: 31.25em;
  }
  #portfolio .container .row:nth-of-type(3) picture:nth-of-type(2) {
    width: 21em;
    height: 22.6em;
  }
  #portfolio .container .row:nth-of-type(3) picture:nth-of-type(3) {
    width: 21em;
    height: 31.45em;
  }
  #portfolio .container .row picture {
    position: relative;
    display: block;
  }
  #portfolio .container .row picture img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
  }
}
/* Small Desktop */
@media only screen and (min-width: 64em) {
  #portfolio {
    padding-top: 5.5em;
    padding-bottom: 11.4em;
  }
}
/* Dark Mode */
@media only screen and (min-width: 0em) {
  body.dark-mode #portfolio {
    background: #1d1d1d;
  }
}
/*-- -------------------------- -->
<---           Simple           -->
<--- -------------------------- -*/
/* Mobile */
@media only screen and (min-width: 0em) {
  #simple {
    padding: 3.75em 0;
  }
}
/* tablet */
@media only screen and (min-width: 48em) {
  #simple {
    padding: 5em 0;
  }
}
