/* CSS - Google Fonts  */
@import url('https://fonts.googleapis.com/css2?family=Maven+Pro:wght@400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Homenaje&display=swap');

/* CSS - Variables CSS ******************************/
:root {
    --header-height: 3rem;

    /* CSS - Colors ********************/
    /* Main color */
    --hue-color: 38;

    /* HSL Color Mode */
    --first-color: hsla(var(--hue-color), 2%, 19%, 80%);
    --first-color-second: hsl(var(--hue-color), 64%, 52%);
    --first-color-alt: hsl(var(--hue-color), 19%, 50%);
    --title-color: hsl(var(--hue-color), 64%, 18%);
    --text-color: hsl(var(--hue-color), 64%, 35%);
    --text-color-light: hsl(var(--hue-color), 80%, 90%);
    --input-color: hsl(var(--hue-color), 24%, 97%);
    --body-color: hsl(var(--hue-color), 30%, 65%);
    --white-color: #fff;
    --scroll-bar-color: hsl(var(--hue-color), 12%, 90%);
    --scroll-thumb-color: hsl(var(--hue-color), 12%, 75%);

    /* CSS - Font and Typography *******/
    --body-font: 'Maven Pro', sans-serif;
    --title-font: 'Homenaje', sans-serif;
    --biggest-font-size: 2.3rem;
    --h1-font-size: 2.1rem;
    --h2-font-size: 2rem;
    --h3-font-size: 1.5rem;
    --normal-font-size: 0.938rem;
    --small-font-size: 0.813rem;
    --smaller-font-size: 0.75rem;

    /* CSS - Font Weight ***************/
    --font-medium: 500;
    --font-semi-bold: 600;

    /* CSS - Margins Bottom ************/
    --mb-0-25: 0.25rem;
    --mb-0-5: 0.5rem;
    --mb-0-75: 0.75rem;
    --mb-1: 1rem;
    --mb-1-25: 1.25rem;
    --mb-1-5: 1.5rem;
    --mb-2: 2rem;
    --mb-2-5: 2.5rem;

    /* CSS - Z-Index *******************/
    --z-tooltip: 10;
    --z-fixed: 100;

    /* CSS - Hover Overlay *************/
    --img-transition: 0.3s;
    --img-hidden: hidden;
    --img-scale: scale(1.1);
}

/* CSS - 968px **************************************/
@media screen and (min-width: 1024px) {
    :root {
        --biggest-font-size: 4rem;
        --h1-font-size: 2.25rem;
        --h2-font-size: 1.75rem;
        --h3-font-size: 1.25rem;
        --normal-font-size: 1rem;
        --small-font-size: 0.875rem;
        --smaller-font-size: 0.813rem;
    }
}

/* CSS - Variables Dark Theme ***********************/
body.dark-theme {
    /* HSL Color Mode */
    --first-color-second: hsl(var(--hue-color), 34%, 50%);
    --title-color: hsl(var(--hue-color), 24%, 60%);
    --text-color: hsl(var(--hue-color), 8%, 60%);
    --input-color: hsl(var(--hue-color), 29%, 16%);
    --body-color: hsl(var(--hue-color), 2%, 19%);
    --scroll-bar-color: hsl(var(--hue-color), 12%, 48%);
    --scroll-thumb-color: hsl(var(--hue-color), 12%, 36%);
}

/* CSS - Button Dark/Light **************************/
.nav__dark {
    display: flex;
    align-items: center;
    column-gap: 2rem;
    position: absolute;
    left: 3rem;
    bottom: 4rem;
}

.change-theme,
.change-theme-name {
    color: var(--text-color);
}
.change-theme {
    cursor: pointer;
    font-size: 1rem;
}

.change-theme-name {
    font-size: var(--small-font-size);
}

/* CSS - Base ***************************************/

* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 20px;
}

