@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

.custom-container {
  width: 100%;
  padding: 0 10px;
}
@media (min-width: 640px) {

  .custom-container {
    max-width: 640px;
    padding: 0 10px;
  }
}
@media (min-width: 768px) {

  .custom-container {
    max-width: 768px;
    padding: 0 20px;
  }
}
@media (min-width: 1024px) {

  .custom-container {
    max-width: 1024px;
    padding: 0 20px;
  }
}
@media (min-width: 1280px) {

  .custom-container {
    max-width: 1280px;
    padding: 0 20px;
  }
}
@media (min-width: 1536px) {

  .custom-container {
    max-width: 1200px;
  }
}
@media (min-width: 1720px) {

  .custom-container {
    max-width: 1536px;
  }
}

body{
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  line-height: 23px;
  background: #ffffff;
  color: #333333;
}

.button_anime:before{
  background-image: linear-gradient(to right, rgba(255,255,255,0.3), rgba(255,255,255,0.6));
  content: "";
  height: 155px;
  left: -55px;
  opacity: 1;
  position: absolute;
  top: -50px;
  transform: rotate(35deg);
  transition: all 550ms cubic-bezier(0.19, 1, 0.22, 1);
  width: 40px;
  z-index: 10;
  animation: myfirst infinite;
  animation-duration: 4s;  
  animation-delay: 5s;
  animation-fill-mode: both;
}
.button_anime1:before{
  animation: myfirst1 infinite ;
  animation-duration: 6s;  
  animation-delay: 5s;
  animation-fill-mode: both;
}

@keyframes myfirst {
  0%   {left: -55px}
  40% {left: 265px}
  100% {left: 265px}
}
@keyframes myfirst1 {
  0%   {left: -55px}
  40% {left: 500px;}
  100% {left: 500px}
}
@media (min-width: 1280px){
  .dropdown-menu{
    opacity: 0;
    visibility: hidden;
    top: 0;
    
  }
  .dropdown-menu{
    top: 0;
    z-index: -100;
    background: #fff;
  }
  .dropdown:hover .dropdown-menu{
    opacity: 1;
    visibility: visible;
    top:100%;
    z-index: 100;
    -webkit-transition: all .5s;
    transition: all .5s; 
  }
}

  .dropdown-menu2{
    opacity: 0;
    visibility: hidden;
    top: 0;
    
  }
  .dropdown-menu2{
    top: 0;
    z-index: -100;
    background: #fff;
  }
  .dropdown2:hover .dropdown-menu2{
    opacity: 1;
    visibility: visible;
    top:100%;
    z-index: 100;
    -webkit-transition: all .5s;
    transition: all .5s; 
  }


.layer_type_falshpol{
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.type_flash:hover .layer_type_falshpol{
  opacity: 1;
  visibility: visible;
}