/* Reset and base styles  */
@import url(https://fonts.googleapis.com/css?family=Manrope:300,regular,700,800);
@import url(https://fonts.googleapis.com/css?family=Inter:regular,700);
* {
  padding: 0px;
  margin: 0px;
  border: none;
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Links */
a, a:link, a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

/* Common */
aside, nav, footer, header, section, main {
  display: block;
}

h1, h2, h3, h4, h5, h6, p {
  font-size: inherit;
  font-weight: inherit;
}

ul, ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

img, svg {
  max-width: 100%;
  height: auto;
}

address {
  font-style: normal;
}

/* Form */
input, textarea, button, select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background-color: transparent;
}

input::-ms-clear {
  display: none;
}

button, input[type=submit] {
  display: inline-block;
  -webkit-box-shadow: none;
          box-shadow: none;
  background-color: transparent;
  background: none;
  cursor: pointer;
}

input:focus, input:active,
button:focus, button:active {
  outline: none;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

label {
  cursor: pointer;
}

legend {
  display: block;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  color: #000;
}

a,
a:link,
a:visited {
  color: #0f7dff;
  text-decoration: underline;
}

a:focus,
button:focus {
  outline-offset: 1px;
  outline: #005fcc auto 1px;
}

p + p {
  margin-top: 1em;
}

.btn-link,
a.btn-link {
  display: inline-block;
  padding: 6px 10px;
  border-radius: 3px;
  background-color: #f2f2f2;
  font-size: 14px;
  font-weight: 400;
  color: #000;
  text-align: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 5px;
     -moz-column-gap: 5px;
          column-gap: 5px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: background-color 0.2s ease-in;
  transition: background-color 0.2s ease-in;
}

.container {
  width: 1230px;
  padding: 0 15px;
  margin: 0 auto;
}
@media (max-width: 1220px) {
  .container {
    width: 768px;
  }
}
@media (max-width: 788px) {
  .container {
    width: 100%;
  }
}
@media (max-width: 1220px) {
  .container--tablet-fluid {
    width: auto;
  }
}
@media (max-width: 788px) {
  .container--mobile-fluid {
    width: auto;
  }
}

html,
body {
  min-height: 100vh;
}

.sticky-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.footer {
  margin-top: auto;
}

.main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 50px;
  margin-bottom: 80px;
}
@media (max-width: 1220px) {
  .main {
    margin-bottom: 60px;
  }
}
@media (max-width: 788px) {
  .main {
    row-gap: 40px;
    margin-bottom: 40px;
  }
}

.header {
  padding: 40px 0;
}
@media (max-width: 1220px) {
  .header {
    padding: 30px 0;
  }
}

.header__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
  row-gap: 20px;
}

.header__logo {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.header__logo:focus-visible {
  outline: 1px dashed rgba(0, 0, 0, 0.1);
}

.nav {
  font-size: 14px;
}

.nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 40px;
     -moz-column-gap: 40px;
          column-gap: 40px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 1220px) {
  .nav__list {
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
  }
}

.nav__link {
  color: #000;
  -webkit-transition: color 0.2s ease-in;
  transition: color 0.2s ease-in;
}
.nav__link:hover {
  color: #00ae6c;
}

.footer {
  padding: 20px 0;
  background-color: #131313;
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
}
.footer p + p {
  margin-top: 0;
}
@media (max-width: 788px) {
  .footer {
    font-size: 12px;
    padding: 10px 0;
  }
}
.footer a {
  color: rgba(255, 255, 255, 0.75);
}

.footer__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 30px;
}
@media (max-width: 788px) {
  .footer__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 10px;
  }
}

.footer__desc a {
  text-decoration: none;
}

