/* normalize */
* {
    box-sizing: border-box;
}
html {
    line-height: 1.3; 
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
}
body {
    margin: 0;
}
main {
    display: block;
}
h1,.h1, 
h2,.h2, 
h3,.h3, 
h4,.h4, 
h5,.h5, 
h6,.h6 {
    margin: 0
}
a {
    text-decoration: none;
}
b, 
strong {
    font-weight: bolder;
}
img {
    max-width: 100%;
    border-style: none;
}
button,
input,
optgroup,
select,
textarea {
    font-family: inherit;
    font-size: 100%; 
    line-height: 1.3; 
    margin: 0;
    outline: none;
}
button,
select {
    text-transform: none;
}
button,
[type="button"],
[type="reset"],
[type="submit"] {
    -webkit-appearance: button;
}
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
    border-style: none;
    padding: 0;
}
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
    outline: 1px dotted ButtonText;
}
textarea {
    overflow: auto;
}
[type="checkbox"],
[type="radio"] {
    padding: 0;
}
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
    height: auto;
}
[type="search"] {
    -webkit-appearance: textfield;
    outline-offset: -2px;
}
[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
}
::-webkit-file-upload-button {
    -webkit-appearance: button;
    font: inherit; 
}
[hidden] {
    display: none;
}
/* fonts */
@font-face {
    font-family: 'inter';
    src: url("fonts/Inter-Light.otf") format('opentype');
    font-weight: 300;
    font-style: normal; 
    font-display: swap;
}
@font-face {
    font-family: 'inter';
    src: url("fonts/Inter-Regular.otf") format('opentype');
    font-weight: 400;
    font-style: normal; 
    font-display: swap;
}
@font-face {
    font-family: 'inter';
    src: url("fonts/Inter-Italic.otf") format('opentype');
    font-weight: 400;
    font-style: italic; 
    font-display: swap;

}
@font-face {
    font-family: 'inter';
    src: url("fonts/Inter-SemiBold.otf") format('opentype');
    font-weight: 600;
    font-style: normal; 
    font-display: swap;

}
@font-face {
    font-family: 'inter';
    src: url("fonts/Inter-Bold.otf") format('opentype');
    font-weight: 700;
    font-style: normal; 
    font-display: swap;

}
/* main styles */
::-webkit-scrollbar {
    width: 20px;
}
::-webkit-scrollbar-track {
    background-color: transparent;
}
::-webkit-scrollbar-thumb {
    background-color: #d6dee1;
    border-radius: 20px;
    border: 6px solid transparent;
    background-clip: content-box;
}
::-webkit-scrollbar-thumb:hover {
    background-color: #a8bbbf;
}
@keyframes smoothScroll {
    0% {
      transform: translateY(-110px);
    }
    100% {
      transform: translateY(0px);
    }
}
@keyframes growDown {
    0% {
        transform: scaleY(0)
    }
    80% {
        transform: scaleY(1.1)
    }
    100% {
        transform: scaleY(1)
    }
}
a:hover {
    color: #2F80ED;
}
h1,.h1 {
    font-size: 3.125rem;    
}
h2,.h2 {
    font-size: 2.5rem;
}
h3,.h3 {
    font-size: 1.8rem;
}
h4,.h4 {
    font-size: 1.5rem;
}
h5,.h5 {
    font-size: 1.3rem;
}
h6,.h6 {
    font-size: 1.25rem;
}
body {
    position: relative;
    background: #fff;
    font-family: 'inter';
    font-size: 16px;
    color: #000;
    overflow-x: hidden;
}
body.dropdown-shown,
body.modal-shown {
    overflow-y: hidden;
}
.container {
    width: 1200px;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 15px;
}
.section {
    padding: 80px 0;
}
.text-white {
    color: #fff;
}
.text-grey {
    color: #828282;
}
.text-dark {
    color: #111111;
}
.text-theme {
    color: #2F80ED;
}
.bg-light {
    background: #F3F5F8;
}
.bg-theme {
    background: #2F80ED;
}
.bg-theme-dark {
    background: #1C6EDC;
}
.bg-black {
    background: #000;
}
.btn {
    display: block;
    width: 187.5px;
    font-weight: 400;
    font-size: 16px;
    text-align: center;
    padding: 13px 13px 14px 13px;        
    border-radius: 6px;
    transform: skewX(-7deg);
    cursor: pointer;
    transition: 0.3s all ease;
}
.btn-text {
    display: block;
    transform: skewX(7deg);
}
.btn-white {
    background: transparent;
    border: 2px solid #FFFFFF;
    color: #fff;
}
.btn-white:hover {
    background: #fff;
    color: #000;
}
.btn-theme {
    color: #fff;
    border: 2px solid #2F80ED;
    background: #2F80ED;
}
.btn-theme:hover {
    color: #fff;
    border-color: #0B60D2;
    background: #0B60D2;
}
.btn-black {
    color: #fff;
    border: 2px solid #000;
    background: #000;
}
.btn-black:hover {
    color: #fff;
    border-color: #111111;
    background: #111111;
}
.section-title,
.section-subtitle {
    text-align: center;
}
.section-subtitle {
    margin: 16px 0 0;
}
.sticky-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    z-index: 4;
    perspective: 1000px;
}
.sticky-header:hover {
    background: #fff;
    transition: 0.35s all ease-in-out;
}
.sticky-header.header-news {
    position: relative;
}
.sticky-header.sticky {
    position: fixed;
    background: #fff;
    box-shadow: -1px 7px 15px 0px rgba(0,0,0,0.1);    
    transition: all 0.5s ease;
    animation: smoothScroll 1s forwards;
    z-index: 9999;
}
.header-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
}
.header-logo {
    font-size: 0;
}
.header-logo svg {
    width: auto;
    height: 90px;
}
.sticky-header.header-inner .header-logo svg {
    filter: invert(1);
}
.sticky-header.sticky:not(.header-news) .header-logo svg {
    filter: invert(1);
}
.sticky-header.sticky.header-inner .header-logo svg {
    filter: invert(0);
}
.header-menu {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0 -15px;
    padding: 0;    
}
.header-menu > li {
    margin: 0 15px;
}
.header-menu__link {
    transition: 0.3s all ease;
        padding: 45px 0;
}
.header-contacts {
    display: flex;
    flex-direction: column;
}
.header-phone {
    font-size: 18px;
}
.header-mail {
    font-size: 14px;
}
.header-cart {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    transition: 0.25s all ease-in-out;
}
.header-cart:hover {
    background: #111111;
}
.header-cart__count {
    position: absolute;
    top: -10px;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-radius: 50%; 
    font-size: 12px;
    font-weight: 600;       
}
.burger-toggler {
    display: none;
}
.sticky-header.sticky .header-logo svg path,
.sticky-header.header-news .header-logo svg path {
    fill: #000;
}
.sticky-header.header-news:not(.sticky):hover .header-logo svg {
    filter: none;
}
.sticky-header:not(.sticky):hover .header-logo svg {
    filter: invert(1);
}
.sticky-header.sticky .header-menu__link,
.sticky-header.sticky .header-contacts a,
.sticky-header.header-news .header-menu__link,
.sticky-header.header-news .header-contacts a,
.sticky-header:not(.sticky):hover .header-menu__link,
.sticky-header:not(.sticky):hover .header-contacts a {
    color: #000;
}
.sticky-header.sticky .header-menu__link:hover,
.sticky-header.sticky .header-contacts a:hover,
.sticky-header.header-news .header-menu__link:hover,
.sticky-header.header-news .header-contacts a:hover,
.sticky-header:not(.sticky):hover .header-contacts a:hover,
.sticky-header:not(.sticky):hover .header-menu__link:hover{
    color: #2F80ED;
}
.dropdown-body {    
    display: none;
    position: absolute;
    top: 107px;
    left: 0;
    width: 100%;
    max-width: 100%;    
    max-height: calc(100vh - 110px);    
    background: #fff;
    padding: 40px;
    overflow-x: hidden;
    overflow-y: auto;
    perspective: 1000px;   
    animation: growDown 300ms ease-in-out forwards;
    transform-origin: top center;
    z-index: -1;
}
.dropdown-body.shown {
    display: block;
    z-index: 3;
}
.dropdown-top {
    display: flex;
    margin: 0 -12px 50px -12px;
}
.dropdown-menu {
    flex-grow: 1;
    list-style: none;
    padding: 0;
    margin: 0 12px;
}
.dropdown-menu > li:not(:last-child) {
    margin-bottom: 20px;
}
.dropdown-menu > li > a {
    color: #000;
    transition: 0.3s all ease;
}
.dropdown-menu > li > a:hover {
    color: #2F80ED;
}
.dropdown-bottom {
    display: flex;
    margin: 0 -12px;
}
.dropdown-bottom__item {
    position: relative;
    width: calc(100% / 3);
    height: 269px;
    flex-grow: 1;
    margin: 0 12px;
    border-radius: 5px;
    overflow: hidden;
}
.dropdown-bottom__item > a {
    position: relative;
    display: flex;
    width: 100%;
    height: 100%;
    border-radius: 6px;
    overflow: hidden;
}
.dropdown-item__img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.dropdown-item__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s all ease;
}
.dropdown-item__img:before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(360deg, #000000 0%, rgba(0, 0, 0, 0) 100%);
    z-index: 2;
}
.dropdown-bottom__item p {
    position: relative;
    width: 75%;
    border-radius: 6px;
    margin-top: auto!important;
    margin-bottom: 40px;
    padding: 10px 10px 10px 50px;
    color: #fff;
    font-weight: 600;
    transform-origin: 100% 50%;
    transform: skewX(-7deg) translateX(-10px);
    z-index: 2;
}
.dropdown-bottom__item p span {
    display: block;
    transform: skewX(7deg);
}
.dropdown-bottom__item:hover .dropdown-item__img img {
    transform: scale(1.2);
}
.hero {
    max-width: 100%;
    min-height: 970px;
    height: 100vh;
    overflow: hidden;
}
.hero-slider.swiper-container {
    position: relative;
    height: 100%;
}
.swiper-slide.hero-slide {
    position: relative;
}
.swiper-slide.hero-slide > .container {
    height: 100%;
}
.hero-slide__media {
    position: absolute;
    top: 50%;
    left: auto;
    right: auto;
    width: 295px;
    height: 170px;
    transform: translateY(-50%) skewX(-7deg);
    transition: 0.45s all linear;
}
.swiper-slide.hero-slide.swiper-slide-prev .hero-slide__media,
.swiper-slide.hero-slide.is-prev .hero-slide__media {
    left: 0;    
}
.swiper-slide.hero-slide.swiper-slide-next .hero-slide__media,
.swiper-slide.hero-slide.is-next .hero-slide__media {
    right: 0;
}
.hero-slide__media > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.swiper-slide.hero-slide.swiper-slide-active .hero-slide__media,
.swiper-slide.hero-slide.is-current .hero-slide__media {
    width: 100%;
    height: 100%;
    transform: translateY(-50%) skewX(0);
}
.hero-slide__media.active-media,
.swiper-slide.hero-slide.swiper-slide-active .hero-slide__media.active-media {
    top: 0 !important;
    width: 100% !important;
    height: 100% !important;
    transform: none !important;
}
.hero-slide__media:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
}
.hero-slide-content {
    position: relative;
    top: 50%;
    left: 0;
    width: 63%;
    transform: translateY(-50%);
    z-index: 2;
}
.hero-slide__title {
    font-size: 2.800rem;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 10px;
}
.hero-slide__subtitle {
    font-size: 1.5rem;
    font-weight: 700;
}
.hero-slide__actions {
    display: flex;
    align-items: center;
    margin: 50px -5px 0 -5px;
}
.hero-slide__actions a {
    margin: 0 5px;
}
.swiper-slide.hero-slide.video-slide video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.video-play {
    position: absolute;
    top: 50%;
    right: 30%;
    transform: translateY(-50%);
    border: none;
    width: 140px;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(20px);
    z-index: 3;
    cursor: pointer;
    transition: 0.3s background ease;
}
.video-play:before {
    content: '';
    display: block;
    width: 170px;
    height: 170px;
    position: absolute;
    top: -15px;
    left: -15px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(20px);
    z-index: 1;
    transition: 0.3s background ease;
}
.video-play:hover {
    background: rgba(255, 255, 255, 0.3);
}
.video-play:hover:before {
    background: rgba(255, 255, 255, 0.3);
}
.hero-slider-btn {
    border: 2px solid #FFFFFF;
    border-radius: 6px;
    width: 72px;
    height: 49px;
    background: transparent;
    transform: skewX(-7deg);
    cursor: pointer;
    transition: 0.3s background ease;
    color: #fff;
}
.hero-slider-btn svg {
    transform: skewX(7deg);
    transition: 0.3s background ease;
}
.hero-slider-btn:hover {
    background: #fff;
    color: #000;
}
.swiper-button-prev.hero-slider-btn:after,
.swiper-button-next.hero-slider-btn:after {
    content: '';
    display: none;
}
.swiper-button-prev.hero-slider-btn {
    right: auto;
    left: 165px;
}
.swiper-button-next.hero-slider-btn {
    right: 165px;
    left: auto;
}
.hero-slide-preview {
    display: none;
    position: absolute;
    top: 50%;
    width: 290px;
    height: 170px;
    overflow: hidden;    
    border-radius: 5px;
    z-index: 1;
}
.hero-slide-preview.shown {
    display: block;
    box-shadow: 49px 53px 36px rgba(0, 0, 0, 0.25), 0px 30px 30px rgba(0, 0, 0, 0.25);
}
.hero-slide-preview.shown:before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transform: scale(1);
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3));
    z-index: 1;
}
.hero-preview__prev {
    left: -10px;
    transform: skewX(7deg) translateY(-50%);
}
.hero-preview__next {
    right: -10px;
    transform: skewX(-7deg) translateY(-50%);
}
.hero-slide-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.swiper-pagination.hero-slider-pagination {
    margin: 0 -5px;
    bottom: 80px;
}
.swiper-pagination.hero-slider-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    margin: 0 5px;
    background: #fff;
    opacity: 0.2;
    border: 2px solid transparent;
}
.swiper-pagination.hero-slider-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    opacity: 1;
    border: 2px solid #fff;
    background: transparent;
}
.filter-brands {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    margin: 31px -12px 24px -12px;
}
.filter-brands__item {
    width: 60px;
    height: 60px;
    margin: 25px 12px;    
}
.filter-brands__item input {
    display: none;
}
.filter-brands__item label {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
    background: transparent;
    border: 2px solid transparent;
    border-radius: 5px;
    cursor: pointer;  
    transition: 0.3s all ease;
}
.filter-brands__item label img {
    filter: grayscale(100%);
}
@media(max-width: 991px) {
    .filter-brands__item label img {
        height: auto;
    }
}
.filter-brands__item label img:hover {
    filter: grayscale(0%);
}
.filter-brands__item input:checked + label {
    transform: scale(1.13);
    background: #fff;
    border: 2px solid #2F80ED;
    box-shadow: 0px 4px 20px rgba(47, 128, 237, 0.15);
}
.filter-block {
    padding: 40px;
    box-shadow: 0px 20px 30px rgba(25, 92, 182, 0.3);
    border-radius: 10px;
}
.filter-block-top, 
.filter-block-middle, 
.filter-block-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.filter-block-top {
    padding-bottom: 24px;
    margin: 0 -2.5px;
}
.filter-block-middle {
    padding: 24px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.filter-block-bottom {
    padding-top: 24px;
}
.filter-item {
    display: flex;
    flex-direction: column;
    padding: 0 4.5px;
    width: calc(100% / 3);    
}
.filter-item > label {
    font-size: 14px;
    margin-bottom: 8px;
    padding-left: 20px;
}
.filter-item .nice-select {
    height: 49px;
    font-size: 14px;
    line-height: 130%;
    padding: 13px 50px 15px 20px;    
    border: 4px solid transparent;
    border-radius: 6px;
    color: #000;
    transform: skewX(-7deg);
}
.filter-item .nice-select > .current {
    display: block;
    transform: skewX(7deg);
}
.filter-item .nice-select > .list {
    width: 100%;
    transform: skewX(7deg);
    padding-top: 52px;
}
.filter-item .nice-select:after {    
    -webkit-transform: skewX(7deg) rotate(45deg);
    -ms-transform: skewX(7deg) rotate(45deg);
    transform: skewX(7deg) rotate(45deg);
    right: 20px;
}
.filter-item .nice-select.open:after {
    -webkit-transform: skewX(7deg) rotate(-135deg);
    -ms-transform: skewX(7deg) rotate(-135deg);
    transform: skewX(7deg) rotate(-135deg);
}
.filter-item:hover .nice-select > .current,
.filter-item .nice-select.open > .current,
.filter-item:hover .custom-select > .current,
.filter-item .custom-select.open > .current {
    color: #1C6EDC;
}
.filter-item:hover .nice-select,
.filter-item .nice-select.open,
.filter-item:hover .custom-select,
.filter-item .custom-select.open {
    border-color:#1C6EDC;
}
.filters-block__title {
    display: block;
    font-weight: 600;
    margin-bottom: 5px;
}
.filter-selected-row {
    display: flex;
    align-items: center;
    margin: 0 -5px;
}
.filter-selected-item {
    display: flex;
    align-items: center;
    margin: 5px;
    padding: 10px;
    font-size: 14px;
    border-radius: 5px;
}
.filter-selected__remove {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    display: block;
    padding: 0;
    width: 24px;
    height: 24px;
    background: #fff;
    margin: 0 10px 0 0;    
    border: none;
    border-radius: 6px;   
    box-shadow: 0px 4px 10px rgb(19 91 188 / 50%); 
    cursor: pointer;
}
.filter-selected__remove > svg {
    transition: 0.3s all ease;
}
.filter-selected__remove:hover > svg {
    transform: rotate(360deg);
}
.filters-result {
    text-align: right;
}
.filters-result__price {
    font-weight: 600;
    font-size: 36px;
}
.filter-example,
.filter-example-info,
.filter-actions {
    display: flex;
    align-items: center;
}
.filter-example-sum {
    margin-right: 30px;
}
.filter-example__total {
    font-size: 14px;
}
.filter-example__total a {
    border-bottom: 1px solid #fff;
}
.filter-example__total a:hover {
    color: #000;
    border-color: #000;
}
.filter-example__img {
    width: 126px;
    height: 68px;
    margin-right: 15px;
    border: 2px solid #FFFFFF;
    border-radius: 10px;
    overflow: hidden;
}
.filter-example__img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.filter-example-desc {
    display: flex;
    flex-direction: column;
}
.filter-example__title {
    font-weight: 700;
    font-size: 24px;
    margin-bottom: 10px;
}
.filter-example__link {
    display: flex;
    align-items: center;
}
.filter-example__link span {
    border-bottom: 1px solid #fff;
}
.filter-example__link:after {
    content: '';
    display: block;
    width: 32px;
    height: 16px;
    background: url(../images/icons/icon-arrow-right.svg) no-repeat;
    background-size: contain;
    margin-left: 15px;
    
    transition: 0.3s all ease;
}
.filter-example__link:hover {
    color: #fff;
}
.filter-example__link:hover:after {
    transform: translateX(-10px);
}
.filter-actions {
    margin: 0 -5px;
}
.filter-actions a {
    margin: 0 5px;
}
.services {
    position: relative;
    overflow: hidden;
}
.services:before {
    content: '';
    display: block;
    width: 1272px;
    height: 535px;
    position: absolute;
    bottom: 1%;
    left: -56%;
    background: transparent;
    border: 10px solid #F3F5F8;
    border-radius: 30px;
    transform: skewX(-12deg);
    z-index: 1;
}
.services:after {
    content: '';
    display: block;
    width: 1272px;
    height: 535px;
    position: absolute;
    bottom: -2%;
    left: -53%;
    background: #F3F5F8;
    border: 10px solid #F3F5F8;
    border-radius: 30px;
    transform: skewX(-12deg);
    z-index: 1;
}
.services-path {
    display: none;
    position: absolute;
    right: -120px;
    top: 15%;
    width: 107%;
    height: 1000px;
    clip-path: inset(0% 0% 0% 10% round 20px);
    transform: skewX(-12deg);
    z-index: -1;
}
.services > .container > * {
    position: relative;
    z-index: 2;
}
.services-row {
    display: flex;
    flex-wrap: wrap;
    margin: 25px -12px;
}
.service-item {
    width: calc(100% / 3);
    height: 688px;
    padding: 25px 12px;
    border-radius: 5px;
    overflow: hidden;
}
.service-item > a {
    position: relative;    
    display: flex;
    width: 100%;
    height: 100%;
    border-radius: 6px;
    overflow: hidden;    
}
.service-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s all ease;
}
.service-img:before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(360deg, #000000 0%, rgba(0, 0, 0, 0) 100%);
    z-index: 2;
}
.service-item-info {
    position: relative;    
    margin-top: auto;
    padding-bottom: 36px;
    z-index: 2;
    display: flex;
    flex-direction: column;
}
.service-item__title {
    width: 75%;
    border-radius: 6px;
    padding: 10px 10px 10px 50px;
    transform-origin: 100% 50%;
    transform: skewX(-7deg) translateX(-10px);
}
.service-item__title span {
    display: block;
    transform: skewX(7deg);
}
.service-item__desc {
    display: block;
    padding: 30px 30px 0 30px;
}
.service-item__action {
    position: relative;
    width: 72px;
    height: 49px;   
    margin-top: 15px;
    margin-right: 30px;
    align-self: flex-end;
}
.service-item__btn {  
    position: relative;  
    width: 100%;
    height: 100%;   
    color: #fff;
    border: 2px solid #FFFFFF;
    border-radius: 6px;    
    background: transparent;
    transform: skewX(-7deg);
    cursor: pointer;
    z-index: 2;
}
.service-item__btn svg {    
    transform: skewX(7deg);
}
.service-item__action:before {
    position: absolute;
    top: 0;
    left: 5px;
    content: '';
    display: block;
    width: 200%;
    height: 49px;
    background: #2F80ED;
    opacity: 0.3;
    border-radius: 6px;
    transform: skewX(-7deg);
    z-index: -1;
    transition: 0.3s all ease 0.4s;
}
.service-item > a:hover .service-img img{
    transform: scale(1.2);
}
.service-item > a:hover .service-item__action:before {
    opacity: 1;
}
.services-list-wrap {
    margin-bottom: 50px;
}
.services-list {
    list-style: none;
    margin: 0 0 -10px 0;
    padding: 0;
    columns: 2;
    column-gap: 45px;
}
.services-list li {
    display: inline-block;
    width: 100%;
    margin-bottom: 10px;
}
.services-list li a {
    display: inline-block;
    color: #000;
    background: #F3F5F8;
    border-radius: 5px;
    padding: 13.5px 24px;
    transition: 0.3s all ease;
}
.services-list li a:hover {
    background: #2F80ED;
    color: #fff;
}
.section-action {
    display: flex;
    justify-content: center;
}
.portfolio-slider {
    position: relative;
    overflow: hidden;
    padding-bottom: 50px;
    margin-bottom: 50px;
}
.portfolio-slider-btn {
    display: none;
}
.swiper-slide.portfolio-slide {
    width: 550px;
    height: 550px;
    position: relative;
    border-radius: 5px;
    overflow: hidden;
}
.swiper-slide.portfolio-slide > a {
    display: block;
    width: 100%;
    height: 100%;    
    display: flex;
}
.portfolio-slide__media {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.portfolio-slide__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s transform ease;
}
.portfolio-slide__media:before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(0deg, #000000 0%, rgba(0, 0, 0, 0) 100%);
    z-index: 2;
}
.portfolio-slide-content {
    position: relative;
    margin-top: auto;
    padding: 30px;
    z-index: 2;
}
.portfolio-slide-content h5 {
    width: 240px;
}
.portfolio-slide-content h5:after {
    content: '';
    display: block;
    width: 32px;
    height: 5px;
    background: #2F80ED;
    border-radius: 2px;
    margin: 30px 0;
}
.portfolio-pagination-wrap {
    position: absolute;
    width: 436px;
    max-width: 100%;    
    height: 5px;
    top: auto;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(47,128,237, 0.2);
    border-radius: 10px;    
}
.swiper-pagination.portfolio-slider-pagination {
    background: transparent;
    width: 400px;   
    height: 100%;
    top: 0;
    left: 18px;
    cursor: pointer;
}
.swiper-pagination.portfolio-slider-pagination .swiper-scrollbar-drag {
    top: -2.5px;
    height: 10px;
    background: #2F80ED;
    border-radius: 50px;
}
.callback-section {
    position: relative;
    height: 700px;
    display: flex;
}
.callback-form-wrap {    
    width: 50%;
}
.callback-section-img {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 28%;
    height: 100%;
    font-size: 0;
}
.callback-section-img img {
    position: absolute;
    bottom: 0;
    z-index: 1;
}
.callback-path {
    position: absolute;
    left: 43%;
    bottom: 0;
    width: 798px;
    max-width: 57%;
    height: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}
