/* RESET CSS */
* {
    outline: none;
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}
body {
    line-height: 1;
    font-family: Arial, 'Helvetica Neue', Helvetica, sans-serif;
    font-size: 14px;
}
ol, ul {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
a {
    text-decoration: none;
    color: #000;
}

/* FONTS */

@font-face {
    font-family: 'DanzzaTrial';
    src: url('../fonts/DanzzaTrial-Regular.eot');
    src: url('../fonts/DanzzaTrial-Regular.eot?#iefix') format('embedded-opentype'),
    url('../fonts/DanzzaTrial-Regular.woff2') format('woff2'),
    url('../fonts/DanzzaTrial-Regular.woff') format('woff'),
    url('../fonts/DanzzaTrial-Regular.ttf') format('truetype'),
    url('../fonts/DanzzaTrial-Regular.svg#DanzzaTrial-Regular') format('svg');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'SpaceMono';
    src: url('../fonts/SpaceMono-Regular.eot');
    src: url('../fonts/SpaceMono-Regular.eot?#iefix') format('embedded-opentype'),
    url('../fonts/SpaceMono-Regular.woff2') format('woff2'),
    url('../fonts/SpaceMono-Regular.woff') format('woff'),
    url('../fonts/SpaceMono-Regular.ttf') format('truetype'),
    url('../fonts/SpaceMono-Regular.svg#SpaceMono-Regular') format('svg');
    font-weight: 400;
    font-style: normal;
}

/* GENERAL */
body {
    font-family: 'SpaceMono', sans-serif;
    font-size: 18px;
    line-height: 37px;
}

.page-content {
    max-width: 1440px;
    margin: 187px auto 0 auto;
    padding: 140px 110px 0 110px;
    box-sizing: border-box;
    min-height: calc(100vh - 383px);
}

#navigation {
    transition: opacity 0.3s;
}

/* MENU */
.menu {
    width: 100%;
    /*max-width: 1440px;*/
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    margin: 0 auto;
    height: 100px;
    padding: 50px 50px 0 50px;
    z-index: 999;
    box-sizing: border-box;
}

.menu .logo-container {
    display: none;
    text-align: center;
}

.menu .logo-container.active {
    display: block;
}

.menu .logo-container img {
    width: 310px;
    text-align: center;
}

.menu .search-section {
    position: absolute;
    top: 48px;
    font-size: 31px;
    display: flex;
}
.menu .search-section .search{
    position: relative;
    padding-left: 15px;
    top: -5px;
    min-width: 35px;
    max-width: 150px;
}
.menu .search input{
    border-bottom: 2px solid #000000;
    margin: 0;
    width: 0;
    transition: all 0.3s ease-in-out;
}
.menu .search i{
    position: absolute;
    right: 0;
    bottom: 0px;
    font-size: 28px;
    cursor: pointer;
}
.menu .search.open i:before{
    font-family: "Font Awesome 6 Pro";
    content: "\f00d";
}
.menu .search.open input{
    width: 100%;
}
.menu.homepage .search-section {
    display: none;
}
.searchResult{
    position: fixed;
    top:0px;
    left:0;
    right: 0;
    bottom: 0;
    z-index: 9;
    height: auto;
    overflow-y: auto;
    background: rgba(255, 255, 255, 0.8);
    display: none;
}
.burger-icon {
    position: absolute;
    top: 53px;
    right: 50px;
    height: 34px;
    width: 40px;
    z-index: 2;
    cursor: pointer;
}

.burger-icon>div {
    width: 40px;
    margin-bottom: 20px;
    height: 2px;
    background-color: #fff;
}

.burger-icon>div:last-child {
    margin-bottom: 0;
}

.burger-icon>div {
    background-color: #000;
    transform: rotate(0deg);
    transition: .25s ease-in-out;
    position: absolute;
    top: 0;
    left: 0;
}

.burger-icon div:nth-child(2) {
    top: 15px;
}

.burger-icon div:nth-child(3) {
    top: 30px;
}

.burger-icon.active div:nth-child(2) {
    opacity: 0;
}

.burger-icon.active div:nth-child(1), .burger-icon.active div:nth-child(3) {
    top: 20px;
}

.burger-icon.active div:nth-child(1) {
    transform: rotate(-45deg);
}

