@import url('https://fonts.googleapis.com/css?family=Source+Sans+Pro:200,200i,300,300i&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Saira:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

html {

  height: 100%;
}

body{
  margin: 0;
  background: radial-gradient(circle, rgba(255,255,255,1) 0%, rgba(255,255,255,1) 50%, rgba(255,255,255,1) 100%);
}

h1{
  font-family: 'Saira', sans-serif;
  font-weight: 400;
  font-style: italic;
  font-size: 16px;  
  letter-spacing: 3px;
  color: white;
  text-align: center;
}

h2{
  font-family: 'Saira', sans-serif;
  font-weight: 800;
  font-style: italic;
  font-size: 100px;  
  letter-spacing: 3px;
  color: white;
  text-align: center;
  margin: 0 auto;
  line-height: 90px;
}

.enterbutton{
  position:fixed;
  z-index: 80;
  right: 0; left: 0; bottom: 10px;
  margin: 0 auto; 
  width:75px; 
  height: 75px;
  padding: 10px;
  background-color:white; 
  transition: 0.5s;
  -moz-transition: 0.5s;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  -ms-transition: 0.5s;
  outline: none;
  border-radius: 10px;
  border: 1px solid black;
}

.enterbutton:hover{
  background-color: white;
  padding: 7px;
  cursor:pointer;

  filter: invert(100%);
  -moz-filter: invert(100%);
  -webkit-filter: invert(100%);
  -o-filter: invert(100%);
  -ms-filter: invert(100%);

  transition: 0.5s;
  -moz-transition: 0.5s;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  -ms-transition: 0.5s;
}

#enterbtncontainer{
  position: fixed;
  z-index: 80;
}

#slidercontainer{

  position: fixed;
  z-index: 50;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  overflow: hidden !important;
  min-height: 150px;
}

#slider_l{
  background-image: url("../img/maincontent/bgL2.png");
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  opacity: 1;

  transition: transform 0.6s cubic-bezier(0.64, 0, 0.78, 0);
  -moz-transition: transform 0.6s cubic-bezier(0.64, 0, 0.78, 0);
  -webkit-transition: transform 0.6s cubic-bezier(0.64, 0, 0.78, 0);
  -o-transition: transform 0.6s cubic-bezier(0.64, 0, 0.78, 0);
  -ms-transition: transform 0.6s cubic-bezier(0.64, 0, 0.78, 0);
}

#slider_r{
  background-image: url("../img/maincontent/bgR2.png");
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  height: 100%;
  width: 100%;
  right: 0;

  transition: transform 0.6s cubic-bezier(0.64, 0, 0.78, 0);
  -moz-transition: transform 0.6s cubic-bezier(0.64, 0, 0.78, 0);
  -webkit-transition: transform 0.6s cubic-bezier(0.64, 0, 0.78, 0);
  -o-transition: transform 0.6s cubic-bezier(0.64, 0, 0.78, 0);
  -ms-transition: transform 0.6s cubic-bezier(0.64, 0, 0.78, 0);
}

#closebtncont{
  position: fixed;
  height: 40px;
  width: 40px;
  fill: #fff;
  top: 10px;
  left: 10px;
  z-index: 50;
  border-radius: 5px;
  padding: 2px;
  z-index: 30;
  /*background-color: #020606;*/
}


#closebtncont:hover{
  background-color: #28A7C3;
}

#nav_container{
  top: -100px;
  position: fixed;
  width: 100%;
  background: radial-gradient(circle, rgba(0,20,28,1) 0%, rgba(0,0,8,1) 50%, rgba(10,51,58,1) 100%);
  margin: 0 auto;
  text-align: center;
  /*padding-top: 10px;*/
  z-index: 20;
  overflow: hidden;

  transition: 2.5s;
  -moz-transition: 2.5s;
  -webkit-transition: 2.5s;
  -o-transition: 2.5s;
  -ms-transition: 2.5s;
}

