/*--------------------------------------------------*/

/*---------------------- Fonts ---------------------*/

/*--------------------------------------------------*/

@import url(https://fonts.googleapis.com/css?family=Ek+Mukta:200);

@import url(https://fonts.googleapis.com/css?family=Open+Sans:800);

@font-face {
    font-family: 'AdihausDIN Cn';
    src: url('AdihausDIN-CnItalic.woff2') format('woff2'),
    url('assetsAdihausDIN-CnItalic.woff') format('woff'),
    url('AdihausDIN-CnItalic.ttf') format('truetype'),
    url('AdihausDIN-CnItalic.svg#AdihausDIN-CnItalic') format('svg');
    font-weight: normal;
    font-style: italic;
}

@font-face {
    font-family: 'AdihausDIN Cn';
    src: url('AdihausDIN-Cn.woff2') format('woff2'),
    url('AdihausDIN-Cn.woff') format('woff'),
    url('AdihausDIN-Cn.ttf') format('truetype'),
    url('AdihausDIN-Cn.svg#AdihausDIN-Cn') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'AdihausDIN Cn';
    src: url('AdihausDIN-CnBold.woff2') format('woff2'),
    url('AdihausDIN-CnBold.woff') format('woff'),
    url('AdihausDIN-CnBold.ttf') format('truetype'),
    url('AdihausDIN-CnBold.svg#AdihausDIN-CnBold') format('svg');
    font-weight: bold;
    font-style: normal;
}

/*--------------------------------------------------*/

/*-------------------- Header ----------------------*/

/*--------------------------------------------------*/

::-webkit-scrollbar {
    display: none;
}

body {
    margin: 0;
    line-height: 1.4;
    background: #E1E1E1;
}

.window {
    position: relative;
    width: 100vw;
    /*    height: 100vh;*/
    overflow: hidden;
}

.window .header {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    height: 50px;
    width: 100%;
    overflow: hidden;
    transition: all 0.5s ease-out, background 1s ease-out;
    transition-delay: 0.2s;
    z-index: 3;
    background: #292929;
}

.window .header .burger-container {
    position: relative;
    display: inline-block;
    height: 50px;
    width: 50px;
    cursor: pointer;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    transition: all 0.3s cubic-bezier(0.4, 0.01, 0.165, 0.99);
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
}

.window .header .burger-container:hover {
    opacity: 0.5;
    transition: 0.4s;
}

.window .header .burger-container #burger {
    width: 18px;
    height: 8px;
    position: relative;
    display: block;
    margin: -4px auto 0;
    top: 50%;
}

.window .header .burger-container #burger .bar {
    width: 100%;
    height: 1px;
    display: block;
    position: relative;
    background: #FFF;
    transition: all 0.3s cubic-bezier(0.4, 0.01, 0.165, 0.99);
    transition-delay: 0s;
}

.window .header .burger-container #burger .bar.topBar {
    -webkit-transform: translateY(0px) rotate(0deg);
    transform: translateY(0px) rotate(0deg);
}

.window .header .burger-container #burger .bar.btmBar {
    -webkit-transform: translateY(6px) rotate(0deg);
    transform: translateY(6px) rotate(0deg);
}

/*-------------------- Logo ----------------------*/

.window .header #container-logo {
    position: absolute;
    height: 50px;
    width: 40px;
    left: 50%;
    top: 0px;
    transform: translate(-50%);
}

.window .header #logo {
    position: absolute;
    height: 40px;
    top: 6px;
}

.window .header h1 {
    position: absolute;
    height: 40px;
    left: 40px;
    top: -10px;
    font-family: 'roboto';
    font-size: 18px;
    color: white;
}

.window .header h1 span {
    position: absolute;
    height: 35px;
    left: 0px;
    top: 17px;
    font-family: roboto;
    font-size: 24px;
    color: white;
    font-weight: bold;
}

#instagram {
    position: absolute;
    height: 20px;
    right: 15px;
    top: 15px;
    opacity: 1;
}

#instagram:hover {
    opacity: 0.5;
    transition: 0.5s;
}