body {
    margin: var(--header-height) 0 0 0;
    font-family: var(--body-font);
    font-size: var(--normal-font-size);
    background-color: var(--body-color);
    color: var(--text-color);
}

h1,
h2,
h3 {
    color: var(--title-color);
    font-weight: var(--font-semi-bold);
    font-family: var(--title-font);
}

ul {
    list-style: none;
}

a,
a:visited,
a:link {
    text-decoration: none;
    color: var(--white-color);
}

img,
video {
    max-width: 100%;
    height: auto;
}

button,
input {
    border: none;
    font-family: var(--body-font);
    font-size: var(--normal-font-size);
}

button {
    cursor: pointer;
}

input {
    outline: none;
}

/* CSS - Reusable CSS Classes ***********************/

.section {
    padding: 4.5rem 0 2.5rem;
}

.section__title {
    font-size: var(--h2-font-size);
    color: var(--title-color);
    text-align: center;
    text-transform: capitalize;
    margin-bottom: var(--mb-2);
}

.container {
    max-width: 968px;
    margin-left: var(--mb-1);
    margin-right: var(--mb-1);
}

.grid {
    display: grid;
    gap: 1.5rem;
}

.hidden {
    display: none;
}

.page__overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 20;
    scroll-behavior: unset;
    backdrop-filter: blur(3px);
}

/* CSS - Header *************************************/
.header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: calc(var(--z-fixed) - 3);
    background-color: transparent;
}

/* CSS - Langs ****************************************/
.langs {
    margin: 0 1.5rem 1rem auto;
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
}

.langs a {
    /* padding: 0.5rem; */
    padding-bottom: 1rem;
    min-width: 60px;
    width: 100%;
}

.langs a:hover {
    color: var(--text-color-light);
    font-weight: 600;
}

/* CSS - Nav ****************************************/
.nav {
    height: var(--header-height);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav__logo,
.nav__toggle {
    color: var(--white-color);
}

.nav__logo img {
    margin-top: 2.2rem;
    padding-right: 1rem;
    transition: 1s;
}

.nav__toggle {
    font-size: 1.2rem;
    cursor: pointer;
}

.nav__menu {
    position: relative;
}

@media screen and (max-width: 1024px) {
    .nav__menu {
        position: fixed;
        background-color: var(--body-color);
        top: 0;
        right: -100%;
        width: 70%; /* ANCHOR - Size of sidemenu */
        height: 100%;
        box-shadow: -1px 0 4px hsla(var(--hue-color), 64%, 15%, 0.15);
        padding: 2rem;
        transition: 0.4s;
    }
}

.nav__list {
    display: flex;
    flex-direction: column;
    row-gap: 2.5rem;
    z-index: var(--z-fixed);
}

.nav__link {
    color: var(--text-color-light);
    font-weight: var(--font-semi-bold);
    text-transform: uppercase;
}

.nav__link:hover {
    color: var(--text-color);
}

.nav__close {
    position: absolute;
    top: 0.75rem;
    right: 1rem;
    font-size: 1.5rem;
    color: var(--title-color);
    cursor: pointer;
}

.show-menu {
    z-index: var(--z-fixed);
    right: 0;
}

/* Change header background */
.scroll-header {
    background-color: var(--body-color);
    box-shadow: 0 0 4px hsla(var(--hue-color), 64%, 15%, 0.15);
}

.scroll-header .nav__logo-container img {
    display: flex;
    padding: 0.7rem;
    margin: 0;
    height: 9vh;
    transition: 0.4s ease-out;
}

.scroll-header .nav__logo-container {
    transition: 0.4s ease-out;
}

.scroll-header .nav__toggle {
    color: var(--title-color);
}

/* Active Link */
.active-link {
    position: relative;
    color: var(--title-color);
}

.active-link::before {
    content: '';
    position: absolute;
    background-color: var(--title-color);
    width: 100%;
    height: 2px;
    bottom: -0.75rem;
}

.active-link:hover::before {
    background-color: var(--text-color);
}

/* CSS - Home Section *******************************/
.home__video-clipme {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    object-fit: cover;
    object-position: 50%;
    opacity: 0.4;
    clip-path: inset(0% round 0% 0% 250px 0%);
}

.home__video-clipme-mask {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    object-fit: cover;
    object-position: 50%;
    clip-path: inset(0% round 0% 0% 250px 0%);
    background-color: hsla(var(--hue-color), 2%, 19%);
    z-index: -1;
}

.home__img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    object-fit: cover;
    object-position: 5%;
}