.mobile-nav {
  position: fixed;
  z-index: 9;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-color: #f6f6f6;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}
.mobile-nav--open {
  opacity: 1;
  pointer-events: all;
}

.mobile-nav__header {
  padding: 20px 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.mobile-nav__btn {
  position: absolute;
  z-index: 99;
  top: 20px;
  right: 20px;
}

.mobile-nav__body {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transform: translate(0, 10%);
          transform: translate(0, 10%);
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}

.mobile-nav--open .mobile-nav__body {
  -webkit-transform: translate(0, 0%);
          transform: translate(0, 0%);
}

.mobile-nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
  text-align: center;
  font-size: 14px;
  color: #000;
}
.mobile-nav-list a {
  color: #000;
}

.none {
  display: none !important;
}

@media (max-width: 1220px) {
  .visible-desktop {
    display: none;
  }
}

.visually-hidden {
  clip: rect(0 0 0 0);
  -webkit-clip-path: inset(50%);
          clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.no-scroll {
  overflow-y: hidden;
}

.mb-1 {
  margin-bottom: 1em;
}

.mb-2 {
  margin-bottom: 2em;
}

.mb-3 {
  margin-bottom: 3em;
}

.mb-4 {
  margin-bottom: 4em;
}

.mb-5 {
  margin-bottom: 5em;
}

.logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 5px;
  max-width: 100%;
}

.logo__title {
  font-weight: 800;
  font-size: 32px;
  line-height: 1;
  color: #000;
}

.logo__desc {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.6;
  color: #6b9db9;
}

a.logo,
a.logo:link {
  text-decoration: none;
}
a.logo a,
a.logo:link a {
  text-decoration: none;
}

.socials {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 50px;
  margin-bottom: 80px;
}
@media (max-width: 1220px) {
  .main {
    margin-bottom: 60px;
  }
}
@media (max-width: 788px) {
  .main {
    row-gap: 40px;
    margin-bottom: 40px;
  }
}

.info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
}
@media (max-width: 788px) {
  .info {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 20px;
  }
}

