
@import url('https://fonts.googleapis.com/css?family=Montserrat|Roboto+Slab');
@import url(https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.6.3/css/font-awesome.css);

* {
	  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html, body {
	margin: 0;
	padding: 0;
	background-color: #f5f5f5;
  font-family: 'Roboto Slab', serif;
}

.floatright {
	float: right;
	text-align: right;
}

.logo {
  position: fixed;
	height: 50px;
	margin-left: 8vw;
  top: calc(5% - 25px);
  z-index: 3;
  transition: transform .2s ease-in-out, -webkit-transform .2s ease-in-out;
}

.logo:hover {
  transform: rotate(90deg);
}

.header {
	position: relative;
  background-color: #f5f5f5;
  z-index: 10;
	height: 10vh;
	width: calc(100vw - 17px);
}

.textbol {
  text-align: center;
  font-size: 12px;
  
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
}
.colum50 {
	float: left;
	width: 50%;
}

.colum25 {
	float: left;
	width: 25%;
}

.div1 {
	background-color: #f5f5f5;
	min-height: 100vh;
	width: 100%;
}

.d-none {
  display: none;
}

.g-recaptcha {
  position: relative;
  width: 300px;
  margin: auto;
  margin-top: 35px;
  margin-bottom: 40px;
}

/*Meniu*/

a:link {
  text-decoration: none;
  color: #000;
}

a:visited {
  text-decoration: none;
  color: #000;
}

a:active {
  text-decoration: none;
  color: #000;
}

.site-content {
  max-width: 1100px;
  height: 100vh;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-items: center;
  justify-content: center;

  
}
.site-content__headline {
  font-weight: 200;
  color: #6d6d6d;
  font-size: calc(1vw + 10px);
}

.menu-icon {
  height: 30px;
  width: 12px;
  position: fixed;
  z-index: 2;
  right: 8vw;
  top: 4.5%;
  cursor: pointer;
}
.menu-icon__line {
  height: 2px;
  width: 10px;
  display: block;
  background-color: #6d6d6d;
  margin-bottom: 4px;
  border-radius: 25px;
  transition: background-color .5s ease, -webkit-transform .2s ease;
  transition: transform .2s ease, background-color .5s ease;
  transition: transform .2s ease, background-color .5s ease, -webkit-transform .2s ease;
}
.menu-icon__line-left {
  width: 10px;
}
.menu-icon__line-right {
  width: 10px;
  
}

.menu-icon:hover .menu-icon__line {
  background-color: #353535;
}

.nav {
  position: fixed;
  z-index: 1;
}

.nav:before, .nav:after {
  content: "";
  position: fixed;
  width: 100vw;
  height: 100vh;
  background: rgba(255, 255, 255, 0.2);
  z-index: -1;
  transition: -webkit-transform cubic-bezier(0.77, 0, 0.175, 1) 0.8s;
  transition: transform cubic-bezier(0.77, 0, 0.175, 1) 0.8s;
  transition: transform cubic-bezier(0.77, 0, 0.175, 1) 0.8s, -webkit-transform cubic-bezier(0.77, 0, 0.175, 1) 0.8s;
  -webkit-transform: translateX(0%) translateY(-100%);
          transform: translateX(0%) translateY(-100%);
}

.nav:after {
  background: rgba(245, 245, 245, 1);
  transition-delay: 0s;
}

.nav:before {
  transition-delay: .1s;
}

.nav__content {
  position: fixed;
  top: -50%;
  -webkit-transform: translate(0%, -50%);
          transform: translate(0%, -50%);
  width: 100%;
  text-align: center;
  font-size: calc(1vw + 5px);
  color: #999999;
  font-weight: 400;
  cursor: pointer;
  display: inline-block;
   transition: opacity .2s ease, -webkit-transform .3s ease;
  transition: opacity .2s ease, transform .3s ease;
  transition: opacity .2s ease, transform .3s ease, -webkit-transform .3s ease;
}

.nothide {
  display: inline-block;
  top: 50%;
}

.nav__list-item {
  position: relative;
  display: inline-block;
  transition-delay: 0.8s;

  /*cia*/
  
  opacity: 0;
  -webkit-transform: translate(0%, 100%);
          transform: translate(0%, 100%);
  transition: opacity .2s ease, -webkit-transform .3s ease;
  transition: opacity .2s ease, transform .3s ease;
  transition: opacity .2s ease, transform .3s ease, -webkit-transform .3s ease;
  margin-right: 55px;
}

.nav__list-item:before {
  content: "";
  position: absolute;
  background: #e8e8e8;
  width: 100%;
  height: 0%;
  top: 0%;
  -webkit-transform: translate(0%, 0%);
          transform: translate(0%, 0%);
  transition: all .3s ease;
  z-index: -1;
}

.nav__list-item:hover:before {
  width: 100%;
  height: 100%;
}

body.nav-active .menu-icon__line {
  background-color: #6d6d6d; 
  -webkit-transform: translateY(-6px) rotate(-45deg);
          transform: translateY(-6px) rotate(-45deg);
          width: 15px;
}

body.nav-active .menu-icon__line-left {
	background-color: #6d6d6d;
  -webkit-transform: translateX(0px) rotate(45deg);
          transform: translateX(0px) rotate(45deg);
          width: 15px;
}

body.nav-active .menu-icon__line-right {
	background-color: #6d6d6d;
  -webkit-transform: translateX(1px) rotate(0deg);
          transform: translateX(1px) rotate(0deg);
          width: 13px;
}

body.nav-active .nav {
  visibility: visible;
}

body.nav-active .nav:before, body.nav-active .nav:after {
  -webkit-transform: translateX(0%) translateY(0%);
          transform: translateX(0%) translateY(0%);
}

body.nav-active .nav:after {
  transition-delay: .1s;
}

body.nav-active .nav:before {
  transition-delay: 0s;
}

body.nav-active .nav__list-item {

  /*cia*/
  
  opacity: 1;

  -webkit-transform: translateX(0%);
          transform: translateX(0%);
  transition: opacity .3s ease, color .3s ease, -webkit-transform .3s ease;
  transition: opacity .3s ease, transform .3s ease, color .3s ease;
  transition: opacity .3s ease, transform .3s ease, color .3s ease, -webkit-transform .3s ease;
}

body.nav-active .nav__list-item:nth-child(0) {
  transition-delay: 0.5s;
}

body.nav-active .nav__list-item:nth-child(1) {
  transition-delay: 0.6s;
}

body.nav-active .nav__list-item:nth-child(2) {
  transition-delay: 0.7s;
}

body.nav-active .nav__list-item:nth-child(3) {
  transition-delay: 0.8s;
}

body.nav-active .nav__list-item:nth-child(4) {
  transition-delay: 0.9s;
}



/*Galerija*/
.wrapper{font-size:0;
    width: calc(100vw - 17px);
}

a.gal{
  display:inline-block;
  width:25%;
  height: 45vh;
  position:relative;
  overflow: hidden;
}

a.gal img {
  height:100%; 
  width:100%;
  object-fit:cover;
  transition: 1s ease;
}

a.gal:hover img {
transform: scale(1.2, 1.2);
-ms-transform: scale(1.2, 1.2);
-webkit-transform: scale(1.2, 1.2);
opacity: 0;
}

a.gal p {
    color: white;
}

a.gal p:after {
    opacity:1;
}

a.gal:before, a.gal:after{
  width:100%;
  position:absolute;
  opacity:0;
  transition:opacity 0.8s ease;
}

a.gal:before{
  content:'';
  height:100%;
  background:rgba(237, 237, 237, 1);
}

a.gal:after{
  top:calc(50% - 0.6em);
  left:-13%;
  color:rgba(255, 255, 255, 0.6);
  text-transform:uppercase;
  transition: .5s ease;  
}


a.gal:hover:before, a:hover:after{
  opacity:1;
}

.Copyright {
  color: #ccc;
  font-family: 'Montserrat', sans-serif;
  font-size:13px;
  text-align: center;
  margin-bottom: 20px;
  margin-top: 50px;
}

.overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  transition: .5s ease;
}