.home__container {
    position: relative;
    height: calc(100vh - var(--header-height));
    align-content: center;
    row-gap: 3rem;
}

.home__data-subtitle,
.home__data-title,
.home__social-link,
.home__info {
    color: var(--white-color);
}

.home__data-subtitle {
    display: block;
    font-weight: var(--font-medium);
    font-size: 1.2rem;
    margin-bottom: var(--mb-0-75);
}

.home__data-title {
    font-size: calc(var(--biggest-font-size) - 5px);
    font-weight: var(--font-medium);
    margin-bottom: var(--mb-2-5);
}

.home__data-text-highlight {
    color: rgb(240, 200, 147);
}

.home__social {
    display: flex;
    flex-direction: column;
    row-gap: 1.5rem;
}

.home__social-link {
    font-size: 1.2rem;
    width: max-content;
}

.home__social-link-icon {
    height: 1.2rem;
}

.home__info {
    background-color: var(--first-color);
    display: flex;
    padding: 1.5rem 1rem;
    align-items: center;
    column-gap: 0.5rem;
    position: absolute;
    right: 0;
    bottom: 1rem;
    width: 250px;
}

.home__info-title {
    display: block;
    font-size: var(--small-font-size);
    font-weight: var(--font-semi-bold);
    margin-bottom: var(--mb-0-75);
}

.home__info-button {
    font-size: var(--smaller-font-size);
}

.home__info-overlay {
    overflow: var(--img-hidden);
}

.home__info-img {
    width: 145px;
    transition: var(--img-transition);
}

.home__info-img:hover {
    transform: var(--img-scale);
}

/* CSS - Buttons ************************************/
.button {
    display: inline-block;
    background-color: var(--first-color);
    color: var(--white-color);
    padding: 1rem 2rem;
    font-weight: var(--font-semi-bold);
    transition: 3s;
}

.button:hover {
    background-color: var(--first-color-alt);
}

.button--flex {
    display: flex;
    align-items: center;
    column-gap: 0.25rem;
}

.button--link {
    background: none;
    padding: 0;
}

.button--link:hover {
    background: none;
}

/* CSS - Services ***********************************/
.services__description {
    margin-bottom: var(--mb-1-25);
}

.services__description-stages {
    display: block;
    font-weight: var(--font-semi-bold);
    font-size: calc(var(--h3-font-size) - 0.3rem);
}

.services__container {
    margin: 2.5rem;
    display: flex;
    flex-wrap: wrap;
    background-image: url('../img/FantasyBG.jpg');
    object-fit: fill;
    object-position: bottom;
    border-radius: 1rem;
    justify-content: center;
    padding: 1.5rem;
}

.services__card {
    position: relative;
    margin: 0.75rem;
    box-shadow: 20px 20px 50px rgba(0, 0, 0, 0.25);
    border-radius: 25px 5px 25px 5px;

    width: 200px;
    height: 220px;

    display: grid;
    align-content: center;

    background: linear-gradient(
        -190deg,
        rgba(255, 255, 255, 0.25) 50%,
        rgba(255, 255, 255, 0) 90%
    );
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.5);
    /* border-left: 1px solid rgba(255, 255, 255, 0.5); */
    backdrop-filter: blur(5px);
    color: var(--white-color);
}

.services__data {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px;
}

