@font-face {
    font-family: 'Gotham';
    font-style: normal;
    font-weight: 100;
    src: url('../webfonts/Gotham-Thin.otf');
}

@font-face {
    font-family: 'Gotham';
    font-style: italic;
    font-weight: 100;
    src: url('../webfonts/Gotham-ThinItalic.otf');
}

@font-face {
    font-family: 'Gotham';
    font-style: normal;
    font-weight: 200;
    src: url('../webfonts/Gotham-XLight.otf');
}

@font-face {
    font-family: 'Gotham';
    font-style: italic;
    font-weight: 200;
    src: url('../webfonts/Gotham-XLightItalic.otf');
}

@font-face {
    font-family: 'Gotham';
    font-style: normal;
    font-weight: 300;
    src: url('../webfonts/Gotham-Light.otf');
}

@font-face {
    font-family: 'Gotham';
    font-style: italic;
    font-weight: 300;
    src: url('../webfonts/Gotham-LightItalic.otf');
}

@font-face {
    font-family: 'Gotham';
    font-style: normal;
    font-weight: normal;
    src: url('../webfonts/Gotham-Book.otf');
    src: url('../webfonts/Gotham-Book.otf') format('opentype'),
        url('../webfonts/Gotham-Book.woff2') format('woff2'),
        url('../webfonts/Gotham-Book.woff') format('woff'),
        url('../webfonts/Gotham-Book.ttf') format('truetype');
}

@font-face {
    font-family: 'Gotham';
    font-style: italic;
    font-weight: normal;
    src: url('../webfonts/Gotham-BookItalic.otf');
}

@font-face {
    font-family: 'Gotham';
    font-style: normal;
    font-weight: 500;
    src: url('../webfonts/Gotham-Medium.otf');
}

@font-face {
    font-family: 'Gotham';
    font-style: italic;
    font-weight: 500;
    src: url('../webfonts/Gotham-MediumItalic.otf');
}

@font-face {
    font-family: 'Gotham';
    font-style: normal;
    font-weight: bold;
    src: url('../webfonts/Gotham-Bold.otf');
}

@font-face {
    font-family: 'Gotham';
    font-style: italic;
    font-weight: bold;
    src: url('../webfonts/Gotham-BoldItalic.otf');
}

@font-face {
    font-family: 'Gotham';
    font-style: normal;
    font-weight: bolder;
    src: url('../webfonts/Gotham-Black.otf');
}

@font-face {
    font-family: 'Gotham';
    font-style: italic;
    font-weight: bolder;
    src: url('../webfonts/Gotham-Black.otf');
}

html,
body {
    background-color: #000;
    position: relative;
    color: white;
    text-align: center;
}

body {overflow-x: hidden;}

p {
    font-family: 'Gotham';
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 4rem;
}

a {
    color: white;
    text-decoration: none;
}

a:hover {
    color: white;
    text-decoration: none;
}

a.button {
    font-family: 'Gotham';

    display: block;
    width: fit-content;

    font-family: 'Gotham';
    font-size: 1.5rem;
    font-weight: 500;

    color: white;
    background-color: #B21B39;
    border-width: 1px;
    border-style: solid;
    border-color: white;

    padding: 1.5rem 5rem;

    margin-left: auto;
    margin-right: auto;

    transition: all 1s ease-in-out;
}

a.button.disabled {
    opacity: .7;
}

a.button:not(:disabled):not(.disabled):hover {
    background-color: rgba(140,32,129,1);
    color: white;
    cursor: pointer;
/* 
    border-width: 2px; */

    /* padding: 16px 22px; */

    transform: scale(1.2);
    transition: all 1s ease-in-out;
}

p a {
    font-weight: normal !important;
}

p > a:hover {
    text-decoration: underline;
    cursor: pointer;
}

.section {
    padding: 10rem 4rem;
    width: 100vw;
    overflow-x: hidden;
}

.section .container {
    position: relative;
    z-index: 2;
}

.black {
    background-color: #000
}

.white {
    background-color: #fff
}

