@import url('https://fonts.googleapis.com/css2?family=Neuton:ital,wght@0,200;0,300;0,400;0,700;0,800;1,400&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Fjalla+One&display=swap');

:root{
    --o-1: #e9dddd;
    --o-2: #dde0eb;
    --o-3: #b8ccea;
    --o-4: #739dcd;
    --o-5: #3c5a5b;
    --accent: var(--o-3);
    --j-1: #867676;
    --j-2: #7c8090;
    --j-3: #5c6e87;
    --j-4: #324e6e;
    --j-5: #273b3b;
    --dark-bg: var(--j-3);
    --white: #fff;
    --black: #000;
    --transition: 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    --line-offset: calc((10vh + 8px) / 2);
}

html{
  scroll-behavior: smooth;
}

*{
  box-sizing: border-box;
}

body{
  font-family: 'Neuton', sans-serif !important;
  font-size: 18px;
  direction: ltr;
  margin: 0;
  padding: 0;
  height: 100%;
  position: relative;
  box-sizing: border-box;
}


a{
  text-decoration: none;
}

p {
  margin-bottom: 1rem;
  font-size: 1rem;
  line-height: 1.5;
}

ul, ol {
  margin-bottom: 1rem;
  padding-left: 2rem;
}

li {
  margin-bottom: 0.5rem;
}

ul ul, ol ul, ul ol, ol ol {
  margin-bottom: 0;
}

ul {
  list-style-type: disc;
}

ol {
  list-style-type: decimal;
}

img{
  width: 100%;
  display: block;
  box-sizing: border-box;
}

video{
  display: block;
  box-sizing: border-box;
}

h5{
  font-size: 1.1rem;
}

.module{
  padding: 100px 0;
}

.wrapper {
  max-width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: 14px;
  padding-left: 14px;
  box-sizing: border-box;
}

.row-2,
.row-3,
.row-4,
.row-5,
.row-6{
  display: flex;
  box-sizing: border-box;
  flex-wrap: wrap;
  flex-direction: column-reverse;
  gap: 20px;
}

.col-30,
.col-70,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6{
  width: 100%;
  flex-grow: 1;
  box-sizing: border-box;
}


.logo{
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
  justify-content: end;
  transition: var(--transition);
  margin-bottom: 20px;

  img{
    width: 50px;
    height: 50px;
    object-fit: contain;
  }

  h1{
    color: var(--white);
    text-align: center;
    font-weight: 900;
    text-transform: uppercase;
    text-shadow: 3px 3px 3px var(--dark-bg), -3px -3px 3px var(--dark-bg);
    margin: 0;
    font-family: 'Fjalla One', sans-serif;
    transition: var(--transition);
    font-size: 24px;
  }

  &:hover,
  &:focus{
    transform: translateX(4px);
  }

  &:hover h1,
  &:focus h1{
    color: var(--accent);
    text-shadow: 3px 3px 3px var(--white), -3px -3px 3px var(--white);
  }
}

.title{
  color: var(--dark-bg);
  font-weight: 900;
  text-align: center;
  font-size: 20px;
  letter-spacing: 1.2px;
  line-height: 1.12;
  font-family: 'Fjalla One', sans-serif;
  margin-bottom: 25px;
}

.header{
  overflow: hidden;
  min-height: 400px;
  position: relative;
  display: flex;
  align-items: center;

  &::before{
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background: url('imagevault/background/bg-light-068c1951c8e1cd.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    opacity: 0.2;
  }

  &::after{
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--accent);
    opacity: 0.5;
  }

  .wrapper{
    position: relative;
    z-index: 3;
  }
}

.snowflake1{
  position: absolute;
  top: 10px;
  left: -30px;
  width: 200px;
  height: 200px;
  z-index: 2;
  filter: drop-shadow(3px 3px 3px var(--dark-bg));
  animation: snowflake1 4s linear;
  opacity: 0.7;
}

.snowflake2{
display: none;
}

.snowflake3{
  position: absolute;
  bottom: 15%;
  left: 83%;
  width: 100px;
  height: 100px;
  z-index: 2;
  filter: drop-shadow(3px 3px 3px var(--dark-bg));
  animation: snowflake3 2.4s linear;
  opacity: 0.7;
}