.info__about,
.info__skills {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.info-block {
  padding: 30px 30px 50px;
  background-color: #fbfbfb;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.6;
  color: #000;
}
@media (max-width: 1220px) {
  .info-block {
    padding: 20px;
  }
}
.info-block--accent {
  background-color: #f1f8fb;
}

@media (max-width: 788px) {
  p + p {
    margin-top: 10px;
  }
}

.info-block__title {
  margin-bottom: 20px;
}
@media (max-width: 788px) {
  .info-block__title {
    margin-bottom: 20px;
  }
}

.info-block__badges {
  margin-bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 5px;
}

.info-block__list ul {
  line-height: 1.3;
}
.info-block__list ul li + li {
  margin-top: 10px;
}
.info-block__list ul li {
  position: relative;
  padding-left: 15px;
}
.info-block__list ul li::before {
  content: "";
  position: absolute;
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: #000;
  margin-right: 10px;
  top: 7px;
  left: 0;
}

.btn,
a.btn {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 80px;
  background-color: #039be5;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  text-align: center;
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: background-color 0.2s ease-in;
  transition: background-color 0.2s ease-in;
}
.btn:hover,
a.btn:hover {
  background-color: #45b8f1;
}
.btn--wide,
a.btn--wide {
  width: 100%;
}

.title {
  font-weight: 700;
  font-size: 28px;
  line-height: 1;
}
.title--large {
  font-size: 32px;
  font-weight: 800;
}
@media (max-width: 1220px) {
  .title--large {
    font-size: 26px;
  }
}
@media (max-width: 788px) {
  .title--large {
    font-size: 24px;
    line-height: 1.2;
  }
}

.badge {
  padding: 3px 6px;
  height: 19px;
  border-radius: 2px;
  background-color: #414141;
  font-weight: 700;
  font-size: 12px;
  line-height: 1;
  color: #fff;
}

.badge--html {
  background-color: #414141;
}

.badge--css {
  background-color: #39a0ff;
}

.badge--scss {
  background-color: #dd6adf;
}

.badge--gulp {
  background-color: #ec473c;
}

.badge--js {
  background-color: #ffce20;
  color: #000;
}

.badge--react {
  background-color: #33d6f0;
}

.badge--node {
  background-color: #67cf00;
}

.badge--php {
  background-color: #b07fed;
}

.badge--wordpress {
  background-color: #0f8cc6;
}

.portfolio__title {
  margin-bottom: 30px;
}
@media (max-width: 788px) {
  .portfolio__title {
    margin-bottom: 20px;
  }
}

.portfolio__card {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
}
@media (max-width: 1220px) {
  .portfolio__card {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 788px) {
  .portfolio__card {
    grid-template-columns: 1fr;
  }
}

.project {
  position: relative;
}

.project__img {
  margin-bottom: 15px;
  height: 210px;
  background-color: #f6f6f6;
  background-image: url("./../img/projects/laptop.svg");
  background-position: center center; /* x y */
  background-size: auto;
  background-repeat: no-repeat;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.project__img img {
  margin-top: -7px;
  width: 216px;
  height: 138px;
}

.project__title {
  margin-bottom: 5px;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.3;
  color: #000;
}
.project__title a {
  color: #000;
  text-decoration: none;
}
.project__title a::after {
  content: "";
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
}

.project__desc {
  margin-bottom: 5px;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
  color: #000;
}

.project__tags {
  font-weight: 400;
  font-size: 12px;
  line-height: 1.3;
  color: #6b9db9;
}

.cta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  row-gap: 25px;
  border-radius: 10px;
  padding: 60px 60px;
  background-color: #f0f5f9;
}
@media (max-width: 1220px) {
  .cta {
    padding: 60px 30px;
  }
}
@media (max-width: 788px) {
  .cta {
    padding: 40px 20px;
    row-gap: 20px;
  }
}

.cta__title {
  text-align: center;
}

.cta__desc {
  font-weight: 300;
  font-size: 14px;
  line-height: 100%;
  text-align: center;
  color: #000;
}
.cta__desc p + p {
  margin-top: 1em;
}

.tags {
  font-weight: 400;
  font-size: 12px;
  line-height: 130%;
  color: #6b9db9;
}

.input {
  padding: 10px 20px;
  border: 1px solid #c0c0c0;
  border-radius: 8px;
  color: #000;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}
.input:active, .input:focus {
  border: 1px solid #3c82d3;
}

/* Custom Checkboxes */
.fake-checkbox {
  position: relative;
  width: 20px;
  height: 20px;
  border: 1px solid #999;
  border-radius: 4px;
  background-color: #fff;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}

.fake-checkbox::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%) scale(0);
          transform: translate(-50%, -50%) scale(0);
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
  width: 16px;
  height: 13px;
  background-image: url("./../img/icons/tick.svg");
  background-repeat: no-repeat;
  background-position: center;
}

.real-checkbox:checked + .fake-checkbox {
  background-color: #000;
  border: 1px solid #000;
}

.real-checkbox:checked + .fake-checkbox::after {
  -webkit-transform: translate(-50%, -50%) scale(1);
          transform: translate(-50%, -50%) scale(1);
}

.top-link {
  position: fixed;
  right: 40px;
  bottom: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 60px;
  height: 60px;
  background-color: #000;
  border-radius: 24px;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}
.top-link--visible {
  opacity: 1;
  pointer-events: all;
}
@media (max-width: 788px) {
  .top-link {
    right: 10px;
    bottom: 10px;
  }
}

.modal {
  display: none;
  position: relative;
  width: 768px;
  background: #fff;
  color: #000;
}
@media (max-width: 1220px) {
  .modal {
    width: 738px;
  }
}
@media (max-width: 788px) {
  .modal {
    max-width: calc(100% - 30px);
  }
}

.modal__img {
  height: 370px;
  background-color: #f6f6f6;
  background-image: url("./../img/projects/laptop-big.svg");
  background-position: center center; /* x y */
  background-size: auto;
  background-repeat: no-repeat;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (max-width: 788px) {
  .modal__img {
    height: 246px;
    background-size: 290px 165px;
  }
}
.modal__img img {
  margin-top: -12px;
  width: 382px;
  height: 240px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 788px) {
  .modal__img img {
    margin-top: -7px;
    width: 220px;
    height: 138px;
  }
}

.modal__content {
  padding: 20px 40px 30px;
}
@media (max-width: 788px) {
  .modal__content {
    padding: 20px;
  }
}

.modal__title {
  margin-bottom: 10px;
  font-weight: 700;
  font-size: 24px;
  line-height: 130%;
  color: #000;
}
@media (max-width: 788px) {
  .modal__title {
    font-size: 22px;
  }
}

.modal__text {
  margin-bottom: 20px;
  font-weight: 400;
  font-size: 14px;
  line-height: 130%;
  color: #000;
}
.modal__text a {
  text-decoration: underline;
}
.modal__text p + p {
  margin-top: 15px;
}
.modal__text * + ul {
  margin-top: 15px;
}
@media (max-width: 1220px) {
  .modal__text * + ul {
    margin-top: 10px;
  }
}
.modal__text ul li {
  position: relative;
  padding-left: 20px;
}
.modal__text ul li::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 8px;
  display: block;
  width: 4px;
  height: 4px;
  background-color: #0f7dff;
  border-radius: 50%;
}
.modal__text ul li + li {
  margin-top: 10px;
}
@media (max-width: 788px) {
  .modal__text {
    line-height: 150%;
  }
}

.modal__tags {
  margin-bottom: 20px;
}

.modal__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  row-gap: 10px;
}
@media (max-width: 788px) {
  .modal__links {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 10px;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
}

.tinySlider img {
  border-radius: 8px;
  -o-object-fit: cover;
     object-fit: cover;
  max-width: unset !important;
  height: unset !important;
  height: 400px !important;
}
@media (max-width: 788px) {
  .tinySlider img {
    height: 250px !important;
  }
}

/* Navigation dots */
.tns-nav {
  text-align: center;
  margin: 10px 0;
}

.tns-nav > [aria-controls] {
  width: 9px;
  height: 9px;
  padding: 0;
  margin: 0 5px;
  border-radius: 50%;
  background: #ddd;
  border: 0;
}

.tns-nav > .tns-nav-active {
  background: #999;
}

/* Control buttons */
.tns-controls {
  text-align: center;
  margin-bottom: 10px;
}

.tns-controls [aria-controls] {
  font-size: 15px;
  margin: 0 5px;
  padding: 0 1em;
  height: 2.5em;
  color: #000;
  background: #66ccff;
  border-radius: 3px;
  border: 0;
}

.lt-ie9 .tns-controls > [aria-controls] {
  line-height: 2.5em;
}

[data-action] {
  display: block;
  margin: 10px auto;
  font-size: 17px;
  min-width: 3em;
  text-align: center;
  background: transparent;
  border: 0;
}

.tns-controls [disabled] {
  color: #999999;
  background: #b3b3b3;
  cursor: not-allowed !important;
}

.accordion {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15px;
}

.accordion__item.active .accordion__btn {
  background-color: #d3f4e0;
}

.accordion__btn {
  width: 100%;
  text-align: left;
  padding: 20px;
  background-color: #e7e7e7;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 600;
  /* Focus reset */
  /* Focus only */
}
.accordion__btn:focus {
  outline: none;
}
.accordion__btn:focus-visible {
  outline-offset: 1px;
  outline: #005fcc auto 1px;
}

.accordion__content {
  /* Important for Accordion */
  max-height: 0;
  overflow: hidden;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}

.accordion__body {
  padding: 20px;
}

.fancy-box-gallery img {
  width: 100px;
  height: 100px;
  -o-object-fit: cover;
     object-fit: cover;
}/*# sourceMappingURL=main.css.map */