@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;900&display=swap');
*,*:before,*:after{margin: 0; padding: 0;box-sizing: border-box;}
input {outline: none;}
input:-webkit-autofill {
    -webkit-box-shadow: inset 0 0 0 50px #fff !important; /* Р¦РІРµС‚ С„РѕРЅР° */
    -webkit-text-fill-color: #00245F !important; /* С†РІРµС‚ С‚РµРєСЃС‚Р° */
    color: #00245F !important; /* С†РІРµС‚ С‚РµРєСЃС‚Р° */
}
li{list-style: none;}
a, a:hover {
  text-decoration: none;
}
img {
    width: 100%;
    height: auto;
}
button{
  border: 0;
  background-color: transparent;
  cursor: pointer;
}
.btn-link{
  display: inline-block;
  padding: 0 22px;
  line-height: 48px;
  background-color: #414a4f;
  border-radius: 2px;
  font-weight: 500;
  color: #fff;
}
h1{
  font-size: 52px;
  font-weight: 800;  
}
h2{
  font-size: 40px;
  font-weight: 700;  
}
h3{
  font-size: 20px;
  font-weight: 500;
}
.no-scroll{
}
.container{
  max-width: 1200px;
  padding: 0 20px;
  margin: auto;
}
.section .container {
  padding: 40px 20px;
}
.section .desc{
  max-width: 600px;
  margin-top: 10px;
}

