/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : Dec 29, 2016, 1:25:29 PM
    Author     : Sohan
*/
@font-face {
  font-family: MyriadPro;
  src: url(MyriadPro-Regular.otf);
}
@font-face {
  font-family: MyriadProBold;
  src: url(MyriadPro-Bold.otf);
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: 0;
  font-family: MyriadPro;
}
#loader {
  width: 100vw;
  height: 100vh;
  background: #2196f3;
  z-index: 2000;
  display: block;
  position: fixed;
}
#loader img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  height: 200px;
}
body {
  background: #212121;
  background-clip: border-box;
  background-attachment: fixed;
  overflow-x: hidden;
}
.container {
  z-index: 100;
}
canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
}
.white {
  background: #fafafa;
}
.blue {
  background: #2196f3;
}
.section {
  max-width: 980px;
  margin: 0 auto;
  position: relative;
  padding-bottom: 100px;
}
.side-bar {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  right: 40px;
  z-index: 200;
}
.side-bar ul {
  list-style: none;
}
.side-bar li {
  width: 12px;
  height: 12px;
  border: 2px solid #bdbdbd;
  background: transparent;
  margin: 40px 0;
  border-radius: 50%;
  cursor: pointer;
}
.side-bar li:hover {
  background: #bdbdbd;
}
.side-bar li:active {
  background: #bdbdbd;
}
.activate {
  background: #bdbdbd !important;
}
#map {
  padding-bottom: 0;
}
.top {
  height: 90vh;
  position: relative;
}
img.logo {
  margin: 16px;
  height: 140px;
}
nav.main {
  float: right;
  position: absolute;
  top: 75px;
  right: 30px;
  text-align: center;
  color: #fff;
  font-weight: bold;
  vertical-align: middle;
}
nav.main ul li {
  display: inline-block;
  margin: 0 8px;
  font-size: 11pt;
}
nav.main ul li a:hover {
  color: #2196f3;
  cursor: pointer;
}
nav.small {
  float: right;
  position: absolute;
  top: 0px;
  right: 0px;
  display: none;
}
nav.small .ham {
  border-radius: 5px;
  height: 56px;
  width: 60px;
  overflow: hidden;
  cursor: pointer;
}
nav.small .ham div {
  border: 2px solid #fff;
  width: 40px;
  height: 2px;
  transition: all 0.5s;
  margin: 10px;
}

nav.small:hover ul {
  display: block;
}
nav.small:hover .ham {
  transform: translate(40px, 8px);
  -webkit-transform: translate(40px, 8px);
  -ms-transform: translate(40px, 8px);
  transition: all 0.5s;
}
nav.small:hover .ham div:nth-child(1) {
  transform: rotate(45deg) translateY(9px);
}
nav.small:hover .ham div:nth-child(2) {
  display: none;
}
nav.small:hover .ham div:nth-child(3) {
  transform: rotate(-45deg) translateY(-9px);
  -webkit-transform: rotate(-45deg) translateY(-9px);
  -ms-transform: rotate(-45deg) translateY(-9px);
}

nav.small ul {
  text-decoration: none;
  list-style: none;
  display: none;
}
nav.small ul li {
  background: #fff;
  color: #212121;
  padding: 10px 20px;
  border-bottom: 5px solid #2196f3;
}
nav.small ul li:hover {
  color: #2196f3;
  cursor: pointer;
}
.font-text {
  color: #fff;
  font-size: 70pt;
  margin-top: 20px;
  font-weight: 900;
  margin-left: 50px;
  letter-spacing: 10px;
}

img.down-button {
  height: 80px;
  animation-name: down;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  -webkit-animation-name: down;
  -webkit-animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;

  cursor: pointer;
  display: block;
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translate(-50%, 0);
  -webkit-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
}
img.down-button:hover {
  opacity: 0.5;
}
@keyframes down {
  0% {
    opacity: 0.1;
  }
  100% {
    opacity: 1;
    transform: translate(-50%, 20px);
  }
}
h1 {
  font-family: MyriadProBold;
  color: #605e5e;
  text-align: center;
  font-size: calc(80pt);
  padding: 100px 0;
}
.row {
  width: 100%;
}
.col {
  vertical-align: text-top;
  width: 33%;
  display: inline-block;
  padding: 30px;
  text-align: center;
}
h2 {
  font-size: 18pt;
  font-weight: bold;
  text-align: left;
  color: #605e5e;
  font-family: MyriadProBold;
  margin: 40px 0;
}
.blue h4 {
  color: #605e5e;
}
.blue h2 {
  text-align: left;
}
h2 span {
  color: #2196f3;
}
#tech .row {
  text-align: center;
}
#tech .col {
  max-width: 280px;
}
.pointer {
  height: 180px;
  width: 120px;
  position: absolute;
  bottom: 50px;
  right: 0;
  z-index: 20;
  cursor: pointer;
}
#tech h2 {
  height: 60px;
}
.white .row .col p {
  font-size: 10pt;
  color: #6e6e6e;
  text-align: left;
}
.blue .row .col p {
  font-size: 10pt;
  color: #fff;
  text-align: justify;
}
.col img {
  height: 100px;
  text-align: center;
  margin: 0 auto;
  padding: 10px;
}
#meet img {
  border-bottom: 5px solid #605e5e;
  width: 100%;
  object-fit: contain;
  height: 180px;
  padding: 40px 0;
}
img.screen {
  width: 100%;
  max-width: 860px;
}
#projects {
  overflow: hidden;
}
#projects img {
  background: #2196f3;
  width: 100%;
  height: 272px;
  object-fit: cover;
  padding: 0;
  transition: all 1s;
  -webkit-transition: all 1s;
  cursor: pointer;
}
#projects .row .col {
  display: inline-block;
  width: 33.33%;
  float: left;
  position: relative;
  padding: 0;
  transition: all 1s;
  -webkit-transition: all 1s;
  margin: 7.5px 0;
}
#projects .row .col:nth-child(2) {
  padding: 0 7.5px;
}
#projects .row .col:nth-child(3) {
  padding-left: 15px;
}
#projects .row .col:nth-child(1) {
  padding-right: 15px;
}
#projects .row .col .details {
  cursor: pointer;
  position: absolute;
  z-index: 20;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: all 1s;
  -webkit-transition: all 1s;
  color: #fff;
}
#projects .row .col:hover .details {
  opacity: 1;
}
#projects .row .col:hover img {
  opacity: 0.5;
  overflow: hidden;
}