/*
.window .header .icon.icon-bag {
    right: 0;
    top: 0;
    left: auto;
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
    transition: -webkit-transform 0.5s cubic-bezier(0.4, 0.01, 0.165, 0.99);
    transition: transform 0.5s cubic-bezier(0.4, 0.01, 0.165, 0.99);
    transition: transform 0.5s cubic-bezier(0.4, 0.01, 0.165, 0.99), -webkit-transform 0.5s cubic-bezier(0.4, 0.01, 0.165, 0.99);
    transition-delay: 0.65s;
}
*/

.window .header ul.menu {
    position: relative;
    display: block;
    padding: 0px 48px 0;
    list-style: none;
}

.window .header ul.menu li.menu-item {
    border-bottom: 1px solid #4c4c4c;
    margin-top: 5px;
    -webkit-transform: scale(1.15) translateY(-30px);
    transform: scale(1.15) translateY(-30px);
    opacity: 0;
    transition: opacity 0.6s cubic-bezier(0.4, 0.01, 0.165, 0.99), -webkit-transform 0.5s cubic-bezier(0.4, 0.01, 0.165, 0.99);
    transition: transform 0.5s cubic-bezier(0.4, 0.01, 0.165, 0.99), opacity 0.6s cubic-bezier(0.4, 0.01, 0.165, 0.99);
    transition: transform 0.5s cubic-bezier(0.4, 0.01, 0.165, 0.99), opacity 0.6s cubic-bezier(0.4, 0.01, 0.165, 0.99), -webkit-transform 0.5s cubic-bezier(0.4, 0.01, 0.165, 0.99);
}

.window .header ul.menu li.menu-item:nth-child(1) {
    transition-delay: 0.49s;
}

.window .header ul.menu li.menu-item:nth-child(2) {
    transition-delay: 0.42s;
}

.window .header ul.menu li.menu-item:nth-child(3) {
    transition-delay: 0.35s;
}

.window .header ul.menu li.menu-item:nth-child(4) {
    transition-delay: 0.28s;
}

.window .header ul.menu li.menu-item:nth-child(5) {
    transition-delay: 0.21s;
}

.window .header ul.menu li.menu-item:nth-child(6) {
    transition-delay: 0.14s;
}

.window .header ul.menu li.menu-item:nth-child(7) {
    transition-delay: 0.07s;
}

.window .header ul.menu li.menu-item a {
    display: block;
    position: relative;
    color: #bbbbbb;
    font-family: 'Roboto', sans-serif;
    text-decoration: none;
    font-size: 22px;
    line-height: 2.35;
    font-weight: 200;
    width: 100%;
}

.window .header ul.menu li.menu-item a:hover {
    transition: ease-in-out 0.3s;
    color: #ffffff;
}

.window .header.menu-opened {
    height: 100%;
    background-color: #000;
    transition: all 0.3s ease-in, background 0.5s ease-in;
    transition-delay: 0.25s;
    background: #292929;
}

.window .header.menu-opened .burger-container {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
}

.window .header.menu-opened .burger-container #burger .bar {
    transition: all 0.4s cubic-bezier(0.4, 0.01, 0.165, 0.99);
    transition-delay: 0.2s;
}

.window .header.menu-opened .burger-container #burger .bar.topBar {
    -webkit-transform: translateY(4px) rotate(45deg);
    transform: translateY(4px) rotate(45deg);
}

.window .header.menu-opened .burger-container #burger .bar.btmBar {
    -webkit-transform: translateY(3px) rotate(-45deg);
    transform: translateY(3px) rotate(-45deg);
}

.window .header.menu-opened ul.menu li.menu-item {
    -webkit-transform: scale(1) translateY(0px);
    transform: scale(1) translateY(0px);
    opacity: 1;
}

.window .header.menu-opened ul.menu li.menu-item:nth-child(1) {
    transition-delay: 0.27s;
}

.window .header.menu-opened ul.menu li.menu-item:nth-child(2) {
    transition-delay: 0.34s;
}

.window .header.menu-opened ul.menu li.menu-item:nth-child(3) {
    transition-delay: 0.41s;
}

