@font-face {
    font-family: 'Hypnosis';
    src: url('../fonts/hypnosis.otf') format('opentype');
    font-weight: normal;
}

@font-face {
    font-family: 'Myriadpro';
    src: url('../fonts/MYRIADPRO-SEMIBOLD.OTF') format('opentype');
}
* 2. reset */
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;
box-sizing: border-box;
}

html, body {
height: 100%;
line-height: 170%;
font-family: Myriadpro serif;
}


article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
display: block;
}

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;
}

*:focus {  
outline: none;
}

/* remove dotted outline from links,
button and input element */
a:focus,
a:active,
button::-moz-focus-inner,
input[type="reset"]::-moz-focus-inner,
input[type="button"]::-moz-focus-inner,
input[type="submit"]::-moz-focus-inner {
border: 0;
outline: 0;
}

/* IE10 scrollbar FIX */
html {
-ms-overflow-style: scrollbar;
}


/* 3. layout */
body {
font-family: 'Raleway', sans-serif;
font-size: 14px;
line-height: 1.5;
font-style: normal;
font-weight: 400;
color: #fff;
background-color: #193E6D;
 -webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
-webkit-text-size-adjust: 100%;
   -moz-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
width: 100%;
height: 100%;
overflow-x: hidden;
overflow-y: auto;
margin: 0;
padding: 0;
}

a {
color: #fff;
text-decoration: none;
outline: none;
 -webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
-webkit-text-size-adjust: 100%;
   -moz-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
-webkit-transition: all 0.5s linear;
   -moz-transition: all 0.5s linear;
    -ms-transition: all 0.5s linear;
     -o-transition: all 0.5s linear;
        transition: all 0.5s linear;
}

a:hover,
a:visited,
a:active,
a:focus {
color: #fff;
text-decoration: underline;
outline: none;
-webkit-transition: all 0.5s linear;
   -moz-transition: all 0.5s linear;
    -ms-transition: all 0.5s linear;
     -o-transition: all 0.5s linear;
        transition: all 0.5s linear;
}

p {
 -webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
-webkit-text-size-adjust: 100%;
   -moz-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
line-height: 2;
}

p a,
p a:hover {
/*color: #fff;*/
color: black;
text-decoration: underline;
outline: none;
-webkit-transition: all 0.5s linear;
   -moz-transition: all 0.5s linear;
    -ms-transition: all 0.5s linear;
     -o-transition: all 0.5s linear;
        transition: all 0.5s linear;
}

strong {
font-weight: bold;
}

::-moz-selection {
background: #5f5f5f;
color: #fff;
}

::selection {
background: #5f5f5f;
color: #fff;
}

.nopadding {
padding: 0!important;
margin: 0!important;
}


/* 4. section */
.sections {
position: relative;
z-index: 7;
}

.nopadding {
padding: 0!important;
margin: 0!important;
}

.section {
overflow: hidden;
}




/* 4.2 navigation */
/* 4.2.1. navigation icon */
.navigation-icon-wrapper {
position: fixed;
display: none;
width: 35px;
height: 25px;
top: 0;
right: 50px;
cursor: pointer;
z-index: 99998;
}

@media only screen and (max-width: 768px) {
  .navigation-icon-wrapper {
    top: 100vh;
    right: 25px;
  }
}

.navigation-icon .line {
display: block;
width: 35px;
height: 3px;
margin: 8px auto;
-webkit-transition: all .3s ease-in-out;
   -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
     -o-transition: all .3s ease-in-out;
        transition: all .3s ease-in-out;
background-color: #ba3762;
}

#navigation-icon.active .line:nth-child(1){
-webkit-transform: translateY(11px);
   -moz-transform: translateY(11px);
    -ms-transform: translateY(11px);
     -o-transform: translateY(11px);
        transform: translateY(11px);
background-color: #fff;
}

#navigation-icon.navigation-icon-dark.active .line:nth-child(1){
background-color: #111;
}

#navigation-icon.active .line:nth-child(3){
-webkit-transform: translateY(-11px);
   -moz-transform: translateY(-11px);
    -ms-transform: translateY(-11px);
     -o-transform: translateY(-11px);
        transform: translateY(-11px);
