@import url(https://fonts.googleapis.com/css?family=Ubuntu:400,500);
/*          author: Jan Sargsyan          */

/*          CSS File                      */

/*----------------------------------------*/

#mobile_menu {
    display: none;
}

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

@font-face {
    font-family: 'Panton-BlackCaps';
    src: url('../fonts/Panton-BlackCaps.otf');
}

@font-face {
    font-family: 'Panton-LightitalicCaps';
    src: url('../fonts/Panton-LightitalicCaps.otf');
}

@font-face {
    font-family: 'Panton-LightCaps';
    src: url('../fonts/Panton-LightCaps.otf');
}

html {
    font-family: sans-serif;
    /* 1 */
    -ms-text-size-adjust: 100%;
    /* 2 */
    -webkit-text-size-adjust: 100%;
    margin: 0;
    font-family: Ubuntu;
    /* 2 */
}

body {
    margin: 0 auto;
    display: flex;
    min-height: 100vh;
    flex-direction: column;
    overflow-x: hidden;
}

html,
body {
    max-width: 100%;
    overflow-x: hidden;
}

.content {
    margin: 0 auto;
    height: 100%;
}

#header {
    position: relative;
    top: 0px;
    height: 70px;
}

#logo {
    display: none;
    position: absolute;
    left: -40px;
    top: 5px;
    float: left;
    height: 100%;
    width: 70%;
}

#logo_mobilne {
    display: block;
    position: absolute;
    left: 30px;
    top: 20px;
    float: left;
    height: 100%;
    width: 70%;
}

#menu {
    display: none;
}

#menu_mobilne {
    float: right;
    margin-top: 27px;
    margin-right: 30px;
    width: 33px;
    height: 23px;
}

#menuToggle {
    display: block;
    position: relative;
    top: 0px;
    right: 0px;
    z-index: 1;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

#menuToggle input {
    display: block;
    width: 40px;
    height: 32px;
    position: absolute;
    top: -7px;
    left: -5px;
    cursor: pointer;
    opacity: 0;
    /* hide this */
    z-index: 2;
    /* and place it over the hamburger */
    -webkit-touch-callout: none;
}

/*
 * Just a quick hamburger
 */

#menuToggle span {
    display: block;
    width: 24px;
    height: 2px;
    margin-bottom: 4px;
    position: relative;
    background: rgba(142, 36, 170, 1);
    border-radius: 4px;
    z-index: 1;
    -webkit-transform-origin: 4px 0px;
    transform-origin: 4px 0px;
    -webkit-transition: background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0), opacity 0.55s ease, -webkit-transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0);
    transition: background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0), opacity 0.55s ease, -webkit-transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0);
    transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0), background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0), opacity 0.55s ease;
    transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0), background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0), opacity 0.55s ease, -webkit-transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0);
}

#menuToggle span:first-child {
    -webkit-transform-origin: 0% 0%;
    transform-origin: 0% 0%;
}

#menuToggle span:nth-last-child(2) {
    -webkit-transform-origin: 0% 100%;
    transform-origin: 0% 100%;
}

/* 
 * Transform all the slices of hamburger
 * into a crossmark.
 */

#menuToggle input:checked~span {
    opacity: 1;
    -webkit-transform: rotate(45deg) translate(-2px, -1px);
    transform: rotate(45deg) translate(-2px, -1px);
    background: white;
}

/*
 * But let's hide the middle one.
 */

#menuToggle input:checked~span:nth-last-child(3) {
    opacity: 0;
    -webkit-transform: rotate(0deg) scale(0.2, 0.2);
    transform: rotate(0deg) scale(0.2, 0.2);
}

/*
 * Ohyeah and the last one should go the other direction
 */

#menuToggle input:checked~span:nth-last-child(2) {
    -webkit-transform: rotate(-45deg) translate(0, -1px);
    transform: rotate(-45deg) translate(0, -1px);
}

/*
 * Make this absolute positioned
 * at the top left of the screen
 */