.window .header.menu-opened ul.menu li.menu-item:nth-child(4) {
    transition-delay: 0.48s;
}

.window .header.menu-opened ul.menu li.menu-item:nth-child(5) {
    transition-delay: 0.55s;
}

.window .header.menu-opened ul.menu li.menu-item:nth-child(6) {
    transition-delay: 0.62s;
}

.window .header.menu-opened ul.menu li.menu-item:nth-child(7) {
    transition-delay: 0.69s;
}

.window .header.menu-opened .icon.icon-bag {
    -webkit-transform: translateX(75px);
    transform: translateX(75px);
    transition-delay: 0.3s;
}


/*--------------------------------------------------*/

/*---------------------  Body  ---------------------*/

/*--------------------------------------------------*/

.window .content {
    font-family: 'Roboto', sans-serif;
    text-align: justify;
    overflow: scroll;
    max-height: 100%;
}

.window .content::-webkit-scrollbar {
    display: none;
}

.window .content h2 {
    margin-bottom: 0px;
    letter-spacing: 1px;
}

.window .content img {
    width: 95%;
    position: relative;
    display: block;
    margin: 75px auto 75px;
}

.window .content img:nth-of-type(2) {
    margin: 75px auto;
}

/*--------------------------------------------------*/

/*-------------- Slider main container -------------*/

/*--------------------------------------------------*/

.swiper-container {
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.swiper-slide-overlay {
    position: absolute;
    color: rgb(255, 255, 255);
    z-index: 5;
    line-height: 1;
    font-family: 'Roboto', sans-serif;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.swiper-slide-overlay-work {
    position: absolute;
    bottom: 50px;
    left: 50px;
    color: rgb(255, 255, 255);
    z-index: 5;
    line-height: 1;
    font-family: 'Roboto', sans-serif;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.swiper-slide-overlay-work h1 {
    margin: inherit;
}

.swiper-slide-overlay-work h3 {
    font-size: 1.2rem;
    max-width: 400px;
    margin-right: 3em;
}

#button {
    background-color: #fff;
    border: none;
    color: black;
    padding: 15px 50px;
    width: 100px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 18px;
    margin: 4px 2px;
    cursor: pointer;
    /*    border: 1px solid #00000030;*/
    transition: 0.4s ease-in-out;
}

#button:hover {
    background-color: #1e7542;
    /*    border: none;*/
    color: white;
    padding: 15px 50px;
    width: 100px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 18px;
    margin: 4px 2px;
    cursor: pointer;
    /*    border: 1px solid white;*/
}

.swiper-slide img {
    position: absolute;
    width: 100%;
    object-fit: cover;
    height: 100%;
    opacity: 0.9;
}

.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-slide-overlay h1 {
    margin: 0;
    font-size: 7rem;
    font-family: 'AdihausDIN Cn';
    font-weight: bold;

}

.swiper-slide-overlay h2 {
    margin: 0;
    font-family: 'Roboto', sans-serif;
    font-size: 2rem;
    margin-bottom: 20px;
}

@media screen and max-width:3000px) {
    .swiper-slide-overlay h1 {
        margin: 0;
        font-size: 8rem;
        transition: 0.5s;
    }
    .swiper-slide-overlay h2 {
        margin: 0;
        font-family: 'AdihausDIN Cn';
        font-weight: bold;
        font-size: 4rem;
        margin-bottom: 20px;
    }
}

@media screen and (max-width:2560px) {
    .swiper-slide-overlay h1 {
        margin: 0;
        font-size: 7rem;
        transition: 0.5s;
    }
    .swiper-slide-overlay h2 {
        margin: 0;
        font-family: 'roboto';
        font-weight: bold;
        font-size: 4rem;
        margin-bottom: 20px;
    }
}

@media screen and (max-width:1250px) {
    .swiper-slide-overlay h1 {
        margin: 0;
        font-size: 5rem;
        transition: 0.5s;
    }
    .swiper-slide-overlay h2 {
        margin: 0;
        font-family: 'Roboto', sans-serif;
        font-weight: bold;
        font-size: 2.8rem;
        margin-bottom: 20px;
    }
}

