:root {
  --main-color: #ff6f69; }

> * {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }
  > *:before, > *:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box; }

*::-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.65;
  overflow-x: hidden; }

.img-responsive {
  display: block;
  max-width: 100%;
  height: auto; }

::selection {
  background-color: #fff;
  color: #fff; }

a, a:hover, a:focus, a:active {
  outline: none !important;
  text-decoration: none;
  color: #000; }

.grid-container {
  display: grid;
  max-width: 1200px;
  margin: 0 auto; }

/*min-height:32vh;*/
section {
  width: 100%;
  height: 100vh;
  display: grid;
  justify-items: center;
  align-items: center; }

.imgBX {
  position: relative;
  width: 600px;
  height: 600px;
  overflow: hidden; }
  .imgBX img {
    width: 100%;
    top: 0;
    left: 0;
    position: absolute;
    -webkit-background-size: cover;
    background-size: cover;
    transition: 0.5s; }
  .imgBX img:nth-child(1) {
    transform: translateX(60%) scaleX(2);
    opacity: 0;
    filter: blur(10px); }
  .imgBX:hover {
    cursor: pointer; }
    .imgBX:hover img:nth-child(2) {
      transform: translateX(-60%) scaleX(2);
      opacity: 0.5;
      filter: blur(10px); }
    .imgBX:hover img:nth-child(1) {
      transform: translateX(0) scaleX(1);
      opacity: 1;
      filter: blur(0); }
