/* 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 {
  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;
  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: none;
}

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

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

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

.sticky-footer {
  display: flex;
  flex-direction: column;
}

.footer {
  margin-top: auto;
}

.main {
  display: flex;
  flex-direction: column;
  row-gap: 50px;
  margin-bottom: 80px;
}
@media (max-width: 1250px) {
  .main {
    margin-bottom: 60px;
  }
}
@media (max-width: 788px) {
  .main {
    row-gap: 40px;
  }
}

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

.header__row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  column-gap: 30px;
  row-gap: 20px;
}

.header__logo {
  flex-shrink: 0;
}

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

.footer__content {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}
@media (max-width: 788px) {
  .footer__content {
    align-items: start;
    flex-direction: column;
    row-gap: 10px;
  }
}

.none {
  display: none !important;
}

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

.visually-hidden {
  clip: rect(0 0 0 0);
  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: flex;
  flex-direction: column;
  row-gap: 5px;
}

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

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

.socials {
  display: flex;
  flex-direction: row;
  gap: 20px;
}
.socials img:hover {
  filter: drop-shadow(5px 5px 5px rgba(0, 0, 0, 0.2));
}

.info {
  display: flex;
  column-gap: 30px;
}
@media (max-width: 788px) {
  .info {
    flex-direction: column;
    row-gap: 20px;
  }
}

.info__about {
  flex: 1;
}

.info__skills {
  flex: 1;
}

.h2 {
  font-weight: 700;
  font-size: 24px;
  line-height: 100%;
}
@media (max-width: 788px) {
  .h2 {
    font-size: 22px;
  }
}

.info-block {
  padding: 30px 30px 50px;
  background-color: #fbfbfb;
  font-weight: 400;
  font-size: 14px;
}
@media (max-width: 1250px) {
  .info-block {
    padding: 20px;
  }
}
.info-block--accent {
  background-color: #F1F8FB;
}
.info-block p {
  line-height: 160%;
  font-weight: 400;
  font-size: 14px;
  line-height: 160%;
}
.info-block p + p {
  margin-top: 15px;
}
@media (max-width: 788px) {
  .info-block p + p {
    margin-top: 10px;
  }
}

.info-block__title {
  margin-bottom: 20px;
}

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

.info-block__list ul {
  line-height: 130%;
}
.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;
  left: 0;
  top: 0px;
}

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

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

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

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

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

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

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

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

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

.badge--wp {
  background: #0f8cc6;
}

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

.portfolio__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
.portfolio__cards :hover {
  filter: drop-shadow(5px 5px 5px rgba(0, 0, 0, 0.2));
  background-color: rgba(174, 228, 199, 0.252);
  transition: color 0.2s ease-in;
}
@media (max-width: 1250px) {
  .portfolio__cards {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 788px) {
  .portfolio__cards {
    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;
  background-size: auto;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}
.project__img img {
  margin-top: -7px;
  width: 216px;
  height: 138px;
  object-fit: cover;
}

.project__title {
  margin-bottom: 5px;
  font-weight: 700;
  font-size: 18px;
  line-height: 130%;
}
.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: 150%;
}

.cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 25px;
  border-radius: 10px;
  padding: 60px;
  background-color: #F0F5F9;
}
@media (max-width: 1250px) {
  .cta {
    padding: 60px 30px;
  }
}
@media (max-width: 788px) {
  .cta {
    padding: 40px 20px;
    row-gap: 20px;
  }
}

.cta__title {
  text-align: center;
}

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

.cta__btn {
  text-align: center;
}

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

.fancybox__content {
  padding: 0 !important;
}

.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: flex;
  column-gap: 10px;
  align-items: center;
  transition: background-color 0.2s ease-in;
}
.btn:hover,
a.btn:hover {
  background-color: #046392;
  transition: background-color 0.2s ease-in;
}
.btn--wide,
a.btn--wide {
  width: 100%;
}

.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: flex;
  column-gap: 5px;
  align-items: center;
  transition: background-color 0.2s ease-in;
}
@media (max-width: 788px) {
  .btn-link, a.btn-link {
    padding: 10px;
  }
}
.btn-link:hover, a.btn-link:hover {
  background-color: #b0adad;
  transition: background-color 0.2s ease-in;
}
.btn-link--wide, a.btn-link--wide {
  width: 100%;
}

.cta__btn--resume, a.cta__btn--resume {
  margin-top: 10px;
  display: inline-block;
  width: 50%;
  height: 60px;
  text-align: center;
  line-height: 65px;
  background-color: #748aa2;
  padding-left: 6px;
  padding-right: 10px;
  font-weight: 700;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.cta__btn--resume:hover, a.cta__btn--resume:hover {
  background-color: #455566;
  transition: all 0.2s ease-in;
}
@media (max-width: 788px) {
  .cta__btn--resume, a.cta__btn--resume {
    padding: 10px;
    height: 50px;
    line-height: 30px;
  }
}
.cta__btn--resume a, a.cta__btn--resume a {
  color: #fff;
}

.title {
  font-weight: 700;
  font-size: 28px;
  line-height: 100%;
  color: #000;
}
@media (max-width: 788px) {
  .title {
    font-size: 24px;
  }
}
.title--lg {
  font-weight: 800;
  font-size: 32px;
}
@media (max-width: 1250px) {
  .title--lg {
    font-size: 26px;
  }
}
@media (max-width: 788px) {
  .title--lg {
    font-size: 22px;
  }
}

.title-1 {
  font-weight: 700;
  font-size: 32px;
}

.title-2 {
  font-weight: 700;
  font-size: 26px;
}

.title-3 {
  font-weight: 600;
  font-size: 20px;
}

.input {
  padding: 10px 20px;
  border: 1px solid #c0c0c0;
  border-radius: 8px;
  color: #000;
  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;
  transition: all 0.2s ease-in;
}

.fake-checkbox::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(0);
  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 {
  transform: translate(-50%, -50%) scale(1);
}

.top-link {
  position: fixed;
  right: 40px;
  bottom: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  background-color: #000;
  border-radius: 24px;
  opacity: 0;
  pointer-events: none;
  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: 1250px) {
  .modal {
    width: 738px;
  }
}
@media (max-width: 788px) {
  .modal {
    padding: 20px;
    max-width: calc(100% - 30px);
  }
}

.modal__content {
  padding-top: 15px;
}

.modal__title {
  font-weight: 700;
  font-size: 24px;
  line-height: 130%;
}
@media (max-width: 788px) {
  .modal__title {
    font-size: 28px;
  }
}

.modal__img {
  height: 370px;
  background-color: #F6F6F6;
  background-image: url("./../../img/projects/laptop-big.svg");
  background-position: center center;
  background-size: auto;
  background-repeat: no-repeat;
  display: flex;
  align-items: 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;
  object-fit: cover;
}
@media (max-width: 788px) {
  .modal__img img {
    margin-top: -7px;
    width: 220px;
    height: 138px;
  }
}

.modal__text {
  font-weight: 400;
  font-size: 14px;
  line-height: 130%;
  color: #000;
}
.modal__text p + p {
  line-height: 130%;
}

.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 a:hover:hover {
  color: #00ae6c;
  transition: background-color 0.2s ease-in;
}
.modal__text a:hover p + p {
  margin-top: 15px;
}
.modal__text a:hover * + ul {
  margin-top: 15px;
}
.modal__text a:hover ul li {
  position: relative;
  padding-left: 20px;
}
.modal__text a:hover ul li::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 8px;
  display: block;
  width: 4px;
  height: 4px;
  background-color: #0f7dff;
  border-radius: 50%;
}
.modal__text a:hover ul li + li {
  margin-top: 10px;
}
@media (max-width: 1250px) {
  .modal__text a:hover {
    margin-top: 10px;
  }
}
@media (max-width: 788px) {
  .modal__text a:hover {
    line-height: 150%;
  }
}

.modal__tags {
  margin-bottom: 20px;
}

.modal__links {
  display: flex;
  flex-wrap: wrap;
  column-gap: 10px;
  align-items: start;
}
@media (max-width: 788px) {
  .modal__links {
    flex-direction: column;
    row-gap: 10px;
    align-items: stretch;
  }
}

.tinySlider img {
  border-radius: 8px;
  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: flex;
  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;
  transition: all 0.2s ease-in;
}

.accordion__body {
  padding: 20px;
}

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