@media screen and (max-width:600px) {
    .swiper-slide-overlay h1 {
        margin: 0;
        font-size: 4.3rem;
        transition: 0.5s;
    }
    .swiper-slide-overlay h2 {
        margin: 0;
        font-family: 'Roboto', sans-serif;
        font-weight: bold;
        font-size: 2.4rem;
        margin-bottom: 20px;
    }
}

@media screen and (max-width:425px) {
    .swiper-slide-overlay h1 {
        margin: 0;
        font-size: 3rem;
        transition: 0.5s;
    }
    .swiper-slide-overlay h2 {
        margin: 0;
        font-family: 'Roboto', sans-serif;
        font-weight: bold;
        font-size: 1.6rem;
        margin-bottom: 20px;
    }
}

/*--------------------------------------------------*/

/*-------------------- Video JS --------------------*/

/*--------------------------------------------------*/

#my_video_1 {
    height: 100%;
    width: 100%;
    opacity: 0.6;
}

/*--------------------------------------------------*/

/*------------------- Responsive -------------------*/

/*--------------------------------------------------*/

@media screen and (max-width:768px) {
    .swiper-content h1 {
        margin: 0;
        font-size: 3rem;
        transition: 0.5s;
    }
}

@media screen and (max-width:425px) {
    .swiper-content h1 {
        margin: 0;
        font-size: 2rem;
        transition: 0.5s;
    }
    .swiper-content h2 {
        font-size: 1rem;
        margin: 0;
        font-family: 'Roboto', sans-serif;
    }
}

/*--------------------------------------------------*/

/*-------------------- Projects --------------------*/

/*--------------------------------------------------*/

.toolbar {
    display: flex;
    justify-content: center;
    font-family: 'Roboto', sans-serif;
    background-color: white;
}

.toolbar button {
    background-color: #ffffff;
    border: none;
    color: #292929;
    padding: 10px 30px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 1px;
}

.toolbar button:hover {
    background-color: #565656;
    border: none;
    color: white;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    transition: 0.2s ease-in-out;
}

.toolbar button.selected {
    background-color: #a2a2a2;
    color: white;
}

.main-projects-content {
    padding-top: 50px;
}

.main-projects-content > a {
    text-decoration: none;
}

.projects-content {
    display: flex;
    justify-content: center;
    align-content: center;
    max-width: 800px;
    min-width: 300px;
}

.projects-description {
    color: white;
    font-size: 18px;
    line-height: 1.5;
}

.projects-description > h1 {
    color: white;
    text-transform: uppercase;
    font-size: 20px;
    font-family: 'Roboto', sans-serif;
    margin: 0;
}

.projects-grid {
    margin-top: 50px;
}

#portfolio {
    display: flex;
    flex-wrap: wrap;
}

.thumbnail {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50%;
}

#portfolio .thumbnail h3 {
    opacity: 0;
    color: white;
    font-family: 'Roboto', sans-serif;
    font-size: 20px;
    position: absolute;
    height: 100%;
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    top: 0;
    margin: initial;
    left: 0;
    text-align: center;
    transition: .5s ease;
    background-color: #000000b5;
}

#portfolio .thumbnail h3:hover {
    opacity: 1;
}

.tile {
    -webkit-transform: scale(0);
    transform: scale(0);
    -webkit-transition: all 350ms ease;
    transition: all 350ms ease;
}

.tile:hover {}

.scale-anm {
    transform: scale(1);
}

.tile img {
    max-width: 100%;
    width: 100%;
    height: auto;
}

::-moz-focus-inner {
    border: 0;
    padding: 0;
}

/* --------------- Project tablet ---------------- */

@media only screen and (max-width: 992px) {
    .projects-description {
        font-size: 16px;
        line-height: 1.5;
    }
    .thumbnail {
        width: 50%;
    }
}

@media only screen and (max-width: 732px) {
    .projects-description {
        font-size: 16px;
        line-height: 1.5;
    }
    .thumbnail {
        width: 100%;
    }
    .toolbar > .btn-inner {
        font-size: 13px;
        padding: 10px 20px;
    }
}