.gradient {
    background: linear-gradient(-45deg, #C31A29, #73578B);
    padding-bottom: calc(50vw + 10rem);
}

.gradient ~ .gradient {
    padding-top: calc(50vw + 10rem);
}

h3.section-title {
    font-family: 'Gotham';
    font-size: 4rem;
    font-weight: 500;
    text-align: center;
    margin-top: 5rem;
    margin-bottom: 0;
}

.scroll-reminder {
    position: fixed;
    left: 50%;
    top: 3rem;
    transform: translate(-50%, 0);
    z-index: 3;

    width: 50px;
}

img.scrollup {
    width: 100%;
}

@media (max-width: 1024px) {
    .desktop {
        display: none;
    }

    .mobile {
        display: block;
    }

    .row.mobile {
        display: flex;
    }
}

@media (min-width: 1025px) {

    .desktop {
        display: block;
    }

    .row.desktop {
        display: flex ;
    }

    .mobile {
        display: none;
    }
  
    .section {
        min-height: 100vh;
        padding: 5rem 0;
    }

    .gradient {
        padding-bottom: 5rem;
    }

    .gradient ~ .gradient {
        padding-top: 5rem;
    }

    h2.subtitle {
        margin-bottom: 2rem;
    }

    h3.section-title {
        font-family: 'Gotham';
        font-size: 2.1rem;
    }

    p {
        font-size: 1.5vh;
        font-weight: 100;
    }

    a.button {
        font-size: 1rem;
        padding: .5rem 2rem;
    }  
}

/* HEADER */

.header {
    padding: 0;
    position: relative;
}

.header .container {
    min-height: 100vh !important;
    height: 100vh !important;
    position: relative;
    z-index: 3;

    justify-content: flex-end;
}

.logo-container {
    margin-bottom: 4rem;
}

img.logo {
    width: 100%;
    margin-bottom: 3vh;
}

.where-link:hover {
    color: #B41736;
}

h2.subtitle {
    font-family: 'Gotham';
    font-size: 7rem;
    line-height: 1;
    font-weight: bolder;
    margin-bottom: 3vh;
}

h2.subtitle > .side {
    font-weight: bold !important;
}

h4.where,
h4.when {
    font-family: 'Gotham';
    font-size: 3rem;
    font-weight: 500;
    margin-bottom: 3vh;
}

h4.where {
    margin-bottom: 5vw;
}

.x-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;

    z-index: 2;

    padding: 0;
}

.x-bg-container {
    z-index: 1;
    top: -10px;
    left: -10px;
}

.x-row {
    margin-bottom: 2.5rem;
}

.x-row:first-child {
    transform: translate(-12vw, -2.5vw) rotate(-45deg);
}

.x-row:last-child {
    transform: translate(8vw, -10vw) rotate(-45deg);
}

img.x {
    min-height: 12.5vh;
    /*transform: rotate(-180deg);*/
}

.header .apply-button {
    margin-bottom: 5rem;
}

@media (min-width: 1025px) {

    .header {
        padding-top: 5rem;
    }

    .header .container {
        justify-content: space-between;
    }

    .logo-container {
        margin-bottom: 2rem;
    }

    h2.subtitle {
        font-size: 8rem;
        margin-bottom: 10vh;
    }

    h4.where,
    h4.when {
        font-size: 1.75rem;
        font-weight: 500;
        margin-bottom: 2.5rem;
    }

    h4.when {
        margin-bottom: 1rem;
    }

    .x-wrapper {
        transform: translate(-25%, 15%);
    }

    .x-row {
        margin-bottom: 0;
    }

    .x-row:first-child {
        transform: translate(0vw, 5vw) rotate(-45deg);
    }

    .x-row:last-child {
        transform: translate(10vw, 5vw) rotate(-45deg);
    }

    img.x {
        min-height: 15vh;
        /*transform: rotate(-180deg);*/
    }    

    .header .apply-button {
        margin-top: 5vh;
        margin-bottom: 2vh;
    }
}

/* END HEADER */

/* MENU */

.menu-wrapper {
    pointer-events: none;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    z-index: 10;

    background-color: transparent;

    min-width: 100vw;
    padding: 0 5rem;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;

    transition: background-color 1s ease-in-out;
}

.menu-wrapper.open {
    pointer-events: all;
    background-color: #000;
}