.callback-path > span {    
    display: flex;
    align-items: center;
    justify-content: center;
    width: 798px;
    height: 798px;  
    flex-shrink: 0;  
    background: transparent;
    border: 2px solid rgba(255,255,255,0.2);    
    border-radius: 50%;
}
.callback-path > span > span {
    display: block;
    width: 602px;
    height: 602px;
    background: transparent;
    border-radius: 50%; 
}
.callback-form-wrap {
    position: relative;
    width: 42%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 3;
}
.callback-form {
    margin-top: 50px;
}
.form-group {
    margin-bottom: 20px;    
}
.form-group label {
    display: block;
    font-size: 14px;
    margin-bottom: 8px;
    padding-left: 20px;
}
.form-group input {
    width: 100%;
    height: 49px;
    outline: none;
    background: #fff;
    border: 4px solid transparent;
    border-radius: 6px;
    box-shadow: none;
    padding: 13px 15px 15px 20px;
    color: #000;    
    transform: skewX(-7deg);
    transition: 0.3s all ease;
}
.form-group input[type="text"]:focus,
.form-group input[type="tel"]:focus,
.form-group input[type="email"]:focus,
.form-group input[type="number"]:focus,
.form-group input[type="text"]:hover,
.form-group input[type="tel"]:hover,
.form-group input[type="email"]:hover,
.form-group input[type="number"]:hover {
    border-color: #1C6EDC;
}
.checkbox-custom {
    margin-bottom: 25px;
}
.checkbox-custom input {
    display: none;
}
.checkbox-custom label {
    display: flex;
    align-items: center;
    font-size: 14px;
    line-height: 1;
}
.checkbox-custom label span {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    background: #fff;
    margin-right: 10px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}