@media only screen and (max-width: 425px) {
    .toolbar > .btn-inner {
        font-size: 15px;
        padding: 10px 5px;
        }
}

/*--------------------------------------------------*/
/*----------------- PROJECT DETAIL -----------------*/
/*--------------------------------------------------*/
#video_workpage {
    width: 100%;
    margin-top: 50px;
}

.main-projectdetail-content {
    padding-top: 100px;
    padding-left: 50px;
    padding-right: 50px;
    display: flex;
    justify-content: center;
    padding-bottom: 50px;
    font-family: 'Roboto', sans-serif;
}

.main-projectdetail-content > a {
    text-decoration: none;
}

.projectdetail-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-content: center;
    max-width: 800px;
    min-width: 300px;
}

.projectdetail-description > h1 {
    color: black;
    text-transform: uppercase;
    font-size: 2rem;
    font-weight: bold;
    margin: 0;
}

.projectdetail-description > h2 {
    color: black;
    text-transform: uppercase;
    font-size: 20px;
    margin: 0;
}

.projectdetail-description > p {
    color: darkslategrey;
    font-size: 18px;
    line-height: 1.5;
}

.swiper-container {
    width: 100%;
    height: 100vh;
    position: relative;
}

.swiper-slide-img {
    width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* --------------- PROJECT DETAIL TABLET ---------------- */

@media only screen and (max-width: 992px) {
    .projectdetail-description {
        font-size: 16px;
        line-height: 1.5;
    }
}

/* --------------- PROJECT DETAIL MOBILE ---------------- */

@media only screen and (max-width: 425px) {
    .projectdetail-description {
        font-size: 14px;
        line-height: 1.5;
    }
    .projectdetail-description > h1 {
        color: black;
        text-transform: uppercase;
        font-size: 1.4rem;
        font-weight: bold;
        margin: 0;
    }
    .projectdetail-description > h2 {
        font-size: 17px;
        font-weight: bold;
        margin: 0;
        padding: 20px 0px 10px 0px;
    }
    .projectdetail-description > p {
        color: darkslategrey;
        font-size: 1em;
        line-height: 1.5;
    }
}


@media screen and max-width:3000px) {}

@media screen and (max-width:2560px) {}

@media screen and (max-width:1250px) {}

@media screen and (max-width:600px) {}

@media screen and (max-width:425px) {}

/*--------------------------------------------------*/
/*-------------- MUSIC PROJECT DETAIL --------------*/
/*--------------------------------------------------*/
.soundcloud-player {
    padding-top: 50px;
}

.main-projectdetail-content-music {
    padding-top: 50px;
    padding-left: 50px;
    padding-right: 50px;
    display: flex;
    justify-content: center;
    padding-bottom: 50px;
    font-family: 'Roboto', sans-serif;
}

.main-projectdetail-content-music > a {
    text-decoration: none;
}

.projectdetail-content-music {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-content: center;
    max-width: 800px;
    min-width: 300px;
}

.projectdetail-description-music > h1 {
    color: black;
    text-transform: uppercase;
    font-size: 2rem;
    font-weight: bold;
    margin: 0;
}

.projectdetail-description-music > h2 {
    color: black;
    text-transform: uppercase;
    font-size: 20px;
    margin: 0;
}

.projectdetail-description-music > p {
    color: darkslategrey;
    font-size: 18px;
    line-height: 1.5;
}

/* ---- MUSIC PROJECT DETAIL TABLET ---------------- */

@media only screen and (max-width: 992px) {
    .projectdetail-description-music {
        font-size: 16px;
        line-height: 1.5;
    }
}

/* ---- MUSIC PROJECT DETAIL MOBILE ---------------- */