a.gal:hover .overlay {
  opacity: 1;
  transform: translate(0px, 0px);
}

.text {
  color: #000;
  font-size: calc(1vw + 5px);
  text-transform:uppercase;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
  font-weight: 400;
  letter-spacing: 3px;

}


@media (max-width:650px){
a.gal{
  width:50%;
  height:40%;
}
.wrapper {
    width: 100%;
}
}

@media (max-width:480px){
a.gal{
  width:100%;
}
}

.igalerija {
position: fixed;
font-family: 'Montserrat', sans-serif;
font-size: 13px;
text-transform: uppercase;
color: #cccccc;
right: 8vw;
bottom: 5%;
writing-mode: sideways-lr;
text-orientation: mixed;
opacity: 0;
}



@keyframes iplauka {
  from {  
  -ms-transform: translate(0px,50px); 
  -webkit-transform: translate(0px,50px); 
  transform: translate(0px,50px); 
  opacity: 0;
}
  to {
  -ms-transform: translate(0px,0px); 
  -webkit-transform: translate(0px,0px); 
  transform: translate(0px,0px); 
  opacity: 1;
  }
}

@keyframes isplauka {
  from {  
  -ms-transform: translate(0px,0px); 
  -webkit-transform: translate(0px,0px); 
  transform: translate(0px,0px); 

}
  to {
  -ms-transform: translate(0px,50px); 
  -webkit-transform: translate(0px,50px); 
  transform: translate(0px,50px); 
  opacity: 0;
  }
}