#menu_mob {
    position: absolute;
    width: 220px;
    margin: -100px 0 0 0;
    padding: 50px;
    padding-top: 50px;
    right: -100px;
    background: rgb(86, 48, 130);
    list-style-type: none;
    -webkit-font-smoothing: antialiased;
    /* to stop flickering of text in safari */
    -webkit-transform-origin: 0% 0%;
    transform-origin: 0% 0%;
    -webkit-transform: translate(100%, 0);
    transform: translate(100%, 0);
    -webkit-transition: -webkit-transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0);
    transition: -webkit-transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0);
    transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0);
    transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0), -webkit-transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0);
}

#menu_mob a {
    text-decoration: none;
}

#menuToggle input:checked~ul {
    -webkit-transform: none;
    transform: none;
}

#menu_mob li {
    padding: 10px 0;
    padding-top: 25px;
    color: white;
    font-family: "Ubuntu", sans-serif;
    font-size: 16px;
    text-decoration: none;
}

#menu_title {
    position: relative;
    left: -50px;
    top: 1px;
    width: 400px;
    height: 28px;
    color: white;
    /* background: #563082; */
    background: #67389e;
    padding-top: 22px;
    padding-bottom: 22px;
    border-bottom: 2px solid rgba(142, 36, 170, 0.5);
    font-size: 24px;
    padding-left: 50px;
    font-family: Ubuntu;
    margin-bottom: 25px;
}

.parallax-container {
    min-height: 650px;
    position: relative;
    overflow: hidden;
}

.parallax {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1
}

.parallax img {
    display: none;
    position: absolute;
    left: 50%;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%)
}

#content,
#content_about,
#content_projects .content {
    font-size: 24px;
    color: #5a2c85;
    /* font-weight: 500; */
    padding-top: 50px;
    margin: 0 auto;
	max-width: 520px;
}

#title {
    margin: 0 auto;
    text-align: center;
    font-size: 32px;
    /* color: #5a2c85; */
    /* font-weight: 800; */
}

#content .content ol,
ul {
    padding-left: 0px;
    list-style: none;
    margin-top: 50px;
}

#content .content li {
    display: flex;
    flex-flow: row;
    position: relative;
    padding-top: 20px;
}

#content .content span.number {
    margin-right: 50px;
    text-align: centre;
    border-radius: 50%;
    z-index: 1;
    padding-left: 0px;
    width: 25px;
    height: 25px;
    left: -20px;
}

#content .content span.line {
    position: absolute;
    top: 23px;
    height: 100%;
    border: solid black 2px;
    left: 10px;
}

#content .content li:last-child span.line {
    display: none;
}

#graph {
    width: 80%;
    margin: 0 auto;
}

.blob {
    width: 80%;
    text-align: justify;
}

.blob_text {
    font-size: 16px;
    font-weight: 500;
}

.col2 {
    margin: 0 auto;
    width: 50%;
    min-height: 100px;
    text-align: center;
    color: #8c50d3;
    padding: 2%;
    font-size: 14px;
    margin-top: 20px;
    padding: 50px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    transition: all 0.3s cubic-bezier(.25, .8, .25, 1);
}

.title_col {
    margin: 0 auto;
    text-align: center;
    font-size: 18px;
    color: black;
    font-weight: 300;
}

.desc_col {
    margin: 0 auto;
    text-align: justify;
    font-weight: 300;
    font-size: 10pt;
}

#footer {
    flex: 1 0 auto;
    width: 100%;
    height: 200px;
    text-align: center;
    margin: 0 auto;
    background: rgba(102, 47, 127, 1);
    background: -moz-linear-gradient(top, rgba(102, 47, 127, 1) 0%, rgba(83, 48, 130, 1) 100%);
    background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(102, 47, 127, 1)), color-stop(100%, rgba(83, 48, 130, 1)));
    background: -webkit-linear-gradient(top, rgba(102, 47, 127, 1) 0%, rgba(83, 48, 130, 1) 100%);
    background: -o-linear-gradient(top, rgba(102, 47, 127, 1) 0%, rgba(83, 48, 130, 1) 100%);
    background: -ms-linear-gradient(top, rgba(102, 47, 127, 1) 0%, rgba(83, 48, 130, 1) 100%);
    background: linear-gradient(to bottom, rgba(102, 47, 127, 1) 0%, rgba(83, 48, 130, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#662f7f', endColorstr='#533082', GradientType=0);
}

#copyrights {
    position: relative;
    top: 80px;
    margin: 0 auto;
}