background-color: #fff;
}

#navigation-icon.navigation-icon-dark.active .line:nth-child(3){
background-color: #111;
}

.navigation-icon .line.line-dark {
background: #fff;
}

@media only screen and (max-width: 768px) {
  .navigation-icon .line.line-dark {
    background: #111;
  }
}

.navigation-icon .line.line-light {
background: #111;
}

@media only screen and (max-width: 768px) {
  .navigation-icon .line.line-light {
    background: #111;
  }
}


/* 4.2.2. navigation bg and links */
nav.navigation-menu {
position: fixed;
width: 100%;
height: 100%;
left: 0;
top: 0;
background: #000;
text-align: center;
visibility: hidden;
-webkit-box-sizing: border-box;
   -moz-box-sizing: border-box;
        box-sizing: border-box;
        opacity: 0;
   -moz-opacity: 0;
-webkit-opacity: 0;
filter: alpha(opacity=0);
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
-webkit-transform: scale(0.75);
   -moz-transform: scale(0.75);
    -ms-transform: scale(0.75);
     -o-transform: scale(0.75);
        transform: scale(0.75);
-webkit-transition: all 1s ease;
   -moz-transition: all 1s ease;
    -ms-transition: all 1s ease;
     -o-transition: all 1s ease;
        transition: all 1s ease;
z-index: 1001;
}

nav.navigation-menu.navigation-menu-light {
background: #fff;
}

nav.navigation-menu.show {
width: 100%;
height: 100vh;
left: 0;
top: 0;
background: #ba3762;
visibility: visible;
-webkit-box-sizing: border-box;
   -moz-box-sizing: border-box;
        box-sizing: border-box;
        opacity: 1;
   -moz-opacity: 1;
-webkit-opacity: 1;
filter: alpha(opacity=100);
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
-webkit-transform: scale(1);
   -moz-transform: scale(1);
    -ms-transform: scale(1);
     -o-transform: scale(1);
        transform: scale(1);
-webkit-transition: all 1s ease;
   -moz-transition: all 1s ease;
    -ms-transition: all 1s ease;
     -o-transition: all 1s ease;
        transition: all 1s ease;
}

nav.navigation-menu.navigation-menu-light.show {
background: #fff;
}

nav.navigation-menu a {
text-decoration: none;
-webkit-transition: all 0.5s linear;
   -moz-transition: all 0.5s linear;
    -ms-transition: all 0.5s linear;
     -o-transition: all 0.5s linear;
        transition: all 0.5s linear;
}

nav.navigation-menu a:hover {
-webkit-transition: all 0.5s linear;
   -moz-transition: all 0.5s linear;
    -ms-transition: all 0.5s linear;
     -o-transition: all 0.5s linear;
        transition: all 0.5s linear;
}

nav.navigation-menu a:link,
nav.navigation-menu a:visited,
nav.navigation-menu a:active {
color: #fff;
font-family: Hypnosis;
}

nav.navigation-menu.navigation-menu-light a:link,
nav.navigation-menu.navigation-menu-light a:visited,
nav.navigation-menu.navigation-menu-light a:active {
color: #111;
}

nav.navigation-menu li a.active {
color: #193E6D;
}

nav.navigation-menu.navigation-menu-light li a.active {
color: #999;
}

nav.navigation-menu li {
margin: 0 0 7px 0;
}

nav.navigation-menu li.last {
margin: 0;
}

nav.navigation-menu a {
font-family: 'Oswald', sans-serif;
font-size: 36px;
font-weight: 400;
font-style: normal;
text-transform: uppercase;
line-height: 1;
letter-spacing: 0.05em;
text-decoration: none;
}
table.artists-list-mobile{
    display: none;
}

@media only screen and (max-width: 880px) {
  nav.navigation-menu a {
    font-size: 17px;
  }
}

@media only screen and (max-width: 640px) {
  nav.navigation-menu a {
    font-size: 15px;
  }
}



