/* @import url("common.css"); */


#canvas{
    max-width: 1200px;
    margin: 0 auto;
    padding: 75px;
}

.display-none{
    display: none;
}

header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto 100px auto;
    height: 100px;
}

        .logo img{
            height: 40px;
        }
        /* .logo h2{
            font-family: futura-pt;
            font-weight: 700;
            font-size: 42px;
            margin: 15px 0 0 0;
        } */

        .logo p{
            font-family: futura-pt;
            font-weight: 300;
            font-size: 12px;
            color: var(--sub-col);
            margin: 15px 0 0 0;
        }

    .hamburger{
        display: none;
    }

    .nav-bar ul{
        display: flex;
        justify-content: space-between;
        align-items: center;
        height: 100px;
        gap: 30px;
    }

        .nav-bar ul li{
            list-style: none;
        }

            input[type="checkbox"]{
                -webkit-appearance: none;
                visibility: hidden;
                display: none;
            }

                .check{
                    position: relative;
                    display: block;
                    cursor: pointer;
                    overflow: hidden;
                    color: var(--sub-col);
                }

                .check:hover{
                    color: var(--main-col);
                }

            .nav-bar ul li a{
                white-space: nowrap;
                text-decoration: none;
                color: var(--sub-col);
                font-size: 13px;
                font-family: futura-pt;
                font-weight: 400;
            }

            .nav-bar ul li a:hover{
                color: var(--main-col);
            }

.main-box{
    width: 100%;
    justify-content: center;
}

    .about{
        width: 100%;
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
    }

        .about-img-box{
            width: 60%;
            aspect-ratio: 1250 / 829;
            object-fit: cover;
        }

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

        .about-text-box{
            width: 30%;
            padding: 0 40px;
        }

            .about-text-box p{
                color: var(--sub-col);
                font-family: futura-pt;
                font-weight: 300;
            }

            .about-flex{
                display: flex;
                justify-content: left;
                vertical-align: middle;
                align-items: center;
                gap: 10px;
            }

                #insta-link{
                    height: auto;
                    align-items: center;
                    vertical-align: middle;
                    text-decoration: none;
                    cursor: pointer;
                    color: var(--sub-col);
                }

                .about-flex p{
                    font-size: 1.3rem;
                    /* color: var(--main-col); */
                }

            .profile-text{
                font-size: 1rem;
                line-height: 2.4rem;
            }

                .profile-text-about{
                    font-size: 0.8rem;
                    line-height: 1.3rem;
                }

                .section-text{
                    /* margin-bottom: -15px; */
                    color: var(--main-col);
                    font-family: futura-pt;
                    font-size: 1.8rem;
                    font-weight: 100;
                }

    /* .box{
        width: 370px;
        height: 300px;
        object-fit: cover;
    }

        .box img{
            width: 100%;
            object-fit: cover;
        }

        .box-text{
            margin: 5px 0;
            text-align: center;
            font-family: futura-pt;
            font-size: 1rem;
            font-weight: 300;
            color: var(--sub-col);
        }

    .box img:hover{
        opacity: 80%;
    } */


@media screen and (max-width:1300px){
    #canvas{
        padding: 75px 100px;
    }

    .about-text-box{
        width: 230px;
    }
}

@media only screen and (max-width:980px){

    #canvas{
        padding: 50px 75px;
    }

        header{
            height: auto;
            flex-flow: column;
            flex-direction: column-reverse;
            font-size: 20px;
            font-family: futura-pt;
            transition: 0.5s;
        }
        .logo a{
            text-align: center;
        }
        .logo img{
            height: 20px;
            margin: 0 auto;
        }
        .logo p{
            text-align: center;
        }

        .header.active{
            margin-top: 250px;
            transition: 0.5s;    
        }

            .hamburger{
                display: block;
                cursor: pointer;
            }

                .hamburger-text{
                    color: var(--sub-col);
                    margin: 6px 0;
                }

            .nav-bar{
                height: 0;
                position: absolute;
                top: 0;
                left: 0;
                right: 0;
                width: 100vw;
                background: var(--main-bg);
                transition: 0.5s;
                overflow: hidden;
            }

            .nav-bar.active{
                height: 250px;
                transition: 0.5s;
            }

                .nav-bar ul{
                    display: flex;
                    flex-flow: column;
                    padding: 0;
                    justify-content: center;
                    margin: 80px auto 0 auto;
                    text-align: center;
                }

                .nav-bar.active ul{
                    margin: 80px auto 0 auto;
                    opacity: 0;
                }

                .nav-bar.active ul{
                    opacity: 1;
                }

                    /* .nav-bar ul li{
                        gap: 20px;
                    } */

                    .nav-bar ul li a{
                        margin-bottom: 40px;
                        color: var(--sub-col);
                    }

            .box{
                width: 70%;
                height: auto;
            }

            .about-text-box{
                width: auto;
            }
}

@media screen and (max-width:630px){
    #canvas{
        padding:50px;
    }

    .box{
        width: auto;
    }
}