@import url(../libs/bootstrap/dist/css/bootstrap.min.css);
@import url(../libs/components-font-awesome/css/font-awesome.min.css);
@import url(../libs/angular-material/angular-material.min.css);
@font-face {
  font-family: "roboto-example";
  font-weight: normal;
  font-style: normal;
  src: url("../fonts/RobotoRegular/RobotoRegular.eot");
  src: url("../fonts/RobotoRegular/RobotoRegular.eot?#iefix") format("embedded-opentype"), url("../fonts/RobotoRegular/RobotoRegular.woff") format("woff"), url("../fonts/RobotoRegular/RobotoRegular.ttf") format("truetype"); }

@font-face {
  font-family: "roboto-example";
  font-weight: bold;
  font-style: normal;
  src: url("../fonts/RobotoBold/RobotoBold.eot");
  src: url("../fonts/RobotoBold/RobotoBold.eot?#iefix") format("embedded-opentype"), url("../fonts/RobotoBold/RobotoBold.woff") format("woff"), url("../fonts/RobotoBold/RobotoBold.ttf") format("truetype"); }

@font-face {
  font-family: "fontawesome-webfont";
  font-weight: normal;
  font-style: normal;
  src: url("../fonts/FontAwesome/fontawesome-webfont.eot");
  src: url("../fonts/FontAwesome/fontawesome-webfont.eot?#iefix") format("embedded-opentype"), url("../fonts/FontAwesome/fontawesome-webfont.woff") format("woff"), url("../fonts/FontAwesome/fontawesome-webfont.ttf") format("truetype"); }

*::-webkit-input-placeholder {
  color: #666;
  opacity: 1; }

*:-moz-placeholder {
  color: #666;
  opacity: 1; }

*::-moz-placeholder {
  color: #666;
  opacity: 1; }

*:-ms-input-placeholder {
  color: #666;
  opacity: 1; }