@media only screen and (max-width: 425px) {
    .projectdetail-description-music {
        font-size: 14px;
        line-height: 1.5;
    }
    .projectdetail-description-music > h1 {
        color: black;
        text-transform: uppercase;
        font-size: 1.4rem;
        font-weight: bold;
        margin: 0;
    }
    .projectdetail-description-music > h2 {
        font-size: 17px;
        font-weight: bold;
        margin: 0;
        padding: 20px 0px 10px 0px;
    }
    .projectdetail-description-music > p {
        color: darkslategrey;
        font-size: 1em;
        line-height: 1.5;
    }
    .main-projectdetail-content-music {
        padding-top: 20px;
        padding-left: 50px;
        padding-right: 50px;
        display: flex;
        justify-content: center;
        padding-bottom: 50px;
    }
}

@media screen and max-width:3000px) {}

@media screen and (max-width:2560px) {}

@media screen and (max-width:1250px) {}

@media screen and (max-width:600px) {}

@media screen and (max-width:425px) {}




/*--------------------------------------------------*/

/*--------------------- About ----------------------*/

/*--------------------------------------------------*/

.about-content-container {
    height: 100vh;
    width: 100vw;
    display: flex;
}

.about-content-image {
    max-width: 40vw;
}

.about-content-image video {
    height: 100%;
    width: 100%;
    /* object-fit: fill; */
    background: black;
}

.about-content-text {
    width: 50vw;
    max-width: 500px;
    padding: 70px;
    font-family: 'Roboto', sans-serif;
    /*    display: flex;*/
    flex-direction: column;
    justify-content: center;
    overflow-y: auto;
}

.about-content-text h1 {
    font-family: 'Roboto', sans-serif;
    font-size: 2.5rem;
}

.about-content-text h2 {
    font-family: 'Roboto', sans-serif;
    font-style: italic;
    margin-bottom: 0;
}

.about-content-text p {}

/* --------------- About tablet/phone ---------------- */

@media only screen and (max-width: 768px) {
    .window {
        height: inherit;
    }
    .about-content-container {
        height: inherit;
        width: inherit;
        display: inherit;
    }

    .about-content-image {
        width: 100vw;
        height: 80vh;
        max-width: none;
    }

    .about-content-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .about-content-text {
        width: initial;
        font-family: 'Roboto', sans-serif;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    @media screen and (orientation: landscape) {
        .about-content-image {
            width: 100vw;
            height: 100vh;
            max-width: none;
        }
    }
}

@media only screen and (max-width: 425px) {
    .about-content-text {
        width: initial;
        padding: 10px 30px 100px 30px;
        font-family: 'Roboto', sans-serif;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
}

/*--------------------------------------------------*/

/*-------------------- Contact ---------------------*/

/*--------------------------------------------------*/

.about-content-container {
    height: 100vh;
    width: 100vw;
    display: flex;
}

.about-content-image {
    max-width: 40vw;
}

.about-content-image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.about-content-text {
    width: 50vw;
    max-width: 500px;
    padding: 70px;
    font-family: 'Roboto', sans-serif;
    /*    display: flex;*/
    flex-direction: column;
    justify-content: center;
    overflow-y: auto;
}

.about-content-text h1 {
    font-family: 'Roboto', sans-serif;
    font-size: 2.5rem;
}

.about-content-text h2 {
    font-family: 'Roboto', sans-serif;
    font-style: italic;
    margin-bottom: 0;
}

#phone a {
    text-decoration: none;
    color: #292929;
}

#email a {
    text-decoration: none;
    color: #292929;
}

.about-content-text p a:hover {
    opacity: 0.5;
}

/* --------------- Contact tablet/phone ---------------- */

@media only screen and (max-width: 768px) {
    .window {
        height: inherit;
    }
    .about-content-container {
        height: inherit;
        width: inherit;
        display: inherit;
    }

    .about-content-image {
        width: 100vw;
        height: 80vh;
        max-width: none;
    }

    .about-content-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .about-content-text {
        width: initial;
        font-family: 'Roboto', sans-serif;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    @media screen and (orientation: landscape) {
        .about-content-image {
            width: 100vw;
            height: 100vh;
            max-width: none;
        }
    }
}

@media only screen and (max-width: 425px) {
    .about-content-text {
        width: initial;
        padding: 10px 30px 100px 30px;
        font-family: 'Roboto', sans-serif;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
}