/* 4.2.3. navigation brackets */
.brackets a::before,
.brackets a::after {
display: inline-block;
        opacity: 0;
   -moz-opacity: 0;
-webkit-opacity: 0;
filter: alpha(opacity=0);
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
-webkit-transition: -webkit-transform 0.3s, opacity 0.2s;
   -moz-transition: -moz-transform 0.3s, opacity 0.2s;
    -ms-transition: -ms-transform 0.3s, opacity 0.2s;
     -o-transition: -o-transform 0.3s, opacity 0.2s;
        transition: transform 0.3s, opacity 0.2s;
}

.brackets a::before {
content: "\2014";
margin-right: 10px;
-webkit-transform: translateX(20px);
   -moz-transform: translateX(20px);
    -ms-transform: translateX(20px);
     -o-transform: translateX(20px);
        transform: translateX(20px);
}

.brackets a::after {
content: "";
margin-left: 10px;
-webkit-transform: translateX(-20px);
   -moz-transform: translateX(-20px);
    -ms-transform: translateX(-20px);
     -o-transform: translateX(-20px);
        transform: translateX(-20px);
}

.brackets a:hover::before,
.brackets a:hover::after,
.brackets a:focus::before,
.brackets a:focus::after {
        opacity: 1;
   -moz-opacity: 1;
-webkit-opacity: 1;
filter: alpha(opacity=100);
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
-webkit-transform: translateX(0px); 
   -moz-transform: translateX(0px);
    -ms-transform: translateX(0px);
     -o-transform: translateX(0px);
        transform: translateX(0px);
}

.brackets ul, li {
list-style: none;
}

.brackets a,
.brackets a:hover,
.brackets a:visited {
text-decoration: none;
}


/* 4.2.4. navigation IMG */
.navigation-menu-img-wrapper {
position: fixed;
width: 100%;
height: 100%;
z-index: 1; 
}

.navigation-menu-img {
position: absolute;
width: 50%;
top: 0;
left: 0;
bottom: 0;
overflow: hidden;
}

.menu-img {
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
visibility: hidden;
        opacity: 0;
   -moz-opacity: 0;
-webkit-opacity: 0;
filter: alpha(opacity=0);
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
-webkit-transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
   -moz-transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
    -ms-transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
     -o-transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
        transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
-webkit-transform: scale(1.1);
   -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
     -o-transform: scale(1.1);
        transform: scale(1.1);
-webkit-pointer-events: none;
   -moz-pointer-events: none;
        pointer-events: none;
}

.menu-img.active {
        opacity: 1;
   -moz-opacity: 1;
-webkit-opacity: 1;
filter: alpha(opacity=100);
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
visibility: visible;
-webkit-transform: scale(1);
   -moz-transform: scale(1);
    -ms-transform: scale(1);
     -o-transform: scale(1);
        transform: scale(1);
}

.navigation-menu-txt {
position: relative;
height: auto;
}

.center-container-menu{
    margin-top: 37vh;
}























































body{
    background: white;
/*    background: #f2f0dc;*/
    font-family: Myriadpro;
}

#mymenu{
    color: black;
    background: white;
/*    background: #ba3762;*/
    max-height: 60px;
    padding: 10px 0;
}
#mymenu nav{
    display: block;
    margin: 0 auto;
    width: fit-content;
}
#mymenu a{
    color: black;
/*    color: #193e6d;*/
    font-family: Hypnosis;
    font-size: 30px;
    line-height: 1;
    padding-right: 10px;
}
#mymenu a:hover{
    font-style: italic;
    text-decoration: none;
    transition: 0.1s;
}

#mymenu a.active{
    font-style: italic;
    text-decoration: none;
}

@media screen and (max-width: 768px){ 
    #mymenu a{
        font-size: 0px;
    }
    .title-text-art-img img{
        width: 90vw !important;
        height: auto;
    }
}

@media screen and (min-width: 768px) and (max-width: 992px) { 
    #mymenu a{
        font-size: 18px;
    }
}

@media screen and (min-width: 992px) and (max-width: 1200px) { 
    #mymenu a{
        font-size: 24px;
    }
}

