/*.................... start global style ....................*/

@font-face {
    font-family: 'Cartoon Tunes';
    src: url("../fonts/Cartoon\ \ Tunes.woff");
}

@font-face {
    font-family: 'Inter';
    src: url("../fonts/Inter-Regular.ttf");
}

:root {
    --c_primary: #FF7523;
    --c_primary1: #A43D00;
    --c_secondary: #231F20;
    --c_black: #000000;
    --c_white: #ffffff;
    --bg_white: #ffffff;
    --bg_gray: #f2f2f2;
    --bg_backdrop: #ffffffcc;
}

body {
    padding-top: 112px;
}

.c_primary {
    color: var(--c_primary)
}

.c_primary1 {
    color: var(--c_primary1)
}

.c_secondary {
    color: var(--c_secondary)
}

.c_black {
    color: var(--c_black)
}

.c_white {
    color: var(--c_white)
}


/*.................... end global style ....................*/


/* ..................... start header section ..................... */

.header_sec {
    z-index: 40;
}

.header_secBox {
    border-bottom: 3px solid var(--c_black);
    padding: 35px 12px 10px 12px;
    background-color: var(--bg_white);
}

.header_logoLink {
    display: inline-block;
    width: 208px;
}

.header_logoLink img {
    max-width: 100%;
}

.header_menuToggleBtn {
    height: 40px;
    border: none;
    padding: 0px;
    background: transparent;
    max-width: 50px;
}

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

.cross_icon {
    display: none;
}

.header_sec.active_nav .cross_icon {
    display: initial;
}

.header_sec.active_nav .hamburger_icon {
    display: none;
}