hr{
  opacity: 1;
  width: 65%;
  max-width: 1440px;
  margin: 0 auto;
}

#nav_split p{
  display: inline;
  font-family: 'Saira', sans-serif;
  font-weight: 400;
  font-style: italic;
  font-size: 16px;  
  letter-spacing: 3px;
  color: white;

  transform: skewX(-10deg) !important;
  -moz-transform: skewX(-10deg) !important;
  -webkit-transform: skewX(-10deg) !important;
  -o-transform: skewX(-10deg) !important;    
  -ms-transform: skewX(-10deg) !important;
}

#about_navi{
  border: none;
  color: white;
  background-color: transparent;
  font-family: 'Saira', sans-serif;
  font-weight: 700;
  font-style: italic;
  font-size: 14px; 
  letter-spacing: 1px;
  padding-top: 10px;

  transform: skewX(-10deg);
  -webkit-transform: skewX(-10deg);
  -moz-transform: skewX(-10deg);
  -o-transform: skewX(-10deg);
  -ms-transform: skewX(-10deg);

  transition: 0.5s;
  -moz-transition: 0.5s;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  -ms-transition: 0.5s;
}

#about_navi:hover{
  border: none;
  background-color: #FF8212;
}

#work_navi{
  border: none;
  color: white;
  background-color: transparent;
  font-family: 'Saira', sans-serif;
  font-weight: 700;
  font-style: italic;
  font-size: 14px; 
  letter-spacing: 1px;
  padding-top: 10px;
  transform: skewX(-10deg);
  -webkit-transform: skewX(-10deg);
  -moz-transform: skewX(-10deg);
  -o-transform: skewX(-10deg);
  -ms-transform: skewX(-10deg);

  transition: 0.5s;
  -moz-transition: 0.5s;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  -ms-transition: 0.5s;


}

#work_navi:hover{
    border: none;
    background-color: #E987CE;
}



@media screen and (orientation: landscape) {
   {
    transition: 0.5s;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    -ms-transition:0.5s;
  }
}


/*---------ORIENTATION DETECTION---------*/

/*#ori-block{
  position: fixed;
  width: 100%;
  height: 100%;
  opacity: 0;
  top: 0;
  left: 0;
  overflow: hidden;
  background-image: url("../img/bgs/landscape.jpg");
  background-attachment: fixed;
  background-position: center; 
  background-repeat: no-repeat; 
  background-color: #fff;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -o-transition: 0.5s;
  -ms-transition:0.5s;
}

@media screen and (max-height: 400px) and (orientation: landscape) {
#ori-block{
  opacity:1 ;
  z-index: 100000;
  top: 0;
  left: 0;
  background-color: #fff;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -o-transition: 0.5s;
  -ms-transition:0.5s;
  }
}

#ori-block p{
  margin: 0 auto;
  text-align: center;
  font-family: 'Saira', sans-serif;
  font-weight: 500;
  font-style: italic;
  font-size: 16px;
  color: #cecece;
  max-height: 500px;
  letter-spacing: 2px;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -o-transition: 0.5s;
  -ms-transition:0.5s;
}*/

/*---------ORIENTATION DETECTION END---------*/


/*---------GENERAL---------*/

.portcontainer{
  display: none;
  margin: 0 auto;
  animation: fadein 3s;
  -webkit-animation: fadein 3s; /* Safari, Chrome and Opera > 12.1 */
  -moz-animation: fadein 3s; /* Firefox < 16 */
  -ms-animation: fadein 3s; /* Internet Explorer */
  -o-animation: fadein 3s; /* Opera < 12.1 */
}

#everything{
  position: absolute;
  display: block;
  overflow: hidden;
  margin: 0 auto;
  width: 100%;
  height: 100%;

  transition: 2.5s;
  -webkit-transition: 2.5s;
  -moz-transition: 2.5s;
  -o-transition: 2.5s;
  -ms-transition:2.5s;

  transform: scale(0.5,0.5);
  -moz-transform: scale(0.5,0.5);
  -webkit-transform: scale(0.5,0.5);
  -o-transform: scale(0.5,0.5);
  -ms-transform: scale(0.5,0.5);
}