a.hamburger {
    pointer-events: all;
    position: absolute;

    right: 40px;
    bottom: 40px;

    height: 80px;
    width: 80px;
    
    background-image: url('../images/menu.svg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100% auto;

    display: inline-block;
    margin: 2rem auto;

    opacity: .7;
    transition: all .1s ease-in-out;
}

a.hamburger:hover {
    cursor: pointer;
    opacity: 1;
    transition: all .1s ease-in-out;
}

.open a.hamburger {
    background-image: url('../images/exit-red.svg');
}

.menu-container {
    display: flex;
    flex-grow: 1;
    align-items: center;
}

.menu {
    height: 80%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
}

.menu > .menu-item > a.menu-link {
    font-family: 'Gotham';
    font-size: 2rem;
    font-weight: 300;
}


.menu > .menu-item > a.menu-link:hover {
    color: #B41736;
}

@media (min-width: 1025px) {
    .menu-wrapper {
        min-width: 25rem;
    }

    a.hamburger {
        position: relative !important;

        height: 30px;
        width: 30px;

        bottom: unset;
        right: unset;
    }
    
}

/* END MENU */

/* WHAT */

.what {

}

h4.what-title {
    font-family: 'Gotham';
    font-size: 3.5rem;
    font-weight: 500;
    margin-bottom: 2rem;
    text-align: left;
}

p.what-descr {
    font-family: 'Gotham';
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 10rem;
    text-align: left;
    max-width: 100%;
}

@media (max-width: 1025px) {
    .what .container {
        padding: 0;
        max-width: none;
    }
}

@media (min-width: 1025px) {

    h4.what-title {
        font-size: 2rem;
    }

    p.what-descr {
        font-size: 1rem;
        font-weight: 300;
        max-width: 70%;
        margin-bottom: 4rem;
        text-align: justify;
    }

    .what-container:nth-of-type(1) h4,
    .what-container:nth-of-type(1) p,
    .what-container:nth-of-type(3) h4,
    .what-container:nth-of-type(3) p {
        text-align: justify;
        direction:rtl;
    }

    .what-container:nth-of-type(1) p,
    .what-container:nth-of-type(3) p {
        float: right;
    }
}

/* END WHAT */

/* SPEAKERS */

.section.speakers {}

.speakers .speaker {
    margin-bottom: 3rem;
}

.speaker > img.speaker-bg {
    width: 100%;
    margin-bottom: 3rem;
}

.speaker > h5.speaker-name {
    font-family: 'Gotham';
    font-size: 3rem;
    font-weight: 500;
    text-align: left;
}

.speaker > h6.speaker-role {
    font-family: 'Gotham';
    font-size: 2.5rem;
    font-weight: 300;
    text-align: left;
}

.modal-backdrop {
    background-image: -webkit-linear-gradient(-45deg, #C31A29, #73578B);
    background-image: -webkit-linear-gradient(-45deg, #C31A29, #73578B);
    background-image: linear-gradient(-45deg, #C31A29, #73578B);
}

.modal-dialog {
    max-width: 90vw;
}

.modal-content {
    background-color: black;
    border: none;
}

.modal-header {
    border: none;
}

.modal-header .close {
    float: left !important;
    margin: -1rem auto -1rem -1rem;
}

.modal-header .close:not(:disabled):not(.disabled) {
    opacity: 1 !important;
}

.modal-body {
    margin-left: 3rem;
    margin-right: 3rem;
}

.modal-speaker-name {
    font-family: 'Gotham';
    font-size: 2rem;
    text-align: left;
    margin-bottom: 2rem;
}

.modal-speaker-pic {
    width: 100%;
    margin-bottom: 2rem;
}

.bio-container {
    max-height: 75vh;
    overflow-y: scroll;
    margin-bottom: 4rem;
}

.modal-speaker-bio {
    font-family: 'Gotham';
    font-size: 2rem;
    font-weight: 100;
    text-align: left;
    margin-bottom: 0;
    padding-left: 1rem
}

@media (max-width: 1025px) {
    .speakers .container {
        padding: 0;
        max-width: none;
    }
}

@media (min-width: 1025px) {
    .speaker {
        position: relative;
        background-color: white;
        background-clip: content-box;
        min-height: fit-content;
    }

    .speaker:hover {
        cursor: pointer;
    }

    .speaker .speaker-name {
        display: block;
        position: absolute;
        top: 50%;
        left: 0;
        right: 0;
        color: #fff;
        text-align: center;
        width: 100%;
        font-size: 1.5rem;

        transition: all .5s ease-in-out; 
        transform: translate(0,-50%);
    }

    .speaker:hover .speaker-name {
        font-size: 1.25rem;
        top: 95%;
        transform: translate(0,-100%);
        transition: all .5s ease-in-out; 
    }

    .speaker .speaker-pic-container {
        position: relative;
        width: 100%
    }

    .speaker .speaker-pic {
        position: relative;
        top: 0;
        left: 0;
        width: 100%
    }

    .speaker .speaker-pic.hover {
        position: absolute;
        opacity: 0;
        transition: opacity .5s ease-in-out;
    }

    .speaker:hover .speaker-pic.hover {
        opacity: 1;
        transition: opacity .5s ease-in-out;
    }

    .modal-header .close:not(:disabled):not(.disabled) {
        opacity: .75 !important;
    }

    .modal-header .close:not(:disabled):not(.disabled):hover {
        opacity: 1 !important;
    }

    .modal-dialog {
        max-width: 80vw;
    }

    .bio-container {
        max-height: none;
    }

    .bio-container p {
        font-size: 1rem;
    }
}

/* END SPEAKERS */

/* TALKS */

.section.talks {
    padding-right: 0;
    padding-left: 0;
}

.talks img {
    width: 100%;
}

.talks .selected-container {
    position: relative;
    margin-bottom: 5rem;
    z-index: 2;
}

.talks .loader {
    background-color: transparent;
    position: absolute;
	width: auto;
	height: auto;
	top: 0; bottom: 0;
    left: 0; right: 0;
    z-index: 1;
}

.talks .loader img {
    width: 25%;
    top: 40%;
}

.talks .selected-container iframe {
    width: 100%;
    min-height: 500px;
}

.talks .glide {
    margin-bottom: 7vh;
}

.talks .past-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.talks .past-container a.button {
    font-size: 1.75rem;
    padding: .5rem 3rem; 
    /* padding: 11px 17px; */
    margin-bottom: 3vh;
}

.talks .past-container a.button:last-of-type {
    margin-bottom: 8vh;
}

@media (min-width: 1025px) { 
    .section.talks {
        min-height: 0;
    }

    .talks p {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .talks .past-container {
        flex-direction: row;
    }

    .talks .past-container a.button {
        font-size: .8rem;
        margin: 0 1rem 8vh 1rem;
    }

    .talks .past-container a.button:last-of-type {
        margin-bottom: 8vh;
    }

    .talks .loader img {
        width: 8%;
        top: 40%;
    }

    .talks .selected-container iframe {
        width: 100%;
        min-height: 600px;
    }
}

/* END TALKS */

/* CONTEST */

.contest .section-title {
    font-family: 'Gotham';
    font-size: 10rem;
    font-weight: bold;
}

.contest .section-subtitle {
    font-family: 'Gotham';
    font-size: 3rem;
    font-weight: 300;
}

.contest .section-subtitle:first-of-type {
    margin-bottom: 10rem;
}

.contest h4.deadline {
    color: #FC2E1F;
    font-size: 6.5rem;
    font-weight: bold;
}

.contest h4.deadline-when {
    font-size: 6rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.contest a.button {
    margin-bottom: 5rem;
}

@media (min-width: 1025px) {

    .contest.section {
        min-height: min-content;
    }

    .contest .section-title {
        font-size: 4rem;
        margin-top: 1.5rem;
    }

    .contest .section-subtitle {
        font-size: 1.1rem;
        font-weight: 100;
    }

    .contest .section-subtitle:first-of-type {
        margin-bottom: 4rem;
    }

    .contest h4.deadline {
        font-size: 2.5rem;
    }
    
    .contest h4.deadline-when {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }

    .contest a.button {
        margin-bottom: 3rem;
    }

    .contest a.button.apply-button {
        margin-bottom: 2rem;
    }
}

/* END CONTEST */

/* WORKSHOP */

.section.workshop {
    position: relative;
    padding-top: 10rem;
}

.workshop .timeline {
    position: absolute;
    width: 1px;
    height: 67.5%;
    background-color: white;
    top: 50%;
    bottom: 50%;
    left: 50%;
}

.workshop-container {
    background-color: #000;
    margin-bottom: 3.5rem;
    padding: 1.75rem;
}

.workshop-descr {
    text-align: left;
}

.workshop-speaker {
    font-family: 'Gotham';
    font-size: 2.7rem;
    font-weight: bold;
    text-align: left;
}

.workshop-title {
    font-family: 'Gotham';
    font-size: 2.25rem;
    font-weight: 200;
    text-align: left;

    margin-bottom: 0;
}

.workshop-place {
    font-family: 'Gotham';
    font-size: 2.7rem;
    font-style: italic;
    font-weight: 400;

    text-align: left;
}

.workshop-descr a {
    margin: 0;
}

.workshop-descr a:hover {
    transform: none;
}

a.eventbrite-link {
    color: orange;
    font-family: 'Gotham';
    font-size: 2.25rem;
    font-weight: 300;
    line-height: 2.25rem;
}

a.eventbrite-link img {
    height: 2.5rem;
    vertical-align: baseline;
}

.workshop-hours {
    font-family: 'Gotham';
    font-size: 4rem;
    font-weight: 500;
}

@media (max-width: 1024px) {
    .workshop .container {
        padding: 0;
        max-width: none;
    }
}

@media (min-width: 1025px) {
    .workshop-container {
        padding: 1rem;
        margin-bottom: 0;
        width: 100%;
    }

    .workshop img.appointment {
        width: 50%;
        transition: transform .3s ease-in-out;
    }
    .workshop img.appointment.zoomed {
        transform: scale(1.2);
        transition: transform .3s ease-in-out;
    }

    .workshop-descr {
        
    }

    .workshop-speaker {
        font-size: 1rem;
    }

    .workshop-title {
        font-size: 1rem;
    }

    .workshop-place {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    a.eventbrite-link {
        font-size: 1rem;
        line-height: unset;
    }

    a.eventbrite-link img {
        height: 1rem;
    }


    .workshop-hours {
        font-size: 1.5rem;
        font-weight: 400;
    }
}

/* END WORKSHOP */

/* BLOG */

.blog-button {
    margin-bottom: 10rem !important;
}

.blog-icon {
    height: 14vh;
    margin-right: 1.5rem;
}

.blog-title {
    font-family: 'Gotham';
    font-size: 4vh;
    font-weight: bolder;
    line-height: 5rem;
    text-align: left;
    margin-left: 1.5rem;
}

.comics-container {
    position: relative;
    margin-bottom: 8vh;
    padding: 10rem 0;
}

.comics-container .comic {
    height: 10vh;
    position: absolute;
}

.comics-container .comic:nth-of-type(1) {
    top: -5%;
    left: -5%;
    /* top: 25%;
    left: 25%;
    transform: translate(-100%, -95%); */
}

.comics-container .comic:nth-of-type(2) {
    top: 5%;
    right: 0%;
    /* top: 25%;
    right: 25%;
    transform: translate(75%, -75%); */
}

.comics-container .comic:nth-of-type(3) {
    bottom: -5%;
    left: 12.5%;
    /* bottom: 25%;
    left: 25%;
    transform: translate(-50%, 100%); */
}

.comics-container .comic:nth-of-type(4) {
    bottom: 0%;
    right: 0%;
    /* bottom: 25%;
    right: 25%;
    transform: translate(100%, 60%); */
}

@media (min-width: 1025px) {

    .section.blog {
        padding-top: 10rem;
    }
    
    .blog-icon {
        height: 24vh;
        margin-right: 1.5rem;
    }

    .blog-title {
        font-size: 8vh;
    }

    .blog-button {
        margin-bottom: 5rem !important;
    }

    .comics-container {
        margin-bottom: 15vh;
    }

    .comics-container .comic {
        height: 20vh;
    }

    .comics-container .comic:nth-of-type(1) {
        top: -7.5vh;
        left: 12.5%;
        /* top: 25%;
        left: 25%;
        transform: translate(-50%, -95%) */
    }
    
    .comics-container .comic:nth-of-type(2) {
        top: -5%;
        right: 15%;
        /* top: 25%;
        right: 25%;
        transform: translate(35%, -75%); */
    }
    
    .comics-container .comic:nth-of-type(3) {
        bottom: -7.5%;
        left: 27.5%;
        /* bottom: 25%;
        left: 25%;
        transform: translate(20%, 100%); */
    }
    
    .comics-container .comic:nth-of-type(4) {
        bottom: -5%;
        right: 20%;
        /* bottom: 25%;
        right: 25%;
        transform: translate(35%, 80%); */
    }
}

/* END BLOG */

/* PARTNERS */

.partners-page {
    color: black !important;
}

.partners-page .partners.section {
    padding: 0;
    padding-top: 10rem;
}

.partners-page .partners h3 {
    font-family: 'Gotham';
    font-size: 7vw;
    margin-bottom: 10vh;
}

.partners-page .partners h6 {
    font-family: 'Gotham';
    font-size: 3rem;
    font-weight: 100;
    font-style: italic;
    margin-top: 2.5rem;
    margin-bottom: 12.5vh;
}

.partners-page .partners h6.thanks {
    font-family: 'Gotham';
    margin-bottom: 5rem;
}

.partners-page .partners .partner-link {
    display: block;
    width: 100%;
    margin-bottom: 5rem;
}

.partners-page .partners .partner-link img {
    width: 100%;
}

@media (min-width: 1025px) {
    .partners {
        min-height: min-content;
        padding-top: 10rem !important;
        padding-bottom: 10rem !important;
    }

    .partners p.thanks {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .partners-page .partners h3 {
        font-size: 3rem;
    }

    .partners-page .partners h6.thanks {
        font-family: 'Gotham';
        font-size: 1.25rem;
        font-style: normal;
        font-weight: 300;
        text-align: left;
        margin-top: 0rem;
        margin-bottom: 5rem;
    }

    .partners-page .partners h6.partners-title:not(.thanks) {
        width: 80%;

        font-size: 2vw;
        font-style: normal;
        font-weight: 300;
        text-align: left;

        border-bottom: 1px solid #000;

        margin-top: 0rem;
        margin-bottom: 2rem;
    }

    .partners-page .partners img.partner-logo {
        display: block;
        width: 100%;
    }

    .partners-page .decoration {
        height: 180vh !important;
        width: 180vh !important;
    
        bottom: unset !important;
        left: unset !important;
        right: -110vh !important;
        top: -110vh !important;
    }
}

/* END PARTNERS */ 

/* TEAM */

.team .row {
    margin-bottom: 5rem;
}

.team .row:last-of-type {
    margin-bottom: 10rem;
}

.team .row > .col-12,
.team .row > .col-4 {
    padding-left: 0 !important;
    padding-right: 0 !important; 
}

.team img {
    width: 100%;
}

.team-member {
    min-height: 15vh;
    
    position: relative;
    background-position: center;
    background-size: auto 100%;
    background-repeat: no-repeat;

    transition: transform .3s cubic-bezier(0.215, 0.610, 0.355, 1);
}

.team-member:hover {
    transform: scale(1.1);
    z-index: 2;
    transition: transform .3s cubic-bezier(0.215, 0.610, 0.355, 1);
}

.team-member-descr {
    position: absolute;
    bottom: 0;
    left: 0; right: 0;
    
    background: rgba(0,0,0,.4);
    padding: 6px;
}

.team-member-descr h6 {
    font-size: 1.25rem;
    margin-bottom: .5rem;
    text-align: left;
}

.team-member-descr p {
    margin-bottom: .05rem;
    color: #eee;
    font-size: 1rem;
    font-weight: 200;
    text-align: left;
}

.team .selected {
    min-height: 30vh;
    position: relative;
    height: 100%;
    background-image: url('../images/team/0.jpeg');
    background-position: center;
    background-size: auto 100%;
    background-repeat: no-repeat;
}

.team .selected .team-member-descr {
    padding: 20px;
}

.team .selected .team-member-descr h6 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.team .selected .team-member-descr p {
    font-size: 2rem;
    margin-bottom: .15rem;
    font-weight: 300;
}

.team .selected .team-member-descr a {
    position: absolute;
    right: 1rem;
    bottom: 1rem;
    width: 44px;
}

.team .selected .team-member-descr a > img {
    width: 100%;
}

@media (min-width: 1025px) {

    .team .row > .col-12,
    .team .row > .col-4 {
        padding-left: 15px !important;
        padding-right: 15px!important; 
    }
    
    .team .row:last-of-type {
        margin-bottom: 0rem;
    }

    .team .selected {
        min-height: none;
    }

    .team-member {
        position: relative;
        min-height: 20vh;
        overflow: hidden;
    }

    .team-member-descr h6 {
        font-size: .75rem;
        margin-bottom: .15rem;
    }

    .team-member-descr p {
        font-size: .7rem;
    }

    .team-member img {
        position: absolute;
        top: 0;
        bottom: 0;
    }

    .team .selected .team-member-descr {
        padding: 10px;
    }

    .team .selected .team-member-descr h6 {
        font-size: 1.5rem;
        margin-bottom: .5rem;
    }

    .team .selected .team-member-descr p {
        font-size: 1rem;
        margin-bottom: .15rem;
        font-weight: 300;
    }
}

/* END TEAM */

/* CONTACT */

.contact {
    text-align: left 
}

.contact form .form-group {
    margin-bottom: 3rem;
}

.contact form > .form-group:last-of-type {
    margin-bottom: 5rem;
}

.contact form label {
    font-family: 'Gotham';
    font-size: 2.5rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.contact form input,
.contact form textarea {
    font-family: 'Gotham';
    font-size: 2.7rem;
    font-weight: 300;
    border-radius: 0 !important;
    border-color: white;
    border-width: 3px;
}

.contact form input{
    padding: 2.5rem 1rem;
}

.contact form textarea {
    padding: .5rem 1rem;
}

.contact form input:focus,
.contact form input:active,
.contact form textarea:focus,
.contact form textarea:active {
    border-color: #B41736;
    outline: none;
    box-shadow: none;
}

.contact .invalid-feedback,
.contact .valid-feedback {
    font-family: 'Gotham';
    color: white;
    font-weight: 100;
}

.contact form .button {
    margin-right: 0;
}

.contact h6.contact-name {
    font-family: 'Gotham';
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.contact a.contact-phone {
    display: block;
    color: white;
    font-family: 'Gotham';
    font-size: 1.8rem;
    font-weight: 100;
    margin-bottom: 7vh;
}

.contact .social-container {
    margin-bottom: 7vh;
    text-align: left
}

.contact .social-container:first-of-type {
    text-align: right
}

.contact .social {
    display: inline-block;
    position: relative;
    height: fit-content;
}

.contact .social:hover {
    cursor: pointer;
}

.contact .social img {
    width: 100%;
    max-width: 80px;
    height: auto;
}

.contact .social img.social-red-icon {
    position: absolute;
    top: 0px;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;

    transition: opacity .3s ease-in-out;
}

.contact .social:hover img.social-red-icon {
    opacity: 1;
    transition: opacity .3s ease-in-out;
}

.contact .address {
    color: white;
    font-family: 'Gotham';
    font-size: 1.8rem;
    font-weight: 100;
    margin-bottom: 7vh;
}

.contact .address a {
    color: white;
}

.contact #map {
    height: 25vh;
    background-image: url('../images/mappa.png');
    background-position: 100% 75%;
    background-size: 100% auto;
    margin-top: 5rem;
    border: 4px solid white;
}

@media (min-width: 1025px) {

    .contact.section {
        min-height: min-content;
        padding: 7.5rem 0;
    }

    .contact h6.contact-name {
        font-size: 1.25rem;
        margin-bottom: .5rem;
    }
    
    .contact a.contact-phone {
        font-size: 1rem;
        font-weight: 100;
    }

    .contact .social:nth-child(2) {
        margin-left: 1rem;
    }

    .contact .social img {
        max-width: 30px;
    }

    .contact .address.desktop {
        font-size: 1rem;
        text-align: left;
        font-weight: 100;
    }

    .contact form label {
        font-size: 1rem;
        margin-bottom: .5rem;
    }

    .contact form input{
        padding: 1.5rem .5rem;
    }
    
    .contact form textarea {
        padding: .5rem .5rem;
    }

    .contact form input,
    .contact form textarea {
        font-size: 1rem;
    }

    .contact form .form-group {
        margin-bottom: 1rem;
    }

    .contact form > .form-group:last-of-type {
        margin-bottom: 2rem;
    }
    .contact form > .button {
        margin: 0 auto;
    }

    .contact #map {
        height: 50vh;
    }
}

/* END CONTACT */

/* COPY */

.section.copyright {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.section.copyright p {
    display: block;
    color: white;
    font-family: 'Gotham';
    font-size: 1.25rem;
    font-weight: 100;
    text-align: center;
    margin-bottom: 0;   
}

.section.copyright p.at {
    margin-bottom: 1rem;
}

.section.copyright p.at a {
    color: orange;
    text-decoration: none;
}

.section.copyright p.at a:hover {
    color: orange;
    text-decoration: underline;
}

@media (min-width: 1025px) {
  
    .section.copyright {
        min-height: fit-content;
    }
  
    .section.copyright .row {
        justify-content: center;
    }
  
    .section.copyright p {
        font-size: .7rem;
        font-weight: 100;
        line-height: 1.5rem;
    }
}

/* END COPY */

/* SCROLL INDICATOR */

#scroll {
    display: block;
    border: 0;
    z-index: 9;

    position: fixed;
    right: 0;
    left: 0;
    bottom: 0;
    height: 1.5vh;
    width: 0;

    background-color: transparent;
    background-image: -webkit-linear-gradient(-45deg, #C31A29, #73578B);
    background-image: -webkit-linear-gradient(-45deg, #C31A29, #73578B);
    background-image: linear-gradient(-45deg, #C31A29, #73578B);
}

/* END SCROLL INDICATOR */

/* DIVIDER */

.divider-container {
    position: relative;
}

.divider {
    position: absolute;
    bottom: 0;
    overflow: hidden;
    height: 50vw;
    width: 100vw;
}

.divider .col-6 {
    height: 50vw;
    width: 50vw;
    position: relative;
    /* overflow: hidden; */
    padding: 0;
}

.divider .pattern-container {
    width: 100vw;
    height: 50vw;
    position: absolute;
    overflow: hidden;
}

.divider img.pattern {
    width: 200vw;
    height: auto;
    position: relative;
    overflow: hidden;
}

.divider.cross .divider-left {
    display: block;
    position: relative;

    height: 100%;
    background-color: #000;
    -webkit-transform-origin: 0 0 0;
    -moz-transform-origin: 0 0 0;
    -ms-transform-origin: 0 0 0;
    -o-transform-origin: 0 0 0;
    transform-origin: 0 0 0;

    -webkit-transform: scale(2) rotate(45deg);
    -moz-transform: scale(2) rotate(45deg);
    -ms-transform: scale(2) rotate(45deg);
    -o-transform: scale(2) rotate(45deg);
    transform: scale(2) rotate(45deg);
}

.divider.cross .divider-right {
    display: block;
    position: relative;

    height: 100%;
    width: 100%;
    background-color: #000;
    -webkit-transform-origin: 100% 0 0;
    -moz-transform-origin: 100% 0 0;
    -ms-transform-origin: 100% 0 0;
    -o-transform-origin: 100% 0 0;
    transform-origin: 100% 0 0;

    -webkit-transform: scale(2) rotate(-45deg);
    -moz-transform: scale(2) rotate(-45deg);
    -ms-transform: scale(2) rotate(-45deg);
    -o-transform: scale(2) rotate(-45deg);
    transform: scale(2) rotate(-45deg);
}

.divider.cross img.pattern {
    -webkit-transform: translateX(-25vw);
    -moz-transform: translateX(-25vw);
    -ms-transform: translateX(-25vw);
    -o-transform: translateX(-25vw);
    transform: translateX(-25vw);
}

.divider.arrow .divider-left {
    display: block;
    position: relative;

    height: 100%;
    background-color: #000;
    -webkit-transform-origin: 0 0 0;
    -moz-transform-origin: 0 0 0;
    -ms-transform-origin: 0 0 0;
    -o-transform-origin: 0 0 0;
    transform-origin: 0 0 0;

    -webkit-transform: translateX(50vw) scale(2) rotate(45deg);
    -moz-transform: translateX(50vw) scale(2) rotate(45deg);
    -ms-transform: translateX(50vw) scale(2) rotate(45deg);
    -o-transform: translateX(50vw) scale(2) rotate(45deg);
    transform: translateX(50vw) scale(2) rotate(45deg);
}

.divider.arrow .divider-right {
    display: block;
    position: relative;

    height: 100%;
    width: 100%;
    background-color: #000;
    -webkit-transform-origin: 100% 0 0;
    -moz-transform-origin: 100% 0 0;
    -ms-transform-origin: 100% 0 0;
    -o-transform-origin: 100% 0 0;
    transform-origin: 100% 0 0;

    -webkit-transform: translateX(-50vw) scale(2) rotate(-45deg);
    -moz-transform: translateX(-50vw) scale(2) rotate(-45deg);
    -ms-transform: translateX(-50vw) scale(2) rotate(-45deg);
    -o-transform: translateX(-50vw) scale(2) rotate(-45deg);
    transform: translateX(-50vw) scale(2) rotate(-45deg);
}

.divider.arrow img.pattern {
    -webkit-transform: translateX(25vw);
    -moz-transform: translateX(25vw);
    -ms-transform: translateX(25vw);
    -o-transform: translateX(25vw);
    transform: translateX(25vw);
}


.divider.reverse {
    top: 0;
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
}

.decoration {
    will-change: transform; 
    display: none;
    pointer-events: none;
}

@media (min-width: 1025px) {
  
    .divider {
        display: none;
    }

    .decoration {
        display: block;
        pointer-events: none;

        position: absolute;
        z-index: 1;
    }

    .decoration:nth-of-type(1) {
        height: 200vh;
        width: 200vh;

        left: -120vh;
        bottom: 75%;
        /*transform: translate(0, -50%);*/
    }

    .decoration:nth-of-type(2) {
        height: 200vh;
        width: 200vh;

        right: -120vh;
        bottom: 58%;
        /*transform: translate(0, -50%);*/
    }

    .decoration:nth-of-type(3) {
        height: 200vh;
        width: 200vh;

        left: -140vh;
        bottom: 45%;
        /*transform: translate(0, -50%);*/
    }

    .decoration:nth-of-type(4) {
        height: 160vh;
        width: 160vh;

        right: -85vh;
        bottom: 35%;
        /*transform: translate(0, -50%);*/
    }

    .decoration:nth-of-type(5) {
        height: 200vh;
        width: 200vh;

        left: -95vh;
        bottom: 220vh;
        /*transform: translate(0, -50%);*/
    }

    .decoration:last-of-type {
        height: 180vh;
        width: 180vh;

        right: -125vh;
        bottom: 55vh;
        /*transform: translate(0, -50%);*/
    }
}

/* END DIVIDER */

/* LOADER */

.loader{
	background: black;
	opacity: 1;
	position: fixed;
	width: 100vw;
	height: 100vh;
	top:0;
    left:0;
    z-index: 10;
	transition: all 1s;
	pointer-events: none;
}

.loader img{
	position: relative;
	display: block;
	width: 50%;
	margin:0 auto;
	top: 50%;
	transform: translateY(-50%)
}

.loader.loaded{
	opacity: 0;
	transition: all 1s;
}

/* END LOADER */