.burger-icon.active div:nth-child(3) {
    transform: rotate(45deg);
}


.menu.homepage .burger-icon>div {
    background-color: #fff;
}

.menu.homepage .burger-icon.active>div {
    background-color: #000;
}

.menu-container, .submenu {
    display: none;
}

.menu-container{
    position:fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: #fff;
    z-index: 99;
}
.submenu-container {
    position:absolute;
    background-color: #ffffffc7;
    right: 0;
}

.menu-container ul{
    display: flex;
    justify-content: space-around;
    width: calc(100% - 200px);
    max-width: 1440px;
    padding: 0 100px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}
.submenu-container ul {
    display: block;
    width: 150px;
    padding: 10px 20px;
}
.menu-container ul li{
    font-size: 26px;
    position: relative;
}
.submenu-container ul li {
    font-size: 26px;
    position: relative;
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
}
.submenu-container ul li label{
    padding-right: 10px;
}
.submenu-container ul li input[type='submit']{
    background-color: #000;
    padding: 10px 20px;
    color: #FFF;
    font-family: unset;
    font-size: 16px;
    text-decoration: none;
    text-transform: uppercase;
}
.menu-container ul li:hover .main-submenu{
    visibility: visible!important;
}
.menu-container ul li ul{
    position: absolute;
    min-width: 275px;
    padding: 20px 0 0;
    justify-content: flex-start;
    align-items: flex-start;
    left: -90px;
    transform: unset;
    top: 100%;
    visibility: hidden;
    /*flex-direction: column;*/
}
.menu-container ul li ul li{
    font-size: 16px;
    padding: 0 10px;
    min-width: unset;
}
/* HOME */
.transp-video {
    /*width: 1440px;*/
    width: 1872px;
}

.home.page-content {
    margin-top: 0;
}

.landing {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #000;
    z-index: 3;
}

.landing .landing-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.landing .landing-container .background-video {
    min-width: 100vw;
    height: 100%;
    filter: contrast(1.5);
}

.landing-cover {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    /*opacity: 0.8;*/
    opacity: 0;
    background-color: #000;
    z-index: 1;
}

.landing-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    z-index: 2;
}

.landing-content img {
    width: 565px;
}

.home .header {
    width: 100%;
    height: calc(100vh - 140px);
}

.header .logo-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.header .logo-container img {
    /*width: 440px;*/
    width: 572px;
}

.call-to-action {
    position: absolute;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
    bottom: 35px;
    text-decoration: underline;
    cursor: pointer;
    font-size: 20px;
}

.infinite-scroll-request {
    position: relative;
    text-align: center;
    /*min-height: 40px;*/
}

.load-status .fa-circle-notch {
    position: absolute;
    top: 35px;
    font-size: 35px;
    animation: 1.5s rotate360 infinite;
}

/* LIST */
.list.page-content {
    padding-top: 40px;
}

.filter-btn {
    display: block;
    position: relative;
    text-align: right;
    font-size: 17px;
    z-index: 2;
    padding: 90px 0 30px 0;
}

.filter-btn .filter-element {
    display: inline-block;
    cursor: pointer;
}

.filter-btn p, .filter-btn .chevron-down {
    display: inline-block;
    vertical-align: top;
}

.filter-btn .chevron-down {
    margin-top: 12px;
}

.filter-btn .chevron-down img {
    display: block;
}

.filter-btn .chevron-down .reverse {
    opacity: 0;
    transform: rotate(180deg);
    padding-right: 1px;
    transition: opacity 0.3s;
}

.filter-btn.active .reverse {
    opacity: 1;
    transition: opacity 0.3s;
}

.models-container {
    font-size: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 110px;
    grid-row-gap: 48px;
}

/*.models-container .model-container {
    width: 25%;
    display: inline-block;
    padding: 0 50px 40px 50px;
    box-sizing: border-box;
}*/

.models-container .model-container .picture-container {
    width: 100%;
}

.models-container .model-container .picture-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    -o-object-fit: cover;
    object-position: top;
    -o-object-position: top;
}

.models-container .model-container .model-name {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    font-size: 16px;
    padding-top: 14px;
    min-height: 80px;
}
/* BOOK */
.book.page-content {
    margin-top: 0;
    padding: 0;
    min-height: 100vh;
    font-size: 0;
}