@media screen and (min-width: 1200px){ 
    #mymenu a{
        font-size: 30px;
    }
}








.artists-list img{
    width: 240px;
}

@media only screen and (max-width: 400px) {
    .navigation-icon-wrapper {
        position: relative;
        left: 85%;
        top: 2vh;
    }
}

@media all and (max-width: 768px) {
    .navigation-icon-wrapper{
        display: block;
    }
    #mymenu{
        display: none;
    }
    .section-title-vertical{
        left: 0;
        top: 0;
        transform: rotate(90deg);
        bottom: auto;
    }
    .artists-list {
        top: 200px;
        left: 0;
        width: fit-content;
    }
}



.art-container, .art-container a{
    color: black;
}
.art-container{
    width: 100%;
    margin: 50px auto 0;
}

.richtext strong {
    color: #ba3762;
    font-weight: 400;
}

@media (min-width: 75em) {
    .cont-text-col2 {
        -moz-columns: 2;
        columns: 2;
    }
}





div.owl-nav{
    display: none;
}
.gutenberg--block{
    text-align: center;
}
.gutenberg--block h2 p span{
    font-size: 1vh;
}
.gutenberg--block h2, .gutenberg--block h2 p{
    line-height: 1;
    margin: 0;
    padding: 0;
}
.gutenberg-text-container{
    margin-bottom: 10px;
}
img {
    height: 35vh;
    width: auto;
}
.videcontent-art-section video{
    width: 100%;
}
.team-carousel-elem img{
    height: auto;
    width: 23vw;
}
.team-carousel{
    width: 140%;
}
.team-carousel-elem{
    float: inline-start;
}
.acdf-container img{
    width: 25vw;
    height: auto;
    display: block;
    margin: 0 auto;
}
.title-text-art{
    text-align: center;
/*    font-family: 'Hypnosis';*/
    font-size: 3vh;
}

.credits-container-text p{
    text-align: center;
    font-size: 13px;
}
#fp-nav{
    display: none;
}
.section4-elem-img{
    width: fit-content;
    display: inline-flex;
}
.art-carousel-wrapper{
    width: max-content;
}
.videcontent-art-section div{
    width: 50%;
    display: inline-flex;
}
.videcontent-art-section{
    display: flex;
}



/*architecture*/
.arch-qalas-img{
    background-image: url(/images/architecture/qalas_logo.png);
    height: 35vh;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
}

.cont-text{
    margin-bottom: 20px;
}

.cont-text p{
    margin: 0;
}

.title-text-art{
    margin: 10px 0;
}
.title-text-art-small{
    font-size: 16px;
    text-transform: uppercase;
/*    font-family: Hypnosis;*/
}

.title-text-art-big{
    font-size: 26px;
}

.title-text-art-normal{
    font-size: 14px;
}

.title-text-art-img{
    text-align: center;
}
.title-text-art-img img{
    width: auto;
    height: auto;
}


.cont-text-center{
    text-align: center;
}

.my-block-div{
    padding: 0 20px;
}
.my-block-div-video{
    margin: 20px 0;
}



/*MOBILE*/

@media (max-width: 75em) {
    .cont-text-col2 {
        text-align: justify;
    }
    .title-text-art-img{
        text-align: center;
    }
    .videcontent-art-section {
         display: grid; 
    }
    .videcontent-art-section div {
        width: 100%;
    }
}






















/* MOBILE */
.navigation-icon-wrapper {
position: fixed;
display: none;
width: 35px;
height: 25px;
cursor: pointer;
z-index: 99998;
}


@media only screen and (max-width: 768px) {
  .navigation-icon-wrapper {
    top: 0 !important;
    right: 25px;
    display: block;
  }
}



footer{
    padding: 50px 0;
    background: white;
}
footer, footer a{
    color: black;
}
footer p{
    text-align: center;
}
footer img.footer-logo{
    width: 200px;
    height: auto;
    margin-top: 10px;
}
hr{
    margin: 50px;
    height: 2px;
    background: black;
}

