
/* ie10+ fix */
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
    header .logo, header .lang-switcher{display: table-cell}

    .main-slider .slide{display: table}
    .main-slider .slide .slide-text{
        display: table-cell;
    }
    .main-slider .slide .slide-text p{
        font-size: 52px;
    }
    .member-slider .slide.active{display: table !important; }
    .member-slider .slide-text{
        display: table-cell;vertical-align: middle;
    }
    .member-slider .slide-person{
        display: table-cell;vertical-align: middle;
    }

    .advantages-grid .item{display: table-cell}

    .menu-top-panel{display: table;width: 100%}
    .menu-top-panel p,
    .menu-top-panel svg{display: table-cell}
    .menu-panel svg.logo-svg{margin-bottom: 0 !important;}

    /*fix tab links pointer-events - none*/

    .services li>a:after{
        content: ' ';
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        z-index: 250;
        background-color: grey; /* must have a color on ie10, if not :after does not exist... */
        opacity: 0;
    }
    .services li>a{display: table;vertical-align: middle}
    .services li>a>span{display: table-cell;vertical-align: middle}
}
*{box-sizing: border-box}
/* css grid */
.clear{overflow: hidden;clear: both}
.margin0{margin: 0}
.row, .flex{
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;

}
.flex.center, .row.center{
justify-content: center;
-webkit-justify-content: center;
-webkit-box-pack:center;
}
.flex.middle, .row.middle{
align-items: center;
-webkit-box-align:start;
}
.center, .text-center{text-align: center;}
.space-around{justify-content: space-around}
.space-between{justify-content: space-between}
.row.column, .flex.column{
    flex-direction: column;
    -webkit-flex-direction: column;
    -webkit-box-orient:vertical;
}
.col-1{
    flex:0 8.33%;
    -ms-flex:0 8.33%;
    max-width: 8%;
}
.col-2{
    flex:0 16.6%;
    -ms-flex:0 16.6%;
    max-width: 16.6%;
}
.col-3{
    flex:0 25%;
    -ms-flex:0 25%;
    max-width: 25%;
}
.col-4{
    flex: 33.33%;
    -ms-flex:0 33.33%;
    max-width: 33%;
    flex-grow: 1;
    flex-basis: initial;
}
.col-5{
    flex:0 41.66%;
    -ms-flex:0 41.66%;
    max-width: 41.66%
}
.col-6{
    flex:0 50%;
    -ms-flex:0 50%;
}
.col-7{
    flex:0 58.33%;
    -ms-flex:0 58.33%;
    max-width: 58.33%
}
.col-8{
    flex:0 66.66%;
    -ms-flex:0 66.66%;
    max-width: 66.66%;
}
.col-9{
    flex:0 75%;
    -ms-flex:0 75%;
    max-width:75%;
}
.col-10{
    flex:0 83.33%;
    -ms-flex:0 83.33%;
   max-width: 83.33%;
}
.col-11{
    flex:0 91.66%;
    -ms-flex: 0 91.66%;
    max-width: 91.66%;
}
.col-12{
    flex:1;
    max-width: 100%;
}

.hidden{display:none;}

.relative{position: relative;}

.container{
    max-width: 1378px;
    margin:0 auto;
    width: 85%;
}


/* responsive rules */
@media(min-width:1200px){
    .hidden-lg{display: none;}
    
}
@media(min-width:992px){
    .hidden-md{display: none;}
    .row-md, .flex-md{display: flex;}

}
@media(min-width:768px) and (max-width:991px){
    .hidden-sm{display: none;}
    .column-sm{flex-direction: column;}
    .center-sm{text-align: center;}

    .col-1-sm{
        flex:0 8.33%;
        -ms-flex:0 8.33%;
        max-width: 8%;
    }
    .col-2-sm{
        flex:0 16.6%;
        -ms-flex:0 16.6%;
        max-width: 16.6%;
    }
    .col-3-sm{
        flex:0 25%;
        -ms-flex:0 25%;
        max-width: 25%;
    }
    .col-4-sm{
        flex:0 33.33%;
        -ms-flex:0 33.33%;
        max-width: 33.33%;
    }
    .col-5-sm{
        flex:0 41.66%;
        -ms-flex:0 41.66%;
        max-width: 41.66%
    }
    .col-6-sm{
        flex:0 50%;
        -ms-flex:0 50%;
        max-width: 50%;
      
    }
    .col-7-sm{
        flex:0 58.33%;
        -ms-flex:0 58.33%;
        max-width: 58.33%
    }
    .col-8-sm{
        flex:0 66.66%;
        -ms-flex:0 66.66%;
        max-width: 66.66%
    }
    .col-9-sm{
        flex:0 75%;
        -ms-flex:0 75%;
        max-width:75%;
    }
    .col-10-sm{
        flex:0 83.33%;
        -ms-flex:0 83.33%;
       max-width: 83.33%;
    }
    .col-11-sm{
        flex:0 91.66%;
        -ms-flex: 0 91.66%;
        max-width: 91.66%;
    }
    .col-12-sm{
        flex:1;
        -ms-flex:1;
        max-width: 100%;
    }

}

@media(max-width:767px){
    .hidden-xs{display: none;}
    .column-xs{flex-direction: column;}
    .center-xs{text-align: center;}
    .left-xs{text-align: left;}

    .col-1-xs{
        flex:0 8.33%;
        -ms-flex:0 8.33%;
        max-width: 8%;
    }
    .col-2-xs{
        flex:0 16.6%;
        -ms-flex:0 16.6%;
        max-width: 16.6%;
    }
    .col-3-xs{
        flex:0 25%;
        -ms-flex:0 25%;
        max-width: 25%;
    }
    .col-4-xs{
        flex:0 33.33%;
        -ms-flex:0 33.33%;
        max-width: 33.33%;
    }
    .col-5-xs{
        flex:0 41.66%;
        -ms-flex:0 41.66%;
        max-width: 41.66%
    }
    .col-6-xs{
        flex:0 50%;
        -ms-flex:0 50%;
        max-width: 50%;
    }
    .col-7-xs{
        flex:0 58.33%;
        -ms-flex:0 58.33%;
        max-width: 58.33%;
    }
    .col-8-xs{
        flex:0 66.66%;
        -ms-flex:0 66.66%;
        max-width: 66.66%;
    }
    .col-9-xs{
        flex:0 75%;
        -ms-flex:0 75%;
        max-width:75%;
    }
    .col-10-xs{
        flex:0 83.33%;
        -ms-flex:0 83.33%;
       max-width: 83.33%;
    }
    .col-11-xs{
        flex:0 91.66%;
        -ms-flex: 0 91.66%;
        max-width: 91.66%;
    }
    .col-12-xs{
        flex:1;
        -ms-flex:1;
        max-width: 100%;
    }
}


/* ie10+ fix */
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
    .hidden-md{display: none !important;} 
    .row, .flex{
        display: table;
        width: 100%;
    }
    .flex.center, .row.center{
        text-align: center;
        vertical-align: middle;
    }
    
    .center{text-align: center;}
    .row.column, .flex.column{flex-direction: column}
    .col-1{
        width:8%;
        float: left;
    }
    .col-2{
        width: 16.6%;
        float: left;
    }
    .col-3{
        width: 25%;
        float: left;
    }
    .col-4{
        float: left;
        width: 33%;
    }
    .col-5{
        float: left;
        width:41.66%;
    }
    .col-6{
        float: left;
        width:50%;
    }
    .col-7{
        width: 58.33%;
        float:left;
    }
    .col-8{
        width: 66.66%;
        float: left;
    }
    .col-9{
        float: left;
        width:75%;
    }
    .col-10{
        float: left;
        width: 83.33%;
    }
    .col-11{
        display: block;
        width: 91.66%;
        float:left;
    }
    .col-12{
        display: block;
        width: 100%;
    }


}