h1 {
  font-family: 'Roboto Slab', serif;
  font-size: calc(1vw + 10px);
  color: #000000;
  text-align: center;
}

h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  color: #002128;
  text-align: center;
  margin-top: -40px;
  margin-bottom: 100px;
}


.tablevideo {
  position: relative;
  max-width: 1000px;
  margin: auto;
  margin-top: 50px;
}

.tablevideo2 {
  position: relative;
  max-width: 600px;
  margin: auto;
  margin-top: 50px;
}

@import "compass/css3";

section {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0px;
}

section .t {
  max-width: 600px;
  margin: 0 auto;
  padding: 0px;
}

.module {
  width: 100%;
  height:auto;
  position: relative;
  margin-bottom: 50px;
  padding-left: 40px;
  padding-right: 40px;

}

.module2 {
  width: 100%;
  height:auto;
  position: relative;

  margin-bottom: 50px;
  padding-left: 40px;
  padding-right: 40px;

}

.module2 img {
  width: 100%;
}

.module img {
  width: 100%;
}
.module:nth-child(even) {
  margin-right: 0;
}

.come-in {
  transform: translateY(0);
  animation: come-in 1.8s ease forwards;

}

.come-in:nth-child(odd) {
  animation-duration: 2.5s;

}

.already-visible {
  transform: translateY(50px);
  animation: come-in 1.4s ease forwards;
  animation-delay: 1.4s;
  opacity: 0;
}

.already-visible:nth-child(1) {
  transform: translateY(300px);
  animation: come-in 1.6s ease forwards;
  opacity: 0;
}

.already-visible:nth-child(2) {
  transform: translateY(300px);
  animation: come-in 1.8s ease forwards;
  opacity: 0;
}
.already-visible:nth-child(3) {
  transform: translateY(300px);
  animation: come-in 2s ease forwards;
  opacity: 0;
}
.already-visible:nth-child(4) {
  transform: translateY(300px);
  animation: come-in 2.2s ease forwards;
  opacity: 0;
}