html{height: 100%;}
body{
  display: flex;
  flex-direction: column;
  min-height: 100%;
  font-family: 'Roboto', sans-serif;
  font-size: 100%;
}
main{flex: 1 0 auto;}
footer{flex: 0 0 auto;}
/*
Header
*/
header{
  border-bottom: 1px solid hsla(228,9%,89%,.5);
  box-shadow: 0 8px 14px 0 rgba(0,0,0,.04);  
}
.top-header{
  border-bottom: 2px solid rgba(214, 215, 224, 0.20);
  border-radius: 0px 0px 15px 0px;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 20px;
  overflow: hidden;
  border-right: 4px solid rgba(214, 215, 224, 0.20);
}
.top-header a{display: flex; align-items: center; font-size: 14px; font-weight: 500; text-decoration: none; color: #333;}
.top-header svg{width: 20px;height: auto; margin-right: 10px;}
.top-header svg path{stroke: #333;}
.top-header img{width: 20px; height: auto; margin-right: 10px;}
.top-header .btn-link{
  background-color: rgba(214, 215, 224, 0.20);
  padding: 0 24px;
  line-height: 44px;
}
.main-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  background-color: #fff;
  padding: 20px 0;
}

header .logo {
    display: flex;
    align-items: center;
    color: #333;
}
header .logo img{margin-right: 10px;}
.logo img {
  width: 60px;
  height: auto;
}
.logo-inner{}
.logo-inner span{display: block;}
.site-name{font-size: 36px; text-transform: uppercase; font-weight: 700;}
.site-desc{font-size: 14px; color:#4A5B5C;}

.navbar{}

.navbar-menu {display: flex;}
.navbar-item{position: relative;}
.navbar-link {
    display: block;
    padding: 10px 15px;
    color: #333;
    text-decoration: none;
    transition: background-color 0.3s;
    font-size: 16px;
    font-weight: 700;
}

.navbar-link:hover {
    background-color: #f4f4f4;
}
.dropdown-menu{
  display: none;
  position: absolute;
  background-color: #F7F7F9;
  z-index: 30;
}
.dropdown-inner{
  background: #F7F7F9;
  padding: 20px;
  display: flex;
  gap: 20px;
}
.dropdown-toggle::after {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 6px;
  vertical-align: middle;
  content: "";
  border-top: .3em solid;
  border-right: .3em solid transparent;
  border-bottom: 0;
  border-left: .3em solid transparent;
} 

.dropdown-link {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    text-wrap: nowrap;
    padding: 12px 22px;
    color: #333;
}
.dropdown-item:not(:last-child){border-bottom: 1px solid #fff;}
.dropdown-link:hover{color: #0095FF;}
.dropdown-link:hover span{}
.dropdown-icon {
  padding: 4px;
  background-color: #fff;
  border-radius: 10px 0 10px;
}
.dropdown-icon img {
    width: 24px;
    height: 24px;
    vertical-align: middle;
}

.dropdown:hover .dropdown-menu {
    display: block;
}
.dropdown:hover .dropdown-toggle {
    background-color: #f4f4f4;
}
.burger{
  display: none;
  height: 26px;
  width: 32px;
  z-index: 2;
  flex-direction: column;
  justify-content: space-between;
  cursor:pointer;
}
.burger.active{z-index:100;}
.burger.active .line{background-color:#fff;}
.burger .line {
  display: block;
  height: 4px;
  width: 100%;
  border-radius: 10px;
  background: #0e2431;
}

.burger .line1 {
  transform-origin: 0% 0%;
  transition: transform 0.4s ease-in-out;
}

.burger .line2 {
  transition: transform 0.2s ease-in-out;
}

.burger .line3 {
  transform-origin: 0% 100%;
  transition: transform 0.4s ease-in-out;
}
.burger.active .line1 {
  transform: rotate(45deg);
}

.burger.active .line2 {
  transform: scaleY(0);
}

.burger.active .line3 {
  transform: rotate(-45deg);
} 
/*
End Header
*/
/*PAGE*/
.page h1{
  margin-bottom: 25px;  
}
.page .container{}
.page p{
  font-size: 16px;
  line-height: 25px;
  margin-bottom: 25px;  
  text-align: justify;
}
/*BANNER*/
.banner-content{padding: 220px 0;}
.banner-images{
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  color: #fff;  
}
.banner-images::after{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #414a4f;
  opacity: 0.75;
}
.banner-content{
  position: relative;
  z-index: 10;
}
.banner h2{
  font-size: 40px;
}
.banner p{
  margin-top: 40px;
  font-size: 20px;
}
.banner .buttons{margin-top: 60px;display: flex;align-items: center; gap: 20px;}
.banner .btn-link{border-radius: 15px 0 15px 15px;background-color: transparent;border:1px solid #F26424;}
.banner .btn-link:hover{background-color: #F26424;color: #fff;}
.banner .btn-calc{display: flex;align-items: center;color: #fff;}
.banner .btn-calc img{width: 30px;height: auto;margin-right: 8px;}
.banner .slick-dots{bottom: 0;display: flex;justify-content: center;padding-bottom: 20px;}
.banner.slick-dotted.slick-slider{margin-bottom: 0;}
.banner .slick-dots li button:before{
  content: '';
  background-color: #fff;
  border-radius: 30px;
}
.banner .slick-prev{left: 25px;}
.banner .slick-next{right: 25px;}
.banner .slick-prev,
.banner .slick-next{z-index: 10;width: 40px;height: 40px;}
.banner .slick-arrow img{width: 40px;}
.banner .slick-arrow svg {
    fill: #fff;
}
/* Клиенты */
.clients{
  border-bottom: 4px solid #F8F8F8;
}
.clients-top{display: flex; justify-content: space-between; align-items: center;}
.clients h2{
  font-size: 36px;
}
.clients .content{margin-top: 40px;}
.clients-images {
  margin: 40px 0 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border: 4px solid #F8F8F8;
  border-radius: 30px 0 30px 0;
}
.clients img{width: 240px; opacity: .7;}
.clients img:hover{opacity: 1;}
.clients .btn-link {
  border-radius: 15px 15px 0 15px;
}
/* Обслуживаемые отрасли */
.industries{}
.industries h2{
  font-size: 36px;
  font-weight: 400;
  text-align: center;  
}
.industries .content{
  margin: 40px 0 60px;
}
.industries .desc{
  text-align: center;
  margin-top: 20px;
  font-size: 18px;
}
.industries .served{
  display: flex;
  flex-wrap: wrap;
  margin-top: 20px;
}
.industries .images{
  background-size: cover;
  background-position: 50%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transition: transform 0.3s ease;
}
.industries .card{
  position: relative;
  font-size: 0;
  width: 50%;
  height: 300px;
}
.cardlink{
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.cardlink::after{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #414a4f;
  opacity: 0.45;
}
.cardlink:hover .images {
  transform: scale(1.05);
}
.cardbody{
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 60px;
  color: #fff;
  z-index: 5;
}
.cardbody_t{font-size: 48px;}
.cardbody_d{font-size: 18px;}
/*NEWS*/
.news{
  background-color: #F8F8F8;
  border-top: 1px solid #e5e5e5;
  padding: 40px 0;
}
.news h2{
  font-size: 40px;
  line-height: 50px;
  font-weight: 700;
}
.news .title{
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.news .desc{
  margin-top: 20px;
  margin-bottom: 55px;
  max-width: 800px;
}
.news .wrap{
  display: flex;
  gap: 20px; /* Отступ между .card */  
}
.news .card{
  flex: 1; /* Равномерное распределение пространства между .card */
}
  /* Убираем отступы у первого и последнего элементов .card */
.news .card:first-child {
    margin-left: 0;
}

.news .card:last-child {
    margin-right: 0;
}
.news .card_link{
  display: block;
}
.news .card_images{
}
.news .card_body{
  margin-top: 20px;
}
.news .card_data{
  color: #999;
}
.news .card_title{
  color: #000;
  font-weight: 700;
  margin-top: 6px;
}
footer{
  background-color: #333333;
  padding: 64px 0;
}
.footer-wrap{
  display: flex;
  justify-content: space-between;
  margin-bottom: 70px;
  margin-top: 20px;
}
footer .footer-menu h3{
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 40px;
  text-transform: uppercase;  
}
footer .footer-menu a{
  color: #999;
  display: block;
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 14px;  
}
footer .footer-menu a:hover{color: #fff;}
footer .footer-info{
  color: #fff;
  max-width: 320px;
  width: 100%;
}
footer .copyright{
  color: #fff;
  font-size: 13px;
  font-weight: 400;
  margin-top: 30px;
}
footer .footer_info a{
  color: #fff;
  display: block;
  font-size: 13px;
  font-weight: 400;  
}
footer .logo{
  display: block;
  color:#fff;
}
footer .logo img {
  width:40px;
}
footer .site-name{font-size:26px;}
footer .site-desc{font-size:10px;}
.footer-contacts{
  display: flex;
  flex-direction: column;
  gap: 10px;  
}
.footer-contacts a{display: flex; align-items: center; color: #999;}
.footer-contacts svg{width: 24px;height: auto; margin-right: 10px;}
.footer-contacts svg path{stroke: #999;}
/*FEATURE*/
.feature{background-color: #F8F8F8;}
.feature-top{display: flex; justify-content: space-between;align-items: center;margin-bottom: 20px;}
.feature .desc{max-width: 600px; margin-top: 10px;}
.feature h2{font-size: 36px;}
.feature img{width: 40px;height: auto;margin-right: 10px;}
.feature ul{display: flex; flex-wrap: wrap;margin-left: -10px;margin-right: -10px;}
.feature ul{background-color: #fff; box-shadow: -10px 10px 50px rgba(22,11,21,.05);border-radius: 30px 0 30px 0;padding: 20px;}
.feature li{display: flex; align-items: flex-start; flex: 1 1 calc(33% - 2px);padding: 10px;}
.feature .text{margin-top: 8px;font-size: 14px;}
.feature .btn-link{border-radius: 15px 15px 0 15px;}
.section2{
  background-color: #F8F8F8;
  border-bottom: 1px solid #e5e5e5;
}
.section2 img{width: auto;}
.section2 .wrap{display: flex; gap: 20px; padding: 20px 0;}
.s2{flex: 1; display: flex; align-items: flex-start;}
.s2 .b{padding: 0 10px;}



/*MODAL*/
.modal {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0,0,0);
  background-color: rgba(0,0,0,0.7);
}
.modal h2{font-size: 24px;}
.modal .desc{
  margin: 15px 0 20px;
  font-size: 14px;
  color: #4f5f86;
  line-height: 20px;  
}
.modal-content {
  background-color: #fefefe;
  margin: 10% auto;
  padding: 40px;
  max-width: 400px;
}
.modal-close {
  float: right;
  font-size: 28px;
  font-weight: bold;
}
.modal-close:hover,
.modal-close:focus {
  color: #ef3f23;
  text-decoration: none;
  cursor: pointer;
}
.modal button{
  padding: 0 22px;
  margin-top: 20px;
  line-height: 42px;
  background-color: #414a4f;
  border-radius: 2px;
  font-weight: 700;
  color: #fff;  
}
.bid-modal input{margin: 2px 0;}
.modal .form-wrap{
  margin-top:16px;
}

/*END MODAL*/
/*FORM*/
.form .field-group { margin-bottom: 15px; }
.form label { display: block; margin-bottom: 6px; font-weight: 500; }
.form input:focus{outline: #00245F;border-color: #00245F;}
.form textarea:focus{outline: #00245F;border-color: #00245F;}
.form input[type="text"],
.form input[type="number"],
.form input[type="phone"],
.form input[type="email"] { width: 100%; padding: 16px 18px; border: 3px solid #dfe2ea; border-radius: 2px;}
.form textarea { width: 100%; height: 200px; padding: 16px 18px; border: 3px solid #dfe2ea; border-radius: 2px;}
.form input:focus{outline: #00245F;border-color: #00245F;}
.form textarea:focus{outline: #00245F;border-color: #00245F;}
.form input.error {border:3px solid #ef3f23;}
.form .field-error {color: #ef3f23; font-size: 12px; margin-top: 2px; margin-bottom: 6px;}
.form .message {display: none; align-items: center; margin-bottom: 20px;font-size: 20px;font-weight: 500;}
.form .message.success {color: #008000; font-size: 14px;}
.form .message.error {color: #ef3f23; font-size: 14px;}
.form .message.success::before{
  content:'';  
  background-image: url(ok.svg);
  background-size: 30px 30px;
  width: 30px;
  height: 30px;
  display: block;
  padding-right: 30px;
  margin-right: 8px;
}
.form .message.error::before{
  content:'';  
  background-image: url(error.svg);
  background-size: 30px 30px;
  width: 30px;
  height: 30px;
  display: block;
  padding-right: 30px;
  margin-right: 8px;
}
.form .field-group.consent{display: flex; align-items: center;margin-top: 25px;}
.form .field-group.consent label{margin-bottom: 0; font-size: 14px; font-weight: normal;}
.form input[type="checkbox"]{width: 20px; height: 20px; margin-right: 10px;}
.form .btn {padding: 0 22px; background-color: #333; color: #fff; line-height: 48px;border-radius: 15px 0 15px 15px;}
.form .btn.disabled {

  background-color: #4f5f86;
  border-color: #4f5f86;
  color: #fff;
  cursor: not-allowed;
}
/* Стили для контейнера чекбокса */
.checkbox.privacy{
  position: relative;
  margin: 12px 0;
}

/* Скрываем стандартный чекбокс */
.checkbox input {
  display: none;
}

/* Создаем кастомный чекбокс */
.checkbox .checkmark {
  display: flex;
  align-items: center;
  font-size: 14px;
  font-weight: normal;
}

/* При наведении изменяем цвет */
.checkbox:hover input ~ .checkmark {
}

/* Когда чекбокс выбран, изменяем цвет */
.checkbox input:checked ~ .checkmark {
}

/* Стиль для "галочки" */
.checkbox .checkmark:before {
  content: "";
  display: inline-flex;
  width: 20px;
  height: 20px;
  border: 1px solid #dfe2ea;
  background-color: #fff;
  margin-right: 10px;
  background-position: 50% 30%;
  background-repeat: no-repeat;
  background-size: 100%;   
}

/* Показываем "галочку" когда чекбокс выбран */
.checkbox input:checked ~ .checkmark:before {
  background-image: url(active_checkbox.svg);
  border: 1px solid #005CC8;
}
/*END FORM*/
/*FAQ*/
.faq {
}
.faq-row{display: flex; flex-wrap: wrap; margin: 0 -20px;}
.faq-colum{flex: 0 0 50%; padding: 0 20px;}
.faq-title {
  font-size: 2.5em;
  margin-bottom: 40px;
  color: #333;
}

.faq-item {
  margin-bottom: 15px;
  border: 1px solid #ddd;
  border-radius: 30px 0 30px 0;
  overflow: hidden;
  background-color: #f9f9f9;
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 20px;
  background-color: #fff;
  border: none;
  outline: none;
  font-size: 1.2em;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background-color 0.3s ease;
  color: #333;
  font-weight: bold;
}

.faq-question:hover {
  background-color: #f1f1f1;
}

.faq-icon {
  width: 40px;
  margin-right: 10px;
}

.toggle-icon {
  font-size: 1.2em;
  transition: transform 0.3s ease;
  margin-left: auto;
}

.faq-answer {
  display: none;
  padding: 20px;
  background-color: #ffffff;
  border-top: 1px solid #ddd;
  font-size: 1em;
  line-height: 1.6;
  color: #666;
}

.faq-answer p {
  margin: 0 0 10px;
}

.faq-question.active .toggle-icon {
  transform: rotate(45deg);
  color: #007BFF;
}
.faq .btn-link{border-radius: 15px 0 15px 15px; margin-top: 24px;}
/*END FAQ*/
/*TABS*/
.tabs {
  margin-top: 45px;
}
.tab-links {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: none;
}
.tab-links div {
  position:relative;
    padding: 10px 0;
    cursor: pointer;
}
.tab-links div:not(:last-child){margin-right: 20px;}
.tab-links div:after{
  content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -2px;
    border-bottom: 2px solid transparent;
    -webkit-transition: border-bottom-color .1s ease-out;
    transition: border-bottom-color .1s ease-out;
}
.tab-links div:hover:after{
    border-bottom: 2px solid #aaa;
} 
.tab-links div.active:after{
    border-bottom: 2px solid #ef3f23;
}   
.tab-links div a {
    text-decoration: none;
    color: #333;
}
.tab-links div.active a {
    font-weight: bold;
    color: #007bff;
}
.tab-wrap {
  margin-top: 30px;
}
.tab-wrap .tab {
    display: none;
}
.tab-wrap .tab.active {
    display: block;
}
.tab-row{display: flex;flex-wrap: wrap;} 
.tab-colum{flex: 0 0 50%;max-width: 50%;}
.tab-maps{width: 100%; height: auto;}
.tab-content{padding: 0 40px;}
.tab-content h2{font-weight: 700;font-size: 20px;text-transform: uppercase;}
.tab-content p{padding-top: 25px; line-height: 25px; font-size: 15px;}
.tab-text{position: relative; padding-left: 100px;margin-top: 25px;}
.tab-text img{position: absolute;width: 60px;height: auto; left: 0;}
/*END TABS*/
/*FEEDBACK
**CONTACT-FORM*/
.contact-form .form-row{display: flex; flex-wrap: wrap; margin: 0 -10px;}
.contact-form .form-group{flex: 0 0 50%; padding: 0 10px;}
.feedback{background-color: #F8F8F8;}
.feedback{
    position: relative;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 50% 50%;  
}
.feedback::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #333333;
    opacity: 0.75;
}
.feedback .container{
    position: relative;
    z-index: 1;
}
.feedback h2{color:#fff;}
.feedback .btn{}

.contact-form{
  background-color: #F8F8F8;
  border: 1px solid #f5f5f5;
  border-radius:30px 0 30px 0;
  padding: 40px;
  margin-top: 40px;  
}
.form .required-info{
  padding: 0 15px;
  color: #aaa;
  margin: 15px 0 30px;
  font-size: 15px;  
}

.notification {
    display: none;
    padding: 10px;
    margin: 10px 0;
}

.notification.success {
    background-color: green;
    color: white;
}

.notification.error {
    background-color: red;
    color: white;
}

.notification.info {
    background-color: black;
    color: white;
}
@media (max-width: 868px) {
  .top-header .whatsapp{margin-right:0 !important;}
  .top-header .whatsapp span{display: none;}
  .section .btn-link{display:none;}
  .banner-content {
    padding: 80px 0;
  }
  .feature li {
    flex: 0 0 50%;
    max-width:50%;
  }
  .tab-row {
    flex-direction: column;
  }  
  .tab-colum{
    flex: 0 0 100%;
    max-width: 100%;  
  }
}
@media (max-width: 768px) {
.contact-form .form-row{flex-direction: column;}  
  .footer-menu {
      border: 2px solid #fff;
      padding: 10px;
      border-radius: 30px 0 30px;
      margin: 34px 0;
  } 
  .footer-wrap {
      flex-direction: column;
      align-items: center;
  }
  .footer-contacts {
    flex-direction: row;
  }
  footer .footer-info {
      max-width: none;
      width: auto;
  } 
  footer .copyright {
      max-width: 320px;
  }  
  .feature li {
      flex: 0 0 100%;
      max-width:100%;
  }   
  .banner-content {
    padding: 60px 0;
  }
.faq-colum {flex: 0 0 100%;}
.faq-colum:nth-child(2){margin-top: 20px;}
.faq-title{margin-bottom:20px;}
.top-header .email span{display: none;}
.top-header .phone span{display: none;}
.burger{display:flex;}
  .navbar-menu {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: black;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;    
    z-index: 100;
  }
  .navbar-menu.active {opacity: 1;visibility: visible;}
  .navbar-menu a{
    color: white;
    font-size: 2em;
    text-decoration: none;
    margin: 1em 0;
  } 
  .navbar-link:hover {
    background-color: transparent;
    color: #ccc;
  }
}

.page ul {
    padding:0;
    margin: 20px 0;
    list-style: none;
    counter-reset: li;
}
.page ol {
    padding:0;
    margin: 20px 0;
    list-style: none;
    counter-reset: li;
}
.page li {
    position: relative;
    padding:12px 20px 20px 28px;
    margin-left: 40px;
    transition-duration: 0.3s;
}
.page li:before {
    border: 6px solid transparent;
    line-height: 32px;
    position: absolute;
    top: 0;
    left:-30px;
    width:42px;
    text-align:center;
    font-size: 13px;
    font-weight: bold;
    color: #77AEDB;
    counter-increment: li;
    content: counter(li);
    transition-duration: 0.3s;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;    
    }
.page li:hover:before {
    color: #337AB7;    
}
.page li:after {
    position: absolute;
    top: 0;
    left: -30px;
    width: 42px;
    height: 42px;
    border: 6px solid #3399FF;
    border-radius: 50%;
    content: '';
    opacity: 0.5;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;    
}
.page li:hover:after {
    animation: 500ms ease-in-out 0s bounceIn;
    opacity: 1;
}    
 
@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale3d(.3, .3, .3);
    }
    20% {
        transform: scale3d(1.3, 1.3, 1.3);
    }
    40% {
        transform: scale3d(.9, .9, .9);
    }
    60% {
        opacity: 1;
        transform: scale3d(1.03, 1.03, 1.03);
    }
    80% {
        transform: scale3d(.97, .97, .97);
    }
    to {
        opacity: 1;
        transform: scale3d(1, 1, 1);
    }
}

.tab-colum:nth-child(1){order: 2;}
.tab-colum:nth-child(2){order: 1;}