/*
font-family: 'Oswald', sans-serif;
font-family: 'Arimo', sans-serif;
font-family: 'Vollkorn', serif;
*/
.loader{
    opacity: 1;
    position: fixed;
    width: 100%;height: 100%;
    left:0;
    z-index: 999;
    background: url('/src/img/owl-black.svg') 45% -12% no-repeat,
    url('/src/img/pattern-lines-white.png') 42% 144% repeat-x, #313234;
    transition: background 30s linear 0s, opacity 0.4s ease-out 0s, z-index 0.6s ease-out 0s;
}
.loader.in-progress{
    background-position:  45% -12%, 900% 144%;
}
.loader.done{
    z-index: -999;
    opacity: 0;
}
.loader svg{
    position: absolute;
    top:8%;left: 10%;
    margin-left: -82px;
    margin-top:-28px
}
img{max-width: 100%;outline: none;border:none}
h1,h2,h3,h4,h5, p{margin: 0}
p{margin-bottom: 2.8vh}
h2, .h2, h3, .h3{
    font:500 5.7vmin/1.3 'Oswald';
    text-transform: uppercase;
    margin-bottom: 35px;
}
h4, .h4 {
    font: 600 32px  'Vollkorn', sans-serif;
    margin-bottom: 28px;
}
h5, .h5 {
    font:500 16px 'Oswald', sans-serif;
    margin-bottom: 21px;
}
.text-violet{color:#482788}
.text-uppercase{text-transform: uppercase}
a, a:focus, a:visited, a:hover{text-decoration: none}
button.a{
    background: none;
    box-shadow:none;
    border:none;
    cursor:pointer;
}
ul.list-unstyled{padding: 0;margin: 0;list-style-type: none}
ul.list-inline li{display: inline-block}
ol.numeric{
    counter-reset: section;
    list-style-type: none;
    padding-left: 25px;
}
ol.numeric li{
    position: relative;
    margin-bottom: 30px;
}
ol.numeric li:before{
    font:500 24px/1.2 'Oswald', sans-serif;
    counter-increment: section;
    content: counter(section) ".";
    position: absolute;
    left: -25px;top:0
}
.marker-list{
    list-style-type: none;
    margin: 0;
    padding: 0 0 0 35px;
    vertical-align: top;
}
.marker-list li{
    color:#313234;
    position: relative;
    padding: 5px 0;
    margin: 8px 0;
}
.marker-list li:before{
    content: '';
    display: block;
    position: absolute;
    left: -33px;top:50%;
    margin-top: -4px;
    width: 14px;height: 8px;
    background: #482788;
    border-left:6px solid rgba(230, 228, 233, 0.81);
    pointer-events: none;
}


.font-48, h2.font-48, h3.font-48{font-size: 5.2vmin;}
.font-16{font-size: 16px;}
.line-height-24{line-height: 24px}

input[type="text"], textarea{
    padding: 15px 8px;
    outline: 0;
    border-radius: 0;
    box-shadow: none;
    background: #fff;
    border:1px solid #ddd;
    width: 100%;
    max-width: 200px;
    font: 18px 'Oswald', sans-serif;
    color: #000;
}
input[type="text"]:focus, textarea:focus{
    border:1px solid #482788;

}
body{
    padding: 0;
    margin: 0;
      font-family: 'Vollkorn', serif;
    font-size: 24px;
}
.btn{
    border:0;outline: 0;
    padding: 15px 31px;
    text-align: center;
    text-transform: uppercase;
    font: 16px 'Oswald', sans-serif;
    cursor: pointer;
    letter-spacing: 0.9px;

}
.btn.btn-white{
    color:#313234;
    background: #fff;
}
.btn.btn-violet{
    color:#fff;
    background: rgba(76, 34, 134, 0.8);
    position: relative;
    z-index: 1;
    left: 79px;
    padding: 15px 44px;
    transition: padding-left 0.2s ease 0.1s, padding-right 0.2s ease 0.1s;
}
.btn.btn-violet:before{
    content: '';
    position: absolute;
    left: -46px;top:0;bottom: 0;
    width: 0;
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#d2cbe0+40,d2cbe0+40,8d79b4+40,8d79b4+40,634799+100 */
    /*background: rgba(81, 34, 134, 0.5);*/
    border-left: 15px solid  rgba(76, 34, 134, 0.4);
    border-right: 31px solid rgba(76, 34, 134, 0.6);

    box-shadow:-31px 0 rgba(76, 34, 134, 0.2)
}
.btn.btn-violet:after{
    content: '';
    position: absolute;
    right: -24px;top:0;bottom: 0;
    width: 0;
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#d2cbe0+40,d2cbe0+40,8d79b4+40,8d79b4+40,634799+100 */
    /*background: #7a5b9ecf;*/

     border-left: 8px solid rgba(76, 34, 134, 0.7);
    border-right: 16px solid rgba(76, 34, 134, 0.5);
    box-shadow:23px 0 rgba(76, 34, 134, 0.4)

}

.btn.btn-violet:before, .btn.btn-violet:after{
    transition: left 0.2s ease 0.1s, right 0.2s ease 0.1s, opacity 0.2s ease 0.0s;

    pointer-events: none;
}
.btn.btn-violet:hover:before,
.btn.btn-violet:focus:before
{
    z-index: 0; left: 0;opacity: 0;
}
.btn.btn-violet:hover:after,
.btn.btn-violet:focus:after
{z-index: 0; right: 0;opacity: 0;}
.btn.btn-violet:hover,
.btn.btn-violet:focus
{padding-left: 29px;    }
.btn.btn-violet.btn-violet-left{    right:0;  }
.btn.btn-violet.btn-violet-left:after{  display: none;  }


.btn.btn-violet.btn-violet-right{    right:0;  }

.btn.btn-violet.btn-violet-right:before{  display: none;  }

/*.btn.btn-violet:before, .btn.btn-violet:after{pointer-events: none}!*fix infinite animation*!*/

/*HEADER*/
header{
    background: #313234 url("/src/img/header/header-1.jpg") 100% 0;
    transition: background 0.4s ease 0.2s;
}
header.slide-2{ background: #313234 url("/src/img/header/header-2.jpg") 100% 0;}
header.slide-3{ background: #313234 url("/src/img/header/header-3.jpg") 100% 0;}
header.slide-4{ background: #313234 url("/src/img/header/header-4.jpg") 100% 0;}
header.slide-5{ background: #313234 url("/src/img/header/header-5.jpg") 100% 0;}
header.slide-6{ background: #313234 url("/src/img/header/header-6.jpg") 100% 0;}
header.slide-7{ background: #313234 url("/src/img/header/header-7.jpg") 100% 0;}
header a{color:#fff;}



.fixed-panel{
    position: fixed;z-index: 100;
    top:35px;
    left: 0;
    transition: top 0.2s ease 0s;
}
.fixed-panel.active{
    top:1px;
}
.fixed-panel button img{pointer-events: none}
.menu-btn{
    padding: 15px 2vw 15px 5vw;
    background:#fff url("/src/img/menu.svg") no-repeat 2vw 50%;
    background-size: 20%;
}
.fixed-panel ul li{
    display: inline-block;
}
.fixed-panel .btn-what-happened-li{  visibility: hidden;  }
.fixed-panel.active .btn-what-happened-li{  visibility: visible;  }
.fixed-panel .btn-what-happened-li .btn.btn-violet{left: 0}

.top-panel{
    position: absolute;
    z-index: 2;
    top:35px;
    left:0;
    right: 0;
}

.logo svg{vertical-align: middle}
.logo .site-title{
    color: rgba(255, 255, 255, 0.5);
    font:14px 'Vollkorn', serif;
    text-transform: uppercase;
    display: inline-block;
    margin-left: 20px;
    letter-spacing: 1.4px;
}
.logo .site-title:before{
    display: inline-block;
    position: relative;
    margin-right: 20px;
    top:7px;
    content: '';
    height: 24px;
    width: 1px;
    background: #fff;
}

.lang-switcher li a{
    color: rgba(255, 255, 255, 0.5);
    font:14px 'Oswald';
}
.lang-switcher li.active a{
    color:#fff;
}

.floating-panel{
    position: fixed;z-index: 100;
    right: -24vh;
    top: 46%;
    width: 62vh;
    height: 58px;
    /*font:bold 16px/58px 'Arimo';*/
    transform: rotate(-90deg);
    transition: background 0.5s ease 0s, margin-top 0.5s linear 0s;
}
.floating-panel:before{
    opacity: 0;
    content: '';
    position: absolute;
    left: -27px;top:0;bottom: 0;
    width: 0;
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#d2cbe0+40,d2cbe0+40,8d79b4+40,8d79b4+40,634799+100 */
    /*background: rgba(81, 34, 134, 0.5);*/
    border-left: 15px solid  rgba(49, 50, 52, 0.5);
    border-right: 12px solid rgba(49, 50, 52, 0.7);

    box-shadow:-27px 0 rgba(49, 50, 52, 0.3);
    transition: left 0.2s ease 0.1s, right 0.2s ease 0.1s, opacity 0.2s ease 0.0s;

}
.floating-panel:after{
    opacity: 0;
    content: '';
    position: absolute;
    right: -43px;top:0;bottom: 0;
    width: 0;
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#d2cbe0+40,d2cbe0+40,8d79b4+40,8d79b4+40,634799+100 */
    /*background: #7a5b9ecf;*/

    border-left: 31px solid rgba(49, 50, 52, 0.7);
    border-right: 12px solid rgba(49, 50, 52, 0.5);
    box-shadow:26px 0 rgba(49, 50, 52, 0.2);
    transition: left 0.2s ease 0.1s, right 0.2s ease 0.1s, opacity 0.2s ease 0.0s;

}
.floating-panel.black{
    background: rgba(49, 50, 52, 0.8);
}
.floating-panel.black:before,
.floating-panel.black:after{
    opacity: 1;
}
.floating-panel:hover{margin-top: 10px}
.floating-panel.black:hover:before,
.floating-panel.black:hover:after{
    z-index: -1; left: 0;right:0;opacity: 0;

}
.floating-panel ul li{margin: 0 1.2vh;}
.floating-panel ul li a{
    color: #fff;
    padding: 0 2vh;
    font:bold 16px/57px 'Arimo';
    display: block;
}
.floating-panel.black ul li a:hover{
    background: #4d4d4d;
}
@media (min-width:1400px) {
    .floating-panel ul li a { font-size: 16px }
    .floating-panel{top:40%}
}
.floating-panel ul li.li-icon svg{
    transform: rotate(90deg);
    pointer-events: none;
}
.floating-panel ul li.li-icon .viber-svg{position: relative;    top: 5px;}
.floating-panel ul li.li-icon .location-svg{position: relative;    top: 3px;}

/*MAIN SLIDER*/
.main-slider .slide{
    background: url("/src/img/pattern-lines.png") 100% 0;
}
header.slide-2 .main-slider .slide{background-position: 70% 0}
header.slide-3 .main-slider .slide{background-position: 100% 0}
header.slide-4 .main-slider .slide{background-position: 200% 0}
header.slide-5 .main-slider .slide{background-position: -60% 0}
header.slide-6 .main-slider .slide{background-position: -40% 0}
header.slide-7 .main-slider .slide{background-position: 70% 0}
.main-slider .slide .slide-text{
    color:#fff;
    font:bold 10.2vmin/1.2 'Oswald', sans-serif;
    height: 87vh;
    max-height: 1027px;
    text-align: left;
}


.main-slider .swiper-button-prev, .main-slider .swiper-button-next{
    top:auto;
}
.btn.btn-violet.btn-what-happened-slider{
    position: absolute !important;
   bottom: 28vh;
    left: 13vw;
}
/* SECTION - MEMBER SLIDER */
.member-slider{
    z-index: 1;
    position: relative;
    background: #313234;
    color:#fff;
    padding: 1.5vh 0;
    min-height: 13vh;
}
.member-slider .slide{
    display: none;
    animation: fadeEffect 1s;
}

.member-slider .slide.active{
    display: flex;
}

.member-slider .slide-person{padding-left: 16%;position: relative}
.member-slider .slide-person h5{
    font:500 24px 'Oswald', sans-serif;
}
.member-slider .slide-person .person-descr{
    font:14px 'Arimo', sans-serif;
}
.member-slider .slide-text{
    font:20px 'Vollkorn', serif;
    padding-right: 6vw;
}
.member-slider .navigation{
    display: block;
    width: 100%;
    position: relative;
}
.member-slider .button-next,
.member-slider .button-prev{
    font-size: 50px;
    line-height: 50px;
    cursor: pointer;
    opacity: 0.9;
}
.member-slider .button-prev{
    display: none;
    position: absolute;
    left: 15px;top:-6vh;margin-top: -25px;
}
.member-slider .button-next{
    position: absolute;
    right: 2vw;top:-6vh;margin-top: -22px;
}

.member-img {  position: absolute;  left: 0;  bottom: -5vh  }
.member-img{display: block;margin: 0 auto;width: 14vh}

/*SECTION - WORDS OWNER*/

.words-owner, .our-team{
    position: relative;
    z-index: 2;
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#e4e4e4+45,e4e4e4+45,ffffff+45 */
    background: #e4e4e4; /* Old browsers */
    background: -moz-linear-gradient(left,  #e4e4e4 45%, #e4e4e4 45%, #ffffff 45%); /* FF3.6-15 */
    background: -webkit-linear-gradient(left,  #e4e4e4 45%,#e4e4e4 45%,#ffffff 45%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to right,  #e4e4e4 45%,#e4e4e4 45%,#ffffff 45%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e4e4e4', endColorstr='#ffffff',GradientType=1 ); /* IE6-9 */

}
.words-owner .container, .our-team .container{
    padding:8vh 1.5% 5vh 1.5%;
    position: relative;
    background: #fff;
}
.words-owner .h3{margin-bottom: 35px}
.text-over{position: relative;z-index: 2}
.grad-line:before{
    content: '';
    display: block;
    position: absolute;
    left: 0;top: 0;bottom: 0;
    width: 10vw;
    background: #f2f2f2;
}
.grad-line:after{
    content: '';
    display: block;
    position: absolute;z-index: 1;
    left: 10vw;top: 0;bottom: 0;
    width: 10vw;
    background: #f9f9f9;
}

.words-owner .btn-descr{
    font:16px/1.5 'Arimo', sans-serif;
}
.words-owner .btn-what-happened{margin-top: 41px;margin-bottom: 34px}
.our-team h3{margin-bottom: 35px}
@media (min-width:992px){
    .our-team h3:after{
        content: '';
        display: block;
        position: relative;
        top:58px;
        background:#313234;
        width: 126px;
        height: 8px;
    }
}
.our-team-slider .member-details{
    transition: border 0.2s linear 0.1s, padding 0.2s linear 0.1s,margin 0.2s linear 0.1s
}
.our-team-slider .member-details:hover{
    margin-top: -10px;
    /*border-bottom: 4px solid #6f4d9e;*/
    padding-bottom: 10px;
}

.our-team-slider .position{
    color: rgba(49, 50, 52, 0.5);
    letter-spacing: 1.4px;
    font:14px 'Vollkorn', serif;
    text-transform: uppercase;
    transition:  color 0.2s linear 0.1s;
}
.our-team-slider .name{
    color: #313234;
    font:28px 'Oswald', sans-serif;
    text-transform: uppercase;
    margin-top:8px;
}
/*.our-team-slider .member-details:hover .name{color: #4a3c79}*/
.our-team-slider .member-details:hover .position{color:rgba(49, 50, 52, 1)}
.our-team-slider .specialization{font-size: 12px}
.our-team-slider .experience{font-size: 14px;
    margin-bottom: 10px
}
.our-team-slider .slide .photo{
    max-width: 203px;
    margin: 10px auto 0 auto;
}
.our-team-slider .slide .photo img{
    max-width: 100%;display: block;
    -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    -ms-filter: grayscale(100%);
    -o-filter: grayscale(100%);
    filter: grayscale(100%);
    filter: gray; /* IE 6-9 */
    transition: filter 0.3s linear 0.1s;
    cursor: pointer;
}

.our-team-slider .slide:hover .photo img{
    -webkit-filter: none;
    -moz-filter: none;
    -ms-filter: none;
    -o-filter: none;
    filter: none;
}
.our-team-slider .swiper-wrapper{
    align-items: flex-end;
    padding-top: 10px;
    padding-bottom: 40px;
}

@media (min-width:1281px) {
    .our-team-slider .swiper-button-next,
    .our-team-slider .swiper-button-prev, .our-team-slider .swiper-pagination{display: none}
}

/* SECTION - ADVANTAGES */
.advantages{
    padding: 11vh 0;
    color:#fff;
    background: url("/src/img/owl-black.svg") 75% -12% no-repeat,
    url("/src/img/pattern-lines-white.png") 42% 144% no-repeat, #313234;

}
.advantages h3{margin-bottom: 90px;}
.advantages-grid .item{
    flex: 0 20%;
    -ms-flex: 0 20%;
    max-width: 20%;
}
@media(max-width: 1100px){.advantages-grid .item{  flex: 0 33%;  -ms-flex: 0 33%;  max-width: 33%;  }}
@media(max-width: 767px){.advantages-grid .item{  flex: 0 50%;  -ms-flex: 0 50%;  max-width: 50%;  }}
@media(max-width: 420px){.advantages-grid .item{  flex: 0 100%;  -ms-flex: 0 100%;  max-width: 100%;  }}
.advantages-grid .numeric{
    font:bold 5.1vmin 'Arimo', sans-serif;
    margin-bottom: 18px;
}
.advantages-grid .cur{
    font-size: 24px;
    font-weight: normal;
}

.advantages-grid .descr{
    font:16px/1.5 'Arimo', sans-serif;
    margin-top: 16px;
}

/* SECTION - WHAT WE OFFER */

.what-we-offer .tab-content-wrap{
    border-radius: 8.3px;
    box-shadow: 0px 2px 6px 0 rgba(228, 228, 228, 0.75);
    background-color: #ffffff;
    color: #313234;
    font:16px/1.5 'Arimo', sans-serif;
    padding: 4.25vh 3%;
}
.what-we-offer .tab-content{
    display: none;
    animation: fadeEffect 1s;
}
.what-we-offer .tab-content.active{display: block}
.what-we-offer .tab-content h4{margin-bottom: 4vh;}
.what-we-offer .tab-content h5{margin: 10px 0 21px;}
.what-we-offer .tab-content .text-violet,
.what-we-offer .tab-content b
{
    font: 500 16px 'Oswald'
}
.what-we-offer .tab-links{
    padding-left: 5vw;
    overflow: hidden;
}
.what-we-offer .tab-links span{pointer-events: none}

.list-of-articles{
    margin: 4.3vh 0 4vh 0;
    padding-left: 2.7vw;
}
.list-of-articles li{
    display: flex;
    align-items: center;
}
.list-of-articles li b{
    font-size: 24px;
    font-weight: bold;
    color: #313234;
    flex: 0 16.6%;
    -ms-flex: 0 16.6%;
    max-width: 16.6%;
}
.list-of-articles span{
    font-size: 14px;
    font-weight: bold;
    line-height: 1.71;
    color: rgba(49, 50, 52, 0.7);
    flex: 0 83.33%;
    -ms-flex: 0 83.33%;
    max-width: 83.33%;
}
.what-we-offer .services{
    padding: 0;
    margin: 20px 0 0;
    list-style-type: none;
}

.what-we-offer .services li{
    margin: 10px 0;
}
.what-we-offer .services li a{
    position: relative;
    padding: 2.8vh 0;
}
.what-we-offer .services li a .service-title{
    color: #313234;
    font:600 18px/1.22 'Vollkorn', sans-serif;
    text-align: left;
}
.what-we-offer .services .service-ico img{
    -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    -ms-filter: grayscale(100%);
    -o-filter: grayscale(100%);
    filter: grayscale(100%);
    filter: gray;
    transition: filter 0.3s ease-in 0s;
    pointer-events: none;
}

.what-we-offer .services li a:hover .service-ico img,
.what-we-offer .services li a.active .service-ico img
{
    -webkit-filter: none;
    -moz-filter: none;
    -ms-filter: none;
    -o-filter: none;
    filter: none;
}
.what-we-offer .services li a:hover .service-title,
.what-we-offer .services li a.active .service-title
{color: #482788;  }
.what-we-offer .services li a:before{
    content: '';
    position: absolute;
    left: -100px;
    top:0;bottom:0;
    width: 21px;
    background: url("/src/img/check.svg") no-repeat 50% 50%;
    opacity: 0;
    transition: opacity 0.3s ease-out 0s, left 0.3s ease-out 0s;
}
.what-we-offer .services li a:hover:before,
.what-we-offer .services a.active:before
{
    left: -36px;
    opacity: 1;
}

.what-we-offer .btn-what-happened{
    margin-top: 30px;
}

/* SECTION - MAP-WRAP */
.map-wrap, .what-we-offer{
    background: #e4e4e4;
    background: -moz-linear-gradient(left, #ffffff 45%, #ffffff 45%, #e4e4e4 45%);
    background: -webkit-linear-gradient(left, #ffffff 45%, #ffffff 45%, #e4e4e4 45%);
    background: linear-gradient(to right, #ffffff 45%,#ffffff 45%,#e4e4e4 45%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#e4e4e4',GradientType=1 );
}
.map-wrap .container, .what-we-offer .container{
    position: relative;
    background: #fff;
}
.map-wrap .container .text-over, .what-we-offer .container .text-over{
    padding: 11vh 0;
}
.grad-line2:before{
    content: '';
    display: block;
    position: absolute;
    right: 2vw;top: 0;bottom: 0;
    width: 10vw;
    background: #f9f9f9;
}
.grad-line2:after{
    content: '';
    display: block;
    position: absolute;z-index: 1;
    right: -4vw;top: 0;bottom: 0;
    width: 6vw;
    background: #f2f2f2;
}

/*MAP*/
.map-container{
    max-width: 1364px;
    margin: 0 auto;
    position: relative;
}

.main-map-img{
    width: 100%;
    position: relative;
}
.map-container .map-part,.map-container .map-part-main {
    position: absolute;
    z-index: 2;
    cursor: pointer;
    transition: z-index 0.3s ease-in 0s;

}

.map-container .map-part img{
    pointer-events: none;
    width: 100%;
    filter: saturate(0.4) brightness(1.2);
    transition: filter 0.3s ease-in 0s;
}

.map-container .map-part:after, .map-container .map-part-main:after{
    content: '';
    display: block;
    width: 45px;
    height: 63px;
    position: absolute;
    bottom: 50%;
    left: 30%;
    background: url("/src/img/map/marker-color.svg") no-repeat 50% 50%;
    background-size: 100%;
    opacity: 1;
}
@media (max-width:767px) {.map-container .map-part:after, .map-container .map-part-main:after{width: 22px;height: 30px}}
.map-container .map-part-main:after{
    -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    -ms-filter: grayscale(100%);
    -o-filter: grayscale(100%);
    filter: grayscale(100%);
    filter: gray;
    transition: filter 0.3s ease-in 0s;
}
.map-hint, .map-hint-main{
    /*display: none;*/
    opacity: 0;
    position: absolute;
    z-index: 5;
    top:50%;
    left: -15%;right: 0;
    text-align: center;
    color:#482788;
    font: 700 18px 'Arimo', sans-serif;
    /*pointer-events: none;*/
    transition: opacity 0.3s linear 0.2s;
}
.map-container .map-part.khmelnitcka{ left: 22.3%;  top: 21.4%;  width: 9.8%;  }

.map-container .map-part:hover,
.map-container .map-part.active
{opacity: 1;z-index: 5}
.map-container .map-part:hover img,
.map-container .map-part.active img
{filter: none}
.map-container .map-part:hover .map-hint,
.map-container .map-part.active .map-hint
{
    opacity: 1;
}
.map-container .map-part-main .map-hint-main{
    opacity: 1;
    color:#313234;
    top: 60%;
    left: 8%;
}
    /*cities*/

.map-container .map-part-main {
    position: absolute;
    left: 44%;
    width: 5%;
    top: 20%;
    height: 7%;
}
.map-container .map-part.lutck{       left: 8.1%;  top: 4.2%;  width: 13.9%;  }
.map-container .map-part.lviv{        left: 3.1%;  top: 20%;  width: 15.6%;  }
.map-container .map-part.ujgorod{     left: 0;  top: 38%;  width: 14%;  }
.map-container .map-part.chernivcti{  left: 15.5%;  top: 44.5%;  width: 14%;  }
.map-container .map-part.khmelnitcka{ left: 22.3%;  top: 21.4%;  width: 9.8%;  }
.map-container .map-part.vinnitca{    left: 28.5%;  top: 29.5%;  width: 15.2%; }
.map-container .map-part.odessa{      left: 33.9%;  top: 49.5%;  width: 17.3%; }
.map-container .map-part.herson{      left: 51.9%; top: 57.5%;  width: 20.1%;}
.map-container .map-part.harkiv{      left: 70.6%;  top: 23%;  width: 18.1%;}


.cities-list{
    display: inline-block;
}

.cities-list li{
    font: 400 18px 'Amiro', sans-serif;
    cursor: pointer;
}
.cities-list li:before{    transition: left 0.3s linear 0s;  }
.cities-list li:hover:before{
    left: -25px;
}

@media(min-width: 1024px){
    .cities{position:absolute;  bottom:16vh;left: 0;    width: 100%;max-width: 400px}
}

/*LOCATION*/
.location #map{
    height: 68vh;
    width: 100%;
}
#map .map-modal p{
    font-size: 16px;
    margin-bottom: 0;
}




/*FOOTER*/
footer{padding:5vh 0 5.7vh 0}
footer a{ color: #313234;}
footer .address{font:400 20px/28px 'Vollkorn', serif}
footer .fb-link{
    color:#313234;
    font: 14px 'Arimo', sans-serif;
}
footer .fb-link img{
    display: inline-block;
    vertical-align: middle;
    margin-right: 16px;
}
footer a.tel{
    display: block;
    font:bold 32px 'Amrimo', sans-serif;
}
footer a.mail{  font:bold 18px 'Arimo', sans-serif;  }
footer .shedule{  font:18px 'Arimo', sans-serif;}
footer .btn-what-happened{    margin: 2.1vh 0 0;}


/*forms*/
form .message{
    display: none;
    font: 500 16px 'Oswald';
    animation: fadeEffect 1s;
    text-align: center;
}
form .message.error{color:red;display: block;}
form .message.success{color:#482788;display: block;}
form .form-group{margin-bottom: 15px}



@keyframes fadeEffect {
    from {opacity: 0;}
    to {opacity: 1;}
}

@keyframes fadeEffectSlow {
    from {opacity: 0;}
    40% {opacity: 0;}
    to {opacity: 1;}
}


/*menus*/

.menu-panel{
    /*display: none;*/
    opacity: 0;
    position: fixed;
    top:0;bottom: 0;left:-470px;
    background: #fff;
    padding: 8px 25px;
    width: 100%;
    max-width: 470px;
    height: 100px;
    z-index: -1;
    transition: left 0.5s linear 0.1s, height 1s linear 0.6s;
}
.menu-what-happened{
    background:#482788;
}
.menu-panel.active{
    display: block;
    z-index: 500;
    opacity: 1;
    height: 100vh;
    left: 0;

}
.overlay{
    content:'';
    display: block;
    opacity: 0;
    position: fixed;
    left: 0;top:0;right: 0;bottom: 0;
    z-index: -1;
    background-color: #313234;
    transition: opacity 0.3s linear 0.1s;
}
.menu-panel.active+.overlay{
    z-index: 499;
    opacity: 0.8;
}
.menu-panel nav{
    /*display: flex;*/
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    overflow: hidden;
    animation: fadeEffectSlow 3s;

}
.menu-panel.active nav{
    display: flex;
   }
.menu-panel nav ul{
    width: 100%;
    margin-left: 4vw;
}
.menu-panel li{position: relative;}
.menu-panel nav li>a, .menu-panel nav li>.a{
    display: block;
    font:32px 'Oswald', sans-serif;
    text-transform: uppercase;
    color:#99999A;
    padding:2vh 0;
    position: relative;z-index: 1;
}

.menu-what-happened nav li>a{
    font:300 24px 'Oswald', sans-serif;
    color:#fff;
}
.menu-panel nav li .item-descr{
    position: absolute;
    font:18px 'Vollkorn', serif;
    /*margin: 0;*/
    transition: z-index 0.6s ease-in 0.3s, opacity 0.6s ease-in 0.6s, bottom 0.3s ease-in 0.6s;
    opacity: 0;
    z-index: -999;
    margin: 0;
    bottom: 0px;
    left: 0;
}
.menu-panel li .item-descr.active{
    z-index: 2;
    opacity: 1;
    bottom: -12px;
}
.menu-panel nav li>a:hover{
    color:#313234;
}

.menu-what-happened nav li>a:hover,
.menu-what-happened nav li>a.active
{
    color:#fff
}
.menu-what-happened nav li>a:after,
.menu-what-happened nav li>a.active:after{
    content: '';
    position: absolute;
    right: 30px;
    top: 0;
    bottom: 0;
    width: 21px;
    background: url('/src/img/check.svg') no-repeat 50% 50%;
    opacity: 0;
    transition: opacity 0.3s ease-out 0s, left 0.3s ease-out 0s;
    transform: rotate(180deg);
    filter: brightness(100);
}
.menu-what-happened nav li>a:hover:after{opacity: 0.5}
.menu-what-happened nav li>a.active:after{opacity: 1}

.menu-panel li .what-happened{color:#482788 }
.menu-panel svg.logo-svg{margin-bottom: -55px}
.menu-panel .close-btn{position: absolute;
    top:35px;
    right: 20px;
    cursor: pointer;
    width: 24px;height: 24px;
}
.menu-panel .close-btn img{pointer-events: none}
.menu-panel.menu-what-happened .close-btn img{
    -webkit-filter:invert(1);
    -ms-filter: invert(1);
    filter: invert(1);
}

.riband-light:after,
.riband-light:before
{
    content: '';display: block;
    position: absolute;
    height: 0;
    top:0;
    right: 0;
}
.riband-light:before{  transition:right 0.4s linear 1.5s;}
.riband-light:after{  transition:right 0.4s linear 2s;}
.riband-light.riband-fast:before{  transition:right 0.3s linear 0.8s;}
.riband-light.riband-fast:after{  transition:right 0.5s linear 1.3s;}
.riband-light.active:before{
    right: -90px;
    width: 90px;
    background-color: #ffffff;
    opacity: 0.2;
    height: 100%;
}
.riband-light.active:after{
    right: -150px;
    width: 60px;
    background-color: #ffffff;
    opacity: 0.05;
    height: 100%;
}



.riband-light.riband-violet.active:before{
    background-color: #482788;
    opacity: 0.2;
}
.riband-light.riband-violet.active:after{display: none}


.menu-what-happened nav>h4{
    font:400 32px 'Oswald', sans-serif;
    text-align: left;
    color: #fff;
    text-transform: uppercase;
}
.menu-what-happened-item-content .menu-top-panel{
    display: flex;
    justify-content: space-evenly;
    font:400 18px/1.8 'Vollkorn', serif;
    background-color: #e4e4e4;
    padding: 2.5vh 1vw 0;
    height: 12vh;
}
.menu-what-happened-item-content .menu-top-panel a.tel{
    font:700 28px/1.5 'Arimo', sans-serif;
    color: #313234;
}
.menu-what-happened-item-content{
    font:400 16px/1.5 'Vollkorn', serif;
    /* display: none; */
    opacity: 0;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    background: #fff;
    width: 100%;
    max-width: 470px;
    z-index: -1;
    transition: left 0.6s linear 0.1s, z-index 0.5s linear 0.1s,  opacity 0.5s linear 0.1s;
    /*overflow: auto;*/
}



.menu-what-happened-item-content.active{
    opacity: 1;
    left: 470px;
    z-index: 1;
    overflow: hidden;
}
.menu-what-happened-item-content .menu-content{
    background: #fff;
    padding: 4vh 3vw;
    color: #313234;
    display: none;
    animation: fadeEffect 1s;
}
.menu-what-happened-item-content .menu-content a.tel{
    color: #313234;
    font: bold 24px 'Amrimo', sans-serif;
}
.menu-what-happened-item-content .menu-content a{ color: #482788;}
.menu-what-happened-item-content .menu-content.active{
    display: block;
    height: calc(100% - 12vh);
    overflow: auto;
}
.menu-what-happened-item-content h4,
.menu-what-happened-item-content h3
{
    font: 500 28px/1.1 'Oswald';
    color:#313234
}
.menu-what-happened-item-content h5{
    font: 500 22px/1.1 'Oswald';
    color:#313234
}
.menu-what-happened-item-content p{margin-bottom: 10px}
img, svg, iframe{
    max-width: 100%;height: auto;
}
@media (max-width:1700px) {
    .top-panel .container{
        padding-left: 5vw;
    }
}
@media (max-width:1500px) {
    .member-slider .button-next{right: 7vw}
}
@media (max-width:1024px) {
    .what-we-offer .tabs{
        flex-direction: column;
    }
    .what-we-offer .tab-content-wrap{order: 1}
    .what-we-offer .tab-links{order: 0}

    .what-we-offer .services li a{
        padding: 0.7vh 0;
    }

    .font-48, h2.font-48, h3.font-48{
        font-size: 32px;
    }
    .floating-panel{
        height: 36px;
        right: -29vh;
    }
    .floating-panel ul li a{    font: bold 1.9vh/36px 'Arimo';}

    .member-slider .slide{
        /*flex-direction: column;*/
    }

    .map-wrap .container .text-over, .what-we-offer .container .text-over {
        padding: 4vh 0;
    }


}
@media (min-width:991px) and (max-width:1280px) {
    .team-grid{flex-direction: column}
}
@media (min-width:550px) and (max-width:1024px) {
    .what-we-offer .services li{
        display: inline-block;
        width: 49%;
        background: none;
    }
}
@media (max-width:991px) {
    .loader svg{margin-left: 0;}
    .member-slider .button-next {
        top:auto;
        bottom: -2vh;
        right: 11vw;
        margin-top: 0;
    }
    .member-slider .slide{
        padding-bottom: 1vh;
    }
    .member-slider .slide-person{

        text-align: left;
        width: 100%;
        padding-left: 28%;
    }

    .member-slider .slide-text{
        font:12px/16px 'Vollkorn', serif;
        width: 100%;
        padding-left: 28%;
    }
    .member-slider h5{margin-bottom: 0}
    .member-img{
        bottom: 0;
        width: 80px;
    }

    .member-slider .slide-person .person-descr{
        display: block;
        font:12px/16px 'Vollkorn', serif;
        padding-right: 0;
        margin-bottom: 1vh;
    }

    .menu-panel nav ul{margin-left: 0}
    .menu-what-happened-item-content.active{left:0 !important}
    .menu-panel .close-btn{z-index: 100}
    .menu-panel.menu-what-happened .close-btn img {
         -webkit-filter: none;
        -ms-filter: none;
         filter: none;
    }


}

@media (max-width:767px) {
    header{    background-position: 50% 50% !important;}
    .fixed-panel, .logo .site-title{display: none}
    .top-panel{
        top:0;left: 0;
        width: 100%;
        background: #fff;
        color:#000
    }
    .top-panel .container{
        padding:8px 0 8px 0;
        align-items: center;
    }
    .lang-switcher li a{
        color: rgba(0, 0, 0, 0.64)
    }
    .lang-switcher li.active a{
        color:#000
    }
    .logo svg{
        -webkit-filter: invert(1);
        -ms-filter: invert(1);
        filter: invert(1);
    }
    .menu-btn{background-position: 0 50%}

    .menu-what-happened nav>h4{font-size: 26px}
    .menu-panel nav li>a, .menu-panel nav li>.a{
        font-size:24px;
        padding: 1.1vh 0;
    }

    .menu-what-happened-item-content .menu-top-panel{
        justify-content: flex-start;
        font-size: 14px;
    }
    .menu-what-happened-item-content .menu-top-panel a.tel{
        font-size: 22px;
    }
    footer .col-shedule{
        position: relative;
        padding-top: 22px;
    }
    footer .shedule{
        position: absolute;top:0;
    }
}
@media (max-width:375px) {
    body{font-size: 14px}
    .main-slider .slide .slide-text{height: 80vh}
    .btn{font-size:12px;padding: 5px 15px}
    .btn.btn-violet{padding: 15px}
    .fixed-panel, .logo{
        width: 90px;
    }
    .lang-switcher li a{font-size: 12px}
    .member-img{width: 22vw}


    .what-we-offer .services li a{padding: 0}
    .what-we-offer .services li a .service-title{font-size: 14px}
    .what-we-offer .services li a:hover:before, .what-we-offer .services li.active a:before{display: none}

    .menu-panel nav li>a, .menu-panel nav li>.a{font-size:26px !important}

    footer a.tel{font-size: 20px}
}
/**
 * Swiper 4.5.0
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * http://www.idangero.us/swiper/
 *
 * Copyright 2014-2019 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: February 22, 2019
 */
.swiper-container {
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
}
.swiper-container-no-flexbox .swiper-slide {
  float: left;
}
.swiper-container-vertical > .swiper-wrapper {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}
.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  -o-transition-property: transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}
.swiper-container-android .swiper-slide,
.swiper-wrapper {
  -webkit-transform: translate3d(0px, 0, 0);
  transform: translate3d(0px, 0, 0);
}
.swiper-container-multirow > .swiper-wrapper {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.swiper-container-free-mode > .swiper-wrapper {
  -webkit-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
  margin: 0 auto;
}
.swiper-slide {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  -o-transition-property: transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
}
.swiper-slide-invisible-blank {
  visibility: hidden;
}
/* Auto Height */
.swiper-container-autoheight,
.swiper-container-autoheight .swiper-slide {
  height: auto;
}
.swiper-container-autoheight .swiper-wrapper {
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-transition-property: height, -webkit-transform;
  transition-property: height, -webkit-transform;
  -o-transition-property: transform, height;
  transition-property: transform, height;
  transition-property: transform, height, -webkit-transform;
}
/* 3D Effects */
.swiper-container-3d {
  -webkit-perspective: 1200px;
  perspective: 1200px;
}
.swiper-container-3d .swiper-wrapper,
.swiper-container-3d .swiper-slide,
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom,
.swiper-container-3d .swiper-cube-shadow {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}
.swiper-container-3d .swiper-slide-shadow-left {
  background-image: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -webkit-linear-gradient(right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: -o-linear-gradient(right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-container-3d .swiper-slide-shadow-right {
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-container-3d .swiper-slide-shadow-top {
  background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: -o-linear-gradient(bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-container-3d .swiper-slide-shadow-bottom {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: -o-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
/* IE10 Windows Phone 8 Fixes */
.swiper-container-wp8-horizontal,
.swiper-container-wp8-horizontal > .swiper-wrapper {
  -ms-touch-action: pan-y;
  touch-action: pan-y;
}
.swiper-container-wp8-vertical,
.swiper-container-wp8-vertical > .swiper-wrapper {
  -ms-touch-action: pan-x;
  touch-action: pan-x;
}
.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: 50%;
  width: 27px;
  height: 44px;
  margin-top: -22px;
  z-index: 10;
  cursor: pointer;
  background-size: 27px 44px;
  background-position: center;
  background-repeat: no-repeat;
}
.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}
.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
  left: 10px;
  right: auto;
}
.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
  right: 10px;
  left: auto;
}
.swiper-button-prev.swiper-button-white,
.swiper-container-rtl .swiper-button-next.swiper-button-white {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
}
.swiper-button-next.swiper-button-white,
.swiper-container-rtl .swiper-button-prev.swiper-button-white {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
}
.swiper-button-prev.swiper-button-black,
.swiper-container-rtl .swiper-button-next.swiper-button-black {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
}
.swiper-button-next.swiper-button-black,
.swiper-container-rtl .swiper-button-prev.swiper-button-black {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
}
.swiper-button-lock {
  display: none;
}
.swiper-pagination {
  position: absolute;
  text-align: center;
  -webkit-transition: 300ms opacity;
  -o-transition: 300ms opacity;
  transition: 300ms opacity;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  z-index: 10;
}
.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}
/* Common Styles */
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-container-horizontal > .swiper-pagination-bullets {
  bottom: 10px;
  left: 0;
  width: 100%;
}
/* Bullets */
.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transform: scale(0.33);
  -ms-transform: scale(0.33);
  transform: scale(0.33);
  position: relative;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  -webkit-transform: scale(0.66);
  -ms-transform: scale(0.66);
  transform: scale(0.66);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  -webkit-transform: scale(0.33);
  -ms-transform: scale(0.33);
  transform: scale(0.33);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  -webkit-transform: scale(0.66);
  -ms-transform: scale(0.66);
  transform: scale(0.66);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  -webkit-transform: scale(0.33);
  -ms-transform: scale(0.33);
  transform: scale(0.33);
}
.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 100%;
  background: #000;
  opacity: 0.2;
}
button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}
.swiper-pagination-bullet-active {
  opacity: 1;
  background: #007aff;
}
.swiper-container-vertical > .swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  -webkit-transform: translate3d(0px, -50%, 0);
  transform: translate3d(0px, -50%, 0);
}
.swiper-container-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 6px 0;
  display: block;
}
.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 8px;
}
.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  -webkit-transition: 200ms top, 200ms -webkit-transform;
  transition: 200ms top, 200ms -webkit-transform;
  -o-transition: 200ms transform, 200ms top;
  transition: 200ms transform, 200ms top;
  transition: 200ms transform, 200ms top, 200ms -webkit-transform;
}
.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 4px;
}
.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  white-space: nowrap;
}
.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transition: 200ms left, 200ms -webkit-transform;
  transition: 200ms left, 200ms -webkit-transform;
  -o-transition: 200ms transform, 200ms left;
  transition: 200ms transform, 200ms left;
  transition: 200ms transform, 200ms left, 200ms -webkit-transform;
}
.swiper-container-horizontal.swiper-container-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transition: 200ms right, 200ms -webkit-transform;
  transition: 200ms right, 200ms -webkit-transform;
  -o-transition: 200ms transform, 200ms right;
  transition: 200ms transform, 200ms right;
  transition: 200ms transform, 200ms right, 200ms -webkit-transform;
}
/* Progress */
.swiper-pagination-progressbar {
  background: rgba(0, 0, 0, 0.25);
  position: absolute;
}
.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: #007aff;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transform-origin: left top;
  -ms-transform-origin: left top;
  transform-origin: left top;
}
.swiper-container-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  -webkit-transform-origin: right top;
  -ms-transform-origin: right top;
  transform-origin: right top;
}
.swiper-container-horizontal > .swiper-pagination-progressbar,
.swiper-container-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0;
}
.swiper-container-vertical > .swiper-pagination-progressbar,
.swiper-container-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0;
}
.swiper-pagination-white .swiper-pagination-bullet-active {
  background: #ffffff;
}
.swiper-pagination-progressbar.swiper-pagination-white {
  background: rgba(255, 255, 255, 0.25);
}
.swiper-pagination-progressbar.swiper-pagination-white .swiper-pagination-progressbar-fill {
  background: #ffffff;
}
.swiper-pagination-black .swiper-pagination-bullet-active {
  background: #000000;
}
.swiper-pagination-progressbar.swiper-pagination-black {
  background: rgba(0, 0, 0, 0.25);
}
.swiper-pagination-progressbar.swiper-pagination-black .swiper-pagination-progressbar-fill {
  background: #000000;
}
.swiper-pagination-lock {
  display: none;
}
/* Scrollbar */
.swiper-scrollbar {
  border-radius: 10px;
  position: relative;
  -ms-touch-action: none;
  background: rgba(0, 0, 0, 0.1);
}
.swiper-container-horizontal > .swiper-scrollbar {
  position: absolute;
  left: 1%;
  bottom: 3px;
  z-index: 50;
  height: 5px;
  width: 98%;
}
.swiper-container-vertical > .swiper-scrollbar {
  position: absolute;
  right: 3px;
  top: 1%;
  z-index: 50;
  width: 5px;
  height: 98%;
}
.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  left: 0;
  top: 0;
}
.swiper-scrollbar-cursor-drag {
  cursor: move;
}
.swiper-scrollbar-lock {
  display: none;
}
.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}
.swiper-zoom-container > img,
.swiper-zoom-container > svg,
.swiper-zoom-container > canvas {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.swiper-slide-zoomed {
  cursor: move;
}
/* Preloader */
.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  -webkit-transform-origin: 50%;
  -ms-transform-origin: 50%;
  transform-origin: 50%;
  -webkit-animation: swiper-preloader-spin 1s steps(12, end) infinite;
  animation: swiper-preloader-spin 1s steps(12, end) infinite;
}
.swiper-lazy-preloader:after {
  display: block;
  content: '';
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%236c6c6c'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
  background-position: 50%;
  background-size: 100%;
  background-repeat: no-repeat;
}
.swiper-lazy-preloader-white:after {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%23fff'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}
@-webkit-keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
/* a11y */
.swiper-container .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}
.swiper-container-fade.swiper-container-free-mode .swiper-slide {
  -webkit-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.swiper-container-fade .swiper-slide {
  pointer-events: none;
  -webkit-transition-property: opacity;
  -o-transition-property: opacity;
  transition-property: opacity;
}
.swiper-container-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}
.swiper-container-fade .swiper-slide-active,
.swiper-container-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}
.swiper-container-cube {
  overflow: visible;
}
.swiper-container-cube .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  -webkit-transform-origin: 0 0;
  -ms-transform-origin: 0 0;
  transform-origin: 0 0;
  width: 100%;
  height: 100%;
}
.swiper-container-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}
.swiper-container-cube.swiper-container-rtl .swiper-slide {
  -webkit-transform-origin: 100% 0;
  -ms-transform-origin: 100% 0;
  transform-origin: 100% 0;
}
.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}
.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-next,
.swiper-container-cube .swiper-slide-prev,
.swiper-container-cube .swiper-slide-next + .swiper-slide {
  pointer-events: auto;
  visibility: visible;
}
.swiper-container-cube .swiper-slide-shadow-top,
.swiper-container-cube .swiper-slide-shadow-bottom,
.swiper-container-cube .swiper-slide-shadow-left,
.swiper-container-cube .swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.swiper-container-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.6;
  -webkit-filter: blur(50px);
  filter: blur(50px);
  z-index: 0;
}
.swiper-container-flip {
  overflow: visible;
}
.swiper-container-flip .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
}
.swiper-container-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}
.swiper-container-flip .swiper-slide-active,
.swiper-container-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}
.swiper-container-flip .swiper-slide-shadow-top,
.swiper-container-flip .swiper-slide-shadow-bottom,
.swiper-container-flip .swiper-slide-shadow-left,
.swiper-container-flip .swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.swiper-container-coverflow .swiper-wrapper {
  /* Windows 8 IE 10 fix */
  -ms-perspective: 1200px;
}