.checkbox-custom label span:before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background: url(../images/icons/icon-check.svg) no-repeat;
    background-position: center center;
    opacity: 0;
    transition: 0.25s all ease;
}
.checkbox-custom input:checked + label span:before {
    opacity: 1;
}
.form-group.form-actions {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 0;
    background: transparent;
    transform: none;
}
.vtour {
    position: relative;
    height: 970px;
    /*background: linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), 
                linear-gradient(0deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 100%), 
                url(/assets/images/virtual-tour-1920-970.jpg), #F3F5F8;
    overflow: hidden;*/                
}
.vtour > .container {
    height: 100%;
}
.vtour-path {
    width: 72%;
    height: 83%;    
    position: absolute;
    top: 80px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 0;
}
.vtour-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.vtour-play {
    position: relative;
    border: none;
    width: 140px;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 100px 0;
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0px 20px 30px rgba(0,0,0,0.25);
    backdrop-filter: blur(20px);
    z-index: 3;
    cursor: pointer;
    transition: 0.3s background ease;
}
.vtour-play:before {
    content: '';
    display: block;
    width: 170px;
    height: 170px;
    position: absolute;
    top: -15px;
    left: -15px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(20px);
    z-index: 1;
    transition: 0.3s background ease;
}
.vtour-play:hover {
    background: rgba(255, 255, 255, 0.3);
}
.vtour-play:hover:before {
    background: rgba(255, 255, 255, 0.3);
}
.calc-offer-content {
    margin-top: 50px;
}
.courses {
    position: relative;
    overflow: hidden;
}
.courses-path {    
    display: none;
    position: absolute;
    right: -120px;
    bottom: 0;
    width: 107%;
    height: 985px;
    clip-path: inset(0% 0% 0% 10% round 20px 0 0 20px);
    transform: skewX(-12deg);
    z-index: -1;
}
.courses-row {
    display: flex;
    flex-wrap: wrap;
    margin: 38px -12px;
}
.course-item {
    width: 31%;
    height: 463px;
    padding: 12px;
    border-radius: 5px;
    overflow: hidden;
}
.course-item.item-big {
    flex-grow: 1;
    width: 50%;
}
.course-item > a {
    position: relative;    
    display: flex;
    width: 100%;
    height: 100%;
    border-radius: 6px;
    overflow: hidden;    
}
.course-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.course-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.2s all ease;
}
.course-img:before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(360deg, #000000 0%, rgba(0, 0, 0, 0) 100%);
    z-index: 2;
}
.course-item-info {
    position: relative;   
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    width: 100%; 
    margin-top: auto;
    padding-bottom: 36px;
    z-index: 2;    
}
.course-item__desc {
    padding-left: 30px;
}
.course-item__title {
    width: 260px;
}
.course-item-more {
    margin-top: 24px;
    font-size: 14px;
}
.course-item__dur {
    display: flex;
    align-items: center;
    font-size: 16px;
    line-height: 1;
    font-weight: 600;
    margin-top: 5px;
}
.course-item__dur:before {
    content: '';
    display: block;
    width: 16px;
    height: 16px;
    background: url(../images/icons/icon-clock.svg) no-repeat;
    background-size: contain;
    background-position: center center;
    margin-right: 10px;
}
.course-item__action {
    position: relative;
    right: 30px;
    bottom: 0;
    width: 72px;
    height: 49px;   
    flex-shrink: 0;
}
.course-item__btn {  
    position: relative;  
    width: 100%;
    height: 100%;   
    color: #fff;
    border: 2px solid #FFFFFF;
    border-radius: 6px;    
    background: transparent;
    transform: skewX(-7deg);
    cursor: pointer;
    z-index: 2;
}
.course-item__btn svg {    
    transform: skewX(7deg);
}
.course-item__action:before {
    position: absolute;
    top: 0;
    left: 5px;
    content: '';
    display: block;
    width: 200%;
    height: 49px;
    background: #2F80ED;
    opacity: 0.3;
    border-radius: 6px;
    transform: skewX(-7deg);
    z-index: -1;
    transition: 0.3s all ease;
}
.course-item > a:hover .course-img img{
    transform: scale(1.2);
}
.course-item > a:hover .course-item__action:before {
    opacity: 1;
}
.main-news {
    overflow: hidden;
}
.news-wrap {
    position: relative;
    margin: 50px 0;
}
.news-slider.swiper-container3 {
    position: relative;
    overflow: hidden;
    padding-bottom: 50px;
}
.swiper-slide.news-slide,
.news-item {
    height: 688px;
    position: relative;
    border-radius: 5px;
    overflow: hidden;
}
.swiper-slide.news-slide > a,
.news-item > a {
    width: 100%;
    height: 100%;    
    display: flex;
}
.news-slide__media,
.news-item__media {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;    
    max-height: 300px;
    border-radius: 5px;
    overflow: hidden;
    z-index: 1;
    transition: max-height 0.4s;
}
.news-slide__media img,
.news-item__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;   
    transition: 0.4s all; 
}
.news-slide__media:before,
.news-item__media:before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(0deg, #000000 0%, rgba(0, 0, 0, 0) 100%);
    z-index: 2;
    opacity: 0;
}
.news-slide-content,
.news-item-content {
    position: relative;
    margin-top: auto;
    padding: 30px;
    z-index: 2;
}
.news-date {
    font-size: 14px;
    color: #777777;
    transition: 0.25s all ease-in-out;
}
.news-title {
    color: #111111;
    margin: 30px 0;
    transition: 0.25s all ease-in-out;
}
.news-intro {
    color: #999999;
    transition: 0.25s all ease-in-out;
}
.swiper-slide.news-slide:hover,
.news-item:hover {
    filter: drop-shadow(0px 10px 15px rgba(25, 92, 182, 0.3));
}
.swiper-slide.news-slide:hover .news-slide__media,
.news-item:hover .news-item__media {
    height: 100%;
    max-height: 100%;   
}
.swiper-slide.news-slide:hover .news-slide__media:before,
.news-item:hover .news-item__media:before {
    opacity: 1;
}
.swiper-slide.news-slide:hover .news-date,
.swiper-slide.news-slide:hover .news-title,
.swiper-slide.news-slide:hover .news-intro,
.news-item:hover .news-date,
.news-item:hover .news-title,
.news-item:hover .news-intro {
    color: #fff;
}
.swiper-pagination.news-slider-pagination {
    margin: 0 -5px;
    bottom: 0;
}
.swiper-pagination.news-slider-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    margin: 0 5px;
    background: #2F80ED;
    opacity: 0.2;
    border: 2px solid transparent;
}
.swiper-pagination.news-slider-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    opacity: 1;
    border: 2px solid #2F80ED;
    background: transparent;
}
.news-slider-btn {
    border: 2px solid #2F80ED;
    border-radius: 6px;
    width: 72px;
    height: 49px;
    background: transparent;
    transform: skewX(-7deg);
    cursor: pointer;
    transition: 0.3s background ease;
}
.news-slider-btn svg {
    transform: skewX(7deg);
}
.news-slider-btn svg path {
    fill: #2F80ED;
    transition: 0.3s background ease;
}
.news-slider-btn:hover {
    background: #2F80ED;
}
.news-slider-btn:hover svg {
    color: #fff;
}
.swiper-button-prev.news-slider-btn:after,
.swiper-button-next.news-slider-btn:after {
    content: '';
    display: none;
}
.swiper-button-prev.news-slider-btn {
    right: auto;
    left: -140px;
}
.swiper-button-next.news-slider-btn {
    right: -140px;
    left: auto;
}
.subscribe-section {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url(../images/subscribe-bg.jpg), url(../images/subscribe-bg.jpg), #000000;
    background-size: 100% auto;
    background-position: center center;    
}
.subscribe-content {
    position: relative;
    border-radius: 10px;
    padding: 40px 40px 40px 50px;
    overflow: hidden;
}
.subscribe-content:after {
    content: '';
    position: absolute;
    top: -3px;
    right: -38px;
    display: block;
    width: 366px;
    height: 301.5px;
    background: url(../images/icons/icon-mail.svg) no-repeat;
    background-size: cover;
    transform: rotate(-15deg);
    opacity: 0.1;
    z-index: 1;
}
.subscribe-content > h4 {
    width: 55%;
}
.subscribe-form {
    position: relative;
    margin-top: 24px;
    z-index: 2;
}
.form-group-row {
    display: flex;
    justify-content: space-between;
    margin: 0 -5px 13px -5px;
}
.form-group-row .form-group {
    margin: 0 5px;
}
.form-group-row .form-group:not(.form-actions) {
    flex-grow: 1;
}
.quals-content {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    margin: 10px -40px;
}
.quals-content__item {
    width: 50%;
    padding: 40px;
    color: #4F4F4F;
}
.quals-content__one{
     width: 100%;
}
.quals-content__item p:first-child {
    margin-top: 0;
}
.quals-content__item p:last-child {
    margin-bottom: 0;
}
.quals-content__item img {
    max-height: 300px;
    width: 100%;
    object-fit: cover;
    border-radius: 5px;
}
.instagram-section {
    overflow: hidden;
}
.instagram-section .section-subtitle a:hover {
    color: #0B60D2;
}
.instagram-wrap {
    position: relative;
    margin: 50px 0;
}
.instagram-slider.swiper-container4 {
    position: relative;
    overflow: hidden;
    padding-bottom: 50px;
}
.swiper-slide.instagram-slide {
    height: 688px;
    border-radius: 5px;
    overflow: hidden;
}
.instagram-slide__media {
    width: 100%;    
    height: 100%;
}
.instagram-slide__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;   
}
.swiper-pagination.instagram-slider-pagination {
    margin: 0 -5px;
    bottom: 0;
}
.swiper-pagination.instagram-slider-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    margin: 0 5px;
    background: #2F80ED;
    opacity: 0.2;
    border: 2px solid transparent;
}
.swiper-pagination.instagram-slider-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    opacity: 1;
    border: 2px solid #2F80ED;
    background: transparent;
}
.instagram-slider-btn {
    border: 2px solid #2F80ED;
    border-radius: 6px;
    width: 72px;
    height: 49px;
    background: transparent;
    transform: skewX(-7deg);
    cursor: pointer;
    transition: 0.3s background ease;
}
.instagram-slider-btn svg {
    transform: skewX(7deg);
}
.instagram-slider-btn svg path {
    fill: #2F80ED;
    transition: 0.3s background ease;
}
.instagram-slider-btn:hover {
    background: #2F80ED;
}
.instagram-slider-btn:hover svg {
    color: #fff;
}
.swiper-button-prev.instagram-slider-btn:after,
.swiper-button-next.instagram-slider-btn:after {
    content: '';
    display: none;
}
.swiper-button-prev.instagram-slider-btn {
    right: auto;
    left: -140px;
}
.swiper-button-next.instagram-slider-btn {
    right: -140px;
    left: auto;
}
.mobile-nav {
    display: none;
}
footer {
    position: relative;
    overflow: hidden;
}
footer:before {
    content: '';
    display: block;
    width: 2046px;
    height: 861px;
    position: absolute;
    top: 4%;
    right: -68%;
    opacity: 0.5;
    border: 10px solid #FFFFFF;
    border-radius: 50px;
    transform: skewX(-12deg);
    z-index: 1;
}
footer:after {
    content: '';
    display: block;
    width: 1892px;
    height: 796px;
    position: absolute;
    bottom: -54%;
    left: -20%;
    opacity: 0.5;
    border: 10px solid #FFFFFF;
    border-radius: 50px;
    transform: skewX(-12deg);
    z-index: 1;
}
.footer-top {
    position: relative;
    display: flex;
    margin-bottom: 30px;
    z-index: 2;
}
.footer-logo {
    font-size: 0;
}
.footer-logo svg {
    width: auto;
    height: 90px;
}
.footer-logo svg path {
    fill: #000;
}
.footer-top-info {
    display: flex;
    flex-direction: column;
    width: 255px;
    flex-shrink: 0;
    margin-right: 50px;
}
.footer-top-info > *:not(:last-child) {
    margin-bottom: 30px;
}
.company-desc {
    font-size: 14px;
}
.footer-block__title {
    margin-bottom: 30px;
}
.footer-contacts__list {
    list-style: none;
    margin: 0;
    padding: 0;
}
.footer-contacts__list li {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}
.footer-contacts__list li:before {
    content: '';
    display: block;
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    margin-right: 10px;
}
.footer-contacts__list li:first-child {
    align-items: flex-start;
    margin-bottom: 30px;
}
.footer-contacts__list li:first-child:before {
    background-image: url(../images/icons/icon-pin.svg);    
}
.footer-contacts__list li:nth-child(2):before {
    background-image: url(../images/icons/icon-phone.svg);
}
.footer-contacts__list li:last-child:before {
    background-image: url(../images/icons/icon-mail.svg);
}
.footer-contacts__list li a {
    color: #000;
}
.footer-contacts__list li a:hover {
    color: #2F80ED;
}
.footer-contacts__list li:first-child p {
    margin: 0;
}
.footer-contacts__list li:first-child p span:first-child {
    display: block;
    margin-bottom: 10px;
}
.footer-top-menus {
    display: flex;
    margin: 0 -25px;
}
.footer-menu__block {
    margin: 0 25px;
}
.footer-menu__block:nth-child(2) .footer-menu {
    columns: 2;
    column-gap: 50px;
}
.footer-menu {
    list-style: none;
    margin: 0 0 -20px 0;
    padding: 0;
}
.footer-menu li {
    margin-bottom: 20px;
}
.footer-menu li a {
    color: #000;
}
.footer-menu li a:hover {
    color: #2F80ED;
}
.footer-bottom {
    position: relative;
    z-index: 2;
}
.footer-socials {
    list-style: none;
    margin: 0 -15px 50px -15px;
    padding: 0;
    display: flex;
    align-items: center;
}
.footer-socials li {
    margin: 0 10px;
}
.footer-socials li a svg {
    transition: 0.3s all ease-in-out;
}
.footer-socials li a:hover svg {
    transform: rotate(360deg);
}
.copyright {
    display: block;
    font-size: 14px;
}
.policy {
    display: block;
    font-size: 14px;
    margin-top: 50px;
}
.to-up {
    position: fixed;
    bottom: 80px;
    right: 20px;
    display: none;
    z-index: 3;
    cursor: pointer;
    width: 70px;
    height: 70px;
    background: #000;
    border-radius: 50%;
    box-sizing: border-box;
    align-items: center;
    justify-content: center;
}
.to-up:hover {
    background: #111111;
}
.news-main {
    padding-top: 30px;
}
.breadcrumbs-wrap {
    padding-bottom: 10px;
}
.breadcrumbs {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.breadcrumbs > li {
    font-size: 14px;
    display: flex;
    align-items: center;
}
.breadcrumbs > li a {    
    color: #2F80ED;
}
.breadcrumbs > li.current span {
    color: #777777;
}
.breadcrumbs > li a:hover {
    color: #0B60D2;
}
.breadcrumbs > li:not(:last-child):after {
    content: '-';
    display: block;
    margin: 0 20px;
    color: #777777;
}
.main {
    display: block;
}
.news-content {
    padding-top: 30px;
    padding-bottom: 80px;
}
.content-title {
    text-align: center;
}
.news-list {
    display: flex;
    flex-wrap: wrap;
    margin: 25px -12px;
}
.news-item {
    width: calc((100% - 72px) / 3);
    margin: 25px 12px;
}
.news-item.item-big {
    width: 100%;
    height: 510px;
}
.news-item.item-big .news-item__media {
    max-height: 100%;
    height: 100%;
}
.news-item.item-big .news-date,
.news-item.item-big .news-title,
.news-item.item-big .news-intro {
    color: #fff;
}
.news-item.item-big .news-item__media:before {
    opacity: 1;
}
.news-item.item-big:hover .news-item__media img {
    transform: scale(1.2);
}
.pagination {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}
.pagination > li {
    margin: 0 25px;
    font-size: 24px;
    cursor: pointer;
}
.pagination > li.prev,
.pagination > li.next {    
    width: 71px;
    height: 48px;
    border: 2px solid #2F80ED;
    background: #fff;
    text-align: center;
    padding: 5px 0;
    border-radius: 6px;
    transform: skewX(-7deg);
    transition: 0.3s all ease;
}
.pagination > li a,
.pagination > li span {
    color: #111111;
    transition: 0.3s all ease;
}
.pagination > li.prev svg,
.pagination > li.next svg {
    transform: skewX(7deg);
}
.pagination > li a:hover,
.pagination > li.active a,
.pagination > li.prev a,
.pagination > li.next a {
    color: #2F80ED;
}
.pagination > li.prev:hover a,
.pagination > li.next:hover a {
    color: #fff;
}
.pagination > li.prev:hover,
.pagination > li.next:hover {
    background: #2F80ED;
}
.article-header {
    padding: 0 100px;
}
.article-title {
    margin-bottom: 30px;
}
.article-subtitle {
    font-weight: 400;
    margin-bottom: 30px;
}
.article-header__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;    
}
.article-date {
    color: #111111;
}
.article-share {
    display: flex;
    align-items: center;
}
.article-tag {
    color: #999999;
}
.share-btn {
    display: block;
    width: 24px;
    height: 24px;
    margin-left: 20px;
    background: url(../images/icons/icon-share.svg) no-repeat;
    background-size: contain;
    background-position: center center;
}
.article-img {
    width: 100%;
    max-height: 530px;
    overflow: hidden;
    margin: 70px 0;
}
.article-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}
.article-body {
    font-size: 20px;
    color: #111111;
}
.article-slider {
    overflow: hidden;
}
.article-gallery {
    height: 635px;
    margin-bottom: 10px;
}
.article-thumbs {
    position: relative;
    padding-bottom: 7px;
}
.article-gallery .gallery-slide img,
.article-thumbs .thumbs-slide img {
    border-radius: 5px;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.article-thumbs .thumbs-slide {
    height: 100px;
}
.article-thumbs .swiper-scrollbar {
    height: 2px;
    left: 0;
    bottom: 0;
    width: 100%;
    background: transparent;
}
.article-thumbs .swiper-scrollbar-drag {
    background: #2F80ED;
    border-radius: 0;
    padding: 0 10px;
}
.article-body ul {
    list-style: none;
    margin: 30px 0;
    padding: 0;
    font-size: 16px;
}
.article-body ul > li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}
.article-body ul > li:last-child {
    margin-bottom: 0;
}
.article-body ul > li:before {
    content: '';
    display: block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #2F80ED;
    margin-right: 20px;
    flex-shrink: 0;
}
.article-body blockquote {
    position: relative;
    font-size: 36px;
    background: #F3F5F8;
    border-left: 6px solid #2F80ED;
    padding: 129px 45px 60px 85px;
    margin: 30px 0;
}
.article-body blockquote:after {
    content: '';
    display: block;
    width: 42px;
    height: 35px;
    background: url(../images/icons/icon-quote.svg) no-repeat;
    background-size: contain;
    background-position: center center;
    position: absolute;
    top: 43px;
    right: 45px;
}
.article-body blockquote p {
    margin: 0 0 65px 0;
}
.quote-author {
    font-size: 16px;
    color: #999999;
}
.article-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 50px 0;
    margin: 30px 0;
}
.article-video {
    position: relative;
    margin-top: 30px;
	height: 488px;
	overflow: hidden;
}
.article-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.article-video .video-play {
    left: 50%;
    right: auto;
    transform: translateX(-50%) translateY(-50%);    
}
.article-video-info {
    margin-top: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.article-video__title {
    font-weight: 700;
    font-size: 20px;
    color: #111111;
}
.article-video__dur {
    font-size: 14px;
    color: #999999;
}
.main.inner-main {
    padding-top: 0;
}
.inner-bg {
    position: relative;
    display: flex;
    align-items: center;
    height: 300px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    padding-top: 47px;
}
.inner-bg:before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
}
.inner-bg > .container {
    position: relative;
}
.contacts-wrap {
    display: flex;
    align-items: flex-start;
}
.contacts-info {
    flex-shrink: 0;
    width: 49%;
    margin-right: 160px;
    margin-bottom: 74px;
}
.contacts-list {
    width: 375px;
    margin-top: 50px;
}
.contacts-list-item {    
    display: flex;
    flex-direction: column;
    margin-bottom: 30px;
}
.contacts-list-item:last-child {
    margin-bottom: 0;
    margin-top: 80px;
}
.contacts-item__title {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #777777;
    margin-bottom: 18px;
}
.contacts-item__title:before {
    content: '';
    display: block;
    width: 24px;
    height: 24px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    margin-right: 15px;
}
.contacts-item__title.address-title:before {
    background-image: url(../images/icons/icon-pin-theme.svg);
}
.contacts-item__title.phone-title:before {
    background-image: url(../images/icons/icon-phone-theme.svg);
}
.contacts-item__title.mail-title:before {
    background-image: url(../images/icons/icon-mail-theme.svg);
}
.contacts-item__desc {
    font-size: 24px;
    color: #000;
    margin: 0;
}
a.contacts-item__desc:hover {
    color: #2F80ED;
}
.contacts-info .footer-socials {
    margin-top: 30px;
    margin-bottom: 0;
}
.contacts-form-wrap {
    background: linear-gradient(0deg, #2F80ED 44.11%, rgba(47, 128, 237, 0) 188.75%), url(../images/contacts-form-bg.jpg), #2F80ED;
    background-position: center -130%;
    background-size: 100% auto;
    background-repeat: no-repeat;
    box-shadow: 0px 20px 30px rgb(25 92 182 / 30%);
    border-radius: 10px;
    padding: 45px 40px 35px 40px;
}
.contacts-form {
    display: flex;
    flex-direction: column;
    margin-top: 40px;
}
.contacts-form .form-group {
    margin-bottom: 30px;
}
.contacts-form .form-group.form-actions {
    justify-content: center;
    margin-bottom: 0;
}
.contacts-form .checkbox-custom {
    width: 70%;
    margin-bottom: 22px;    
    margin-top: -5px;
}
.contacts-form .checkbox-custom label {
    line-height: 130%;
}
.contacts-form .nice-select {
    position: relative;
    width: 100%;
    height: 49px;
    border-radius: 6px;    
    padding: 13px 30px 15px 20px;
    font-size: 16px;
    line-height: 130%;        
    transform: skewX(-7deg);       
    z-index: 1; 
}
.contacts-form .nice-select .list {
    transform: skewX(7deg); 
    width: 100%;
}
.contacts-map-wrap {
    display: flex;
    margin: 50px 0;
    padding: 0 15px;
}
.contacts-map {
    margin-right: 30px;
    flex-grow: 1;
}
.contacts-card {
    width: 970px;
    max-width: 100%;
    margin: 80px auto 0 auto;
    font-size: 20px;
}
.contacts-card tr td {
    padding: 30px 0;
    border-bottom: 1px solid #DEE6F1;
}
.contacts-card tr:first-child td {
    padding-top: 0;
}
.contacts-card tr:last-child td {
    padding-bottom: 0;
    border-bottom: none;
}
.contacts-card td:first-child {
    width: 36%;
}
.main.inner-main .services-row {
    margin-top: -25px;
}
.main.inner-main .services-row.landing-services {
    margin-top: 25px;
}
.main.inner-main .services-list-wrap {
    margin-bottom: 0;
}
.text-section-content {
    display: flex;
    align-items: center;
    margin-top: 50px;
}
.text-section-content > p {
    font-size: 20px;
    margin: 0 80px 0 0;
}
.text-section-content > .btn {
    flex-shrink: 0;
}
.overlay {
    display: block;
    width: 0;
    height: 1px; 
    position: fixed;
    top: 50%;
    left: 50%;
    background: rgba(0,0,0,0.4);
    transform: translate(-50%, -50%);    
    overflow-x: hidden;
    overflow-y: auto;
    z-index: 9999;
    transition: width 0.5s ease 0.5s, height 0.5s ease;   
}
.modal {      
    position: relative;
    width: 600px;
    max-width: 100%;
    margin: 20px auto;
    background: transparent;
    color: transparent;  
    transition: color 0.5s ease;    
}
.overlay.shown {
    height: 100%;
    width: 100%;
    transition: width 0.5s ease, height 0.5s ease 0.5s;      
}
.overlay.shown .modal {
    color: #000;
    transition: color 0.5s ease 0.5s;
}
.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 24px;
    height: 24px;
    border: none;
    background: url(../images/icons/icon-close-modal.svg) no-repeat;
    background-size: contain;
    background-position: center center;
    cursor: pointer;
    transition: 0.3s all linear;
}
.modal-close:hover {
    transform: scale(1.3);
}
.modal .contacts-form .checkbox-custom {
    width: 100%;
}
.inner-bg.bg-big {
    height: auto;
    padding-top: 110px;
    padding-bottom: 107px;
}
.inner-bg.bg-large {
    height: 970px;
    padding-top: 0;
}
.inner-bg-media {
    position: absolute;
    width: 100%;
    height: 100%;
}
.inner-bg-media:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
}
.inner-bg-media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.inner-bg.bg-large > .container {
    z-index: 2;
}
.inner-bg .breadcrumbs-wrap {
    margin-top: 35px;
    padding-bottom: 0;
}
.inner-bg .breadcrumbs > li a {
    color: #fff;
}
.inner-bg .breadcrumbs > li:not(:last-child):after {
    content: '/';
    color: #fff;
}
.inner-bg .breadcrumbs > li.current span {
    color: rgba(255, 255, 255, 0.5);
}
.inner-bg__content {
    width: 785px;
    max-width: 100%;
    margin-top: 50px;
}
.bg-large .inner-bg__content {
    width: 580px;
}
.inner-bg__subtitle {
    font-size: 20px;
    margin-top: 50px;
    margin-bottom: 50px;
}
.search-wrap {
    padding: 40px 50px;
    box-shadow: 0px 20px 30px rgb(25 92 182 / 30%);
    border-radius: 10px;
    margin: 50px 0;
}
.search-form .form-group-row {
    margin-bottom: 0;
}
.search-field-wrap {
    position: relative;
}
.search-field-wrap:before {
    content: '';
    position: absolute;
    top: 16.5px;
    left: 20px;
    display: block;
    width: 20px;
    height: 20px;
    background: url(../images/icons/icon-search.svg) no-repeat;
    background-size: contain;
    background-position: center center;
    z-index: 1;
}
.search-field-wrap input {
    padding-left: 60px;
}
.search-form .btn {
    height: 49px;
}
.filter-tabs-wrap {
    background: #fff;
    box-shadow: 0px 4px 20px rgb(47 128 237 / 15%);
    border-radius: 6px;
    margin-top: -22px;
    margin-bottom: 24px;
    padding: 30px;
}
.filter-tabs-header {
    list-style: none;
    padding: 0;
    margin: 0 -25px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.dropdown-show:hover .dropdown-body {
    display: block;
}
.filter-tabs-header > li {
    margin: 0 25px;
    padding: 30px 0 12px 0;
}
.tab-toggler {
    display: flex;
    align-items: center;
    padding: 0 50px 16px 50px;
    font-weight: 500;
    font-size: 20px;
    color: #828282;
    border-bottom: 2px solid transparent;
    transition: 0.3s all linear;
}
.tab-count {
    width: 24px;
    height: 24px;
    margin-left: 18px;
    background: #E0E0E0;
    border-radius: 50%;
    font-size: 14px;
    color: #fff;
    text-align: center;
    line-height: 24px;
    transition: 0.3s all linear;
}
.tab-toggler.active {
    color: #000;
    border-color: #2F80ED;
}
.tab-toggler.active .tab-count {
    background: #2F80ED;
}
.filter-tabs-content {
    margin-top: 30px;
}
.tab-content {
    display: none;
}
.tab-content.tab-active {
    display: block;
}
.slidedown-item {
    border-bottom: 1px solid #F3F5F8;
}
.slidedown-item:last-child {
    border-bottom: none;
}
.slidedown-item.shown {
    background: #F3F5F8;
}
.slidedown-item-header {    
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px 16px 55.5px;
    font-weight: 600;
    color: #000;    
    cursor: pointer;
}
.slidedown-item-header:before {
    content: '';
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: block;
    width: 11.5px;
    height: 5.75px;
    background: url(../images/icons/icon-caret-down.svg) no-repeat;
    background-size: contain;
    background-position: center center;
    transition: 0.45s all ease-in-out;
}
.slidedown-item.shown .slidedown-item-header:before {
    transform: translateY(-50%) rotate(180deg);
    filter: brightness(0);
}
.slidedown-item-content {
    display: none;
    padding-left: 55.5px;
    padding-right: 20px;
}
.slidedown-list {
    list-style: none;
    padding: 0;
    margin: 0;
    color: #000;
}
.slidedown-list > li {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 19px 0;
}
.slidedown-list__title {
    display: flex;
    flex-direction: column;
}
.slidedown-list__title > a {
    font-size: 14px;
    color: #2F80ED;
    margin-top: 4px;
}
.slidedown-list__title > a:hover {
    text-decoration: underline;
}
.slidedown-list__form {
    display: flex;
    align-items: center;
}
.qty-wrap {
    display: flex;
    margin-right: 23px;
}
.qty-btn.btn {
    width: 72px;
    height: 49px;
    border: 2px solid #2F80ED;
    color: #2F80ED;
    transition: 0.25s all ease-in-out;
}
.qty-btn.btn .btn-text {
    font-size: 0;
}
.qty-btn.btn:hover {
    background: #2F80ED;
    color: #fff;
}
.qty-field {
    width: 102px;
    height: 49px;
    border: 2px solid #2F80ED;
    border-radius: 6px;
    background: transparent;
    transform: skewX(-7deg);
    margin: 0 5px;
    padding: 0;
    text-align: center; 
}
input.qty-field::-webkit-outer-spin-button,
input.qty-field::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
input.qty-field[type=number] {
  -moz-appearance: textfield;
}
.slidedown-list__price {
    font-weight: 600;
}
.service-item.inner-item {
    height: auto;
    transition: 0.3s all ease-in-out;
}
.service-item.inner-item:hover {
    filter: drop-shadow(0px 20px 30px rgba(25, 92, 182, 0.3));
}
.service-item.inner-item > a {
    position: static;
    flex-direction: column;
}
.service-item.inner-item .service-img {
    position: static;
    height: 394px;
}
.service-item.inner-item .service-img:before {
    display: none;
}
.service-item.inner-item .service-img img {
    object-position: top;
}
.service-item.inner-item .service-item-info {
    position: static;
    margin-top: 0;
    background: #fff;
    padding: 30px;
    color: #000;
}
.inner-service__title {
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 30px 0;
}
.inner-service__desc {
    margin: 0;
}
.service-order-wrap {
    margin-top: 50px;
    padding: 40px;
    background: linear-gradient(0deg, #2F80ED 44.11%, rgba(47, 128, 237, 0) 188.75%), url(../images/contacts-form-bg.jpg), #2F80ED;
    background-size: cover;
    background-position: center 42%;
    box-shadow: 0px 20px 30px rgb(25 92 182 / 30%);
    border-radius: 10px;
}
.service-order {
    margin-top: 40px;
}
.service-order .form-group-row {
    align-items: flex-end;
    margin-bottom: 20px;
}
.service-order .btn {
    height: 49px;
}
.service-order .checkbox-custom {
    margin-bottom: 0;
    color: #fff;
}
.video-slider {
    position: relative;
    margin: 50px 0;
    padding-bottom: 50px;    
    overflow: hidden;
}
.video-slide__media {
    position: relative;
    max-width: 100%;
    width: 100%;
}
.video-slide__media > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.video-slide__media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
}
.video-slide__media .video-play {
    left: 50%;
    right: auto;
    transform: translate(-50%, -50%);
}
.video-slide-content {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding-top: 25px;
    background: #fff;
}
.video-slide__info h5 {
    font-size: 24px;
    font-weight: 400;
    color: #111111;
    margin-bottom: 20px;
}
.video-slide-content .share-btn {
    opacity: 0.25;
}
.video-pagination-wrap {
    position: absolute;
    width: 436px;
    max-width: 100%;
    height: 5px;
    top: auto;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(47,128,237, 0.2);
    border-radius: 10px;
}
.swiper-pagination.video-slider-pagination {
    background: transparent;
    width: 400px;
    height: 100%;
    max-width: calc(100% - 36px);
    top: 0;
    left: 18px;
}
.swiper-pagination.video-slider-pagination .swiper-scrollbar-drag {
    top: -2.5px;
    height: 10px;
    background: #2F80ED;
    border-radius: 50px;
}
.pros .quals-content__item {
    color: #999999;
}
.pros-tabs-header {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.pros-tabs-header > li {
    width: calc(100% / 3);
    padding: 0;
    background: #F3F5F8;
    border-radius: 3px;
}
.pros-tabs-header .tab-toggler {
    padding: 10px;
    text-align: center;
    display: block;
    color: #000;
    font-weight: 700;
    text-transform: uppercase;
}
.pros-tabs-header .tab-toggler.active {
    color: #fff;
    border-color: #2F80ED;
    background: #2F80ED;
}
.pros-tabs-content {
    margin-top: 50px;
}
.pros-tab-body {
    display: flex;
    align-items: flex-start;
    margin: 0 -40px;
    color: #111111;
}
.pros-tab-body > div {
    padding: 0 40px;
}
.pros-tab-body ul {
    font-size: 16px;
    line-height: 32px;
}
.pros-tab-body ul:last-child {
    margin-bottom: 0;
}
.pros-tab-body p {
    color: #333;
}
.pros-tab-body p:last-child {
    margin-bottom: 0;
}
.pros-tab-img {
    border-radius: 5px;
    overflow: hidden;
}
.pros-tab-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.portfolio-list {
    display: flex;
    flex-wrap: wrap;
    margin-top: 50px;
    padding-bottom: 0;
}
.portfolio-list .portfolio-slide {
    width: 50%;
    padding: 12px;
}
.portfolio-list .portfolio-slide > a {
    position: relative;
    border-radius: 5px;
    overflow: hidden;
}
.portfolio-list .portfolio-pagination-wrap {
    display: none;
}
.gallery-row {
    display: flex;
    flex-wrap: wrap;
    margin-top: 50px;
}
.gallery-item.item-big {
    width: 60%;
}
.gallery-item {
    flex-grow: 1;
    width: calc(100% / 3);
    height: 390px;
    padding: 5px;
}
.gallery-item img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
}
.mfp-bg, .mfp-wrap {
    z-index: 99999;
}
.video-single .video-slide-content {
    background: transparent;
}
.quals-content.about-us {
    align-items: center;
}
.quals-content.about-us .quals-content__item {
    color: #999999;
}
.team-row {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    margin: 25px -25px -25px;
}
.team-member {
    width: calc(100% / 3);
    padding: 25px;
}
.team-member-img {
    height: 350px;
    background: #fff;
    overflow: hidden;
}
.team-member-img img {
    width: 100%;
    height: auto;
    object-fit: contain;
}
.team-member-info {
    background: #fff;
    padding: 30px;
}
.team-member__name {    
    font-size: 20px;
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 30px;
}
.courses-info {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    margin: 55px -25px -25px;
}
.courses-info-item {
    width: calc(100% / 3);    
    padding: 25px;
}
.courses-info-inner {
    padding: 30px;
    background: #fff;
    border-radius: 5px;
}
.courses-info-inner>p {
    font-size: 20px;
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 30px;
}
.courses .search-wrap {
    margin-top: 0;
}
.courses-page .courses-path {
    top: 15%;
    height: 1060px;
}
.courses-page:before {
    content: '';
    display: block;
    width: 1272px;
    height: 535px;
    position: absolute;
    bottom: 106px;
    left: -56%;
    background: transparent;
    border: 10px solid #F3F5F8;
    border-radius: 30px;
    transform: skewX(-12deg);
    z-index: 0;
}
.courses-page:after {
    content: '';
    display: block;
    width: 1272px;
    height: 535px;
    position: absolute;
    bottom: 56px;
    left: -53%;
    background: #F3F5F8;
    border: 10px solid #F3F5F8;
    border-radius: 30px;
    transform: skewX(-12deg);
    z-index: 0;
}
.courses-page .courses-row {
    margin-bottom: -12px;
}
.why-row {
    display: flex;
    align-items: flex-start;
    margin-top: 50px;
}
.why-item {
    width: calc(100% / 6);
    text-align: center;
    margin-right: 50px;
}
.why-item:last-child {
    margin-right: 0;
}
.why-item__info {
    font-weight: 500;
    font-size: 20px;
    margin-bottom: 0;
    margin-top: 50px;
}
.faq-row {
    margin-top: 50px;
}
.slidedown-item.faq-item {
    border-bottom: none;
    margin-bottom: 10px;
}
.slidedown-item.faq-item.shown {
    background: #2F80ED;
}
.slidedown-item.faq-item:last-child {
    margin-bottom: 0;
}
.slidedown-item-header.faq-item-header {
    padding: 30px;
    color: #fff;
    font-weight: 700;
    font-size: 36px;
}
.slidedown-item__title.faq-item__title {
    width: 60%;
}
.slidedown-item-header.faq-item-header:before {
    width: 20px;
    height: 20px;
    left: auto;
    right: 30px;
    background: url(../images/icons/icon-plus-white.svg) no-repeat;
}
.slidedown-item.faq-item.shown .slidedown-item-header:before {
    transform: translateY(-50%) rotate(180deg);
    filter: none;
    background: url(../images/icons/icon-minus-white.svg) no-repeat;
}
.slidedown-item-content.faq-item-content {
    padding: 0 30px 30px;
    color: #fff;
}
.slidedown-item-content.faq-item-content p {
    margin: 0;
}
.inner-bg__content.course-page-header {
    width: 100%;
    display: flex;
}
.course-inner-info {
    margin-right: 50px;
}
.contacts-form-wrap.course-form-wrap {
    padding: 40px;
    width: 37%;
    flex-shrink: 0;
    background-position: top;
}
.course-info {
    display: flex;
    align-items: center;
    margin-top: 50px;
}
.course-info-item {
    margin-right: 50px;
}
.course-info-item:last-child {
    margin-right: 0;
}
.course-info__title {
    font-size: 14px;
}
.course-info__desc {
    font-weight: 600;
    margin-top: 5px;
    margin-bottom: 0;
    display: flex;
    align-items: center;
}
.course-info__desc:before {
    content: '';
    display: block;
    width: 16px;
    height: 16px;
    margin-right: 10px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
}
.course-info__desc.time-desc:before {
    background-image: url(../images/icons/icon-clock.svg);
}
.course-info__desc.work-desc:before {
    background-image: url(../images/icons/icon-like.svg);
}
.schedule-row {
    margin-top: 50px;
}
.schedule-item {
    margin-bottom: 100px;
}
.schedule-item__time {
    font-weight: 700;
    font-size: 24px;
}
.schedule-item__title {
    margin: 30px 0;
    width: 50%;
}
.schedule-item__desc {
    margin: 0;
    color: #999999;
}
.schedule-item .video-single {
    margin-top: 50px;
}
.schedule-item .video-slide__media {
    height: 660px;
}
.modal.landing-modal {
    width: 1170px;
    border-radius: 5px;
    overflow: hidden;
}
.modal-header {
    padding: 50px;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(../images/landing-modal-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}
.modal-title {
    margin-bottom: 50px;
}
.modal-subtitle {
    font-size: 20px;
}
.modal-body {
    background: #fff;
    padding: 40px;
}
.modal-desc {
    margin: 0;
    color: #999999;
}
.landing-dropdown-link {
    position: relative;
}
.dropdown-body.landing-dropdown.shown {
    display: block;
    z-index: 3;
    left: 0;
    width: 350px;
    max-width: none;
    top: 25.5px;
    height: auto;
    box-shadow: 0px 5px 6px 0px rgba(0,0,0,0.3);
}
.dropdown-body.landing-dropdown .dropdown-top {
    margin-bottom: 0;
}
.modal.thanks-modal {
    width: 439px;
}
.thanks-modal .contacts-form-wrap {
    background-position: center center;
    background-size: 100% auto;
    padding: 42px 40px;
    color: #fff;
    text-align: center;
}
.thanks-modal .contacts-form-wrap > p {
    font-size: 24px;
    margin: 30px 0;
}
.thanks-modal .btn-close-modal {
    margin:  0 auto;
}
.nice-select .nice-select-search-box {
    box-sizing: border-box;
    position: absolute;
    width: 100%;
    margin-top: 5px;
    top: 100%;
    left: 0;
    z-index: 8;
    padding: 5px;
    background: #FFF;
    opacity: 0;
    pointer-events: none;
    border-radius: 5px 5px 0 0;
    -webkit-transform-origin: 50% 0;
    -ms-transform-origin: 50% 0;
    transform-origin: 50% 0;
    -webkit-transform: scale(.75) translateY(-21px);
    -ms-transform: scale(.75) translateY(-21px);
    transform: scale(.75) translateY(-21px);
    -webkit-transition: all .2s cubic-bezier(.5, 0, 0, 1.25), opacity .15s ease-out;
    transition: all .2s cubic-bezier(.5, 0, 0, 1.25), opacity .15s ease-out
}
.nice-select .nice-select-search {
    box-sizing: border-box;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 3px;
    color: #000;
    display: inline-block;
    vertical-align: middle;
    padding: 7px 12px;
    margin: 0 10px 0 0;
    width: 100%!important;
    min-height: 36px;
    line-height: 22px;
    height: auto;
    outline: 0!important
}
.nice-select.open .nice-select-search-box {
    opacity: 1;
    z-index: 10;
    pointer-events: auto;
    -webkit-transform: scale(1) translateY(0);
    -ms-transform: scale(1) translateY(0);
    transform: scale(1) translateY(0) skewX(7deg);
}
.custom-select {
    height: 49px;
    font-size: 14px;
    line-height: 130%;
    padding: 13px 50px 15px 20px;
    border: 4px solid transparent;
    border-radius: 6px;
    color: #000;
    transform: skewX(-7deg);
    -webkit-tap-highlight-color: transparent;
    background-color: #fff;
    clear: both;
    cursor: pointer;
    display: block;
    float: left;
    font-family: inherit;
    font-weight: normal;
    outline: none;
    position: relative;
    text-align: left !important;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    white-space: nowrap;
    width: auto;
    z-index: 2;
}
.filter-item .custom-select > .current {
    display: block;
    transform: skewX(7deg);
    overflow: hidden;
    text-overflow: ellipsis;
}
.filter-item .custom-select > .list {
    width: 100%;
    padding: 0;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 0 0 1px rgb(68 68 68 / 11%);
    box-sizing: border-box;
    margin-top: 4px;
    opacity: 0;
    overflow: hidden;
    pointer-events: none;
    position: absolute;
    top: 100%;
    left: 0;
    -webkit-transform-origin: 50% 0;
    -ms-transform-origin: 50% 0;
    transform-origin: 50% 0;
    -webkit-transform: scale(0.75) translateY(-21px) skewX(7deg);
    -ms-transform: scale(0.75) translateY(-21px) skewX(7deg);
    transform: scale(0.75) translateY(-21px) skewX(7deg);
    -webkit-transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
    transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
    z-index: 9;
}
.custom-select.open .list {
    opacity: 1;
    pointer-events: auto;
    -webkit-transform: scale(1) translateY(0) skewX(7deg);
    -ms-transform: scale(1) translateY(0) skewX(7deg);
    transform: scale(1) translateY(0) skewX(7deg);
}
.custom-select:after {
    border-bottom: 2px solid #999;
    border-right: 2px solid #999;
    content: '';
    display: block;
    height: 5px;
    margin-top: -4px;
    pointer-events: none;
    position: absolute;
    right: 20px;
    top: 50%;
    -webkit-transform-origin: 66% 66%;
    -ms-transform-origin: 66% 66%;
    transform-origin: 66% 66%;
    -webkit-transform: skewX(7deg) rotate(45deg);
    -ms-transform: skewX(7deg) rotate(45deg);
    transform: skewX(7deg) rotate(45deg);
    -webkit-transition: all 0.15s ease-in-out;
    transition: all 0.15s ease-in-out;
    width: 5px;
}
.custom-select.open:after {
    -webkit-transform: skewX(7deg) rotate(-135deg);
    -ms-transform: skewX(7deg) rotate(-135deg);
    transform: skewX(7deg) rotate(-135deg);
}
.custom-select .option {
    cursor: pointer;
    font-weight: 400;
    line-height: 40px;
    list-style: none;
    min-height: 40px;
    outline: none;
    padding-left: 18px;
    padding-right: 29px;
    text-align: left;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
}
.custom-select .option.selected {
    font-weight: bold;
}
.custom-select .option:hover, 
.custom-select .option.focus, 
.niccustome-select .option.selected.focus {
    background-color: #f6f6f6;
}
.custom-select .list label {
    display: block;
    cursor: pointer;
}
.custom-select .list input[type="checkbox"] {
    position: absolute;
    z-index: -1;
    opacity: 0;
}
.custom-select .list input[type="checkbox"]:checked + span {
    font-weight: bold;
}
.reveal {
    opacity: 0;
    transform: translateY(30px);
}
.reveal.reveal-shown {
    opacity: 1;
    transition: all 1.5s;
    transform: translateY(0%);
}
.lottie-svg {
    position: absolute;
}
svg#expert {
    height: 625px !important;
}
svg#tour-inner {
    width: 180px !important;
    height: 180px !important;
}
svg#services {
    top: 0;
    height: 80% !important;
    right: -1%;
}
.services-page svg#services {
    height: 50% !important;
}
svg#courses {
    bottom: 0;
    height: 1000px !important;
    width: 108% !important;
    right: -8%;
}
.courses-page svg#courses {
    top: 20%;
}