@keyframes come-in {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.buttons {
  display: block;
 
  height: 100%;
  justify-content: center;
  text-align: center;
  width: 100%;

}

.container {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1em;
  text-align: center;

}
@media (min-width: 600px) {
  .container {
    flex-direction: row;
    justify-content: space-between;
  }
}



.btn {
  color: #999999;
  cursor: pointer;
font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  line-height: 45px;
  margin: 0 0 2em;
  max-width: 300px;
  position: relative;
  text-decoration: none;
  text-transform: uppercase;
  width: 100%;
  transition: .5s ease-in-out;

}
@media (min-width: 600px) {
  .btn {
    margin: 0 1em 2em;
  }
}
.btn:hover {
  text-decoration: none;
}

.btn-1 {
  font-weight: 100;
  margin: auto;
  margin-bottom: 5%;
}
.btn-1 svg {
  height: 45px;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
.btn-1 rect {
  fill: none;
  stroke: #cccccc;
  stroke-width: 3;
  stroke-dasharray: 300, 0;
  transition: all 0.35s linear;
}

.btn-1:hover {
  background: rgba(225, 51, 45, 0);
  letter-spacing: 1px;

}
.btn-1:hover rect {
  stroke-width: 3;
  stroke: #999999;
  stroke-dasharray: 0, 300;
  stroke-dashoffset: 80;
  transition: all 1.35s cubic-bezier(0.19);
}

/* skillai */

.container2 {
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
}

.chart {
  position: relative;
  display: inline-block;
  margin: 10px 10px;
  color: #002128;
  font-size: 13px;
  text-align: center;
  
}
.chart canvas {
  position: absolute;
  top: 0;
  left: 0;
}


/*Kontaktai*/

input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
  color: #aca49c;
  font-size: 0.875em;
}

input:focus::-webkit-input-placeholder, textarea:focus::-webkit-input-placeholder {
  color: #bbb5af;
}

input::-moz-placeholder, textarea::-moz-placeholder {
  color: #aca49c;
  font-size: 0.875em;
}

input:focus::-moz-placeholder, textarea:focus::-moz-placeholder {
  color: #bbb5af;
}

input::placeholder, textarea::placeholder {
  color: #aca49c;
  font-size: 0.875em;
}

input:focus::placeholder, textarea::focus:placeholder {
  color: #bbb5af;
}

input::-ms-placeholder, textarea::-ms-placeholder {
  color: #aca49c;
  font-size: 0.875em;
}

input:focus::-ms-placeholder, textarea:focus::-ms-placeholder {
  color: #bbb5af;
}

/* on hover placeholder */

input:hover::-webkit-input-placeholder, textarea:hover::-webkit-input-placeholder {
  color: #e2dedb;
  font-size: 0.875em;
}

input:hover:focus::-webkit-input-placeholder, textarea:hover:focus::-webkit-input-placeholder {
  color: #cbc6c1;
}

input:hover::-moz-placeholder, textarea:hover::-moz-placeholder {
  color: #e2dedb;
  font-size: 0.875em;
}

input:hover:focus::-moz-placeholder, textarea:hover:focus::-moz-placeholder {
  color: #cbc6c1;
}

input:hover::placeholder, textarea:hover::placeholder {
  color: #e2dedb;
  font-size: 0.875em;
}

input:hover:focus::placeholder, textarea:hover:focus::placeholder {
  color: #cbc6c1;
}

input:hover::placeholder, textarea:hover::placeholder {
  color: #e2dedb;
  font-size: 0.875em;
}

input:hover:focus::-ms-placeholder, textarea:hover::focus:-ms-placeholder {
  color: #cbc6c1;
}



#contact-form {
  position: relative;
  width: 470px;
  margin: 50px auto 100px auto;
}

input {
  font-family: 'Lato', sans-serif;
  font-size: 0.875em;
  width: 470px;
  height: 50px;
  padding: 0px 15px 0px 15px;

  margin-bottom: 2px;
  
  background: transparent;
  outline: none;
  color: #726659;
  
  border: solid 1px #b3aca7;
  
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
}

input:hover {
  background: #999999;
  color: white;
}