#cp1 {
    color: white;
    font-family: Panton-LightCaps;
    font-size: 18px;
}

#cp2 {
    color: white;
    font-family: Panton-BlackCaps;
    font-size: 18px;
}

#cp3 {
    color: white;
    font-family: Panton-LightitalicCaps;
    font-size: 18px;
}

.graph_text {
    font-size: 8pt;
    color: black;
}

.social_facebook {
    position: relative;
    display: inline-block;
    top: 40px;
    background-image: url("../images/fb_icon.png");
    background-repeat: no-repeat;
    background-size: 40px 40px;
    background-position: center;
    width: 50px;
    height: 40px;
    top: 50
}

.social_pinterest {
    position: relative;
    display: inline-block;
    top: 40px;
    background-image: url("../images/pinterest_icon.png");
    background-repeat: no-repeat;
    background-size: 40px 40px;
    background-position: center;
    width: 50px;
    height: 40px;
}

.social_twitter {
    position: relative;
    display: inline-block;
    top: 40px;
    background-image: url("../images/twitter_icon.png");
    background-repeat: no-repeat;
    background-size: 40px 40px;
    background-position: center;
    width: 50px;
    height: 40px;
}

.social_linkedin {
    position: relative;
    display: inline-block;
    top: 40px;
    background-image: url("../images/linkedin_icon.png");
    background-repeat: no-repeat;
    background-size: 40px 40px;
    background-position: center;
    width: 50px;
    height: 40px;
}

#social {
    margin: 0 auto;
    width: 500px;
    height: 40px;
}

.linked {
    color: inherit;
    text-decoration: none;
}

/* .slider_size {
  width: 1300px;
  height: 800px;
  top: 0px;
  left: 0px;
  overflow: hidden;
}

.sliding {
  margin-left: auto;
  margin-right: auto;
  left: 0;
  right: 0;
  font-family: Ubuntu;
  text-align: center;
  color: white;
  position: absolute;
  top: 170px;
  font-size: 150px;
  line-height: 120px;
}

.sliding.smaller {
  display: none;
}

.sliding.first {
  position: absolute;
  top: 160px;
  font-size: 100px;
  line-height: 120px;
}

.sliding.second {
  position: absolute;
  top: 280px;
  font-size: 100px;
  line-height: 120px;
}

.sliding.third {
  position: absolute;
  top: 220px;
  font-size: 100px;
  line-height: 120px;
} */

.slider_size {
    width: 1300px;
    height: 500px;
    top: 0px;
    left: 0px;
    overflow: hidden;
}

#slider_content {
    height: 100%;
    /* width: 222px; */
    width: 100%;
}

.sliding.smaller {
    display: none;
}

.sliding {
    margin-left: auto;
    margin-right: auto;
    left: 0;
    right: 0;
    font-family: Ubuntu;
    text-align: center;
    color: white;
    position: absolute;
    top: 170px;
    font-size: 50px;
    line-height: 70px;
}

.sliding.first {
    position: absolute;
    top: 70px;
    font-size: 80px;
    line-height: 120px;
}

.sliding.second {
    position: absolute;
    top: 130px;
    font-size: 80px;
    line-height: 120px;
}

.sliding.third {
    position: absolute;
    top: 70px;
    font-size: 80px;
    line-height: 120px;
}

#information {
    position: relative;
    padding: 0 40px 50px 40px;
    text-align: justify;
    width: 80%;
    font-size: 18px;
    margin: 0 auto;
}

.person {
    position: relative;
    text-align: center;
    margin: 0 auto;
    top: 20px;
    width: 80%;
    min-height: 450px;
    padding-bottom: 80px;
}

.image_avatar {
    position: relative;
    height: 224px;
    text-align: center;
    top: 4px;
}