.book .flex-cln {
    display: flex;
    align-items: stretch;
}

.model-info-container, .model-picture-featured {
    width: 50%;
    height: calc(100vh - 62px);
    vertical-align: middle;
    box-sizing: border-box;
}

.model-picture-featured {
    overflow: hidden;
}

.model-info-container {
    padding-top: 286px;
    padding-right: 50px;
}

.model-info-container ul li {
    display: flex;
    justify-content: space-between;
}

.model-info-container ul li span:first-child {
    font-size: 14px;
}

.model-info-container>div {
    width: calc(100% - 160px);
    max-width: 400px;
    margin-left: 160px;
}

.model-info-container ul li span:last-child {
    font-family: 'DanzzaTrial', sans-serif;
    font-size: 17px;
}

/*.model-info-container ul li:nth-child(1) {max-width: 321px;}*/
/*.model-info-container ul li:nth-child(2) {max-width: 540px;}*/
/*.model-info-container ul li:nth-child(3) {max-width: 334px;}*/
/*.model-info-container ul li:nth-child(4) {max-width: 454px;}*/
/*.model-info-container ul li:nth-child(5) {max-width: 367px;}*/
/*.model-info-container ul li:nth-child(6) {max-width: 367px;}*/
/*.model-info-container ul li:nth-child(7) {max-width: 462px;}*/

.model-info-container ul li:nth-child(1) {max-width: 59%;}
.model-info-container ul li:nth-child(2) {max-width: 100%;}
.model-info-container ul li:nth-child(3) {max-width: 62%;}
.model-info-container ul li:nth-child(4) {max-width: 84%;}
.model-info-container ul li:nth-child(5) {max-width: 68%;}
.model-info-container ul li:nth-child(6) {max-width: 68%;}
.model-info-container ul li:nth-child(7) {max-width: 86%;}

.model-info-container H1 {
    display: flex;
    justify-content: space-between;
    font-size: 29px;
    padding-bottom: 85px;
    text-transform: uppercase;
}

.model-picture-featured .picture-container {
    width: 100%;
    height: 100%;
    cursor: pointer;
    text-align: left;
    overflow: hidden;
}

.model-picture-featured .picture-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    -o-object-fit: cover;
    object-position: top;
    -o-object-position: top;
}

.model-navbar {
    position: relative;
    display: flex;
    width: 100%;
    /*padding: 0 160px;*/
    box-sizing: border-box;
    font-family: 'SpaceMono', sans-serif;
    font-size: 15px;
    line-height: 62px;
    background-color: #fff;
    z-index: 2;
}

.model-navbar ul li {
    display: inline-block;
    margin-right: 50px;
    cursor: pointer;
    color: #808080;
}

.model-navbar ul li.active {
    text-decoration: underline;
    color: #000;
}

.social-networks {
    display: inline-block;
    margin: 0 -7px;
}

.social-networks>a {
    padding: 0 7px;
    color: #808080;
}

.model-navbar .model-name {
    font-family: 'Space Mono', sans-serif;
    font-size: 20px;
    /*margin: 0 -25px;*/
    text-align: center;
    text-transform: uppercase;
}

.model-navbar .model-name span {
    padding: 0 25px;
}

.modal-book-picture {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 62px;
    left: 0;
    z-index: 999;
    background-color: rgba(255, 255, 255, 0.92);
    padding: 120px 160px 90px 160px;
}

.book-picture {
    position: relative;
}

.arrow-left, .arrow-right {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
}

.arrow-left {
    left: 0;
}

.arrow-right {
    right: 0;
}

.book-slider {
    max-width: 1200px;
    margin: 0 auto;
    transition: opacity 0.3s;
}

.book-slider .slide {
    font-size: 0;
    overflow: hidden;
}

.book-slider .slide .picture-container {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    vertical-align: middle;
    height: 100%;
    padding: 0 3px;
    box-sizing: border-box;
}
.book-slider .slide .picture-container p{
    font-size: 12px;
    line-height: initial;
    text-align: center;
}
.book-slider .slide .picture-container.align-right {
    align-items: flex-end;
}
.book-slider .slide .picture-container.align-right p{
    text-align: left;
    padding-left: 5px;
}
.book-slider .slide .picture-container.align-left {
    align-items: flex-start;
}
.book-slider .slide .picture-container.align-left p{
    text-align: right;
    padding-right: 5px;
}
.book-slider .slide .picture-container.align-center {
    justify-content: center;
    align-items: center;
}