@keyframes snowflake1{
  0%{
    transform: translateX(-100%) rotate(360deg);
  }
  100%{
    transform: translateX(0) rotate(0deg);
  }
}

@keyframes snowflake2{
  0%{
    transform: translateX(100%) rotate(360deg);
  }
  100%{
    transform: translateX(0) rotate(0deg);
  }
}
@keyframes snowflake3{
  0%{
    transform: scale(0) rotate(360deg);
  }
  100%{
    transform: scale(1) rotate(0deg);
  }
}

.menu{
  margin: 0 auto;
  text-align: center;
}

.modal-overflow{
  background-color: #000000d5;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 7;
}

.modal{
  width: 90%;
  height: 400px;
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 8;
  background-color: var(--dark-bg);
}

.modal-overflow{
  visibility: hidden;
  opacity: 0;
  transition: var(--transition);
}

.modal{
  visibility: hidden;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0);
  transition: var(--transition);
}

.modal.open{
  visibility: visible;
  opacity: 1;
  transform: scale(1) translate(-50%, -50%);
  transition: var(--transition);
}

.modal-overflow.open{
  opacity: 1;
  visibility: visible;
  transition: var(--transition);
}

.modal-wrapper{
  position: relative;
  z-index: 9;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.close{
  background-color: var(--white);
  color: var(--dark-bg);
  border-radius: 50%;
  cursor: pointer;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -40px;
  right: 10px;
  transition: var(--transition);

  svg{
    width: 20px;
    height: 20px;
  }

  &:hover,
  &:focus{
    filter: drop-shadow(3px 3px 3px var(--accent));
    opacity: 0.9;
  }
}

.menu-list{
  display: flex;
  justify-content: center;
  height: 100%;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}

.menu-item{
  text-align: center;
  border-bottom: 1px solid var(--white);

  a{
    padding: 10px 0;
    color: var(--white);
    transition: var(--transition);
    display: inline-block;
    text-transform: uppercase;
    font-weight: 900;

    &:hover,
    &:focus{
      transform: translateX(4px);
    }
  }
}

.main1{
  padding-top: 0;
  padding-bottom: 0;
}

.main1-wr{
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.container-gallery {
  width: 100%;
  height: 530px;
  display: grid;
  grid-template-rows: 5fr 1fr;
  background: var(--dark-bg);
}

.main1-list {
  list-style: none;
  margin: 0;
  padding: 0;
  justify-content: center;
  display: flex;
}

.tab {
  width: calc(50px + 8px);
  height: calc(70px + 8px);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  clip-path: polygon(0% 50%, 15% 0%, 85% 0%, 100% 50%, 85% 100%, 15% 100%);
  shape-outside: polygon(0% 50%, 15% 0%, 85% 0%, 100% 50%, 85% 100%, 15% 100%);
  z-index: 0;
  transition: width 0.4s;
}

.tab img {
  width: 50px;
  height: 70px;
  z-index: 10;
  cursor: pointer;
  clip-path: polygon(0% 50%, 15% 0%, 85% 0%, 100% 50%, 85% 100%, 15% 100%);
  shape-outside: polygon(0% 50%, 15% 0%, 85% 0%, 100% 50%, 85% 100%, 15% 100%);
  transition: width 0.4s;
}

[type=radio] {
  display: none;   
}

.preview-list {
  background: linear-gradient(var(--dark-bg), var(--dark-bg) var(--line-offset), #ffffff var(--line-offset));
}

.tab {
  background: linear-gradient(#ffffff, #ffffff var(--line-offset), var(--dark-bg) var(--line-offset));
}

[type=radio]:checked ~ label ~ .content{
  text-align: center;
  z-index: 8;
}

[type=radio]:checked ~ label .tab{
  width: 0;
}

.content {
  position: absolute;
  background: var(--dark-bg);
  top: 1vh;
  left: 0;
  width: 100%;
  height: 399px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.content img {
  height: 100%;
  width: 100%;  
  opacity: 0.5;
  object-fit: cover;
}

.main1-desc{
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.main1-title{
  position: relative;
  z-index: 2;
  color: var(--white);
  font-weight: 900;
  font-size: 36px;
  text-transform: uppercase;
  display: inline-block;
  text-shadow: 1px 1px 1px var(--dark-bg), -1px -1px 1px var(--dark-bg);
  transition: var(--transition);

  &:hover,
  &:focus{
    color: var(--accent);
    text-shadow: 1px 1px 1px var(--white), -1px -1px 1px var(--white);
  }
}

.main1-content{
  position: relative;
  z-index: 2;
  max-width: 600px;
  margin: 0 auto;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  font-weight: 900;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  color: var(--white);
  text-shadow: 1px 1px 1px var(--dark-bg), -1px -1px 1px var(--dark-bg);
}

.main1-desc.wrapper{
  width: 100%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);

  .button{
    position: relative;
    z-index: 2;
  }
}

#main1{
  display: block;
}

.main2{
  background-color: var(--accent);

  .title{
    color: var(--white);
  }
}

.main2-box{
  display: flex;
  align-items: center;
  height: 100%;
  background-color: var(--white);
  padding: 20px;
  flex-direction: column;
  gap: 20px;
  box-shadow: 0 0 15px 0 var(--accent) inset;
}

.main2-img-wr{
  position: relative;
  width: 100%;
  height: 250px;
  cursor: pointer;

  img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: 1;
  }

  &::before{
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--white);
    mask-image: url('img/menu.svg');
    mask-repeat: no-repeat;
    mask-size: 150% 157%;
    mask-position: center;
    z-index: 2;
    transition: var(--transition);
  }
  &::after{
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--accent);
    opacity: 0.3;
    z-index: 1;
    transition: var(--transition);
  }

  &:hover::before,
  &:focus::before{
    mask-size: 160% 165%;
  }
  &:hover::after,
  &:focus::after{
    opacity: 0;
  }
}

.main2-title{
  color: var(--dark-bg);
  transition: var(--transition);
  font-size: 20px;
  font-weight: 900;
  text-align: center;

  &:hover,
  &:focus{
    color: var(--accent);
  }
}

.main2-content{
  text-align: center;
  margin: 0;
}

.au{
  position: relative;
  overflow: hidden;

  &::before{
    position: absolute;
    content: '';
    top: -25px;
    left: 0;
    width: 100%;
    height: 50px;
    background: url('imagevault/other-dir/snow-068c1951c8e670.svg');
    background-position: center;
    background-repeat: repeat;
    background-size: contain;
    rotate: 180deg;
  }
  &::after{
    position: absolute;
    content: '';
    bottom: -25px;
    left: 0;
    width: 100%;
    height: 50px;
    background: url('imagevault/other-dir/snow-068c1951c8e670.svg');
    background-position: center;
    background-repeat: repeat;
    background-size: contain;
  }
}

.au-img-wr{
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  flex-direction: column;
}

.au-img{
  width: 100%;
  height: 400px;

  img{
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
}

.au-text{
  text-align: center;
  color: var(--dark-bg);
}

.elf{
  position: relative;

  &::before{
    position: absolute;
    content: '';
    top: 20px;
    left: 20px;
    width: 100px;
    height: 100px;
    background: url('imagevault/other-dir/toys-068c1951c8e5ae.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    filter: drop-shadow(2px 4px 6px white);
    animation: 3s linear desclimer infinite;
  }
  &::after{
    position: absolute;
    content: '';
    bottom: -13px;
    right: -50px;;
    width: 200px;
    height: 200px;
    background: url('imagevault/other-dir/elves-068c1951c8e4d2.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    filter: drop-shadow(2px 4px 6px white);
    animation: 4s linear desclimer infinite;
  }
}

@keyframes elfFadeup{
  0%{
    transform: translateX(100%);
    opacity: 0;
  }
  39%{
    transform: rotate(0deg);
  }
  40%{
    opacity: 1;
    transform: rotate(10deg);
  }
  41%{
    transform: rotate(0deg);
  }
  42%{
    transform: rotate(10deg);
  }
  44%{
    transform: rotate(0deg);
  }
  50%{
    transform: translateX(0%);
  }
  60%{
    transform: rotate(10deg);
  }
  61%{
    transform: rotate(0deg);
  }
  62%{
    transform: rotate(-10deg);
  }
  64%{
    opacity: 0;
    transform: rotate(0deg);
  }
  100%{
    transform: translateX(100%);
  }
}

@keyframes toys{
  0%{
    opacity: 0.7;
    transform: scale(0.7);
    rotate: 0deg;
  }
  50%{
    opacity: 1;
    transform: scale(1);
    rotate: 45deg;
  }
  100%{
    opacity: 0.7;
    transform: scale(0.7);
    rotate: 0deg;
  }
}

.steps-box{
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.step-item{
  box-shadow: 0 0 10px 0 var(--dark-bg) inset;
  display: flex;
  direction: ltr !important;
  flex-direction: column;
  gap: 20px;
  padding: 25px;
  transition: var(--transition);

  &:hover,
  &:focus{
    animation: rotate 0.7s ease-in-out both;
  }
}

.second-steps-box{
  margin-top: 71px;

  .step-item{
    align-items: end;
    position: relative;
    border-radius: 14px 0 0 14px;

    &::before{
      position: absolute;
      content: '';
      top: 0;
      right: 0;
      width: 10px;
      height: 100%;
      background-image: linear-gradient(45deg, #3c5a5b 0%, #33d9de 50%, #002878 100%);
      border-radius: 0 4px 4px 0;
  }
}

  .step-item:last-child{
    background-color: var(--dark-bg);
    color: var(--white);

    &::after{
      position: absolute;
      content: '04';
      color: var(--white);
      top: 0px;
      left: 19px;
      opacity: 0.2;
      font-size: 76px;
    }
  }

  .step-item:first-child{
    &::after{
      position: absolute;
      content: '03';
      color: var(--dark-bg);
      top: 0px;
      left: 19px;
      opacity: 0.2;
      font-size: 76px;
    }
  }
}
.first-steps-box{
  .step-item{
    align-items: start;
    position: relative;
    border-radius: 0 14px 14px 0;

    &::before{
      position: absolute;
      content: '';
      top: 0;
      left: 0;
      width: 10px;
      height: 100%;
      background-image: linear-gradient(45deg, #3c5a5b 0%, #33d9de 50%, #002878 100%);
      border-radius: 4px 0 0 4px;
    }
  }

  .step-item:first-child{
    background-color: var(--dark-bg);
    color: var(--white);

    &::after{
      position: absolute;
      content: '01';
      color: var(--white);
      top: 0px;
      right: 19px;
      opacity: 0.2;
      font-size: 76px;
    }
  }

    .step-item:last-child{
      &::after{
      position: absolute;
      content: '02';
      color: var(--dark-bg);
      top: 0px;
      right: 19px;
      opacity: 0.2;
      font-size: 76px;
    }
  }
}

.step-img{
  width: 70px;
  height: 70px;
  background-image: linear-gradient(45deg, #3c5a5b 0%, #33d9de 50%, #002878 100%);
  background-position: 100% 0;
  background-size: 200% 200%;
  color: white;
  box-shadow: 0 16px 32px 0 rgba(0, 40, 120, .35);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;

  img{
    width: 80%;
    height: 80%;
    object-fit: contain;
  }
}

.gallery{
  background-color: var(--accent);

  .title{
    color: var(--white);
  }
}
.container-general {
  margin: 0 auto;
  width: 100%;

  .gallery-wrap {
    display: flex;
    flex-direction: row;
    width: 100%;
    height: 300px;

    .item {
      flex: 1;
      height: 100%;
      background-position: center;
      background-size: cover;
      background-repeat: none;
      transition: all 0.8s ease;

      &:hover {
        flex: 7;
      }
    }
  }
}

.wrap-effect-3 {
  .item {
    border-top: 4px solid var(--accent);
    border-bottom: 4px solid var(--accent);
    border-left: 2px solid var(--accent);
    border-right: 2px solid var(--accent);

    &:hover {
      animation: rotate 0.7s ease-in-out both;
      border-radius: 15px;
      border: 4px solid var(--white);
    }

    &:first-of-type {
      background-image: url('imagevault/background/gallery-068c1951c8e28a.jpg');
    }

    &:nth-of-type(2) {
      background-image: url('imagevault/background/gallery-168c1951c8e2b5.jpg');
    }
    &:nth-of-type(3) {
      background-image: url('imagevault/background/gallery-268c1951c8e2dd.jpg');
    }

    &:nth-of-type(4) {
      background-image: url('imagevault/background/gallery-368c1951c8e304.jpg');
    }

    &:last-of-type {
      background-image: url('imagevault/background/gallery-468c1951c8e32b.jpg');
    }
  }
}

@keyframes rotate {
  0% {
    transform: rotate(0deg) translate3d(0, 0, 0);
  }
  25% {
    transform: rotate(10deg) translate3d(0, 0, 0);
  }
  50% {
    transform: rotate(-10deg) translate3d(0, 0, 0);
  }
  75% {
    transform: rotate(5deg) translate3d(0, 0, 0);
  }
  100% {
    transform: rotate(0deg) translate3d(0, 0, 0)
  }
}

.dev-box{
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  gap: 20px;
  padding: 25px;
  transition: var(--transition);
  position: relative;
  max-width: 200px;
  margin: 0 auto;

  &:hover,
  &:focus{
    animation: rotate 0.7s ease-in-out both;
  }
}

.dev-even{
  box-shadow: 0 0 15px 0 var(--dark-bg) inset;
  background-color: var(--white);
  color: var(--dark-bg);
  border-radius: 0px 0px 20px 20px;

  &::before{
      position: absolute;
      content: '';
      top: 0;
      left: 0;
      width: 100%;
      height: 10px;
      background-image: linear-gradient(45deg, #3c5a5b 0%, #33d9de 50%, #002878 100%);
      border-radius: 4px 0 0 4px;
    }


}

.dev-odd{
  background-color: var(--dark-bg);
  color: var(--white);
  border-radius: 20px 20px 0px 0px;

  &::before{
      position: absolute;
      content: '';
      bottom: 0;
      left: 0;
      width: 100%;
      height: 10px;
      background-image: linear-gradient(45deg, #3c5a5b 0%, #33d9de 50%, #002878 100%);
      border-radius: 4px 0 0 4px;
    }

        .dev-nick{
        color: var(--white);
    }

}

.dev-img{
  width: 120px;
  height: 120px;
  border-radius: 9px;
  overflow: hidden;

  img{
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

.dev-nick{
  text-align: center;
  font-weight: 900;
  word-break: break-all;
}

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

#form{
  background-color: var(--accent);

  .title{
    color: var(--white);
  }
}

.form-wr{
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  background-color: var(--dark-bg);
  position: relative;
  padding: 50px;
  color: var(--white);
}

.form{
  display: flex;
  flex-direction: column;
  position: relative;
  gap: 20px;
  z-index: 2;
  width: 100%;
  height: 100%;
}

.contact-page-form-item{
  width: 100%;
}

.contact-page-form-item > input,
.contact-page-form-item > textarea,
.input-controlelement--control,
.textarea-controlelement--control{
  width: 100%;
  padding: 20px 22px;
  border-bottom: 2px solid var(--white);
  border-top: 2px solid var(--accent);
  border-left: 2px solid var(--accent);
  border-right: 2px solid var(--accent);
  outline: none;
  background-color: var(--dark-bg);
  color: var(--white);
  transition: var(--transition);

  &::placeholder{
    color: var(--white);
  }

  &:hover,
  &:focus{
    filter: drop-shadow(3px 3px 13px var(--accent))
  }
}

.privacy{
  color: var(--white);
  display: inline-block;
  transition: var(--transition);

  &:hover,
  &:focus{
    transform: translateX(4deg);
    filter: drop-shadow(3px 3px 3px var(--white));
  }
}

.footer{
  padding: 70px 0 25px;
  background-color: var(--dark-bg);
  color: var(--white);
  position: relative;
  overflow: hidden;

  .snowflake3{
    bottom: -10%;
    left: -4%;
    width: 300px;
    height: 300px;
    opacity: 0.2;
    
    &.animation3{
      animation: snowflake3 3s linear;
    }
  }

  .snowflake2{
    top: -10%;
    right: -4%;
    width: 200px;
    height: 200px;
    opacity: 0.4;
    
    &.animation{
      animation: snowflake3 2s linear;
    }
  }
}

.disclaimer-box{
  max-width: 1000px;
  margin: 0 auto;
  background-color: var(--white);
  color: var(--dark-bg);
  position: relative;
  animation: desclimer 4s linear infinite;
  margin-bottom: 31px;
  padding: 71px 20px;

    &::before{
    position: absolute;
    content: '';
    top: -25px;
    left: 0;
    width: 100%;
    height: 50px;
    background: url('imagevault/other-dir/snow-268c1951c8e69c.svg');
    background-position: center;
    background-repeat: repeat;
    background-size: contain;
    rotate: 180deg;
  }
  &::after{
    position: absolute;
    content: '';
    bottom: -25px;
    left: 0;
    width: 100%;
    height: 50px;
    background: url('imagevault/other-dir/snow-268c1951c8e69c.svg');
    background-position: center;
    background-repeat: repeat;
    background-size: contain;
  }
}

.title-disclaimer{
  font-size: 22px;
  font-weight: 900;
  text-align: center;
}

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

@keyframes desclimer{
  0% {
    transform: rotate(0deg) translate3d(0, 0, 0) scale(1);
  }
  25% {
    transform: rotate(6deg) translate3d(0, 0, 0) scale(0.95);
  }
  50% {
    transform: rotate(-6deg) translate3d(0, 0, 0) scale(0.92);
  }
  75% {
    transform: rotate(3deg) translate3d(0, 0, 0) scale(0.99);
  }
  100% {
    transform: rotate(0deg) translate3d(0, 0, 0) scale(1);
  }
}

.footer-col{
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-nav{
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.footer-menu-item{
  text-align: center;

  a{
    text-align: center;
    display: inline-block;
    transition: var(--transition);
    color: var(--white);

    &:hover,
    &:focus{
      filter: drop-shadow(3px 3px 13px var(--accent));
      transform: translateX(4px) rotate(3deg);
    }
  }
}

.footer-logo-wr{
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.copyright-box{
  margin-top: 25px;
  padding-top: 25px;
  border-top: 1px solid #ffffff88;
  display: flex;
  flex-direction: row;
  gap: 15px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.copyright{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  gap: 4px;
  flex-wrap: wrap;

  p{
    color: #ffffff88;
    margin: 0;
  }
}

.disclaimer-img{
  width: 50px;
  height: 50px;

  img{
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
}


.contact-box{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  gap: 20px;
  padding: 25px;
  transition: var(--transition);
  position: relative;

  &:hover,
  &:focus{
    animation: rotate 0.7s ease-in-out both;
  }

  a{
    word-break: break-all;
    font-weight: 900;
    font-size: 20px;
    text-align: center;
    display: inline-block;
    color: var(--white);
    transition: var(--transition);

    &:hover,
    &:focus{
      filter: drop-shadow(3px 3px 13px var(--accent));
    }
  }
}

.contact-box-even{
  box-shadow: 0 0 15px 0 var(--dark-bg) inset;
  background-color: var(--white);
  color: var(--dark-bg);
  border-radius: 0px 0px 20px 20px;

  &::before{
      position: absolute;
      content: '';
      top: 0;
      left: 0;
      width: 100%;
      height: 10px;
      background-image: linear-gradient(45deg, #3c5a5b 0%, #33d9de 50%, #002878 100%);
      border-radius: 4px 0 0 4px;
    }

    a{
      color: var(--dark-bg);
      transition: var(--transition);

      &:hover,
      &:focus{
        filter: drop-shadow(3px 3px 13px var(--accent));
      }
    }
}

.adres{
  text-align: center;
  font-weight: 900;
}
.contact-box-odd{
  background-color: var(--dark-bg);
  color: var(--white);
  border-radius: 20px 20px 0px 0px;

  &::before{
      position: absolute;
      content: '';
      bottom: 0;
      left: 0;
      width: 100%;
      height: 10px;
      background-image: linear-gradient(45deg, #3c5a5b 0%, #33d9de 50%, #002878 100%);
      border-radius: 4px 0 0 4px;
    }
}

.map{
  border: 4px solid var(--accent);
  border-radius: 20px;
  width: 100%;
  height: 400px;
  margin-top: 25px;

  iframe{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: none;
  }
}

.box-iframe{
  width: 100%;
  height: 100vh;
  margin-bottom: 25px;
  
  iframe{
    width: 100%;
    border: 4px solid var(--accent);
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
  }
}

.page-img{
  width: 100%;
  height: auto;
  background-image: linear-gradient(45deg, #3c5a5b 0%, #33d9de 50%, #002878 100%);
  background-position: 100% 0;
  background-size: 200% 200%;
  color: white;
  box-shadow: 0 16px 32px 0 rgba(0, 40, 120, .35);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 20px;

  img{
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
}

.page-col{
  display: flex;
  align-items: center;
  justify-content: center;
}

.privacy-content{
  word-break: break-all;
  overflow: hidden;
}


@media (max-width: 480px){
  .logo h1{
    text-align: center;
  }
}

@media (min-width: 420px){
  .tab {
    width: calc(70px + 8px);
    height: calc(70px + 8px);
  }

  .tab img {
    width: 70px;
    height: 70px;
  }

}

@media (min-width: 576px) {
  .row-5{
    flex-direction: row;
  }

  .col-5{
    width: calc(50% - 20px);
  }
  .row-6{
    flex-direction: row;
  }

  .col-6{
    width: calc(50% - 20px);
  }

  .title{
    font-size: 24px;
  }

  .logo h1{
    font-size: 26px;
  }

  .modal{
    max-width: 491px;
    width: 100%;
    height: 370px;

    &::before{
      max-width: 491px;
      height: 370px;
      position: absolute;
      content: '';
      top: 0;
      left: 0;
      background-color: var(--white);
      mask-image: url('img/menu.svg');
      mask-repeat: no-repeat;
      mask-size: contain;
      mask-position: center;
      width: 100%;
    }
  }

  .close{
    right: -20px
  }

  .snowflake2{
    display: block;
    position: absolute;
    bottom: -19%;
    right: -29%;
    width: 500px;
    height: 500px;
    z-index: 2;
    filter: drop-shadow(3px 3px 3px var(--dark-bg));
    animation: snowflake2 3s linear;
    opacity: 0.7;
  }
 
  .snowflake3{
    left: -3%;
  }

  .menu-list{
    width: 60%;
  }

    .main2-img-wr {
    &::before{
      mask-size: 112% 223%;
    }

    &:hover::before, 
    &:focus::before {
     mask-size: 142% 243%;
    }
}

  .tab {
    width: calc(100px + 8px);
    height: calc(100px + 8px);
  }

  .tab img {
    width: 100px;
    height: 100px;
  }

  .page-img{
    height: 300px;
  }

}

@media(max-width: 767px){
  .second-steps-box{
    margin-top: 0;
  }
  .steps{
    .row-2{
      flex-direction: column;
    }
  }

  .footer{
    .snowflake2,
    .snowflake3{
      display: none;
    }
  }
}

@media (min-width: 768px){
  .row-2,
  .row-3,
  .row-4{
    flex-direction: row;
  }

  .col-2,
  .col-3,
  .col-4{
    width: calc(50% - 20px);
  }
 
  .col-5{
    width: calc(33.333% - 20px);
  }

  .col-6{
    width: calc(33.333% - 20px);
  }

  .title{
    font-size: 26px;
  }

  .logo h1{
    font-size: 36px;
  }

  .modal{
    max-width: 614px;
    height: 462px;

    &::before{
      max-width: 614px;
      height: 462px;
    }
  }

  .close{
    right: -40px
  }

  .snowflake3{
    left: 4%;
  }

  .snowflake2{
    bottom: -7%;
    right: -5%;
  }

  .menu-item a{
    font-size: 22px;
  }

  .main2-img-wr {
    &::before{
      mask-size: 122% 142%;
    }

    &:hover::before, 
    &:focus::before {
     mask-size: 140% 150%;
    }
  }


  .snowflake1{
    width: 300px;
    height: 300px;
    left: 30px;
  }

  .snowflake3{
    left: 23%;
    width: 150px;
    height: 150px;
  }

  .au{
    .row-2{
      flex-direction: row;
    }
  }

  .page-img{
    height: 350px;
  }

}


@media (min-width: 992px){
  .wrapper{
    padding: 0 34px;
  }
  .col-3{
    width: calc(33.333% - 20px);
  }

  .col-4{
    width: calc(25% - 20px);
  }

  .col-5{
    width: calc(20% - 20px);
  }

  .col-6{
    width: calc(20% - 20px);
  }

  .col-70{
    width: calc(70% - 20px);
  }

  .col-30{
    width: calc(30% - 20px);
  }

  .title{
    font-size: 34px;
  }

    .logo h1{
    font-size: 48px;
  }

  .modal{
    max-width: 767px;
    height: 578px;

    &::before{
      max-width: 767px;
      height: 578px;
    }
  }

  .logo{
    img{
      width: 80px;
      height: 80px;
    }
  }

  .snowflake3{
    left: 23%;
  }

  .menu-item a{
    font-size: 24px;
  }

  
  .main2-img-wr {
    &::before{
      mask-size: 142% 107%;
    }

    &:hover::before, 
    &:focus::before {
     mask-size: 170% 150%;
    }
  }

  .page-img{
    height: 400px;
  }
}

@media (min-width: 1200px){
  .wrapper {
    max-width: 1300px;
  }

  .col-6{
    width: calc((100% / 6) - 20px);
  }

  .title{
    font-size: 64px;
  }

  .logo h1{
    font-size: 72px;
  }

  .menu-item a{
    font-size: 26px;
  }


  .main2-img-wr {
    &::before{
      mask-size: 110% 115%;
    }

    &:hover::before, 
    &:focus::before {
      mask-size: 140% 145%;
    }
  }

}

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

.button{
  cursor: pointer;
  text-align: center;
}

.button-1,
.button-2,
.button-4,
.button-5{
  .border{
    display: none;
  }
}

.button-1{
  cursor: pointer;
  background-color: var(--accent);
  filter: drop-shadow(3px 3px 3px var(--black));
  color: var(--white);
  font-weight: 900;
  text-transform: uppercase;
  text-shadow: 2px 2px 2px #111, -2px -2px 2px #111;
  transition: var(--transition);
  display: inline-block;
  padding: 20px 22px;
  border-radius: 22px;
  border: none;
  outline: none;

  &:hover,
  &:focus{
    transform: rotate(2deg) translateY(-3px);
    filter: drop-shadow(3px 3px 13px var(--accent));
  }
}
.button-2{
  cursor: pointer;
  background-color: var(--dark-bg);
  color: var(--white);
  transition: var(--transition);
  display: inline-block;
  padding: 17px 22px;
  border: 2px solid var(--white);
  outline: none;

  &:hover,
  &:focus{
    box-shadow: 3px 3px 20px inset var(--accent), -3px -3px 20px inset var(--accent);
    border: 2px solid var(--accent);
  }
}

.button-3 {
  font-size: 16px;
  position: relative;
  margin: auto;
  padding: 1em 2.5em 1em 2.5em;
  border: none;
  background: #fff;
  transition: all 0.1s linear;
  box-shadow: 0 0.4em 1em rgba(0, 0, 0, 0.1);
  border-radius: 2em;
  display: inline-block;
}

.button-3 span {
  color: #464646;
}

.button-3 .border {
  position: absolute;
  border: 0.15em solid #fff;
  transition: all 0.3s 0.08s linear;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  border-radius: 2em;
}

.button-3:hover .border {
  display: block;
  width: 108%;
  height: 116%;
}

.button-4 {
  padding: 20px 25px;
  border: 2px solid #2c2c2c;
  background-color: #1a1a1a;
  color: #ffffff;
  font-size: 1.2rem;
  cursor: pointer;
  border-radius: 25px;
  transition: all 0.4s ease;
  outline: none;
  position: relative;
  overflow: hidden;
  font-weight: 900;
  display: inline-block;
}

.button-4::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.25) 0%,
    rgba(255, 255, 255, 0) 70%
  );
  transform: scale(0);
  transition: transform 0.4s ease;
}

.button-4:hover::after {
  transform: scale(4);
}

.button-4:hover {
  border-color: #666666;
  background: #292929;
}

.button-5 {
  text-decoration: none;
  display: inline-block;
  padding: 15px 30px;
  margin: 15px 22px;
  border-radius: 25px;
  background-image: linear-gradient(45deg, #3c5a5b 0%, #33d9de 50%, #002878 100%);
  background-position: 100% 0;
  background-size: 200% 200%;
  color: white;
  box-shadow: 0 16px 32px 0 rgba(0, 40, 120, .35);
  transition: .4s;
  border: none;
  outline: none;
}

.button-5:hover {
  box-shadow: 0 0 0 0 rgba(0, 40, 120, 0);
  background-position: 0 0;
}

.footer-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center; 
  align-items: center;
  gap: 20px;
  padding: 20px;
}

.footer-logos a img {
  height: 50px;
  width: 100%;
  object-fit: contain;
  display: block;
}