body input:focus:required:invalid,
body textarea:focus:required:invalid {
  color: #666; }

body input:required:valid,
body textarea:required:valid {
  color: #666; }

html, body {
  height: 100%; }

body {
  font-size: 16px;
  min-width: 320px;
  position: relative;
  line-height: 1.75;
  font-family: "roboto-example", sans-serif;
  overflow-x: hidden;
  opacity: 1; }

h1 {
  font-size: 36px; }

h2 {
  font-size: 32px; }

h3 {
  font-size: 24px; }

h4 {
  font-size: 18px; }

h5 {
  font-size: 16px; }

p {
  font-size: 14px; }

li {
  font-size: 14px; }

a {
  cursor: pointer; }

.img-responsive {
  display: block;
  max-width: 100%;
  height: auto; }

.accent {
  color: orange; }

header {
  position: relative;
  width: 100vw;
  height: 100vh;
  -webkit-background-size: cover;
          background-size: cover;
  background-position-x: center;
  background-attachment: fixed;
  background-repeat: no-repeat; }
  header portfolio-header {
    position: relative; }
  header .logo {
    position: absolute;
    top: 25px;
    left: 0px; }

.header {
  background-image: url("../img/bg.jpg"); }

section {
  padding: 70px 0 90px;
  width: 100%;
  float: left;
  position: relative; }
  section .section-header {
    text-transform: uppercase;
    text-align: center; }
    section .section-header .divider {
      margin: 50px auto 110px;
      border-bottom: 1px solid #000;
      width: 15%; }
  section .section-content {
    color: #888; }

.logo img {
  width: 75px; }

.icon-container {
  z-index: -1;
  width: 46px;
  position: absolute;
  left: -8px;
  top: -11px;
  height: 46px;
  background-color: #000; }

.nav-icon1 {
  z-index: 100;
  display: block;
  width: 30px;
  height: 22.5px;
  position: fixed;
  top: 50px;
  right: 50px;
  -webkit-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
      transform: rotate(0deg);
  cursor: pointer; }
  .nav-icon1 span {
    display: block;
    position: absolute;
    height: 4px;
    width: 100%;
    background: #fff;
    -webkit-border-radius: 5px;
            border-radius: 5px;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
        transform: rotate(0deg); }
    .nav-icon1 span:nth-child(1) {
      top: 0px; }
    .nav-icon1 span:nth-child(2) {
      top: 9px; }
    .nav-icon1 span:nth-child(3) {
      top: 18px; }
  .nav-icon1.open span:nth-child(1) {
    top: 9px;
    -webkit-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
        transform: rotate(135deg); }
  .nav-icon1.open span:nth-child(2) {
    opacity: 0;
    left: -60px; }
  .nav-icon1.open span:nth-child(3) {
    top: 9px;
    -webkit-transform: rotate(-135deg);
    -ms-transform: rotate(-135deg);
        transform: rotate(-135deg); }

.nav-mnu {
  width: 100%;
  height: 100%;
  display: block;
  background-color: rgba(0, 0, 0, 0.85);
  z-index: 50;
  position: fixed;
  top: 0;
  right: 0; }
  .nav-mnu .mnu-list {
    list-style-type: none;
    text-align: center;
    margin-top: 150px; }
    .nav-mnu .mnu-list li {
      padding-top: 15px; }
    .nav-mnu .mnu-list a {
      color: #fff;
      text-decoration: none;
      -webkit-transition: .3s;
      -o-transition: .3s;
      transition: .3s; }
      .nav-mnu .mnu-list a:hover {
        color: orange; }

.nav-animation.ng-enter {
  -webkit-animation: .6s fade-in;
          animation: .6s fade-in;
  z-index: 100; }

.nav-animation.ng-leave {
  -webkit-animation: .6s fade-out;
          animation: .6s fade-out;
  z-index: 99; }

@-webkit-keyframes fade-in {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }

@keyframes fade-in {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }

@-webkit-keyframes fade-out {
  from {
    opacity: 1; }
  to {
    opacity: 0; } }

@keyframes fade-out {
  from {
    opacity: 1; }
  to {
    opacity: 0; } }

.top-wrapper {
  width: 100vw;
  height: 100vh;
  text-align: center;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  text-transform: uppercase; }
  .top-wrapper h1 {
    color: #fff;
    border: 4px solid #fff;
    padding: 10px 25px; }
  .top-wrapper p {
    color: #fff;
    font-size: 14px;
    letter-spacing: 1px; }

.about .section-content h4 {
  text-transform: uppercase;
  text-align: center;
  font-size: 16px;
  letter-spacing: 3px; }

.about .section-content h5 {
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: bold;
  margin-top: 35px; }

.about .section-content p {
  margin-top: 35px; }

.about .section-content .my-photo {
  width: 220px;
  height: 220px;
  margin: 50px auto;
  background-image: url("../img/myPhoto.jpg");
  -webkit-border-radius: 50%;
          border-radius: 50%;
  -webkit-background-size: 170% 170%;
          background-size: 170%;
  background-position: 82% 32%; }

.about .section-content ul {
  margin-top: 35px;
  list-style-type: none;
  padding-left: 0; }
  .about .section-content ul li {
    margin-top: 10px; }

.resume {
  background-color: #fafafa; }
  .resume .resume-icon {
    font-size: 44px;
    margin: 20px 0; }
  .resume .right {
    text-align: left; }
  .resume .left {
    text-align: right;
    border-right: 1px solid #d2d2d2; }
  .resume .year {
    background-color: orange;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    padding: 0 15px;
    color: #fff;
    display: inline-block; }
  .resume .resume-descr {
    margin: 15px 0; }
  .resume p {
    color: #888; }
  .resume strong {
    text-transform: uppercase;
    margin-left: 6px; }

.examples-navigation {
  width: 100%;
  text-transform: uppercase; }
  .examples-navigation .nav-item {
    margin: 0 20px;
    padding: 0 10px 2px;
    cursor: pointer;
    -webkit-transition: .2s;
    -o-transition: .2s;
    transition: .2s; }
    .examples-navigation .nav-item:hover {
      border-bottom: 2px solid orange; }
    .examples-navigation .nav-item.active {
      border-bottom: 2px solid orange; }

.item-container {
  width: 100%;
  margin-top: 35px; }
  .item-container .e-item {
    background-color: #888;
    padding: 0 !important;
    max-height: 280px;
    position: relative;
    overflow: hidden;
    -webkit-transition: .5s;
    -o-transition: .5s;
    transition: .5s; }
    .item-container .e-item:hover img {
      -webkit-filter: brightness(0.2);
              filter: brightness(0.2); }
    .item-container .e-item img {
      -webkit-transition: .5s;
      -o-transition: .5s;
      transition: .5s;
      width: 100%;
      max-height: 100%; }
    .item-container .e-item .modal-content {
      text-align: center;
      padding-top: 20px; }
      .item-container .e-item .modal-content h3 {
        margin-bottom: 15px; }
      .item-container .e-item .modal-content p {
        margin-bottom: 15px;
        color: #888; }
      .item-container .e-item .modal-content:hover img {
        -webkit-filter: brightness(1);
                filter: brightness(1); }
      .item-container .e-item .modal-content h3:hover img {
        -webkit-filter: brightness(1);
                filter: brightness(1); }
      .item-container .e-item .modal-content img:hover {
        -webkit-filter: brightness(1);
                filter: brightness(1); }
    .item-container .e-item .item-cont {
      position: absolute;
      top: 0px;
      left: 0px;
      width: 100%;
      height: 100%;
      color: #fff;
      opacity: 0;
      -webkit-transition: .4s;
      -o-transition: .4s;
      transition: .4s; }
      .item-container .e-item .item-cont a {
        text-decoration: none;
        color: #fff;
        display: block;
        border: 1px solid #fff;
        padding: 2px 10px; }
        .item-container .e-item .item-cont a:hover {
          color: orange;
          border: 1px solid orange; }
      .item-container .e-item .item-cont:hover {
        opacity: 1; }

.contacts {
  background-color: #fafafa; }
  .contacts .contact-box {
    margin-bottom: 30px;
    text-align: left; }
    .contacts .contact-box .contact-icon {
      color: orange;
      font-size: 30px; }
    .contacts .contact-box p {
      color: #888; }
    .contacts .contact-box a {
      color: #888888;
      cursor: pointer;
      text-decoration: none; }
      .contacts .contact-box a:hover {
        color: #000; }
  .contacts button {
    border: none;
    color: #fff;
    line-height: 40px;
    padding: 0 25px;
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 600;
    margin-top: 10px;
    float: right;
    background-color: orange;
    cursor: pointer; }
    .contacts button:hover {
      background-color: #888; }

.form-group {
  display: block;
  margin-bottom: 20px;
  color: #888; }
  .form-group span {
    color: orange; }
  .form-group input, .form-group textarea, .form-group select {
    display: block;
    width: 100%;
    border: 1px solid #CCCCCC;
    text-indent: 12px;
    line-height: 40px;
    margin-top: 5px;
    background-color: transparent;
    font-size: 12px; }

footer {
  margin-top: 45px; }
  footer .social-wrap {
    list-style-type: none; }
    footer .social-wrap li {
      display: inline-block;
      font-size: 18px;
      margin-left: 10px; }
      footer .social-wrap li a {
        color: #000; }
        footer .social-wrap li a:hover {
          color: orange; }

.modal-wrap {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 999;
  overflow: scroll; }
  .modal-wrap .close-modal {
    position: absolute;
    right: 2%;
    top: 0%;
    color: #000; }
    .modal-wrap .close-modal:hover {
      color: orange; }

forms form {
  margin-top: 10%; }
  forms form .form-group {
    color: #fff; }
    forms form .form-group input::-webkit-input-placeholder {
      color: #fff; }
  forms form md-input-container md-select {
    color: #fff; }
    forms form md-input-container md-select::-webkit-input-placeholde {
      color: #fff; }
  forms form .selectsreen {
    margin: 0 30px;
    -webkit-border-radius: 5px;
            border-radius: 5px; }
  forms form .show-difference {
    margin-top: 30px; }
    forms form .show-difference .resultView span {
      background-color: transparent; }

.lightgreen {
  background-color: lightgreen;
  color: lightgreen; }

.lightblue {
  background-color: lightblue;
  color: lightblue; }

.lime {
  background-color: lime;
  color: lime; }

.white {
  background-color: #fff;
  color: #fff; }

.khaki {
  background-color: khaki;
  color: khaki; }

::-webkit-scrollbar {
  width: 2px;
  background: transparent; }

::-webkit-scrollbar-thumb {
  background: orange; }

/*==========  Desktop First  ==========*/
/* Large Devices, Wide Screens */
@media only screen and (max-width: 1200px) {
  /**/
  h1 {
    font-size: 32px; }
  h2 {
    font-size: 28px; }
  h3 {
    font-size: 20px; }
  h4 {
    font-size: 16px; }
  h5 {
    font-size: 14px; }
  p {
    font-size: 12px; }
  ul li {
    font-size: 12px; }
  .item-container .e-item {
    max-height: 260px; } }

/* Medium Devices, Desktops */
@media only screen and (max-width: 992px) {
  /**/
  .item-container .e-item {
    max-height: 200px; } }

/* Small Devices, Tablets */
@media only screen and (max-width: 768px) {
  /**/
  .resume .left {
    border: none; } }

/* Extra Small Devices, Phones */
@media only screen and (max-width: 480px) {
  /**/
  .examples-navigation .nav-item {
    margin: 0 5px; } }

/* Custom, iPhone Retina */
@media only screen and (max-width: 320px) {
  /**/ }

/*==========  Mobile First  ==========*/
/* Custom, iPhone Retina */
@media only screen and (min-width: 320px) {
  /**/ }

/* Extra Small Devices, Phones */
@media only screen and (min-width: 480px) {
  /**/ }

/* Small Devices, Tablets */
@media only screen and (min-width: 768px) {
  /**/ }

/* Medium Devices, Desktops */
@media only screen and (min-width: 992px) {
  /**/ }

/* Large Devices, Wide Screens */
@media only screen and (min-width: 1200px) {
  /**/ }