.header_navSec {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    background-color: var(--bg_white);
    z-index: -1;
    max-height: 100vh;
    overflow-y: scroll;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.header_sec.active_nav .header_navSec {
    visibility: visible;
    opacity: 1;
    pointer-events: initial;
}

.header_navBox {
    padding-top: 120px;
    padding-bottom: 240px;
    min-height: 100vh;
    background-image: url("../img/header_menu_bg.png");
    background-repeat: no-repeat;
    background-position: bottom center;
}

.header_nav {
    list-style: none;
    text-align: center;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    padding-left: 96px;
    /*! padding-top: 4px; */
}

.header_navItem {
    margin-bottom: 46px;
}

.header_navLink {
    font-family: 'Cartoon Tunes';
    font-size: 42px;
    line-height: 1.1579em;
    letter-spacing: 0.12em;
    text-decoration: none;
    color: var(--c_black);
    border: none;
    background-color: transparent;
}

.header_navLink:hover {
    color: var(--c_primary);
}


/* photo navigation modal */

.photo_modalArea {
    position: fixed;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    width: 100%;
    z-index: 50;
    overflow: hidden;
    visibility: hidden;
    pointer-events: none;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.photo_modalArea.active {
    visibility: visible;
    pointer-events: initial;
}

.photo_modalContent {
    position: absolute;
    top: 50%;
    right: 0px;
    z-index: 3;
    -webkit-transform: translate(110%, -50%);
    -ms-transform: translate(110%, -50%);
    transform: translate(110%, -50%);
    background: var(--bg_gray);
    padding: 8px 26px 0px 8px;
    border-radius: 36px 0px 0px 36px;
    width: 275px;
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    -o-transition: transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
}

.photo_modalArea.active .photo_modalContent {
    -webkit-transform: translate(0%, -50%);
    -ms-transform: translate(0%, -50%);
    transform: translate(0%, -50%);
}

.photo_modalClsBtn {
    border: none;
    background: transparent;
    width: 38px;
    position: absolute;
    top: 8px;
    right: 10px;
}

.photo_modalNav_item {
    margin-bottom: 16px;
}

.photo_modalNav_link {
    text-decoration: none;
    color: var(--c_black);
    font-family: 'Cartoon Tunes';
    font-size: 40px;
    line-height: 34px;
    letter-spacing: 0.12em;
}

.photo_modalNav_link:hover {
    color: var(--c_black);
}

.photo_modalNav_link img {
    height: 0.6em;
}

.f_letter {
    /* margin-right: -0.2em; */
}

.m_letter {}

.s_letter {
    margin-right: 0.1em;
}

.photo_modalNav {
    list-style: none;
}

.modal_backdrop {
    width: 100%;
    height: 100%;
    background-color: var(--bg_backdrop);
    opacity: 0;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.active .modal_backdrop {
    opacity: 1;
}

.photo_modal_backdrop {}


/* contact modal */

.contact_modalArea {
    position: fixed;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    width: 100%;
    z-index: 50;
    overflow: hidden;
    visibility: hidden;
    pointer-events: none;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.contact_modalArea.active {
    visibility: visible;
    pointer-events: initial;
}

.contact_modalContent {
    position: absolute;
    top: 50%;
    right: 0px;
    z-index: 3;
    -webkit-transform: translate(110%, -50%);
    -ms-transform: translate(110%, -50%);
    transform: translate(110%, -50%);
    padding: 35px 10px 46px 28px;
    width: 676px;
    background: -o-linear-gradient(179.99deg, rgba(156, 253, 246, 0.96) 0.01%, rgba(255, 255, 255, 0.96) 39.74%);
    background: linear-gradient(270.01deg, rgba(156, 253, 246, 0.96) 0.01%, rgba(255, 255, 255, 0.96) 39.74%);
    border: 0.2px solid #FD9F41;
    border-radius: 76px 0px 0px 76px;
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    -o-transition: transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
}

.contact_modalArea.active .contact_modalContent {
    -webkit-transform: translate(0%, -50%);
    -ms-transform: translate(0%, -50%);
    transform: translate(0%, -50%);
}

.contact_modalClsBtn {
    border: none;
    background: transparent;
    width: 43px;
    position: absolute;
    top: 10px;
    right: 10px;
}

.contact_modalContentBox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.contact_modalContent_left {
    width: 56%;
}

.contact_modalEmailBox {
    position: relative;
    margin-top: 16px;
    margin-bottom: 26px;
    margin-right: -46px;
}

.contact_modalEmailImg {
    width: 100%;
}

.contact_modalEmailLink {
    font-family: 'Inter';
    font-weight: 400;
    font-size: 22px;
    line-height: 1.2333em;
    color: #241A1A;
    text-decoration: none;
    top: 34%;
    left: 10px;
    position: absolute;
}

.contact_modalEmailLink:hover {
    color: var(--c_primary);
}

.contact_modalInstagramLink {
    max-width: 68%;
    display: block;
    margin-left: auto;
    margin-right: 16px;
}

.contact_modalInstagramImg {}

.contact_modalContent_right {
    width: 44%;
}

.contact_modalImg {
    width: 100%;
}

.photo_modal_backdrop {}


/* ..................... end header section ..................... */


/* ..................... start home section ..................... */

.home_sec {}

.home_logo_link {
    display: inline-block;
    margin-left: -26px;
    margin-bottom: 14px;
}

.home_logo {}

.home_content {
    position: relative;
}

.home_img {
    margin-left: -30px;
}

.home_nav {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
}

.home_navLink {
    position: absolute;
    font-family: 'Cartoon Tunes';
    font-size: 41px;
    line-height: 0.8929em;
    letter-spacing: 0.12em;
    text-decoration: none;
    color: var(--c_primary);
    border: 1px solid var(--c_black);
    background: transparent;
    padding: 0rem 0.1071em;
    min-width: 140px;
    text-align: center;
}

.home_navLink:hover {
    color: var(--c_primary1);
}

.hone_navLink_1,
.hone_navLink_2,
.hone_navLink_4,
.hone_navLink_6,
.hone_navLink_7 {
    border-radius: 0px 36px 36px 0px;
}

.hone_navLink_3,
.hone_navLink_5,
.hone_navLink_8 {
    border-radius: 36px 0px 0px 36px;
}

.hone_navLink_1 {
    top: 12%;
    left: 56%;
}

.hone_navLink_2 {
    top: 27.2%;
    left: 61%;
}

.hone_navLink_3 {
    top: 46%;
    right: 65%;
}

.hone_navLink_4 {
    top: 50%;
    left: 60%;
}

.hone_navLink_5 {
    top: 60.2%;
    right: 64.5%;
}

.hone_navLink_6 {
    top: 64.5%;
    left: 60.2%;
}

.hone_navLink_7 {
    top: 78%;
    left: 51.5%;
}

.hone_navLink_8 {
    top: 86.2%;
    right: 53.3%;
}


/* ..................... end home section ..................... */


/* ..................... start extra pages ..................... */

.bio_sec {}

.photo_fashion_sec {}

.photo_music_sec {}

.photo_still_life_sec {}

.illustration_sec {}

.illustration_img_1 {
    margin-bottom: -5%;
    position: relative;
    z-index: 2;
}

.illustration_img_3 {
    margin-top: -1px;
}

.illustration_img_4 {
    margin-top: -3px;
}

.illustration_img_6 {
    margin-top: -2px;
}

.art_sec {}

.ads_sec {}

.motion_sec {
    padding-top: 108px;
}

.motion_item {
    position: relative;
    margin-bottom: 30%;
}

.motion_videoContianer {
    position: absolute;
    top: 8%;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 90%;
    z-index: 3;
    overflow: hidden;
}

.motion_videoContianer::after {
    padding-top: 56.25%;
    display: block;
    content: '';
}

.motion_videoContianer iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}


/* ..................... end extra pages ..................... */


/*_______________________ start media quries _______________________*/

@media(min-width:806px) {
    .container {
        max-width: 800px;
    }
    .container_fluid {
        max-width: 806px;
    }
}

@media(max-width:805.98px) {
    .header_secBox {
        padding: 25px 0px 14px 0px;
    }
    .header_logoLink {
        width: 200px;
    }
    .home_logo_link {
        margin-left: -21px;
    }
    .home_logo {
        max-width: 286px;
    }
    .home_img {
        max-width: 525px;
    }
    .home_navLink {
        font-size: 40px;
        min-width: 140px;
    }
    .header_navBox {
        padding-top: 100px;
        padding-bottom: 190px;
    }
    .header_nav {
        padding-left: 70px;
        padding-top: 16px;
    }
    .header_navItem {
        margin-bottom: 43px;
    }
    .header_navLink {
        font-size: 40px;
    }
    .photo_modalNav_link {
        font-size: 42px;
    }
    .photo_modalContent {
        width: 340px;
    }
    .contact_modalContent {
        width: 650px;
        border-radius: 60px 0px 0px 60px;
    }
    .contact_modalContent_left {
        width: 55%;
    }
    .contact_modalContent_right {
        width: 45%;
    }
    .contact_modalEmailBox {
        margin-right: -30px;
    }
    .contact_modalEmailImg {
        max-width: 100%;
    }
    .contact_modalEmailLink {
        font-size: 20px;
    }
    .contact_modalInstagramLink {
        max-width: 60%;
    }
    .contact_modalImg {
        max-width: 100%;
    }
    .motion_sec {
        padding-top: 100px;
    }
}

@media(max-width:767.98px) {
    body {
        padding-top: 80px;
    }
    .header_secBox {
        padding: 14px 0px;
        border-bottom-width: 3px;
    }
    .header_logoLink {
        width: 165px;
    }
    .header_menuToggleBtn {
        height: 34px;
        max-width: 42px;
    }
    .home_logo {
        max-width: 220px;
    }
    .home_img {
        max-width: 396px;
        margin-left: -20px;
    }
    .home_logo_link {
        margin-bottom: 12px;
    }
    .home_navLink {
        font-size: 29px;
        min-width: 100px;
    }
    .header_navBox {
        padding-top: 66px;
        padding-bottom: 170px;
        background-size: auto 175px;
    }
    .header_nav {
        padding-left: 50px;
    }
    .header_navItem {
        margin-bottom: 34px;
    }
    .header_navLink {
        font-size: 30px;
    }
    .photo_modalContent {
        width: 270px;
        padding: 20px 20px 10px 20px;
    }
    .photo_modalNav_link {
        font-size: 28px;
    }
    .contact_modalContent {
        width: 500px;
        border-radius: 40px 0px 0px 40px;
        padding: 30px 10px 30px 16px;
    }
    .contact_modalEmailLink {
        font-size: 15px;
    }
}

@media(max-width:575.98px) {
    .home_navLink {
        font-size: 28px;
    }
    .hone_navLink_1 {
        top: 11.5%;
    }
    .hone_navLink_2 {
        top: 30%;
        left: 66%;
      }
    .hone_navLink_3 {
        right: 72%;
    }
    .hone_navLink_4 {
        top: 52%;
        left: 62%;
    }
    .hone_navLink_5 {
        top: 62%;
    }
    .hone_navLink_6 {
        top: 67%;
        left: 62%;
    }
    .hone_navLink_7 {
        top: 79%;
        left: 55%;
    }
    .hone_navLink_8 {
        right: 60%;
    }
    .photo_modalContent {
        border-radius: 30px 0px 0px 30px;
    }
    .photo_modalNav_link {
        font-size: 24px;
    }
    .contact_modalContent {
        width: 380px;
    }
    .contact_modalEmailLink {
        font-size: 12px;
    }
    .motion_sec {
        padding-top: 70px;
    }
}

@media(max-width:459.98px) {
    .home_logo_link {
        margin-left: 0px;
    }
    .home_img {
        max-width: 100%;
        margin-left: 0px;
    }
    .home_navLink {
        font-size: 24px;
        min-width: 70px;
    }
    .header_navLink {
        font-size: 24px;
    }
    .header_nav {
        padding-left: 0px;
        width: 100%;
        text-align: center;
    }
    .header_navItem {
        margin-bottom: 24px;
    }
    .contact_modalContent {
        width: 300px;
    }
    .contact_modalEmailLink {
        font-size: 9px;
    }
    .motion_sec {
        padding-top: 50px;
    }
}


/*_______________________ end media quries _______________________*/