/* inject:scss */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, main {
  display: block;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

*,
*:before,
*:after {
  box-sizing: border-box;
  max-height: 100000px;
  outline: 0;
}

html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}

button,
input,
select,
textarea {
  font: inherit;
  margin: 0;
  padding: 0;
  text-transform: none;
  color: inherit;
  border-radius: 0;
}

button,
html input[type=button],
input[type=reset],
input[type=submit] {
  overflow: visible;
  cursor: pointer;
  -webkit-appearance: button;
}

button[disabled],
html input[disabled] {
  cursor: default;
}

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

input[type="email"],
input[type="number"],
input[type="text"],
input[type="tel"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration,
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

input[type=number] {
  -moz-appearance: textfield;
}

textarea {
  overflow: auto;
  resize: none;
}

::-webkit-input-placeholder {
  color: inherit;
}

::-moz-placeholder {
  opacity: 1;
  color: inherit;
}

:-ms-input-placeholder {
  color: inherit;
}

body,
html {
  height: 100%;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  font: 12px/1.35 "Montserrat", helvetica, sans-serif;
  color: #fff;
  background: #090F1D;
}

button,
[type=reset],
[type=submit],
[type=image],
a {
  -webkit-transition: background-color .2s, color .2s;
  transition: background-color .2s, color .2s;
}

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

b,
strong {
  font-weight: 700;
}

i,
em {
  font-style: italic;
}

p {
  margin: 0 0 15px;
  font-weight: 300;
}

h1 {
  font-weight: 800;
  font-size: 17px;
  line-height: 1.1;
  text-transform: uppercase;
  margin-bottom: 15px;
}

h2 {
  font-weight: 800;
  font-size: 16px;
  line-height: 1.1;
  margin-bottom: 8px;
}

.text-center {
  text-align: center;
}

.wrapper {
  overflow: hidden;
  position: relative;
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

.container {
  padding: 0 10px;
  margin: 0 auto;
  max-width: 660px;
}

.header {
  background: rgba(22, 28, 50, 0.5);
}

.main {
  padding-top: 22px;
  padding-bottom: 25px;
  flex-grow: 1;
}

.main-inner {
  padding-left: 20px;
  padding-right: 20px;
}

.main-nav {
  display: flex;
}

.main-nav a {
  color: #fff;
  padding: 10px;
  text-decoration: none;
  font-size: 10px;
  line-height: 1.1;
  font-weight: 600;
  text-transform: uppercase;
  flex-grow: 1;
  text-align: center;
}

.photo-gallery {
  display: flex;
  margin: 0 -1px;
}

.photo-gallery-col {
  margin: 0 1px;
  padding: 1px;
  background: linear-gradient(180deg, #FF53D7 0%, #666666 100%);
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  width: calc(33.33% - 2px);
  overflow: hidden;
}

.photo-gallery-col:first-child {
  border-radius: 5px 0 0 5px;
}

.photo-gallery-col:last-child {
  border-radius: 0 5px 5px 0;
}

.photo-gallery-item {
  display: block;
}

.content-box {
  padding: 24px 20px 5px;
}

.content-box p {
  font-weight: normal;
}

.about {
  background: #161C32;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  margin-bottom: 17px;
}

.about-img {
  width: 48%;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}

.about-content {
  padding: 12px 10px 20px;
  display: flex;
  flex-direction: column;
}

.about-content h2 {
  margin-bottom: 12px;
}

.about-text {
  flex-grow: 1;
}

.about-text p {
  font-weight: normal;
}

.about-tags {
  position: absolute;
  bottom: 6px;
  left: 4px;
  right: 4px;
  display: flex;
}

.about-tag {
  font-size: 9px;
  padding: 5px 5px;
  background: rgba(22, 28, 50, 0.9);
  border-radius: 10px;
  white-space: nowrap;
}

.about-tag:not(:last-child) {
  margin-right: 2px;
}

@media (max-width: 370px) {
  .about-text {
    padding-bottom: 10px;
  }
  .about-text h2 {
    margin-bottom: 8px;
  }
  .about p {
    font-size: 10px;
    margin-bottom: 10px;
  }
  .about-tag {
    font-size: 8px;
    padding: 5px 3px;
  }
}

.btn {
  font-size: 15px;
  line-height: 1;
  font-weight: 800;
  color: #fff;
  background: #D73FB4;
  border-radius: 0 16px 16px 16px;
  padding: 9px;
  width: 100%;
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
}

.send-message {
  padding: 0 80px 0 20px;
  position: relative;
  min-height: 111px;
}

.send-message h2 {
  font-size: 20px;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.send-message p {
  font-size: 11px;
  margin-bottom: 19px;
  font-weight: normal;
}

.send-message .btn {
  margin-right: -15px;
  width: calc(100% + 15px);
}

.send-message-img {
  width: 58px;
  position: absolute;
  bottom: 0;
  right: 20px;
  z-index: 1;
}

.my-hobbies {
  padding: 13px 0 25px;
}

.my-hobbies h2 {
  margin-bottom: 12px;
}

.my-hobbies-list {
  display: flex;
  margin: 0 -2px;
}

.my-hobbies-item {
  width: calc(33.33% - 4px);
  margin: 0 2px;
  background: rgba(22, 28, 50, 0.5);
  border-radius: 10px;
  padding: 8px 8px;
  display: flex;
  flex-direction: column;
}

.my-hobbies-item p {
  font-size: 10px;
  margin: 0 0 7px;
  font-weight: normal;
}

.my-hobbies-text {
  flex-grow: 1;
}

.my-hobbies-title {
  display: flex;
  align-items: center;
  color: #fff;
  font-size: 11px;
  line-height: 1.1;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.my-hobbies-ico {
  width: 21px;
  height: 21px;
  margin-right: 5px;
}

.my-hobbies-link {
  padding: 5px;
  font-size: 10px;
  line-height: 1.1;
  font-weight: 700;
  text-align: center;
  color: #fff;
  text-decoration: none;
}

.hero {
  margin: 0 0 22px;
}

.hero img {
  width: 100%;
}

.blog .number-list li:before {
  font-weight: 500;
}

.number-list {
  list-style-type: none;
  counter-reset: num;
  font-weight: 300;
}

.number-list li:before {
  content: counter(num) ". ";
  counter-increment: num;
}

.number-list strong {
  font-weight: 500;
}

.number-list .number-list,
.number-list .bullet-list {
  padding-left: 7px;
}

.bullet-list {
  font-weight: 300;
}

.bullet-list li {
  position: relative;
  padding-left: 7px;
}

.bullet-list li:before {
  width: 1px;
  height: 1px;
  background: #fff;
  position: absolute;
  top: 6px;
  left: 0;
  content: '';
}

.footer {
  font-size: 11px;
}

.footer p {
  margin: 0 0 7px;
  font-weight: normal;
}

.footer-licence {
  background: rgba(22, 28, 50, 0.5);
  font-size: 12px;
}

.footer-licence .container {
  display: flex;
  justify-content: space-between;
  padding: 13px 30px;
}

.footer-licence a {
  color: #fff;
  text-decoration: none;
}

/* endinject */

/*# sourceMappingURL=maps/main.css.map */