.services__icon {
    display: block;
    text-align: center;
    font-size: 3rem;
    color: white;
}

.services__title {
    font-size: 1.5rem;
    text-align: center;
    margin: var(--mb-0-5);
    color: white;
}

.services__title.jp-services-title {
    font-size: 0.9rem;
    font-weight: 400;
    margin: 0.5rem 0;
}

.services__details-openBtn {
    cursor: pointer;
    padding: 0.2rem;
    transition: all 0.3s ease-out;
}
.services__details-openBtn:hover {
    transform: translateY(-5px);
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.25);
    padding: 0.75rem;
    border-radius: 0.1rem;
    transition: all 0.3s ease-out;
}

.services__details-openBtn:active {
    transform: translateY(-2px);
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.25);
    padding: 0.75rem;
    transition: all 0.3s ease-out;
}

/* .services__details-openBtn a::after {
    transform: translateY(-5px);
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.25);
    padding: 0.75rem;
}

.services__details-openBtn a::after:hover {
    transform: translateY(-4px);
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.25);
    padding: 0.75rem;
    transition: all 0.5s ease-out;
} */

.services__details-container {
    font-size: var(--normal-font-size);
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 85%;
    background-color: var(--body-color);
    padding: 1.5rem;
    border-radius: 1.25rem;
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.7);
    z-index: 1000;
    min-height: fit-content;
    max-height: 80vh;
    overflow-y: auto;
}

.services__details-closeBtn {
    font-family: sans-serif;
    position: absolute;
    top: 0.5rem;
    right: 1.25rem;
    font-size: 2rem;
    color: var(--white-color);
    cursor: pointer;
    border: none;
    background: none;
}

.services__details-title {
    font-size: var(--h2-font-size);
    margin-top: 1rem;
    margin-bottom: var(--mb-1-5);
}

.services__details {
    padding-right: 0.5rem;
}

.services__title-conduct {
    font-size: 1.75rem;
    text-align: center;
    margin: var(--mb-0-5);
}

.services__details-list {
    list-style-type: disc;
    list-style-position: outside;
}

.services__details-list li {
    padding-top: 0.5rem;
    margin-left: 0.8rem;
    font-size: 0.8rem;
}

/* CSS - About **************************************/
.about__container {
    row-gap: 2.5rem;
}

.about__description {
    margin-bottom: var(--mb-2);
}