.catalog-text {
    padding-top: 30px;
}
.catalog-text .text-section-content {
    padding: 40px;
    border-radius: 10px;
    justify-content: space-between;
}
.catalog-wrap {
    display: flex;
    align-items: flex-start;
}
.filters-wrap {
    width: 248px;
    flex-shrink: 0;
    margin-right: 50px;
}
.filters-close {
    display: none;
}
.filters-form-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 24px;
}
.filters-reset__btn {
    font-size: 14px;
    color: #828282;
    background: #fff;
    border: none;
    padding: 0;
    margin: 0;
    cursor: pointer;
}
.filters-reset__btn:hover {
    text-decoration: underline;
}
.filters-group {
    padding-bottom: 24px;
    border-bottom: 1px solid #BDBDBD;
}
.filters-group__title {
    padding: 20px 0;
}
.filters-row {
    display: flex;
    flex-direction: column;
}
.filter-label {
    font-size: 14px;
    display: flex;
    align-items: center;
    padding: 12px 0;
    cursor: pointer;
}
.filter-label > input[type="radio"],
.filter-label > input[type="checkbox"] {
    display: none;
}
.filter-label__title {
    color: #111111;
    transition: 0.25s all ease-in-out;
}
.filter-label > input[type="radio"]:checked + .filter-label__title,
.filter-label:hover input[type="radio"] + .filter-label__title {
    font-weight: 600;
    color: #f01420;
}
.filters-row.range-slider-wrap {
    padding: 16px 0;
}
.range-slider.ui-widget.ui-widget-content {
    border: none;
    background: #E0E0E0;
    border-radius: 20px;
    height: 4px;    
}
.range-slider .ui-widget-header {
    background: #2F80ED;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}
.range-slider.ui-slider-horizontal .ui-slider-handle {
    top: -8px;
    width: 20px;
    height: 20px;
    background: #2F80ED;
    border: 2px solid #2F80ED;
    box-shadow: 0px 0px 10px rgb(0 0 0 / 10%);
    border-radius: 50px;
}
.range-slider-values {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;  
    margin-top: 24px;  
    font-size: 20px;
    font-weight: 700;
}
.checkbox-sq {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    background: #fff;
    margin-right: 10px;
    border: 2px solid #2F80ED;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.25s all ease-in-out;
}
.checkbox-sq:before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background: url(../images/icons/icon-check-white.svg) no-repeat;
    background-position: center center;
    opacity: 0;
    transition: 0.25s all ease;
}
.filter-label > input[type="checkbox"]:checked + .checkbox-sq {
    background: #2F80ED;
}
.filter-label > input[type="checkbox"]:checked + .checkbox-sq:before {
    opacity: 1;
}
.products-wrap {
    flex-grow: 1;
}
.products-wrap-header {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.catalog-filters__toggler {
    display: none;
    line-height: 1;
}
.sort-wrap {
    display: flex;
    justify-content: flex-end;
    padding: 10px;
    font-size: 14px;
}
.sort-list {
    display: flex;
    align-items: center;
}
.sort-link {
    color: #111111;
    font-weight: 600;
    margin-left: 30px;
    transition: 0.3s color ease-in-out;
}
.sort-link.active {
    color: #2F80ED;
}
.products-list {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    margin: 25px -15px;
}
.product-item {
    width: calc(100% / 3);
    padding: 25px 15px;
}
.product-item__form {
    display: flex;
    flex-direction: column;
}
.product-img {
    position: relative;
    height: 189px;
    overflow: hidden;
}
.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s all ease-in-out;
}
.product-img:hover img {
    transform: scale(1.25);
}
.product-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    display: block;
    padding: 10px;
    border-radius: 300px;
    font-weight: 500;
    font-size: 13px;
    color: #fff;
    text-transform: uppercase;
    z-index: 2;
}
.product-badge.badge-new {
    background: #219653;
}
.product-badge.badge-sale {
    background: #C20202;
}
.product-badge.badge-top {
    background: #031B96;
}
.product-title {
    font-weight: 700;
    font-size: 20px;
    margin-top: 30px;
    margin-bottom: 24px;
    color: #000;
}
.product-availability {
    display: flex;
    align-items: center;
    font-size: 14px;
}
.product-availability:before {
    content: '';
    display: block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #C20202;
    margin-right: 10px;
}
.product-availability.instock:before {
    background: #219653;
}
.product-info {
    display: flex;
    flex-direction: column;
    margin: 24px 0;
    font-size: 14px;
}
.product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.product-prices {
    display: flex;
    align-items: center;
}
.product-price__old {
    font-size: 14px;
    color: #828282;
    margin-right: 10px;
}
.product-price {
    font-size: 20px;
    font-weight: 700;
}
.cart-add-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #2F80ED;
    padding: 0;
    margin: 0;
    border: none;
    outline: none;
    cursor: pointer;    
    transition: 0.3s background ease-in-out;
}
.cart-add-btn:hover {
    background: #0B60D2;
}
.product-item.swiper-slide {
    padding: 0;
}
.prod-info-wrap {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}
.prod-gallery,
.prod-description {
    width: calc((100% - 80px) / 2);
}
.prod-gallery {
    display: flex;
}
.prod-thumbs .swiper-slide.thumb-slide {
    width: 80px;
    height: 56px;
    opacity: 0.23;
}
.prod-thumbs .swiper-slide.thumb-slide.swiper-slide-thumb-active {
    opacity: 1;
}
.prod-thumbs .swiper-slide.thumb-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.prod-images {
    width: calc(100% - 96px);
    height: 314px;
    margin-left: 16px;
    overflow: hidden;
}
.prod-images .swiper-slide.gal-slide {
    position: relative;
    width: 100%;
    max-width: 100%;
}
.prod-images .swiper-slide.gal-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.prod-description {
    display: flex;
    flex-direction: column;
}
h1.prod-title {
    font-size: 24px;
    margin-bottom: 24px;
}
.prod-price {
    font-weight: 700;
    font-size: 36px;
    margin-bottom: 24px;
}
.prod-page__form {
    display: flex;
    flex-direction: column;
}
.prod-form__group {
    display: flex;
    align-items: flex-start;
    margin-bottom: 24px;
}
.prod-form__group:last-child {
    margin-bottom: 0;
}
.form-group__title {
    font-size: 14px;
    margin-right: 30px;
}
.prod-type__label {
    display: flex;
    align-items: center;
    margin-bottom: 18px;
    font-size: 14px;
}
.prod-type__label > input[type="radio"] {
    display: none;
}
.custom-radio {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background: #BDBDBD;
    border-radius: 50%;
    margin-right: 16px;
    transition: 0.3s background ease-in-out;
}
.custom-radio:before {
    content: '';
    display: block;
    width: 10px;
    height: 10px;
    background: #fff;
    border-radius: 50%;
    opacity: 0;
    transition: 0.3s opacity ease-in-out;
}
.prod-type__label > input[type="radio"]:checked + .custom-radio {
    background: #2F80ED;
}
.prod-type__label > input[type="radio"]:checked + .custom-radio:before {
    opacity: 1;
}
.prod-form__actions > button {
    width: 100%;
}
.prod-form__actions .loan-btn {
    border: 2px solid #2F80ED;
    background: #fff;
    color: #2F80ED;
    margin-bottom: 10px;
}
.prod-form__actions .loan-btn:hover {
    background: #2F80ED;
    color: #fff;
}
.prod-tabs-header {
    width: 100%;
    list-style: none;
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;        
}
.prod-tabs-header > li {
    width: 25%;
}
.prod-tabs-header > li .tab-toggler {
    justify-content: center;
    padding: 20px 0;
    font-weight: 700;
    font-size: 24px;
    color: #000;
}
.prod-tabs-header > li .tab-toggler.active {
    color: #2F80ED;
}
.prod-tab {
    padding-top: 50px;
}
.prod-tab p {
    margin-top: 0;
}
.prod-tab ul {
    list-style: none;
    margin: 30px 0;
    padding: 0;
    font-size: 16px;
}
.prod-tab ul > li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}
.prod-tab ul > li:last-child {
    margin-bottom: 0;
}
.prod-tab ul > li:before {
    content: '';
    display: block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #2F80ED;
    margin-right: 20px;
    flex-shrink: 0;
}
.prod-tab .article-slider {
    margin: 50px 0;
}
.news-wrap.looked-wrap {
    margin-bottom: 0;
}