.book-slider .slick-slide img {
    display: inline-block;
}

.book-slider .slide .picture-container.portrait {
    width: 50%;
}

.book-slider .slide .picture-container.landscape, .book-slider .slide .picture-container.portrait.align-center {
    width: 100%;
}

.book-slider .slide .picture-container.portrait img {
    width: auto;
    max-width: 100%;
    height: 100%;
    cursor: pointer;
}

.book-slider .slide .picture-container.landscape img {
    width: 100%;
    height: auto;
    cursor: pointer;
}

.book-slider video {
    width: 100%;
    height: 100%;
}

.model-menu {
    display: flex;
    width: 50%;
    padding-left: 160px;
    box-sizing: border-box;
}

/* ABOUT */
.about.page-content {
    padding-top: 70px;
}
.about-container {
    display: flex;
    justify-content: center;
    column-gap: 40px;
    row-gap: 40px;
}
.about-container.alignCenter{
    align-items: center;
}
.about-container.alignCenter .text-content{
    text-align: center;
}
.wrapper {
    min-height: 100vh;
}
.wrapper.contact{
    min-height: unset;
}
.wrapper:nth-child(1) .about-container {
    padding-bottom: 150px;
}

.wrapper:nth-child(1) .about-container .text-content {
    width: 50%;
    box-sizing: border-box;
}

.wrapper:nth-child(1) .about-container .picture-content {
    width: 50%;
    text-align: center;
    overflow: hidden;
    padding-top: 10px;
}

.wrapper:nth-child(2) .about-container:nth-child(1) .text-content {
    width: 60%;
    box-sizing: border-box;
}
.wrapper:nth-child(2) .about-container:nth-child(1) .picture-content {
    width: 40%;
    text-align: center;
    overflow: hidden;
}

.about-container .picture-container {
    font-size: 0;
    line-height: 0;
}

.about-container.bottom {
    padding-top: 100px;
    justify-content: left;
}

/* BECOME */
.become.page-content {
    max-width: 1280px;
    padding-top: 70px;
}

.become .header {
    display: flex;
    justify-content: space-between;
    font-size: 0;
}

.become .header>div {
    vertical-align: top;
    padding-bottom: 75px;
}

.become .header p {
    line-height: 37px;
}

form {
    font-size: 0;
}

label {
    display: inline-block;
    font-size: 16px;
    line-height: 25px;
}

input, select {
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    border: 0;
    margin: 0;
    padding: 0;
    font-family: 'DanzzaTrial', sans-serif;
    font-size: 18px;
    line-height: 18px;
}

select {
    cursor: pointer;
    background-color: #fff;
}

select option:first-child {
    display: none;
}

input[type=text] {
    border-bottom: 1px solid #707070;
    width: calc(100% - 195px);
    margin: 0 25px;
}

input[type=radio], input[type=checkbox] {
    position: relative;
    border: 1px solid #707070;
    width: 25px;
    height: 25px;
    margin-right: 18px;
    cursor: pointer;
}

input[type=radio]:before, input[type=checkbox]:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background-color: #000;
    opacity: 0;
    transition: opacity 0s;
}

input[type=radio]:checked:before, input[type=checkbox]:checked:before {
    opacity: 1;
    transition: opacity 0.3s;
}

form hr {
    width: 100%;
    height: 1px;
    border: none;
    background-color: #707070;
    margin: 50px 0;
}

form hr.mobile {
    display: none;
}

/*label[for="instagram"], label[for="email"] {*/
/*    text-align: right;*/
/*}*/

form .fab.fa-instagram {
    font-size: 25px;
    vertical-align: middle;
}

select {
    width: calc(100% - 100px);
    background-image: url('../images/chevron-down.svg');
    background-repeat: no-repeat;
    background-position: right;
    margin-right: 25px;
    margin-left: 10px;
    box-sizing: border-box;
}

.radio-btn label {
    cursor: pointer;
}