.about__list-wrap {
    align-items: center;
}
.about__list {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.about__list div {
    counter-increment: list-number;
    border: 1px solid #524c3d;
    display: flex;
    align-items: center;
    margin: 0.5rem;
    padding: 0.5rem;
    background-color: #2a2a28;
    border-radius: 0.3rem;
    min-width: 430px;
    max-width: 800px;
}

.about__list div:before {
    content: counter(list-number);
    margin: 0.5rem;
    min-width: 2rem;
    height: 2.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    background-color: #766649;
    border-radius: 10%;
    color: #dbcbac;
}

/* CSS - Contact ************************************/
.contact__data {
    text-align: center;
}

.contact__container {
    row-gap: 2.5rem;
}

.contact__email {
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    font-size: 1.25rem;
}

.contact__phone {
    margin: 1rem;
    display: flex;
    flex-direction: column;
    font-size: 1.25rem;
}

/* CSS - Contact - First Time Outsourcing */
.contact__title {
    /* margin: 0.5rem; */
    letter-spacing: 0.05rem;
    text-align: center;
    line-height: 3rem;
    font-size: 2rem;
    padding: 1rem;
}

/* CSS - Footer *************************************/
.footer__container {
    row-gap: 5rem;
}

.footer__content {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    row-gap: 2rem;
}

.footer__title,
.footer__subtitle {
    font-size: var(--h3-font-size);
}

.footer__title {
    margin-bottom: var(--mb-0-5);
}

.footer__description {
    margin-bottom: var(--mb-2);
}

.footer__social {
    font-style: 1.25rem;
    color: var(--title-color);
    margin-right: var(--mb-1-25);
}

.footer__subtitle {
    margin-bottom: var(--mb-1);
}

.footer__item {
    margin-bottom: var(--mb-0-75);
}

.footer__link {
    color: var(--text-color);
}

.footer__link:hover {
    color: var(--title-color);
}

.footer__rights {
    /* display: flex; // ANCHOR Needs to be placed back once all is working */
    flex-direction: column;
    row-gap: 1.5rem;
    text-align: center;
}

.footer__copy,
.footer__terms-link {
    font-size: var(--small-font-size);
    color: var(--text-color-light);
}

.footer__terms {
    display: flex;
    column-gap: 1.5rem;
    justify-content: center;
}

.footer__terms-link:hover {
    color: var(--text-color);
}

/* CSS - Scroll Up **********************************/
.scrollup {
    position: fixed;
    right: 1rem;
    bottom: -20%;
    background-color: var(--first-color);
    padding: 0.5rem;
    display: flex;
    opacity: 0.6;
    z-index: var(--z-tooltip);
    transition: 0.4s;
}

.scrollup__icon {
    color: var(--white-color);
}

.scrollup:hover {
    background-color: var(--first-color-alt);
    opacity: 1;
}

/* Show Scroll Up */
.show-scroll {
    bottom: 6rem;
}

/* Scroll bar ***************************************/
::-webkit-scrollbar {
    width: 0.6rem;
    background-color: var(--scroll-bar-color);
}

::-webkit-scrollbar-thumb {
    background-color: var(--scroll-thumb-color);
}

::-webkit-scrollbar-thumb:hover {
    background-color: var(--first-color);
}

/* CSS - Testimonials *******************************/

.col-lg-4 {
    padding: 1rem 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.card {
    margin: 0.7rem 0;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    perspective: 500px;
    border: none;
    background-color: inherit;
}

.card .face {
    color: var(--text-color);
    font-style: italic;
    width: 100%;
    height: 100%;
    overflow: hidden;
    box-shadow: 0 15px 20px rgba(0, 0, 0, 0.1);
    border-radius: 15px;

    transform-style: preserve-3d;
    transition: 0.5s;
    border-top: 1px solid var(--text-color);
    border-left: 1px solid var(--text-color);

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(
        166deg,
        rgba(255, 255, 255, 0.04) 20%,
        rgb(58, 58, 58) 100%
    );
    padding: 2.5rem;
    text-align: left;
}

.card .face.back-face .ri-double-quotes-l {
    position: absolute;
    top: 1rem;
    left: 1rem;
    font-size: 1.2rem;
}

.card .face.back-face .ri-double-quotes-r {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    font-size: 1.2rem;
}

/* CSS - Media Queries ******************************/
/* For small devices */
@media screen and (max-width: 625px) {
    .langs {
        margin: 0 0.5rem 0 auto;
    }

    .langs a {
        padding: 0.2rem;
        min-width: 50px;
        width: 100%;
        font-size: 0.8rem;
    }

    .nav__logo img {
        margin-top: 0.9rem;
        padding: 0.7rem;
        margin-right: 0.5rem;
        transition: 1s;
    }

    .scroll-header .nav__logo-container img {
        display: flex;
        padding: 0.8rem 0;
        margin: 0.7rem auto;
        height: 3rem;
        transition: 0.4s ease-out;
    }

    .home__container {
        position: relative;
        height: calc(100vh - var(--header-height));
        /* align-content: center; */
        row-gap: 1.5rem;
    }

    .home__data-subtitle {
        display: block;
        font-weight: var(--font-medium);
        font-size: 1rem;
        margin-bottom: var(--mb-0-75);
    }

    .home__data-title {
        font-size: calc(var(--h3-font-size) + 7px);
        margin: 0 0 1.5rem 0;
    }

    /* Button */
    .button {
        padding: 0.5rem 1rem;
        font-weight: var(--font-medium);
    }

    .home__social {
        display: flex;
        flex-direction: row;
        column-gap: 1.5rem;
        padding-bottom: 170px;
        margin-bottom: var(--mb-1-5);
    }

    .home__social.jp-social {
        padding-bottom: 30px;
        margin-bottom: 0;
    }

    .home__info-title {
        font-size: calc(var(--smaller-font-size) - 1px);
        font-weight: var(--font-medium);
        margin: 0 0 0.7rem 0;
    }

    .home__info-overlay {
        height: 0;
    }

    .home__info {
        width: 240px;
        padding: 1rem;
        left: 0;
        border-bottom-right-radius: 55%;
    }

    .services__card {
        margin: 0.5rem;
        border-radius: 15px 5px 15px 5px;

        min-width: 160px;
        height: 200px;
    }

    .services__data {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 10px;
    }

    .services__icon {
        display: block;
        text-align: center;
        font-size: 3rem;
        color: white;
    }

    .services__title {
        font-size: 1.15rem;
        text-align: center;
        margin: var(--mb-0-5);
        color: white;
    }

    .services__title.jp-services-title {
        font-size: 0.8rem;
        margin: 0.2rem;
        font-weight: 400;
    }

    .services__details-title {
        font-size: 1.3rem;
    }

    .services__details {
        font-size: 0.85rem;
    }

    .about__list div {
        min-width: 340px;
    }
}

/* For medium devices */
@media screen and (min-width: 568px) {
    .langs {
        margin: 0 0.5rem 0 auto;
    }

    .langs a {
        padding: 0.2rem;
        min-width: 50px;
        width: 100%;
        font-size: 0.8rem;
    }

    .home__info {
        width: 275px;
        padding: 1.39rem;
        font-size: var(--normal-font-size + 20px);
    }

    .home__info-title {
        font-size: calc(var(--normal-font-size) - 1px);
        font-weight: 300;
        margin: 0 0 0.7rem 0;
    }

    .home__info-img {
        height: 20%;
        width: 100%;
    }

    .about__list div {
        min-width: 568px;
        max-width: 568px;
    }
}
/* Medium above 768px */
@media screen and (min-width: 855px) and (min-height: 1023px) {
    .langs {
        margin: 0 0.5rem 0 auto;
    }

    .langs a {
        padding: 0.2rem;
        min-width: 50px;
        width: 100%;
        font-size: 0.8rem;
    }

    body {
        margin: 0;
    }

    .section {
        padding: 7rem 0 2rem;
    }

    .home__container {
        height: 100vh;
        /* grid-template-columns: 1.8fr 0.5fr; */
    }

    .home__data {
        align-self: flex-end;
    }

    .home__data-title .home__info-br {
        display: initial;
    }

    .home__social {
        flex-direction: row;
        align-self: flex-end;
        margin-bottom: 3rem;
        column-gap: 2.5rem;
    }

    .home__social.jp-social {
        padding-bottom: 30px;
        margin-bottom: 0;
    }

    .home__info {
        width: 350px;
        padding: 1.39rem;
        font-size: var(--normal-font-size + 50px);
        bottom: 3rem;
    }

    .about__list div {
        min-width: 768px;
        max-width: 768px;
    }

    .footer__rights {
        flex-direction: row;
        justify-content: space-between;
    }

    .services__details-list li {
        padding-top: 0.5rem;
        margin-left: 2rem;
        font-size: 1rem;
    }
}

/* Large devices */
@media screen and (min-width: 1024px) {
    .nav {
        height: calc(var(--header-height) + 1.5rem);
    }

    .nav__link {
        color: var(--white-color);
        text-transform: initial;
    }

    .nav__link:hover {
        color: var(--white-color);
    }

    .nav__dark {
        position: initial;
    }

    .nav__menu {
        display: flex;
        column-gap: 1.5rem;
    }

    .nav__list {
        flex-direction: row;
        column-gap: 2rem;
    }

    .nav__toggle,
    .nav__close,
    .change-theme-name {
        display: none;
    }

    .change-theme {
        color: var(--white-color);
    }

    .active-link::before {
        background-color: var(--white-color);
    }

    .scroll-header .nav__link {
        color: var(--text-color);
    }

    .scroll-header .active-link {
        color: var(--title-color);
    }

    .scroll-header .active-link::before {
        background-color: var(--title-color);
    }

    .scroll-header .change-theme {
        color: var(--text-color);
    }

    .container {
        margin-left: auto;
        margin-right: auto;
    }

    .home__container {
        grid-template-rows: 2fr 0.5fr;
    }

    .home__data-subtitle {
        display: block;
        font-weight: var(--font-medium);
        font-size: 3rem;
        margin-top: 250px;
        margin-bottom: var(--mb-0-75);
    }

    .home__data-title {
        font-size: calc(var(--h3-font-size) + 12px);
        margin: 0 0 0.5rem 0;
    }

    .home__info {
        width: 328px;
        grid-template-columns: 1fr 2fr;
        column-gap: 2rem;
    }

    .home__info-title {
        font-size: var(--normal-font-size);
    }

    .home__info-img {
        width: 340px;
    }

    .about__list div {
        min-width: 800px;
        max-width: 800px;
    }

    .services__details-container {
        font-size: var(--normal-font-size);
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 55%;
        background-color: var(--body-color);
        padding: 1.5rem;
        border-radius: 1.25rem;
        box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.7);
        z-index: 1000;
        height: fit-content;
    }
}

@media screen and (min-width: 1200px) {
    .container {
        max-width: 1024px;
    }
}
/* For tall screens on mobiles and desktop */
@media screen and (min-height: 650px) and (max-width: 280px) {
    body {
        margin: 0;
        padding: 0;
    }
    .home__container,
    .home__video-clipme,
    .home__video-clipme-mask {
        height: 700px;
        width: 275px;
    }
}

@media screen and (min-height: 589px) and (min-width: 625px) {
    body {
        margin: 80px 0 0 0;
        padding: 0;
    }

    .home__data-subtitle {
        display: block;
        font-weight: var(--font-medium);
        font-size: 1rem;
        margin-bottom: calc(var(--mb-0-75) - 15px);
    }

    .home__data-title {
        font-size: calc(var(--h3-font-size) + 12px);
        margin: 0 0 1.5rem 0;
    }
}

@media screen and (min-height: 589px) and (max-width: 625px) {
    .home__info-br {
        display: none;
    }

    .home__data-subtitle {
        display: block;
        font-weight: var(--font-medium);
        font-size: 0.74rem;
        margin-bottom: calc(var(--mb-0-75) - 10px);
    }

    .home__data-title {
        font-size: calc(var(--h3-font-size) - 1px);
        margin: 0 0 0.7rem 0;
    }
}

@media screen and (max-height: 590px) and (min-width: 630px) {
    body {
        margin: 70px 70px 0 0;
        padding: 0;
    }

    .home__data-subtitle {
        display: block;
        font-weight: var(--font-medium);
        font-size: 0.74rem;
        margin-bottom: calc(var(--mb-0-75) - 10px);
    }

    .home__data-title {
        font-size: calc(var(--h3-font-size) - 1px);
        margin: 0 0 0.7rem 0;
    }
}

@media screen and (min-height: 589px) and (min-width: 1020px) {
    body {
        margin: 0;
        padding: 0;
    }

    .home__data-subtitle {
        display: block;
        font-weight: var(--font-medium);
        font-size: 1rem;
        margin-bottom: calc(var(--mb-0-75) - 15px);
    }

    .home__data-title {
        font-size: calc(var(--h3-font-size) + 2rem);
        margin: 0 0 1.5rem 0;
    }
}