#using img {
  width: 100%;
  object-fit: contain;
  //-webkit-filter: grayscale(100%);
  //filter: grayscale(100%);
}
#get .col p {
  text-align: center;
}
#get .col:nth-child(2) {
  border-left: 5px solid #605e5e;
  border-right: 5px solid #605e5e;
  text-align: center;
}
#get .col:nth-child(1) {
  text-align: right;
}
#get .col:nth-child(3) {
  text-align: left;
}
#get p {
  font-family: MyriadProBold;
  color: #605e5e;
  font-size: 12pt;
}
#cont {
  text-align: center;
}
#cont h2 {
  text-align: center;
}
form {
  padding-bottom: 40px;
}
input[type="text"] {
  display: block;
  background: #4fc3f7;
  padding: 5px;
  border-top: 10px solid #fafafa;
  border-bottom: 10px solid #fafafa;
  border-left: 40px solid #fafafa;
  border-right: 40px solid #fafafa;
  width: 100%;
}
input[type="submit"] {
  text-align: center;
  color: #424242;
  background: #fff;
  border: 5px solid #424242;
  padding: 15px 50px;
  margin-left: 0px;
  margin-top: 10px;
  transition: all 1s;
  -webkit-transition: all 1s;
}
input[type="submit"]:hover {
  background: #2196f3;
  color: #fff;
}
input::-webkit-input-placeholder {
  color: #fff !important;
}

input:-moz-placeholder {
  /* Firefox 18- */
  color: #fff !important;
}

input::-moz-placeholder {
  /* Firefox 19+ */
  color: #fff !important;
}

input:-ms-input-placeholder {
  color: #fff !important;
}
footer.section {
  background: #2196f3;
  padding-bottom: 0px;
}
footer .col {
  width: 24%;
  color: #fff;
}
footer hr {
  border: 2px solid #605e5e;
  width: 100%;
}
footer p {
  margin-bottom: 5px;
  font-size: 12pt !important;
}
footer a {
  margin-bottom: 5px;
  display: block;
  text-align: left;
  text-decoration: none;
  color: #fff;
  cursor: pointer;
}
footer a:hover {
  text-decoration: underline;
}
.social {
  text-align: left;
}
.social a {
  display: inline-block;
}
.social img {
  width: 36px;
  height: 36px;
  padding: 0;
  cursor: pointer;
}
.social img:hover {
  opacity: 0.5;
}
.copyright {
  background: #fafafa;
  padding: 20px;
  color: #6e6e6e;
}
@media only screen and (max-width: 600px) {
  img.logo {
    width: 100%;
    margin: 0;
    padding: 20px;
    height: auto;
  }
  .font-text {
    font-size: 10vw;
  }
  h1 {
    font-size: 8vw;
  }
  .col,
  #projects .row .col {
    display: block;
    width: 100%;
  }
  #tech .col {
    max-width: none;
  }
  footer .col {
    width: 100%;
  }
  #projects .row .col:nth-child(2) {
    padding: 0px;
  }
  #projects .row .col:nth-child(3) {
    padding-left: 0px;
  }
  #projects .row .col:nth-child(1) {
    padding-right: 0px;
  }
  nav.main {
    display: none;
  }
  nav.small {
    display: block;
  }
  #get .col:nth-child(2) {
    border-left: 0px solid #605e5e;
    border-right: 0px solid #605e5e;
    text-align: center;
  }
  .side-bar {
    display: none;
  }
}

@-webkit-keyframes moveUp {
  0% {
  }
  100% {
    -webkit-transform: translateY(0);
    opacity: 1;
  }
}
@keyframes moveUp {
  0% {
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

svg#parent {
  cursor: pointer;
  overflow: hidden;
}

#prod {
    position: relative;
    display: block;
}

.submenu {
  position: absolute;
  width: 400px;
  background: rgba(255, 255, 255, 0.9);
  right: 0;
  top: 80%;
  visibility: hidden;
  opacity: 0;
  box-shadow: 0 0 10px 3px rgba(0, 0, 0, 0.05);
  padding: 17px 0;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  border-radius: 3%;
}
.submenu > li {
  margin: 7px !important;
  display: block !important;
}
.submenu > li > a {
  padding: 6px 10px !important;
  font-size: 16px;
  text-transform: capitalize;
  text-decoration: none !important;
  margin: 0;
  color: #212121 !important;

}
.submenu > li > a:hover {
  color: #2196f3 !important;
  background: none;
  text-decoration: underline !important;
}
.submenu > li > a:hover {
  padding-left: 13px !important;
}
ul > li:hover > ul.submenu {
  visibility: visible;
  opacity: 1;
  top: 100%;
}
