* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: transparent;
  margin: 0%;
  padding: 0%;
  outline: none;
  border: none;
  color: #000000;
}

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

a {
  text-decoration: none;
  color: #000000;
}

input {
  background-color: none;
  font-size: 16px;
  outline: none;
  color: #000000;
  -webkit-box-shadow: none;
          box-shadow: none;
}

input:focus {
  color: #000000;
  background-color: none !important;
}

input::-webkit-input-placeholder, input:-moz-placeholder, input::-moz-placeholder, input:-ms-input-placeholder {
  color: #000000;
}

textarea {
  background-color: none !important;
  font-size: 16px;
  outline: none;
  color: #000000;
  resize: none;
}

textarea:focus {
  color: #000000;
  background-color: none !important;
}

textarea::-input-placeholder {
  color: #000000;
}

body {
  width: 100%;
  height: 100%;
  margin: 0%;
  padding: 0%;
}

.rift-soft {
  font-family: 'Patrick Hand', cursive;
  font-weight: 400;
  font-style: normal;
  text-transform: uppercase;
}

.catamaran {
  font-family: catamaran, sans-serif;
  font-weight: 400;
  font-style: normal;
  line-height: 1.3em;
}

#preloader {
  position: fixed;
  width: 100%;
  height: 100vh;
  background-color: #ffffff;
  z-index: 12345;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.page {
  width: 100%;
  height: 100%;
}

.page .header {
  width: 100%;
  height: 60px;
  z-index: 200;
}

.page .header .menu {
  position: absolute;
  top: 30px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.page .header .menu ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.page .header .menu ul li a {
  margin: 0px 10px;
  padding: 0px 10px;
  font-size: 25px;
  cursor: pointer;
  color: #000000;
}

.page .content-gallery {
  width: 100%;
  padding: 30px;
  grid-gap: 30px;
}

@media (max-width: 425px) {
  .page .content-gallery {
    padding: 20px 15px 15px 15px;
  }
}

.page .content-gallery .container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(330px, 1fr))[auto-fit];
      grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
  -ms-grid-rows: (minmax(330px, 2fr))[auto-fit];
      grid-template-rows: repeat(auto-fit, minmax(330px, 2fr));
  grid-gap: 30px;
}

@media (max-width: 425px) {
  .page .content-gallery .container {
    grid-gap: 15px;
  }
}

.page .content-gallery .container .image {
  max-width: 100%;
  max-height: 100%;
  min-width: 330px;
  min-height: 330px;
  overflow: hidden;
  background-color: #f8f8f8;
  display: inline;
}

.page .content-gallery .container .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.page .footer {
  padding: 30px;
  background-color: #464646;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 2fr 1fr 2fr 1fr 2fr;
      grid-template-columns: 2fr 1fr 2fr 1fr 2fr;
      grid-template-areas: "about navigations comments . contacts";
  grid-gap: 30px;
}

@media (max-width: 1024px) {
  .page .footer {
    -ms-grid-columns: 1fr 2fr 1fr 2fr;
        grid-template-columns: 1fr 2fr 1fr 2fr;
        grid-template-areas: "navigations comments . contacts";
  }
}

@media (max-width: 846px) {
  .page .footer {
    -ms-grid-columns: 1fr 2fr 2fr;
        grid-template-columns: 1fr 2fr 2fr;
        grid-template-areas: "navigations comments contacts";
  }
}

@media (max-width: 736px) {
  .page .footer {
    -ms-grid-columns: 2fr 2fr;
        grid-template-columns: 2fr 2fr;
        grid-template-areas: "comments contacts";
  }
}

@media (max-width: 541px) {
  .page .footer {
    -ms-grid-columns: 2fr;
        grid-template-columns: 2fr;
        grid-template-areas: "contacts";
  }
}

@media (max-width: 425px) {
  .page .footer {
    grid-gap: 15px;
    padding: 15px;
  }
}

.page .footer .about-foo {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  grid-area: about;
}

@media (max-width: 1024px) {
  .page .footer .about-foo {
    display: none;
  }
}

.page .footer .about-foo .caption {
  font-size: 21px;
  color: #ffffff;
}

.page .footer .about-foo .text {
  font-size: 18px;
  color: #ffffff;
}

.page .footer .navigations {
  -ms-grid-row: 1;
  -ms-grid-column: 2;
  grid-area: navigations;
}

@media (max-width: 736px) {
  .page .footer .navigations {
    display: none;
  }
}

.page .footer .navigations .caption {
  font-size: 21px;
  color: #ffffff;
}

.page .footer .navigations .menu-foo ul {
  display: block;
}

.page .footer .navigations .menu-foo ul li {
  color: #ffffff;
  padding: 3px 0px;
}

.page .footer .navigations .menu-foo ul li div {
  cursor: pointer;
  color: #ffffff;
  display: inline-block;
}

.page .footer .navigations .menu-foo ul li a {
  color: #ffffff;
}

.page .footer .comments {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
  grid-area: comments;
}

@media (max-width: 541px) {
  .page .footer .comments {
    display: none;
  }
}

.page .footer .comments .caption {
  font-size: 21px;
  color: #ffffff;
}

.page .footer .comments .art-1 {
  margin-bottom: 30px;
  color: #ffffff;
}

.page .footer .comments .autor {
  color: #ffffff;
}

.page .footer .comments .text {
  color: #ffffff;
}

.page .footer .contacts {
  -ms-grid-row: 1;
  -ms-grid-column: 5;
  grid-area: contacts;
}

.page .footer .contacts .caption {
  font-size: 21px;
  color: #ffffff;
}

.page .footer .contacts ul {
  display: block;
}

.page .footer .contacts ul li {
  color: #ffffff;
  padding: 3px 0px;
}

.page .footer .contacts ul li a {
  color: #ffffff;
}

.page .copyright {
  height: 40px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0px 30px;
  min-width: 360px;
}

@media (max-width: 425px) {
  .page .copyright {
    padding: 0px 15px;
  }
}

.page .copyright .text {
  color: #000000;
}

@media (max-width: 430px) {
  .page .copyright .text {
    font-size: 15px;
  }
}

@media (max-width: 400px) {
  .page .copyright .text {
    font-size: 13px;
  }
}
/*# sourceMappingURL=style-gallery.css.map */