textarea {
  width: 470px;
  max-width: 470px;
  min-width: 470px;
  height: 110px;
  max-height: 110px;
  padding: 15px;
  margin-bottom: 10px;
  
  background: transparent;
  outline: none;
  
  color: #726659;
  font-family: 'Lato', sans-serif;
  font-size: 0.875em;
  
  border: solid 1px #b3aca7;
  
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
}

textarea:hover {
  
  background: #999999;
}

#submit {
  width: 470px;
  
  padding: 0;
  margin: -5px 0px 0px 0px;
  
  font-family: 'Lato', sans-serif;
  font-size: 0.875em;
  color: #b3aca7;
  
  outline:none;
  cursor: pointer;
  
  border: solid 1px #b3aca7;
}

#submit:hover {
  color: white;
}



.context {
  font-size: 18px;
  
  text-align: center;
}

.contexta {
  font-size: 12px;
  font-family: 'Montserrat', sans-serif;
  
  text-align: center;
  text-transform: uppercase;
  margin-top: 5px;
  padding: 0;
}

.contextb {
  margin: auto;
    width: 300px;
    height: 25px;
    border-bottom: 5px solid #ccc;
    margin-bottom: 50px;
}



.text-muted {
  font-size: 10px;
  text-align: center;
  color: #cccccc;
}


@media only screen and (max-width: 600px) {
 .logo {
  position: fixed;
  height: 30px;
  margin-left: 6vw;
  margin-top: 5%;
}

.text {
  color: #000;
  font-size: calc(1vw + 10px);

}

.nav__content {
  position: fixed;
  top: -50%;
  -webkit-transform: translate(0%, -50%);
          transform: translate(0%, -50%);
  width: 100%;
  text-align: center;
  font-size: calc(6vw + 10px);
  font-weight: 200;
  cursor: pointer;
}


.nothide {
  display: inline-block;
  top: 50%;
  left: 10px;
}


.menu-icon {
  position: fixed;
  z-index: 2;
  right: 5%;
  top: 4.5%;
  cursor: pointer;
}

h1 {
  font-size: calc(3vw + 10px);
  max-width: 300px;
  margin: auto;
  margin-top: 50px;
  text-align: center;
}

h2 {
  margin-bottom: 0px;
  padding-right: 20px;
  padding-left: 20px;
}

.module {
  width: 100%;
  height:auto;
  position: relative;
  margin-bottom: 50px;
  padding: 0;
}

.igalerija{
  display: none;
}

#contact-form {
  width: 287px;
}

input {
  width: 287px;
}

textarea {
  width: 287px;
  max-width: 287px;
  min-width: 287px;
}


#submit {
  width: 287px;
}

}

:required {
  border: solid 1px #b3aca7;
}

:required:focus {
color: #b3aca7;
border: solid 1px #b3aca7;
}


.footer-social-icons {
    width: 168px;
    display:block;
    margin: 0 auto;
}
.social-icon {
    color: #fff;
}
ul.social-icons {
    margin-top: 10px;
    margin-left: -19.9px;
    margin-bottom: 100px;
}
.social-icons li {
    vertical-align: top;
    display: inline;
    height: 100px;
}
.social-icons a {
    color: #fff;
    text-decoration: none;
}
.fa-facebook {
    padding:10px 14px;
    -o-transition:.5s;
    -ms-transition:.5s;
    -moz-transition:.5s;
    -webkit-transition:.5s;
    transition: .5s;
    color: #999;
}
.fa-facebook:hover {
    background-color: #ccc;
}
.fa-twitter {
    padding:10px 12px;
    -o-transition:.5s;
    -ms-transition:.5s;
    -moz-transition:.5s;
    -webkit-transition:.5s;
    transition: .5s;
color: #999;
}
.fa-twitter:hover {
    background-color: #ccc;    
}

.fa-linkedin {
    padding:10px 14px;
    -o-transition:.5s;
    -ms-transition:.5s;
    -moz-transition:.5s;
    -webkit-transition:.5s;
    transition: .5s;
    color: #999;
}
.fa-linkedin:hover {
    background-color: #ccc;
}