.gallery1{
  position: fixed;
  display: block;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  margin: 0 auto;
}


@keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Firefox < 16 */
@-moz-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Safari, Chrome and Opera > 12.1 */
@-webkit-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Internet Explorer */
@-ms-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/*---------GENERAL END---------*/


/*---------ABOUT---------*/


#about_container{
  display: none;
  z-index: 5;
  color: white;
  -webkit-animation: fadein 3s; /* Safari, Chrome and Opera > 12.1 */
  -moz-animation: fadein 3s; /* Firefox < 16 */
  -ms-animation: fadein 3s; /* Internet Explorer */
  -o-animation: fadein 3s; /* Opera < 12.1 */
  animation: fadein 3s;
}

#about_page{
  position: relative;
  top: 100px;
}

#about_page p{
  font-family: 'Saira', sans-serif;
  font-weight: 500;
  font-size: 18px;  
  letter-spacing: 1px;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  z-index: 5;
  color: white;
  padding: 20px;
}


#textback{
background: gray;
width: 500px;
height: 500px;

}

/*---------ABOUT END---------*/

/*---------GALLERY---------*/


.rows{
  position: relative;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  text-align: center;
  padding-bottom: 100px;
  /*border: 2px solid red;*/

}

.rows img{
  /*margin: 0px;*/
  width: 80%;
  max-width: 110px;
  margin: 3px;
  border-radius: 20px;
  -moz-border-radius: 20px;
  -webkit-border-radius: 20px;
  -o-border-radius: 20px;
  -ms-border-radius: 20px;
  /*background: rgba(114, 134, 145, 0.2);*/
  background: #fff;


}

.rows img:hover{

  border: 1px solid #28a7c3;
  background-color: #fff;
  opacity: 0.25;
  /*border: 1px solid #d7583c;*/
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;

}

#blank img{
  margin: 0px;
  width: 80%;
  max-width: 150px;
  height: 80%;
  max-height: 150px;
  text-align: left;
  background: rgba(114, 134, 145, 0);
}

/*OVERLAY PREVIEW (FANCYBOX)*/

.fancybox-opened .fancybox-skin {
  box-shadow: none !important;
  -webkit-box-shadow:none !important;
  -moz-box-shadow: none !important;
  -o-box-shadow: none !important;
}

.fancybox-close{
  position: absolute !important;
  top: -0px !important;
  right: -0px !important;
  width: 36px;
  height: 36px;
  cursor: pointer;
  z-index:8040;
  transition: 0.5s;
  -moz-transition: 0.5s;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  -ms-transition: 0.5s;
}

.fancybox-close:hover{
  /*opacity: 0.5;*/
  position: absolute !important;
  top: -0px !important;
  right: -0px !important;
  width: 36px;
  height: 36px;
  cursor: pointer;
  z-index:8040;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg); /* Safari 3-8 */
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg); /* Safari 3-8 */
  -ms-transform: rotate(45deg); /* IE 9 */
}

.fancybox-lock body{
  overflow: hidden !important;
}

.fancybox-lock .fancybox-overlay{
    overflow: auto !important;
    overflow-y:none !important;
}


.mySlides {

  display:none;
  width: 100%;
  max-width: 960px;
  margin: 0 auto;

}

#previewer_buttons{

position:relative;
padding-bottom: 30px;

}

#caption_style{

  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-align: center;
  font-family: 'Saira', sans-serif;
  font-weight: 300;
  color: #000000;
  font-size: 18px;
  letter-spacing: 1px;
  line-height: 16px;

}
/*OVERLAY PREVIEW END*/

/*---------DETAILS---------*/