/* media queries */
@media (max-width: 1600px) {
    .swiper-button-prev.hero-slider-btn {
        left: 120px;
    }
    .swiper-button-next.hero-slider-btn {
        right: 120px;
    }
}
@media (max-width: 1480px) {
    .hero-slide-content {
        padding-left: 150px;
    }
    .news-wrap, .instagram-wrap {
        padding: 0 60px;
    }
    .news-slider-btn,
    .instagram-slider-btn {
        width: 50px;
        height: 34px;
    }
    .swiper-button-prev.news-slider-btn,
    .swiper-button-prev.instagram-slider-btn {
        left: 0;
    }
    .swiper-button-next.news-slider-btn,
    .swiper-button-next.instagram-slider-btn {
        right: 0;
    }
    .slidedown-item-header.faq-item-header {
        font-size: 26px;
    }
    .callback-section-img {
        left: 60%;
    }
    .callback-section-img img {
        position: absolute;
        bottom: 0;
        z-index: 1;
        height: 100%;
        width: auto;
        object-fit: contain;
        object-position: bottom;
    }
}
@media (max-width: 1200px) {  
    .hero-slide-content {
        padding-left: 220px;
    }
    .services-path, 
    .courses-path {
        max-width: 100%;
    }    
    .quals-content {
        margin: 35px 0;
    }
    .quals-content__item {
        padding: 15px;
    }
    .courses-info {
        margin: 55px 0 0;
    }
    .team-row {
        margin: 25px 0 -25px 0;
    }
    .pros-tab-body {
        margin: 0;
    }
    .course-item {
        width: 50%;
    }
}
@media (max-width: 1200px) and (min-width: 1024px) {
    .callback-section {
        height: 550px;
    }
    .callback-section-img {
        left: 55%;
        width: 35%;
    }
    svg#expert {
        height: 560px !important;
        bottom: 0;
    }
}
@media (max-width: 992px) {   
    body {
        font-size: 14px;
    } 
    h1,.h1 {
        font-size: 1.875rem;
    }
    h2,.h2 {
        font-size: 1.7rem;
    }
    h3,.h3 {
        font-size: 1.5rem
    }
    h4,.h4 {
        font-size: 1.25rem;
    }
    h5,.h5 {
        font-size: 1.125rem;
    }
    h6,.h6 {
        font-size: 1rem;
    }
    .section {
        padding-top: 40px;
        padding-bottom: 40px;
    }    
    .header-phone {
        font-size: 16px;
    }
    .hero {
        min-height: 470px;
        height: 470px;
    }
    .hero-slide-content {
        top: 0;
        left: 0;
        width: 100%;
        padding-left: 0;
        padding-top: 160px;
        transform: translateY(0);
    }   
    .hero-slide__title {
        font-size: 2.125rem;
    } 
    .hero-slide__subtitle {
        font-size: 1.25rem;
    }
    .hero-slide__actions {
        margin-top: 30px;
    }
    .swiper-pagination.hero-slider-pagination {
        bottom: 30px;
    }
    .hero-slider-btn {
        display: none;
    }
    .service-item__title {
        font-size: 14px;
    }
    .callback-section {
        height: 400px;
    }
    .callback-path {
        display: none;
    }
    .callback-section-img {
        left: auto;
        right: auto;
        width: 100%;
        height: 100%;
    }
    .callback-section-img img {
        right: 0;
        bottom: 0;
    }
    .callback-form-wrap {
        width: 60%;
    }
    .vtour {
        height: 470px;
    }
    .vtour-path {
        top: 40px;
    }
    .vtour-play {
        margin: 50px 0;
    }
    .filter-example-sum {
        margin-right: 10px;
    }
    .filter-example__img {
        width: 100px;
    }
    .contacts-info {
        margin-right: 50px;
    }
    .swiper-slide.instagram-slide,
    .swiper-slide.news-slide, .news-item {
        height: 380px;
    }
    .inner-bg.bg-large {
        height: 470px;
    }
    .bg-large .inner-bg__content {
        width: 80%;
    }
    .inner-bg__subtitle {
        font-size: 16px;
        margin-top: 20px;
        margin-bottom: 30px;
    }
    .video-play {
        width: 100px;
        height: 100px;
        right: 40px;
    }
    .video-play:before {
        width: 130px;
        height: 130px;
    }
    .service-item {
        height: 480px;
    }
    .service-item-info {
        padding-bottom: 16px;
    }
    .swiper-slide.portfolio-slide {
        width: 350px;
        height: 350px;
    }
    .portfolio-slide-content {
        padding: 15px;
    }
    .course-item {
        width: 50%;
        height: 300px;
    }
    .news-slide__media,
    .news-item__media {
        height: 100%;
        max-height: 100%;
    }
    .news-slide__media:before,
    .news-item__media:before {
        opacity: 1;
    }
    .news-slide-content > *, 
    .news-item-content > * {
        color: #fff;
    }
    .why-row {
        flex-wrap: wrap;
        justify-content: center;
    }
    .why-item {
        width: calc(100% / 3);
        padding: 20px 10px;
        margin-right: 0;
    }
    .slidedown-item-header.faq-item-header {
        font-size: 20px;
        padding: 15px;
    }
    .course-inner-info {
        margin-right: 20px;
    }
    .contacts-form-wrap.course-form-wrap {
        padding: 25px 20px;
        width: 40%;
    }
    .course-info {
        margin-top: 30px;
    }
    .course-info-item {
        margin-right: 25px;
    }
    .team-member-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: top;
    }
    header-wrapper {
        justify-content: flex-end;
    }
    .header-logo {
        margin-right: auto;
    }
    .header-menu-wrap {
        display: none;
    }
    .header-contacts {
        margin-right: 20px;
    }
    .header-cart-wrap {
        margin-right: 40px;
    }
    .burger-toggler {
        display: block;
        background: #000;
        width: 48px;
        height: 48px;
        padding: 13px 12px;
        border-radius: 50%;
        line-height: 0;
        cursor: pointer;
    }
    .burger-toggler span {
        display: block;
        width: 24px;
        height: 2px;
        background: #fff;
        margin: 4px auto;
        -webkit-transition: all 0.3s ease-in-out;
        -o-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out;
    }
    .burger-toggler.active span:nth-child(1) {
        -webkit-transform: translateY(6px) rotate(45deg);
        -ms-transform: translateY(6px) rotate(45deg);
        -o-transform: translateY(6px) rotate(45deg);
        transform: translateY(6px) rotate(45deg);
    }
    .burger-toggler.active span:nth-child(2) {
        opacity: 0;
    }
    .burger-toggler.active span:nth-child(3) {
        -webkit-transform: translateY(-6px) rotate(-45deg);
        -ms-transform: translateY(-6px) rotate(-45deg);
        -o-transform: translateY(-6px) rotate(-45deg);
        transform: translateY(-6px) rotate(-45deg);
    }
    .mobile-nav {
        display: block;
        position: fixed;
        top: 110px;
        left: 0;
        transform: translateY(-100%);
        background: #fff;
        width: 100%;
        height: 100vh;
        border-top: 2px solid #f3f3f3;
        opacity: 0;
        visibility: hidden;
        transition: 0.35s all ease-in-out;
        z-index: 9999;
        overflow-y: auto;
    }
    .mobile-nav.shown {
        visibility: visible;
        transform: translateY(0);
        opacity: 1;
    }
    .mobile-nav__body {
        padding: 30px 15px;
    }
    .mobile-nav__menu {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .mobile-nav__menu > li {
        margin-bottom: 15px;
    }
    .mobile-nav__menu > li:last-child {
        margin-bottom: 0;
    }
    .mobile-nav__menu > li > a {
        display: block;
        text-align: center;
        color: #000;
        font-size: 16px;
    }
    .mobile-nav__contacts {
        text-align: center;
        margin: 40px 0;
    }
    .mobile-nav__contacts a {
        display: block;
        line-height: 24px;
    }
    .mobile-nav__socials {
        list-style: none;
        margin: 0 -10px;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .mobile-nav__socials li {
        margin: 0 10px;
    }
    .mobile-dropdown {        
        display: none;
        list-style: none;
        padding: 10px 0 12px 5px;
        margin: 0;
    }
    .mobile-dropdown > li {
        text-align: center;
        margin-bottom: 5px;
    }
    .mobile-dropdown > li:last-child {
        margin-bottom: 0;
    }
    .mobile-dropdown > li a {
        font-size: 14px;
        color: #999999;
        font-weight: 300;
    }
    .to-up {
        width: 50px;
        height: 50px;
    }
    .to-up svg {
        height: 24px;
    }
    .footer-top {
        flex-wrap: wrap;
    }
    .footer-top-info {
        flex-direction: row;
        align-items: center;
        flex-wrap: wrap;
        width: 100%;
        margin-right: 0;
    }
    .footer-logo {
        width: 98px;
        margin-right: 20px;
    }
    .company-desc {
        width: calc(100% - 118px);
    }
    .footer-contacts {
        order: 1;
        width: 100%;
        margin-bottom: 20px;
    }
    .footer-top-info > a.btn-theme {
        order: 2;
    }
    .footer-block__title {
        margin-bottom: 15px;
    }
    .footer-contacts__list li:first-child {
        margin-bottom: 12px;
    }
    .footer-top-menus {
        width: 100%;
        margin: 10px 0;
        flex-wrap: wrap;
    }
    .footer-menu__block {
        margin: 0 0 30px 0;
        width: 100%;
    }
    .footer-menu {
        display: none;
    }
    .footer-menu__block:nth-child(2) .footer-menu {
        columns: 1;
        column-gap: 0;
    }
    .footer-menu li {
        margin-bottom: 15px;
    }
    .footer-menu__block .footer-block__title {
        display: flex;
        align-items: center;
    }
    .footer-menu__block .footer-block__title:after {
        content: '';
        display: block;
        width: 20px;
        height: 20px;
        margin-left: auto;
        margin-right: 20px;
        filter: brightness(0);
        background: url(../images/icons/icon-plus-white.svg) no-repeat;
        transition: 0.45s all ease-in-out;
    }
    .footer-menu__block .footer-block__title.active:after {
        transform: rotate(180deg);
        background: url(../images/icons/icon-minus-white.svg) no-repeat;
    }
    .filter-brands {
        margin: 30px -10px 20px -10px;
    }
    .filter-brands__item {
        width: 40px;
        height: 40px;
        margin: 10px;
    }
    .filter-block {
        padding: 20px;
    }
    .filter-block-top, 
    .filter-block-middle, 
    .filter-block-bottom {
        flex-wrap: wrap;
    }
    .filter-item {
        padding: 4.5px;
    }    
    .services-list li a {
        background: #e5e5e5;
    }   
    .filter-tabs-header {
        flex-direction: column;
    } 
    .filter-tabs-header > li {
        margin: 0;
        padding: 10px 0;
    }
    .pros-tab-body {
        flex-wrap: wrap;
    }
    .pros-tab-img {
        order: 1;
        width: 100%;
        margin-bottom: 10px;
    }
    .pros-tab-text {
        order: 2;
    }
    .catalog-wrap {
        flex-direction: column;
    }
    .filters-wrap {
        display: block;
        position: fixed;
        left: 0;
        top: 0;
        margin-right: 0;
        transform: translateX(-100%);        
        width: 100%;
        height: 100vh;
        padding: 50px 50px 30px 30px;
        background: #fff;
        border-top: 2px solid #f3f3f3;
        opacity: 0;
        visibility: hidden;
        transition: 0.35s all ease-in-out;
        z-index: 9999;
        overflow-y: auto;
    }
    .filters-wrap.shown {
        visibility: visible;
        transform: translateX(0);
        opacity: 1;
    }
    .products-wrap-header {
        justify-content: space-between;
    }
    .catalog-filters__toggler {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 48px;
        height: 48px;
        border-radius: 50%;
        background: #2f80ed;
    }
    .filters-close {
        position: absolute;
        top: 10px;
        right: 10px;
        display: block;
        width: 30px;
        height: 30px;
        border: none;
        border-radius: 50%;
        background: url(../images/icons/icon-close-filters.svg), #2f80ed;
        background-repeat: no-repeat;
        background-size: 15px;
        background-position: center center;
        cursor: pointer;
        transition: 0.3s all linear;
    }
    .filters-close:hover {
        transform: scale(1.3);
    }
    .prod-info-wrap {
        flex-direction: column;
    }
    .prod-gallery,
    .prod-description {
        width: 100%;
    }
    .prod-gallery {
        margin-bottom: 40px;
    }
}
@media (max-width: 825px) {
    .filters-result {
        margin-top: 15px;
        text-align: left;
    }
    .filter-example {
        width: 100%;
        justify-content: space-between;
        margin-bottom: 30px;
    }
    .service-item {
        width: calc(100% / 2);
    }    
    .news-item {
        width: calc((100% - 72px) / 2);
    }
    .pagination > li {
        margin: 0 15px;
        font-size: 16px;
    }
    .pagination > li.prev, 
    .pagination > li.next {
        width: 50px;
        height: 34px;
        padding: 0;
    }
    .article-header {
        padding: 0;
    }
    .article-gallery {
        height: 335px;
    }
    .article-img {
        max-height: 330px;
        margin: 30px 0;
    }
    .article-body blockquote {
        font-size: 20px;
        padding: 60px 15px 15px 50px;
    }
    .article-body blockquote:after {
        top: 10px;
        right: 10px;
    }
    .article-body blockquote p {
        margin: 0 0 45px 0;
    }
    .article-video {
        height: 380px;
    }
    .inner-bg {
        height: 250px;
        padding-top: 110px;
    }
    .contacts-wrap {
        flex-wrap: wrap;
    }
    .contacts-info {
        width: 100%;
        margin-right: 0;
        margin-bottom: 50px;
    }
    .contacts-list {
        width: 100%;
        margin-top: 40px;
    }
    .contacts-list-item:last-child {
        margin-top: 0;
    }
    .contacts-item__title {
        margin-bottom: 10px;
    }
    .contacts-item__title:before {
        margin-right: 5px;
    }
    .contacts-item__desc {
        font-size: 16px;
    }
    .contacts-form-wrap {
        width: 100%;
    }
    .contacts-map-wrap {
        flex-wrap: wrap;
    }
    .contacts-map {
        margin-right: 0;
        width: 100%;
        margin-bottom: 10px;
    }
    .contacts-reviews,
    .contacts-reviews > div {
        width: 100% !important;
    }
    .contacts-card tr td {
        padding: 15px;
    }
    .courses-info-item {
        width: calc(100% / 2);
        padding: 10px;
    }
    .inner-bg.bg-big {
        padding-bottom: 55px;
    }
    .inner-bg__content.course-page-header {
        flex-wrap: wrap;
    }
    .contacts-form-wrap.course-form-wrap {
        width: 100%;
        margin-top: 30px;
    }
    .schedule-item {
        margin-bottom: 60px;
    }
    .schedule-item .video-slide__media {
        height: 350px;
    }
    .team-member {
        width: calc(100% / 2);
        padding: 15px;
    }
    .text-section-content > p {
        font-size: 16px;
        margin: 0 30px 0 0;
    }
    .filter-tabs-header {
        margin: 0;
    }
    .filter-tabs-header > li {
        margin: 0;
    }
    .qty-btn.btn {
        width: 50px;
        height: 34px;
        padding: 0;
    }
    .qty-field {
        width: 80px;
        height: 34px;
    }
    .pros-tab-body > div {
        padding: 0 10px;
    }
    .pros-tab-body ul {
        font-size: 16px;
        line-height: 130%;
    }
    .quals-content {
        margin: 20px 0;
    }
    .quals-content__item {
        padding: 10px;
    }
    .filter-selected-row,
    .filter-actions {
        flex-wrap: wrap;
    }
    .product-item {
        width: calc(100% / 2);
        padding: 25px 15px;
    }
}
@media (max-width: 768px) {
    h1,.h1 {
        font-size: 1.75rem;
    }
    h2,.h2 {
        font-size: 1.5rem;
    }
    h3,.h3 {
        font-size: 1.25rem
    }
    h4,.h4 {
        font-size: 1rem;
    }
    h5,.h5 {
        font-size: 0.875rem;
    }
    h6,.h6 {
        font-size: 1.6rem;
    }
    .btn {
        font-size: 13px;
        padding: 10px 13px;
    }
    .header-wrapper {
        padding-top: 15px;
    }
    .header-logo svg {
        height: 48px;
    }
    .header-contacts {
        display: none;
    }
    .mobile-nav {
        top: 68px;
    }
    .hero-slide-content {
        padding-top: 120px;
    }
    .hero-slide__title {
        font-size: 1.75rem;
    }
    .video-play {
        opacity: 0.5;
        right: auto;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 1;
    }
    .hero-slide__actions {
        flex-direction: column;
        align-items: flex-start;
        margin: 30px 0 -10px 0;
    }
    .hero-slide__actions a {
        margin: 0 0 10px 0;
    }
    .swiper-pagination.hero-slider-pagination {
        bottom: 10px;
    }
    .filter-item {
        padding: 5px 0;
        width: 100%;
    }
    .filter-item .nice-select.open {
        z-index: 5;
    }    
    .filter-item .custom-select.open {
        z-index: 4;
    }
    .filter-example {
        flex-direction: column;
        align-items: flex-start;
    }
    .filter-example-sum {
        margin-right: 0;
        margin-bottom: 15px;
    }
    .filter-example__link {
        font-size: 12px;
    }
    .filter-actions {
        width: 100%;
        flex-direction: column;
        align-items: center;
        margin: 0 0 -10px 0;
    }
    .filter-actions a {
        margin: 0 0 10px 0;
    }
    .services-row {
        margin: 25px 0 10px 0;
    }
    .service-item {
        width: 100%;
        height: 320px;
        padding: 0;
        margin-bottom: 15px;
    }
    .service-img img {
        object-position: top;
    }
    .service-item__desc {
        padding: 15px 15px 0 15px;
    }
    .service-item__action,
    .course-item__action {
        width: 50px;
        height: 34px;
    }
    .service-item__action:before,
    .course-item__action:before {
        height: 34px;
    }
    .services-list {
        columns: 1;
        column-gap: 0;
    }
    .callback-section {
        height: auto;
        padding: 20px 0;
    }
    .callback-section-img {
        display: none;
    }
    .callback-form-wrap {
        width: 100%;
    }
    .vtour-play {
        width: 100px;
        height: 100px;
    }
    .vtour-play:before {
        width: 130px;
        height: 130px;
    }
    .courses-row {
        margin: 30px 0 10px 0;
    }
    .course-item,
    .course-item.item-big {
        width: 100%;
        padding: 0;
        margin-bottom: 15px;
    }
    .course-item__desc {
        padding-left: 10px;
    }
    .news-title {
        font-size: 16px;
        margin: 15px 0;
    }
    .news-intro,
    .news-date {
        font-size: 12px;
    }
    .subscribe-content {
        padding: 10px;
    }
    .subscribe-content > h4 {
        width: 100%;
    }
    .form-group-row {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin: 0 0 10px 0;
    }
    .form-group-row .form-group {
        width: 100%;
        margin: 0 0 10px 0;
    }
    .form-group.form-actions {
        justify-content: center;
    }
    .quals-content {
        margin: 20px 0;
        flex-direction: column;
    }
    .quals-content__item {
        width: 100%;
        padding: 0;        
        font-size: 14px;
        margin-bottom: 15px;
    }
    .quals-content__item:last-child {
        margin-bottom: 0;
    }
    .news-wrap, .instagram-wrap {
        margin: 25px 0;
        padding: 0;
    }
    .news-slider-btn, 
    .instagram-slider-btn {
        display: none;
    }
    .footer-socials {
        margin-bottom: 30px;
    }
    .copyright,
    .policy {
        font-size: 14px;
    }
    .policy {
        margin-top: 30px;
        text-align: center;
    }
    .footer-logo {
        width: auto;
    }
    .footer-logo svg {
        width: auto;
        height: 48px;
    }
    .company-desc {
        width: calc(100% - 73px);
        font-size: 14px;
    }
    .footer-contacts__list li {
        font-size: 16px;
    }
    .footer-contacts__list li:before {
        width: 18px;
        height: 18px;
    }
    .news-list {
        margin: 25px 0 0;
    }
    .news-item {
        width: 100%;
        margin: 0 0 15px 0;
    }
    .news-item.item-big {
        height: 380px;
    }
    .article-date, 
    .article-share {
        font-size: 12px;
    }
    .article-body {
        font-size: 12px;
    }
    .article-gallery {
        height: 250px;
    }
    .article-thumbs .thumbs-slide {
        height: 50px;
    }
    .article-body ul {
        margin: 20px 0;
        font-size: 12px;
    }
    .article-body blockquote {
        font-size: 16px;
        padding: 40px 15px 15px 30px;
    }
    .article-body blockquote:after {
        width: 26px;
        height: 18px;
    }
    .article-body blockquote p {
        margin: 0 0 20px 0;
    }
    .quote-author {
        font-size: 12px;
    }
    .article-footer {
        margin: 20px 0;
        padding: 20px 0;
    }
    .article-video {
        height: 250px;
    }
    .contacts-info {
        margin-bottom: 30px;
    }
    .contacts-list-item {
        margin-bottom: 15px;
    }
    .contacts-item__title {
        margin-bottom: 5px;
        font-size: 11px;
    }
    .contacts-item__title:before {
        width: 15px;
        height: 15px;
    }
    .contacts-item__desc {
        font-size: 12px;
    }
    .contacts-form-wrap {
        width: 100%;
        padding: 20px 15px;
    }
    .contacts-map-wrap {
        padding: 0;
    }
    .contacts-map {
        height: 350px;
        margin-bottom: 15px;
        overflow: hidden;
    }
    .contacts-map > div,
    .contacts-map iframe {
        width: 100%;
        height: 100%;
    }
    .contacts-card {
        margin-top: 40px;
        font-size: 11px;
    }
    .text-section-content {
        margin-top: 20px;
        flex-direction: column;
    }
    .text-section-content > p {
        font-size: 14px;
        margin: 0 0 15px 0;
    }
    .video-slide__info h5 {
        font-size: 16px;
    }
    .team-row {
        margin: 25px 0 0;
    }
    .team-member {
        width: 100%;
        padding: 0;
        margin-bottom: 15px;
    }
    .team-member:last-child {
        margin-bottom: 0;
    }
    .team-member-img {
        height: 250px;
    }
    .courses-info {
        margin: 35px 0 0;
    }
    .courses-info-item {
        width: 100%;
        padding: 0;
        margin-bottom: 15px;
    }
    .courses-info-item:last-child {
        margin-bottom: 0;
    }
    .courses-info-inner p {
        font-size: 16px;
        margin-bottom: 15px;
    }
    .courses-info-inner span {
        font-size: 12px;
    }
    .search-wrap {
        padding: 20px;
        margin: 25px 0;
    }
    .why-item {
        width: calc(100% / 2);
    }
    .why-item__img svg {
        height: 35px;
    }
    .why-item__info {
        font-size: 12px;
        margin-top: 15px;
    }
    .slidedown-item-header.faq-item-header {
        font-size: 12px;
    }
    .slidedown-item__title.faq-item__title {
        width: 70%;
    }
    .slidedown-item-content.faq-item-content {
        padding: 0 15px 15px;
        font-size: 12px;
    }
    .inner-bg__content {
        margin-top: 25px;
    }
    .course-inner-info {
        margin-right: 0;
    }
    .course-info {
        flex-wrap: wrap;
    }
    .course-info-item {
        margin-right: 15px;
        margin-bottom: 15px;
    }
    .course-info__title {
        font-size: 12px;
    }
    .course-info__desc {
        font-size: 10px;
    }
    .inner-bg__subtitle {
        font-size: 14px;
        margin-top: 10px;
    }
    .contacts-form .form-group {
        margin-bottom: 25px;
    }
    .contacts-form .checkbox-custom {
        width: 100%;
    }
    .checkbox-custom label {
        font-size: 11px;
    }
    .checkbox-custom label span {
        width: 18px;
        height: 18px;
        border-radius: 4px;
    }
    .schedule-item__title {
        margin: 15px 0;
        width: 100%;
    }
    .schedule-item .video-slide__media {
        height: 250px;
    }
    .portfolio-list .portfolio-slide {
        width: 100%;
        padding: 0;
        margin-bottom: 15px;
        border-radius: 4px;
        overflow: hidden;
    }
    .portfolio-slide-content span {
        font-size: 12px;
    }
    .callback-form-wrap > h4 {
        text-align: center;
    }
    .callback-form {
        margin-top: 30px;
    }
    .gallery-item {
        width: 100%;
        height: 180px;
        padding: 5px 0;
    }
    .vtour-path {
        display: none;
    }
    .filter-tabs-wrap {
        padding: 10px;
    }
    .filter-tabs-content {
        margin-top: 15px;
    }
    .slidedown-item-header {
        padding: 10px 10px 10px 20px;
    }
    .slidedown-item-header:before {
        left: 0;
    }
    .slidedown-item-content {
        display: none;
        padding-left: 15px;
        padding-right: 5px;
    }
    .slidedown-list > li {
        flex-direction: column;
    }
    .slidedown-list__form {
        margin-top: 15px;
        flex-direction: column;
        align-items: flex-start;
    }
    .qty-wrap {
        margin-right: 0;
        width: 100%;
        margin-bottom: 15px;
    }
    .tab-toggler {
        font-size: 16px;
        padding: 0 20px 10px 20px;
    }
    .catalog-text .text-section-content {
        padding: 20px;
        text-align: center;
    }
    .products-wrap-header {
        flex-wrap: wrap;
    }    
    .products-list {
        margin: 30px 0;
    }
    .product-item {
        width: 100%;
        padding: 0;
        margin-bottom: 30px;
    }
    .product-item:last-child {
        margin-bottom: 0;
    }
    .prod-tabs-header {
        flex-direction: column;
    }
    .prod-tabs-header > li {
        width: 100%;
    }
}
@media (max-width: 480px) {
    .catalog-filters__toggler {
        width: 30px;
        height: 30px;
    }
    .catalog-filters__toggler > svg {
        width: 16px;
        height: 16px;
    }
    .sort-wrap {
        font-size: 12px;
    }
    .sort-link {
        margin-left: 15px;
    }
    .prod-thumbs .swiper-slide.thumb-slide {
        width: 50px;
        height: 35px;
    }
    .prod-images {
        width: calc(100% - 55px);
        height: 250px;
        margin-left: 15px;
    }
}







.group-row-service {
    display: flex;
    flex-direction: row;
    gap: 20px;
}


.table-other table { border-collapse: collapse; width: 100%;font-size:19px;}.table-other { font-family: Proxima Nova Regular; padding-bottom: 30px;}.table-other:after { float: right; content: 'ЦЕНЫ УКАЗАНЫ В РУБЛЯХ'; color: #a2a2a2; font-weight: 600; font-size: 10px; letter-spacing: 1.5px; font-family: Roboto Slab; margin-top: 2px;}.first-name {font-size:24px; width: 410px; padding-left: 5px; font-weight: 800; box-sizing: border-box; letter-spacing: .05rem; height: 70px;}.first-name:first-letter {font-size: 30px;}.table-other .row-class { position: relative;text-align: center; width: 70px; cursor: pointer;}.table-other .row-class a { position: absolute; width: 100%; height: 100%; top: 0; left: 0; right: 0; bottom: 0;}span.item-row { font-size: 3.8rem; color: #2F80ED;}span.rev { -webkit-writing-mode: tb-rl; -ms-writing-mode: tb-rl; writing-mode: tb-rl; font-size: .7rem; text-transform: uppercase; color: #2F80ED; font-weight: 900; letter-spacing: .5px;}.table-other tbody { border-top: 1px solid rgba(167, 160, 144, .25); width: 100%; table-layout: fixed;}.table-other tbody tr { border-bottom: 1px solid rgba(167, 160, 144, .1);}.table-other tbody td { padding: 5px;}.table-other tbody td:first-child { background: #f9fcff;}.table-other tbody td:not(:first-child) { font-weight: bold; text-align: center;}.table-other tbody td:nth-child(2) {background: #ecf4ff;}.table-other tbody td:nth-child(3) {background: #e1eeff;}.table-other tbody td:nth-child(4) {background: #cce2ff;}.table-other tbody td:nth-child(5) {background: #b6d3f8;}.table-other tbody td:nth-child(6) {background: #d6d0c4;}.table-other .separator { font-weight: normal; margin-left: -2px;}.row-class:nth-child(2):hover {background: #ecf4ff;-webkit-transition: background .4s ease;transition: background .4s ease}.row-class:nth-child(3):hover { background: #e1eeff; -webkit-transition: background .4s ease; transition: background .4s ease;}.row-class:nth-child(4):hover{ background: #cce2ff; -webkit-transition: background .4s ease; transition: background .4s ease;}.row-class:nth-child(5):hover { background: #b6d3f8; -webkit-transition: background .4s ease; transition: background .4s ease;}.row-class:nth-child(6):hover { background: #d6d0c4; -webkit-transition: background .4s ease; transition: background .4s ease;}

   .content-cms tr td {
    padding: 20px;
    border-bottom: 1px solid #727171;
   }

   .content-cms tr:not(:last-child) td {
      border-bottom: 1px solid #727171;
   }

   .content-cms tr td:first-of-type {
      ;
      background: #f9fcff;
   }

   .content-cms tr td:nth-child(2) {
      background: #ecf4ff;
   }

   .content-cms tr td:nth-child(3) {
      background: #e1eeff;
   }

   .content-cms tr td:nth-child(4) {
      background: #cce2ff;
   }

   .content-cms tr td:nth-child(5) {
      background: #b6d3f8;
   }
   .table__wrap,.table-other {
    border-collapse: collapse;
    width: 100%;
    font-size: 19px;
    overflow-x: scroll;
    display: block !important;
}

.pros-tab-text {
    width: 100%;
    overflow: hidden;
}
@media only screen and (max-width: 760px), (min-device-width: 768px) and (max-device-width: 1024px){
    .table__wrap table, .table__wrap tbody, .table__wrap td, .table__wrap th, .table__wrap thead, .table__wrap tr,
.table-other table, .table-other tbody, .table-other td, .table-other th, .table-other thead, .table-other tr {
    display: revert;
}