/*modal*/
.modal {
    display: none;
}

.modal.is-open {
    display: block;
}
.modal__overlay {
    z-index: 9998;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:rgba(49, 50, 52, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal__container {
    background-color: #fff;
    padding: 30px;
    max-width: 500px;
    max-height: 100vh;
    border-radius: 4px;
    overflow-y: auto;
    box-sizing: border-box;
}

.modal__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal__title {
    margin-top: 0;
    margin-bottom: 0;
    font-weight: 600;
    font-size: 1.25rem;
    line-height: 1.25;
    box-sizing: border-box;
}

.modal__close {
    background: transparent;
    border: 0;
}

.modal__header .modal__close:before { content: "\2715"; }

.modal__content {
    margin-top: 2rem;
    margin-bottom: 2rem;
    color: rgba(0,0,0,.8);
    font: 16px/1.5 'Arimo', sans-serif;
}

.modal__btn {
    font-size: .875rem;
    padding-left: 1rem;
    padding-right: 1rem;
    padding-top: .5rem;
    padding-bottom: .5rem;
    background-color: #e6e6e6;
    color: rgba(0,0,0,.8);
    border-radius: .25rem;
    border-style: none;
    border-width: 0;
    cursor: pointer;
    -webkit-appearance: button;
    text-transform: none;
    overflow: visible;
    line-height: 1.15;
    margin: 0;
    will-change: transform;
    -moz-osx-font-smoothing: grayscale;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    transition: -webkit-transform .25s ease-out;
    transition: transform .25s ease-out;
    transition: transform .25s ease-out,-webkit-transform .25s ease-out;
}

.modal__btn:focus, .modal__btn:hover {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
}

.modal__btn-primary {
    background-color: #00449e;
    color: #fff;
}

/**************************\
  Demo Animation Style
\**************************/
@keyframes mmfadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes mmfadeOut {
    from { opacity: 1; }
    to { opacity: 0; }
}

@keyframes mmslideIn {
    from { transform: translateY(15%); }
    to { transform: translateY(0); }
}

@keyframes mmslideOut {
    from { transform: translateY(0); }
    to { transform: translateY(-10%); }
}

.micromodal-slide {
    display: none;
}

.micromodal-slide.is-open {
    display: block;
}

.micromodal-slide[aria-hidden="false"] .modal__overlay {
    animation: mmfadeIn .4s cubic-bezier(0.0, 0.0, 0.2, 1);
}

.micromodal-slide[aria-hidden="false"] .modal__container {
    animation: mmslideIn .7s cubic-bezier(0, 0, .2, 1);
}

.micromodal-slide[aria-hidden="true"] .modal__overlay {
    animation: mmfadeOut .4s cubic-bezier(0.0, 0.0, 0.2, 1);
}

.micromodal-slide[aria-hidden="true"] .modal__container {
    animation: mmslideOut .4s cubic-bezier(0, 0, .2, 1);
}

.micromodal-slide .modal__container,
.micromodal-slide .modal__overlay {
    will-change: transform;
}