.image_avatar img {
    display: block;
    margin: 0 auto;
    border-radius: 50%;
    width: 224px;
    -webkit-box-shadow: 0 0 0 3px #fff, 0 0 0 4px #999, 0 2px 5px 4px rgba(0, 0, 0, .2);
    -moz-box-shadow: 0 0 0 3px #fff, 0 0 0 4px #999, 0 2px 5px 4px rgba(0, 0, 0, .2);
    box-shadow: 0 0 0 3px #fff, 0 0 0 4px #999, 0 2px 5px 4px rgba(0, 0, 0, .2);
}

.name {
    position: relative;
    top: 15px;
    height: 30px;
    font-size: 22px;
    font-family: Ubuntu;
    font-weight: bold;
    font-style: italic;
}

.description {
    position: relative;
    display: block;
    top: 15px;
    height: 35%;
    width: 100%;
    font-size: 18px;
    font-family: Ubuntu;
    text-align: justify;
}

.spacer {
    position: relative;
    width: 100%;
    height: 40px;
}

.demo-gallery figure {
    display: none;
}

.demo-gallery__title {
    line-height: 14px;
    font-size: 14px;
    opacity: 0.8;
    margin-top: 5px;
    width: 100%;
    float: left;
}

#content_projects .row a {
    text-decoration: none;
}

.collapsible {
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12), 0 3px 1px -2px rgba(0, 0, 0, 0.2);
}

.collapsible .collection {
    margin: 0;
    border: none;
}

.collapsible span.badge {
    margin-top: calc(1.5rem - 11px);
}

.collapsible {
    border-top: 1px solid #ddd;
    border-right: 1px solid #ddd;
    border-left: 1px solid #ddd;
    margin: 0.5rem 0 5rem 0;
}

.collapsible-header {
    display: block;
    cursor: pointer;
    min-height: 3rem;
    line-height: 3rem;
    padding: 0 1rem;
    background-color: #fff;
    border-bottom: 1px solid #ddd;
}

.collapsible-header i {
    width: 2rem;
    font-size: 1.6rem;
    line-height: 3rem;
    display: block;
    float: left;
    text-align: center;
    margin-right: 1rem;
}

.collapsible-body {
    background-color: #ede7f6;
    display: none;
    border-bottom: 1px solid #ddd;
    box-sizing: border-box;
    padding: 2rem;
}

.side-nav .collapsible,
.side-nav.fixed .collapsible {
    border: none;
    box-shadow: none;
}

.side-nav .collapsible li,
.side-nav.fixed .collapsible li {
    padding: 0;
}

.side-nav .collapsible-header,
.side-nav.fixed .collapsible-header {
    background-color: transparent;
    border: none;
    line-height: inherit;
    height: inherit;
    padding: 0 16px;
}

.side-nav .collapsible-header:hover,
.side-nav.fixed .collapsible-header:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

.side-nav .collapsible-header i,
.side-nav.fixed .collapsible-header i {
    line-height: inherit;
}

.side-nav .collapsible-body,
.side-nav.fixed .collapsible-body {
    border: 0;
    background-color: #fff;
}

.side-nav .collapsible-body li a,
.side-nav.fixed .collapsible-body li a {
    padding: 0 23.5px 0 31px;
}

.collapsible.popout {
    border: none;
    box-shadow: none;
}

.collapsible.popout>li {
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
    margin: 0 24px;
    transition: margin 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.collapsible.popout>li.active {
    box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
    margin: 16px 0;
}

.side-nav .collapsible {
    margin: 0;
}

.side-nav .collapsible-body>ul:not(.collapsible)>li.active,
.side-nav.fixed .collapsible-body>ul:not(.collapsible)>li.active {
    background-color: #ee6e73;
}

.side-nav .collapsible-body>ul:not(.collapsible)>li.active a,
.side-nav.fixed .collapsible-body>ul:not(.collapsible)>li.active a {
    color: #fff;
}

.side-nav .collapsible-body {
    padding: 0;
}

#ubuntu {
    position: relative;
    padding: 0 40px 50px 40px;
    text-align: justify;
    width: 80%;
    font-size: 18px;
    margin: 0 auto;
}


  .gallery {
  width: 240px;
  height: 159px;
  padding: 8px;
  margin: 0 auto;
  }
  
  .gallery:hover{
   background-color: indigo;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
   }
   
.gallery img {
  opacity: 1;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.row {
	padding-bottom: 30px;

}