.col {
    display: inline-block;
    font-size: 0;
    line-height: 0;
}

.col-100 {
    width: 100%;
}

.col-100>div {
    display: inline-block;
}

.col p {
    font-size: 18px;
    line-height: 18px;
}

.col-75 {
    width: 75%;
    font-size: 0;
}

.col-50 {
    width: 50%;
}

.col-25 {
    width: 25%;
}

.col-33 {
    width: 33.3333%;
}

.col-100 label {
    line-height: 18px;
}

.col-100 input[type=text] {
    width: calc(100% - 286px);
    margin-right: 0;
}

.form-measurement>div {
    display: flex;
    justify-content: space-between;
}

.form-measurement>div>div {
    width: 250px;
}

.form-measurement label {
    display: inline-block;
    white-space: nowrap;
}

.form-measurement>div>div.col-50 {
    width: 350px;
}

.radio-btn>div>*{
    vertical-align: middle;
}

.radio-btn>div:first-child {
    padding-right: 25px;
}

.row {
    padding-bottom: 75px;
}

#instagram, #lastname {
    margin-right: 0;
    width: calc(100% - 170px);
}

.black-bg {
    width: 100%;
    background-color: #000;
}

.form-black-bg {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 160px;
    box-sizing: border-box;
}

.form-upload-section {
    color: #fff;
}

.form-upload-section .title-form {
    padding: 75px 0;
}

.uploads-container {
    width: calc(100% + 50px);
    font-size: 0;
    margin: 0 -25px;
}

.upload-container {
    display: inline-block;
    width: 33.3333%;
    padding: 0 25px;
    box-sizing: border-box;
}

.upload-container p {
    font-size: 16px;
}

.upload-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    -o-object-fit: cover;
    object-position: top;
    -o-object-position: top;
}

.upload-container img.preview {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}

.upload-container>div {
    position: relative;
    height: 100%;
}

.upload-container>div>div.error {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(0,0,0,0.7);
    opacity: 0;
}

.upload-container>div>div.error p {
    position:absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 15px;
    text-align:center;
}

.upload-container>p {
    padding-top: 17px;
    text-align: center;
    text-transform: uppercase;
}

.terms-fields>div {
    position: relative;
    padding-top: 100px;
    text-align: center;
}

.terms-fields label {
    /*width: 400px;*/
    width: auto;
    font-size: 15px;
    line-height: 20px;
    vertical-align: middle;
}

.terms-fields input[type=checkbox] {
    vertical-align: middle;
    border: 1px solid #fff;
}

.terms-fields input[type=checkbox]:before {
    background-color: #fff;
}

input[type=file] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    position: absolute;
    opacity: 0;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    cursor: pointer;
    z-index:1;
}

.submit-btn {
    text-align: center;
}

form button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: none;
    text-decoration: underline;
    font-family: 'SpaceMono', sans-serif;
    color: #fff;
    background-color: transparent;
    cursor: pointer;
    margin: 0 auto;
    font-size: 20px;
}

.g-recaptcha {
    width: 304px;
    height: 78px;
    margin: 0 auto;
    transform: scale(0.8);
    padding: 35px 0;
}

#output p {
    font-size: 15px;
    text-align: center;
    color: #ff3939;
    min-height: 44px;
}

#output p .fa-circle-notch {
    color: #fff;
    font-size: 35px;
    animation: 1.5s rotate360 infinite;
}

@keyframes rotate360 {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* FOOTER */
.footer {
    width: 100%;
    margin: 0 auto;
    padding: 100px 0 60px 0;
    box-sizing: border-box;
    font-size: 18px;
}

.footer.disabled {
    display: none;
}

.footer.dark-mod {
    background-color: #000;
}

.footer>div {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 160px;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
}
.left-blc,.middle-blc,.right-blc{
    width: 30%;
}
.right-blc{
    text-align: right;
}
.middle-blc{
    text-align: center;
}
.footer>div>div>* {
    display: inline-block;
}

.underline {
    text-decoration: underline;
}

.footer, .footer a {
    color: #6C6C6C;
}

.footer .credits {
    padding-left: 20px;
    font-size: 12px;
}
.footer.dark-mod, .footer.dark-mod a {
    color: #fff;
}