/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */
/*
 *  Owl Carousel - Core
 */
.owl-carousel {
    display: none;
    width: 100%;
    -webkit-tap-highlight-color: transparent;
    /* position relative and z-index fix webkit rendering fonts issue */
    position: relative;
    z-index: 1;
}

.owl-carousel .owl-stage {
    position: relative;
    -ms-touch-action: pan-Y;
    touch-action: manipulation;
    -moz-backface-visibility: hidden;
    /* fix firefox animation glitch */
}

.owl-carousel .owl-stage:after {
    content: '.';
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0;
}

.owl-carousel .owl-stage-outer {
    position: relative;
    overflow: hidden;
    /* fix for flashing background */
    -webkit-transform: translate3d(0px, 0px, 0px);
}

.owl-carousel .owl-wrapper,
.owl-carousel .owl-item {
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
}

.owl-carousel .owl-item {
    position: relative;
    min-height: 1px;
    float: left;
    -webkit-backface-visibility: hidden;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
}

.owl-carousel .owl-item img {
    display: block;
    width: 100%;
}

.owl-carousel .owl-nav.disabled,
.owl-carousel .owl-dots.disabled {
    display: none;
}

.owl-carousel .owl-nav .owl-prev,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-dot {
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next,
.owl-carousel button.owl-dot {
    background: none;
    color: inherit;
    border: none;
    padding: 0 !important;
    font: inherit;
}

.owl-carousel.owl-loaded {
    display: block;
}

.owl-carousel.owl-loading {
    opacity: 0;
    display: block;
}

.owl-carousel.owl-hidden {
    opacity: 0;
}

.owl-carousel.owl-refresh .owl-item {
    visibility: hidden;
}

.owl-carousel.owl-drag .owl-item {
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.owl-carousel.owl-grab {
    cursor: move;
    cursor: -webkit-grab;
    cursor: grab;
}

.owl-carousel.owl-rtl {
    direction: rtl;
}

.owl-carousel.owl-rtl .owl-item {
    float: right;
}

/* No Js */
.no-js .owl-carousel {
    display: block;
}

/*
 *  Owl Carousel - Animate Plugin
 */
.owl-carousel .animated {
    -webkit-animation-duration: 1000ms;
    animation-duration: 1000ms;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

.owl-carousel .owl-animated-in {
    z-index: 0;
}

.owl-carousel .owl-animated-out {
    z-index: 1;
}

.owl-carousel .fadeOut {
    -webkit-animation-name: fadeOut;
    animation-name: fadeOut;
}

@-webkit-keyframes fadeOut {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

@keyframes fadeOut {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

/*
 * 	Owl Carousel - Auto Height Plugin
 */
.owl-height {
    -webkit-transition: height 500ms ease-in-out;
    -o-transition: height 500ms ease-in-out;
    transition: height 500ms ease-in-out;
}

/*
 * 	Owl Carousel - Lazy Load Plugin
 */
.owl-carousel .owl-item {
    /**
			This is introduced due to a bug in IE11 where lazy loading combined with autoheight plugin causes a wrong
			calculation of the height of the owl-item that breaks page layouts
		 */
}

.owl-carousel .owl-item .owl-lazy {
    opacity: 0;
    -webkit-transition: opacity 400ms ease;
    -o-transition: opacity 400ms ease;
    transition: opacity 400ms ease;
}

.owl-carousel .owl-item .owl-lazy[src^=''],
.owl-carousel .owl-item .owl-lazy:not([src]) {
    max-height: 0;
}

.owl-carousel .owl-item img.owl-lazy {
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
}

/*
 * 	Owl Carousel - Video Plugin
 */
.owl-carousel .owl-video-wrapper {
    position: relative;
    height: 100%;
    background: #000;
}

.owl-carousel .owl-video-play-icon {
    position: absolute;
    height: 80px;
    width: 80px;
    left: 50%;
    top: 50%;
    margin-left: -40px;
    margin-top: -40px;
    background: url('owl.video.play.png') no-repeat;
    cursor: pointer;
    z-index: 1;
    -webkit-backface-visibility: hidden;
    -webkit-transition: -webkit-transform 100ms ease;
    transition: -webkit-transform 100ms ease;
    -o-transition: transform 100ms ease;
    transition: transform 100ms ease;
    transition: transform 100ms ease, -webkit-transform 100ms ease;
}

.owl-carousel .owl-video-play-icon:hover {
    -ms-transform: scale(1.3, 1.3);
    -webkit-transform: scale(1.3, 1.3);
    transform: scale(1.3, 1.3);
}

.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
    display: none;
}

.owl-carousel .owl-video-tn {
    opacity: 0;
    height: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    -webkit-transition: opacity 400ms ease;
    -o-transition: opacity 400ms ease;
    transition: opacity 400ms ease;
}

.owl-carousel .owl-video-frame {
    position: relative;
    z-index: 1;
    height: 100%;
    width: 100%;
}

/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */
/*
 * 	Default theme - Owl Carousel CSS File
 */
.owl-theme .owl-nav {
    margin-top: 10px;
    text-align: center;
    -webkit-tap-highlight-color: transparent;
}

.owl-theme .owl-nav [class*='owl-'] {
    color: #fff;
    font-size: 14px;
    margin: 5px;
    padding: 4px 7px;
    background: #d6d6d6;
    display: inline-block;
    cursor: pointer;
    border-radius: 3px;
}

.owl-theme .owl-nav [class*='owl-']:hover {
    background: #869791;
    color: #fff;
    text-decoration: none;
}

.owl-theme .owl-nav .disabled {
    opacity: 0.5;
    cursor: default;
}

.owl-theme .owl-nav.disabled + .owl-dots {
    margin-top: 10px;
}

.owl-theme .owl-dots {
    text-align: center;
    -webkit-tap-highlight-color: transparent;
}

.owl-theme .owl-dots .owl-dot {
    display: inline-block;
    zoom: 1;
    display: inline;
}

.owl-theme .owl-dots .owl-dot span {
    width: 10px;
    height: 10px;
    margin: 5px 7px;
    background: #d6d6d6;
    display: block;
    -webkit-backface-visibility: visible;
    -webkit-transition: opacity 200ms ease;
    -o-transition: opacity 200ms ease;
    transition: opacity 200ms ease;
    border-radius: 30px;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    background: #869791;
}

/* Magnific Popup CSS */
.mfp-bg {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1042;
    overflow: hidden;
    position: fixed;
    background: #0b0b0b;
    opacity: 0.8;
}

.mfp-wrap {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1043;
    position: fixed;
    outline: none !important;
    -webkit-backface-visibility: hidden;
}

.mfp-container {
    text-align: center;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    padding: 0 8px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.mfp-container:before {
    content: '';
    display: inline-block;
    height: 100%;
    vertical-align: middle;
}

.mfp-align-top .mfp-container:before {
    display: none;
}

.mfp-content {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    margin: 0 auto;
    text-align: left;
    z-index: 1045;
}

.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
    width: 100%;
    cursor: auto;
}

.mfp-ajax-cur {
    cursor: progress;
}

.mfp-zoom-out-cur,
.mfp-zoom-out-cur .mfp-image-holder .mfp-close {
    cursor: -webkit-zoom-out;
    cursor: zoom-out;
}

.mfp-zoom {
    cursor: pointer;
    cursor: -webkit-zoom-in;
    cursor: zoom-in;
}

.mfp-auto-cursor .mfp-content {
    cursor: auto;
}

.mfp-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.mfp-loading.mfp-figure {
    display: none;
}

.mfp-hide {
    display: none !important;
}

.mfp-preloader {
    color: #ccc;
    position: absolute;
    top: 50%;
    width: auto;
    text-align: center;
    margin-top: -0.8em;
    left: 8px;
    right: 8px;
    z-index: 1044;
}

.mfp-preloader a {
    color: #ccc;
}

.mfp-preloader a:hover {
    color: #fff;
}

.mfp-s-ready .mfp-preloader {
    display: none;
}

.mfp-s-error .mfp-content {
    display: none;
}

button.mfp-close,
button.mfp-arrow {
    overflow: visible;
    cursor: pointer;
    background: transparent;
    border: 0;
    -webkit-appearance: none;
    display: block;
    outline: none;
    padding: 0;
    z-index: 1046;
    -webkit-box-shadow: none;
    box-shadow: none;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
}

button::-moz-focus-inner {
    padding: 0;
    border: 0;
}

.mfp-close {
    width: 44px;
    height: 44px;
    line-height: 44px;
    position: absolute;
    right: 0;
    top: 0;
    text-decoration: none;
    text-align: center;
    opacity: 0.65;
    padding: 0 0 18px 10px;
    color: #fff;
    font-style: normal;
    font-size: 28px;
    font-family: Arial, Baskerville, monospace;
}

.mfp-close:hover,
.mfp-close:focus {
    opacity: 1;
}

.mfp-close:active {
    top: 1px;
}

.mfp-close-btn-in .mfp-close {
    color: #333;
}

.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
    color: #fff;
    right: -6px;
    text-align: right;
    padding-right: 6px;
    width: 100%;
}

.mfp-counter {
    position: absolute;
    top: 0;
    right: 0;
    color: #ccc;
    font-size: 12px;
    line-height: 18px;
    white-space: nowrap;
}

.mfp-arrow {
    position: absolute;
    opacity: 0.65;
    margin: 0;
    top: 50%;
    margin-top: -55px;
    padding: 0;
    width: 90px;
    height: 110px;
    -webkit-tap-highlight-color: transparent;
}

.mfp-arrow:active {
    margin-top: -54px;
}

.mfp-arrow:hover,
.mfp-arrow:focus {
    opacity: 1;
}

.mfp-arrow:before,
.mfp-arrow:after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    position: absolute;
    left: 0;
    top: 0;
    margin-top: 35px;
    margin-left: 35px;
    border: medium inset transparent;
}

.mfp-arrow:after {
    border-top-width: 13px;
    border-bottom-width: 13px;
    top: 8px;
}

.mfp-arrow:before {
    border-top-width: 21px;
    border-bottom-width: 21px;
    opacity: 0.7;
}

.mfp-arrow-left {
    left: 0;
}

.mfp-arrow-left:after {
    border-right: 17px solid #fff;
    margin-left: 31px;
}

.mfp-arrow-left:before {
    margin-left: 25px;
    border-right: 27px solid #3f3f3f;
}

.mfp-arrow-right {
    right: 0;
}

.mfp-arrow-right:after {
    border-left: 17px solid #fff;
    margin-left: 39px;
}

.mfp-arrow-right:before {
    border-left: 27px solid #3f3f3f;
}

.mfp-iframe-holder {
    padding-top: 40px;
    padding-bottom: 40px;
}

.mfp-iframe-holder .mfp-content {
    line-height: 0;
    width: 100%;
    max-width: 900px;
}

.mfp-iframe-holder .mfp-close {
    top: -40px;
}

.mfp-iframe-scaler {
    width: 100%;
    height: 0;
    overflow: hidden;
    padding-top: 56.25%;
}

.mfp-iframe-scaler iframe {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
    background: #000;
}

/* Main image in popup */
img.mfp-img {
    width: auto;
    max-width: 100%;
    height: auto;
    display: block;
    line-height: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 40px 0 40px;
    margin: 0 auto;
}

/* The shadow behind the image */
.mfp-figure {
    line-height: 0;
}

.mfp-figure:after {
    content: '';
    position: absolute;
    left: 0;
    top: 40px;
    bottom: 40px;
    display: block;
    right: 0;
    width: auto;
    height: auto;
    z-index: -1;
    -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
    background: #444;
}

.mfp-figure small {
    color: #bdbdbd;
    display: block;
    font-size: 12px;
    line-height: 14px;
}

.mfp-figure figure {
    margin: 0;
}

.mfp-bottom-bar {
    margin-top: -36px;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    cursor: auto;
}

.mfp-title {
    text-align: left;
    line-height: 18px;
    color: #f3f3f3;
    word-wrap: break-word;
    padding-right: 36px;
}

.mfp-image-holder .mfp-content {
    max-width: 100%;
}

.mfp-gallery .mfp-image-holder .mfp-figure {
    cursor: pointer;
}

@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
    /**
       * Remove all paddings around the image on small screen
       */
    .mfp-img-mobile .mfp-image-holder {
        padding-left: 0;
        padding-right: 0;
    }
    .mfp-img-mobile img.mfp-img {
        padding: 0;
    }
    .mfp-img-mobile .mfp-figure:after {
        top: 0;
        bottom: 0;
    }
    .mfp-img-mobile .mfp-figure small {
        display: inline;
        margin-left: 5px;
    }
    .mfp-img-mobile .mfp-bottom-bar {
        background: rgba(0, 0, 0, 0.6);
        bottom: 0;
        margin: 0;
        top: auto;
        padding: 3px 5px;
        position: fixed;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
    }
    .mfp-img-mobile .mfp-bottom-bar:empty {
        padding: 0;
    }
    .mfp-img-mobile .mfp-counter {
        right: 5px;
        top: 3px;
    }
    .mfp-img-mobile .mfp-close {
        top: 0;
        right: 0;
        width: 35px;
        height: 35px;
        line-height: 35px;
        background: rgba(0, 0, 0, 0.6);
        position: fixed;
        text-align: center;
        padding: 0;
    }
}

@media all and (max-width: 900px) {
    .mfp-arrow {
        -webkit-transform: scale(0.75);
        -ms-transform: scale(0.75);
        transform: scale(0.75);
    }
    .mfp-arrow-left {
        -webkit-transform-origin: 0;
        -ms-transform-origin: 0;
        transform-origin: 0;
    }
    .mfp-arrow-right {
        -webkit-transform-origin: 100%;
        -ms-transform-origin: 100%;
        transform-origin: 100%;
    }
    .mfp-container {
        padding-left: 6px;
        padding-right: 6px;
    }
}

body {
    font-family: 'Muller', sans-serif;
    margin: 0;
    padding: 0;
    color: #34363e;
    font-size: 16px;
    background-color: #e1ecf0;
    background-size: contain;
}

a {
    color: #34363e;
    text-decoration: none;
}

p {
    margin-top: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-top: 0;
}

.list-unstyled {
    margin: 0;
    list-style: none;
    padding: 0;
}

.img-fluid {
    max-width: 100%;
    height: auto;
}

.section-container {
    margin: 0 auto;
    max-width: 1610px;
    width: 100%;
    position: relative;
}

.text-right {
    text-align: right;
}

.hidd {
    visibility: hidden;
}

header #monmenu {
    display: none;
}

header #fixmenu {
    z-index: 888;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

header #fixmenu .container {
    position: relative;
}

header #navigation {
    list-style: none;
    margin: 0;
    padding: 0;
}
@media (max-width: 767px) {
    header #navigation {
        display: none !important;
    }
}
header #navigation li {
    padding: 25px 0;
    margin-right: 40px;
}
@media (max-width: 1199px) {
    header #navigation li {
        margin-right: 20px;
    }
}
@media (max-width: 991px) {
    header #navigation li {
        margin-right: 10px;
    }
}
header #navigation li:last-child {
    margin-right: 0;
}
header #navigation li a {
    opacity: 0.5;
}
@media (max-width: 991px) {
    header #navigation li a {
        font-size: 12px;
    }
}

header .fixmenu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
    -webkit-transition: all 0.2s ease-out;
    -o-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
    background: #49a8cb;
}

header .fixmenu .comp-js {
    background: #49a8cb;
}
header .fixmenu #navigation a {
    color: #fff;
    opacity: 1;
}

header .comp-js {
    /* margin-left: auto; */
    background: red;
    display: block;
    height: 48px;
    position: absolute;
    top: 0;
    right: 0;
    width: 50px;
}
header .comp-js .btn11 {
    -webkit-transform: scale(0.6);
    -ms-transform: scale(0.6);
    transform: scale(0.6);
    position: relative;
    width: 40px;
    height: 60px;
    -webkit-transition-duration: 0.5s;
    -o-transition-duration: 0.5s;
    transition-duration: 0.5s;
    margin-left: auto;
}
header .comp-js .btn11 .icon-left {
    -webkit-transition-duration: 0.5s;
    -o-transition-duration: 0.5s;
    transition-duration: 0.5s;
    position: absolute;
    height: 4px;
    width: 15px;
    top: 17px;
    background-color: #fff;
}
header .comp-js .btn11 .icon-left:before {
    -webkit-transition-duration: 0.5s;
    -o-transition-duration: 0.5s;
    transition-duration: 0.5s;
    position: absolute;
    width: 15px;
    height: 4px;
    background-color: #fff;
    content: '';
    top: -10px;
}
header .comp-js .btn11 .icon-left:after {
    -webkit-transition-duration: 0.5s;
    -o-transition-duration: 0.5s;
    transition-duration: 0.5s;
    position: absolute;
    width: 15px;
    height: 4px;
    background-color: #fff;
    content: '';
    top: 10px;
}
header .comp-js .btn11 .icon-right {
    -webkit-transition-duration: 0.5s;
    -o-transition-duration: 0.5s;
    transition-duration: 0.5s;
    position: absolute;
    height: 4px;
    width: 15px;
    top: 17px;
    background-color: #fff;
    left: 15px;
}
header .comp-js .btn11 .icon-right:before {
    -webkit-transition-duration: 0.5s;
    -o-transition-duration: 0.5s;
    transition-duration: 0.5s;
    position: absolute;
    width: 15px;
    height: 4px;
    background-color: #fff;
    content: '';
    top: -10px;
}
header .comp-js .btn11 .icon-right:after {
    -webkit-transition-duration: 0.5s;
    -o-transition-duration: 0.5s;
    transition-duration: 0.5s;
    position: absolute;
    width: 15px;
    height: 4px;
    background-color: #fff;
    content: '';
    top: 10px;
}
header .comp-js .btn11.open .icon-left {
    -webkit-transition-duration: 0.5s;
    -o-transition-duration: 0.5s;
    transition-duration: 0.5s;
    background: 0 0;
}
header .comp-js .btn11.open .icon-left:before {
    -webkit-transform: rotateZ(45deg) scaleX(1.4) translate(2px, 2px);
    -ms-transform: rotate(45deg) scaleX(1.4) translate(2px, 2px);
    transform: rotateZ(45deg) scaleX(1.4) translate(2px, 2px);
}
header .comp-js .btn11.open .icon-left:after {
    -webkit-transform: rotateZ(-45deg) scaleX(1.4) translate(2px, -2px);
    -ms-transform: rotate(-45deg) scaleX(1.4) translate(2px, -2px);
    transform: rotateZ(-45deg) scaleX(1.4) translate(2px, -2px);
}
header .comp-js .btn11.open .icon-right {
    -webkit-transition-duration: 0.5s;
    -o-transition-duration: 0.5s;
    transition-duration: 0.5s;
    background: 0 0;
}
header .comp-js .btn11.open .icon-right:before {
    -webkit-transform: rotateZ(-45deg) scaleX(1.4) translate(-2px, 2px);
    -ms-transform: rotate(-45deg) scaleX(1.4) translate(-2px, 2px);
    transform: rotateZ(-45deg) scaleX(1.4) translate(-2px, 2px);
}
header .comp-js .btn11.open .icon-right:after {
    -webkit-transform: rotateZ(45deg) scaleX(1.4) translate(-2px, -2px);
    -ms-transform: rotate(45deg) scaleX(1.4) translate(-2px, -2px);
    transform: rotateZ(45deg) scaleX(1.4) translate(-2px, -2px);
}

@media (max-width: 767px) {
    header #monmenu {
        display: block;
    }
    header .menu-mob a {
        display: block;
        color: #fff;
        font-size: 1.3rem;
        padding: 8px 0;
    }
    header .right-block_menu.active {
        right: 0;
        -webkit-transition: all 0.5s ease-out;
        -o-transition: all 0.5s ease-out;
        transition: all 0.5s ease-out;
        z-index: 20;
    }
    header .right-block_menu {
        background: #49a8cb;
        height: 100vh;
        width: 100%;
        max-width: 250px;
        position: fixed;
        top: 0;
        right: -250px;
        padding: 0 0 0 20px;
        -webkit-transition: all 0.5s ease-out;
        -o-transition: all 0.5s ease-out;
        transition: all 0.5s ease-out;
        z-index: 999;
    }
    header .btn-red {
        display: block;
        background: #49a8cb;
        padding: 0 5px;
        position: absolute;
        top: 0;
        left: -35px;
        padding-top: 10px;
        z-index: 999;
    }
    header .btn11 {
        height: 26px;
    }
    header .btn11 .icon-left {
        top: 2px;
    }
    header .btn11 .icon-right {
        top: 2px;
    }
    header .comp-js {
        display: none;
    }
    header .btn11 {
        -webkit-transform: scale(0.6);
        -ms-transform: scale(0.6);
        transform: scale(0.6);
        position: relative;
        width: 25px;
        height: 26px;
        -webkit-transition-duration: 0.5s;
        -o-transition-duration: 0.5s;
        transition-duration: 0.5s;
        margin-left: auto;
    }
    header .btn11 .icon-left {
        -webkit-transition-duration: 0.5s;
        -o-transition-duration: 0.5s;
        transition-duration: 0.5s;
        position: absolute;
        height: 4px;
        width: 15px;
        top: 2px;
        background-color: #fff;
    }
    header .btn11 .icon-left:before {
        -webkit-transition-duration: 0.5s;
        -o-transition-duration: 0.5s;
        transition-duration: 0.5s;
        position: absolute;
        width: 15px;
        height: 4px;
        background-color: #fff;
        content: '';
        top: -10px;
    }
    header .btn11 .icon-left:after {
        -webkit-transition-duration: 0.5s;
        -o-transition-duration: 0.5s;
        transition-duration: 0.5s;
        position: absolute;
        width: 15px;
        height: 4px;
        background-color: #fff;
        content: '';
        top: 10px;
    }
    header .btn11 .icon-right {
        -webkit-transition-duration: 0.5s;
        -o-transition-duration: 0.5s;
        transition-duration: 0.5s;
        position: absolute;
        height: 4px;
        width: 15px;
        top: 2px;
        background-color: #fff;
        left: 15px;
    }
    header .btn11 .icon-right:before {
        -webkit-transition-duration: 0.5s;
        -o-transition-duration: 0.5s;
        transition-duration: 0.5s;
        position: absolute;
        width: 15px;
        height: 4px;
        background-color: #fff;
        content: '';
        top: -10px;
    }
    header .btn11 .icon-right:after {
        -webkit-transition-duration: 0.5s;
        -o-transition-duration: 0.5s;
        transition-duration: 0.5s;
        position: absolute;
        width: 15px;
        height: 4px;
        background-color: #fff;
        content: '';
        top: 10px;
    }
    header .btn11.open .icon-left {
        -webkit-transition-duration: 0.5s;
        -o-transition-duration: 0.5s;
        transition-duration: 0.5s;
        background: 0 0;
    }
    header .btn11.open .icon-left:before {
        -webkit-transform: rotateZ(45deg) scaleX(1.4) translate(2px, 2px);
        -ms-transform: rotate(45deg) scaleX(1.4) translate(2px, 2px);
        transform: rotateZ(45deg) scaleX(1.4) translate(2px, 2px);
    }
    header .btn11.open .icon-left:after {
        -webkit-transform: rotateZ(-45deg) scaleX(1.4) translate(2px, -2px);
        -ms-transform: rotate(-45deg) scaleX(1.4) translate(2px, -2px);
        transform: rotateZ(-45deg) scaleX(1.4) translate(2px, -2px);
    }
    header .btn11.open .icon-right {
        -webkit-transition-duration: 0.5s;
        -o-transition-duration: 0.5s;
        transition-duration: 0.5s;
        background: 0 0;
    }
    header .btn11.open .icon-right:before {
        -webkit-transform: rotateZ(-45deg) scaleX(1.4) translate(-2px, 2px);
        -ms-transform: rotate(-45deg) scaleX(1.4) translate(-2px, 2px);
        transform: rotateZ(-45deg) scaleX(1.4) translate(-2px, 2px);
    }
    header .btn11.open .icon-right:after {
        -webkit-transform: rotateZ(45deg) scaleX(1.4) translate(-2px, -2px);
        -ms-transform: rotate(45deg) scaleX(1.4) translate(-2px, -2px);
        transform: rotateZ(45deg) scaleX(1.4) translate(-2px, -2px);
    }
}

main {
    margin-top: 63px;
}

.fs-screen {
    margin-bottom: 112px;
    background-image: url(../img/fs-bg.png);
    background-position: bottom center;
    background-repeat: no-repeat;
}
.fs-screen__title-num {
}
@media (max-width: 767px) {
    .fs-screen {
        background: none;
        margin-bottom: 40px;
    }
}
.fs-screen .fs-screen-top {
    color: #0f2739;
    font-size: 18px;
    line-height: 14px;
    margin-bottom: 15px;
    margin-top: 46px;
}
@media (max-width: 991px) {
    .fs-screen .fs-screen-top {
        text-align: center;
    }
}
.fs-screen .fs-screen-title {
    margin: 0 0 29px;
    color: #0f2739;
    font-size: 72px;
    line-height: 56px;
    font-weight: 800;
    letter-spacing: 0px;
}
@media (max-width: 1199px) {
    .fs-screen .fs-screen-title {
        font-size: 50px;
        line-height: 20px;
    }
}
@media (max-width: 991px) {
    .fs-screen .fs-screen-title {
        text-align: center;
        font-size: 72px;
        line-height: 72px;
        margin-bottom: 25px;
    }
}
@media (max-width: 767px) {
    .fs-screen .fs-screen-title {
        font-size: 40px;
        line-height: 40px;
    }
}
.fs-screen .fs-screen-title span {
    font-size: 138px;
    line-height: 100px;
    display: inline-block;
    font-weight: 800;
    letter-spacing: -13px;
}
.fs-screen__title-num img {
    width: 100%;
}
@media (max-width: 1415px) {
    .fs-screen .fs-screen-title span {
        font-size: 85px;
    }
}
@media (max-width: 991px) {
    .fs-screen .fs-screen-title span {
        font-size: 100px;
    }
    .fs-screen__title-num {
        width: 180px;
    }

    .results .page-title br {
        display: none;
    }
    .results .col-title p br {
        display: none;
    }
    .fs-description__text {
        margin-top: 20px;
    }
}
@media (max-width: 767px) {
    .fs-screen .fs-screen-title span {
        font-size: 60px;
        line-height: 60px;
    }
}
.fs-screen .fs-screen-title span.fs-screen-title-one {
    color: #49a8cb;
}
.fs-screen .fs-screen-title span.fs-screen-title-two {
    color: #d5422d;
}
.fs-screen .fs-screen-middle {
    color: #d5422d;
    font-size: 36px;
    margin-bottom: 33px;
    font-weight: 500;
}
@media (max-width: 991px) {
    .fs-screen .fs-screen-middle {
        text-align: center;
        margin-bottom: 20px;
    }
}
@media (max-width: 767px) {
    .fs-screen .fs-screen-middle {
        font-size: 20px;
        margin-bottom: 10px;
    }
}
.fs-screen .fs-screen-bottom {
    font-weight: 300;
    margin: 0;
    color: #0f2739;
    font-size: 24px;
    line-height: 27px;
}
@media (max-width: 991px) {
    .fs-screen .fs-screen-bottom {
        text-align: center;
        margin-bottom: 30px;
    }
}
@media (max-width: 767px) {
    .fs-screen .fs-screen-bottom {
        font-size: 16px;
    }
}
.fs-screen .fs-screen-video {
    position: relative;
    width: 100%;
    height: 100%;
    /* padding-bottom: 65%;
    background-color: #000; */
}
.fs-screen .fs-screen-video iframe {
    -webkit-box-shadow: 15px 25.981px 50px 0px #4d4a45;
    box-shadow: 15px 25.981px 50px 0px #4d4a45;
}
.fs-screen .fs-screen-video::before {
    display: block;
    width: 320px;
    height: 270px;
    position: absolute;
    content: '';
    background: #00aace;
    bottom: -29px;
    left: -30px;
    z-index: 0;
    opacity: 1;
}
@media (max-width: 767px) {
    .fs-screen .fs-screen-video:after {
        display: none;
    }
}
.fs-screen .fs-screen-video::after {
    display: block;
    width: 170px;
    height: 170px;
    content: '';
    position: absolute;
    top: -29px;
    right: -21px;
    background: url(../img/texture.png) no-repeat 0 0;
}
@media (max-width: 767px) {
    .fs-screen .fs-screen-video:before {
        display: none;
    }
}
.fs-screen .fs-screen-video iframe {
    z-index: 10;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.fs-description {
    margin-bottom: 144px;
}
@media (max-width: 991px) {
    .fs-description {
        margin-bottom: 40px;
    }
}
.fs-description .fs-description-block {
    background: #ffffff;
    padding: 70px 0 81px 80px;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
@media (max-width: 1415px) {
    .fs-description .fs-description-block {
        padding: 70px 0 70px 80px;
    }
}
@media (max-width: 991px) {
    .fs-description .fs-description-block {
        text-align: center;
        padding: 40px 20px;
        margin-bottom: 40px;
    }
}
.fs-description .fs-description-block:after {
    content: '';
    background: url(../img/balloon.png);
    width: 261px;
    height: 295px;
    display: block;
    position: absolute;
    left: -204px;
    top: 53px;
    bottom: 0;
    margin: auto 0;
}
@media (max-width: 991px) {
    .fs-description .fs-description-block:after {
        display: none;
    }
}
.fs-description .fs-description-block h2 {
    color: #0f2739;
    font-size: 30px;
    line-height: 36px;
    margin-bottom: 25px;
}
.fs-description p {
    font-size: 18px;
    line-height: 22px;
    margin-bottom: 20px;
    margin-top: -2px;
}
@media (max-width: 1199px) {
    .fs-description p {
        font-size: 16px;
        line-height: 21px;
        margin-bottom: 20px;
    }
}
.fs-description p:last-child {
    margin-bottom: 0;
}

.button {
    padding: 18px 33px 14px;
    letter-spacing: 1px;
    font-weight: bold;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
    font-size: 14px;
    line-height: 15px;
    letter-spacing: 2px;
}
@media (max-width: 1415px) {
    .button {
        padding: 20px 15px;
    }
}
@media (max-width: 991px) {
    .button {
        font-size: 11px;
    }
}
@media (max-width: 575px) {
    .button {
        padding: 10px;
        font-size: 10px;
        text-align: center;
    }
}

.button-request {
    color: #fff;
    background: #d5422d;
    margin-right: 20px;
    background-image: -moz-linear-gradient(12deg, rgb(252, 194, 105) 0%, rgb(189, 50, 127) 50%, rgb(108, 84, 187) 100%);
    background-image: -webkit-linear-gradient(12deg, rgb(252, 194, 105) 0%, rgb(189, 50, 127) 50%, rgb(108, 84, 187) 100%);
    background-image: -ms-linear-gradient(12deg, rgb(252, 194, 105) 0%, rgb(189, 50, 127) 50%, rgb(108, 84, 187) 100%);
    padding: 19px 30px;
}

.button-ask {
    border: 3px solid #49a8cb;
    color: #49a8cb;
    background: #fff;
    padding: 18px 30px;
}

h3.page-title {
    font-size: 36px;
    margin-bottom: 35px;
    color: #0f2739;
    font-weight: 900;
    line-height: 38px;
}
@media (max-width: 767px) {
    h3.page-title {
        font-size: 24px;
        line-height: normal;
        margin-bottom: 15px;
    }
}

.compare {
    background: #ffffff;
    padding-top: 70px;
    padding-bottom: 245px;
    margin-top: 70px;
}
@media (max-width: 767px) {
    .compare {
        padding-top: 40px;
    }
}
.compare .container-title {
    /* border-left: 5px solid #d5422d; */
    position: relative;
}
.compare .container-title::before {
    content: '';
    background-image: -moz-linear-gradient(90deg, rgb(252, 194, 105) 0%, rgb(189, 50, 127) 50%, rgb(108, 84, 187) 100%);
    background-image: -webkit-linear-gradient(90deg, rgb(252, 194, 105) 0%, rgb(189, 50, 127) 50%, rgb(108, 84, 187) 100%);
    background-image: -ms-linear-gradient(90deg, rgb(252, 194, 105) 0%, rgb(189, 50, 127) 50%, rgb(108, 84, 187) 100%);
    width: 5px;
    height: 50px;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translate(0%, -50%);
}
.compare__text-block {
    margin-bottom: 30px;
}
.compare h3.page-title {
    padding: 7px 0;
}
.compare__text-block p {
    margin-bottom: 26px;
    line-height: 20px;
}
.compare .row-compare {
    position: relative;
    margin: 0 -5px 10px;
}
.compare .row-compare.row-compare-margin {
    margin-top: 30px;
}
.compare .row-compare:last-child {
    margin-bottom: 0px;
}
.compare .row-compare .col-compare {
    -webkit-box-flex: 0;
    -webkit-flex: 1;
    flex: 1;
    max-width: 100%;
    text-align: center;
    font-size: 16px;
    padding: 0 5px;
    line-height: 22px;
}
.compare .row-compare .col-compare-1 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 33.333333%;
    flex: 0 0 33%;
    max-width: 33%;
}
@media (max-width: 767px) {
    .compare .row-compare .col-compare {
        font-size: 12px;
        line-height: 16px;
    }
}
.compare .row-compare .col-compare .col-compare-content {
    padding: 13px 21px;
    background: #f5fafb;
    height: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}
@media (max-width: 767px) {
    .compare .row-compare.row-compare-thead .col-compare-content {
        font-size: 14px;
    }
    .compare .row-compare .col-compare .col-compare-content {
        padding: 10px;
    }
}
.compare .row-compare .col-compare.col-compare-1 {
    text-align: left;
}
.compare .row-compare .col-compare.col-compare-1 .col-compare-content {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}
.compare .row-compare .col-compare.col-compare-2 {
    color: #f64028;
}
.compare .row-compare .col-compare.col-compare-3 {
    color: #00b800;
}
.compare .row-compare .col-compare.col-compare-4 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
    font-size: 18px;
    font-weight: bold;
}
.compare .row-compare.row-compare-thead .col-compare-content {
    background: #ddedf1;
    color: #34363e;
    font-weight: 800;
    font-size: 18px;
}

@media (max-width: 767px) {
    .compare .row-compare.row-compare-thead .col-compare-content {
        font-size: 14px;
    }
}
@media (max-width: 575px) {
    .compare .row-compare.row-compare-thead .col-compare-content {
        font-size: 9px;
        line-height: 10px;
    }
}

.col-compare-hidden {
    position: absolute;
    width: 100%;
    background: #fff;
    font-size: 16px;
    line-height: 24px;
    padding: 10px 25px;
    visibility: hidden;
    top: 0;
}
.row-compare:hover .col-compare-hidden {
    visibility: visible;
}

.maths {
    position: relative;
    margin-top: -174px;
    margin-bottom: 86px;
}
@media (max-width: 991px) {
    .maths {
        margin-bottom: 40px;
    }
}
.maths .row-math {
    -webkit-box-shadow: 15px 25.981px 37px 0px rgba(52, 119, 144, 0.3);
    box-shadow: 15px 25.981px 37px 0px rgba(52, 119, 144, 0.3);
}
@media (max-width: 767px) {
    .maths .row-math-block {
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}
.maths .col-math {
    background: #fff;
    -webkit-box-flex: 0;
    -webkit-flex: 1;
    -ms-flex: 0 0 1;
    flex: 1;
    max-width: 100%;
    padding: 28px 40px 37px;
    position: relative;
}
.maths .col-math-1 {
}
.maths .col-math-2 {
    flex: 0 0 31%;
    max-width: 31%;
    padding: 28px;
}
@media (max-width: 991px) {
    .maths .col-math {
        padding: 20px;
    }
}
@media (max-width: 767px) {
    .maths .col-math {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 100%;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }
}
.maths .col-math:nth-child(3):after {
    background: #f5f0e5;
    width: 2px;
    display: block;
    max-height: 245px;
    height: 100%;
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto 0;
    left: 0;
}
@media (max-width: 767px) {
    .maths .col-math:nth-child(3):after {
        display: none;
    }
}
.maths .col-math p {
    font-size: 18px;
    line-height: 30px;
    margin-bottom: 0;
}
@media (max-width: 1199px) {
    .maths .col-math p {
        font-size: 16px;
        line-height: 24px;
    }
}
@media (max-width: 991px) {
    .maths .col-math p {
        font-size: 14px;
        line-height: 21px;
    }
}
.maths .col-math p.col-math-title {
    font-weight: bold;
    margin-bottom: 31px;
}
@media (max-width: 991px) {
    .maths .col-math p.col-math-title {
        margin-bottom: 20px;
    }
}
.maths .col-math ul {
    margin: 0;
    padding: 0 0 0 15px;
}
.maths .col-math ul li {
    font-size: 18px;
    line-height: 30px;
}
@media (max-width: 1199px) {
    .maths .col-math ul li {
        font-size: 16px;
        line-height: 24px;
    }
}
@media (max-width: 991px) {
    .maths .col-math ul li {
        font-size: 14px;
        line-height: 21px;
    }
}
.maths .col-math.col-math-bg {
    background: url(../img/bagpack.png) no-repeat;
    background-size: cover;
    background-position: right bottom;
    color: #ffffff;
    font-weight: 500;
    font-size: 16px;
    line-height: 36px;
    flex: 0 0 34%;
    max-width: 34%;
}
.maths .col-math.col-math-bg p {
    margin-bottom: 0;
    font-size: 24px;
    line-height: 36px;
}
@media (max-width: 1199px) {
    .maths .col-math.col-math-bg p {
        font-size: 21px;
        line-height: 30px;
    }
}
@media (max-width: 991px) {
    .maths .col-math.col-math-bg p {
        font-size: 16px;
        line-height: 21px;
    }
}
@media (max-width: 767px) {
    .maths .col-math.col-math-bg {
        flex: 0 0 100%;
        max-width: 100%;
    }
}
.ask {
    background: url(../img/texture.png);
    background-position: center;
    background-size: cover;
    padding: 15px 0;
    margin-bottom: 20px;
}
.ask .ask-row {
    background: #fff;
    padding: 40px 30px;
}
.ask .button-ask {
    padding: 18px 35px 14px;
    margin-right: 40px;
}
.ask .button-request {
    /* margin-right: 68px; */
    padding: 18px 23px 14px;
}
@media (max-width: 767px) {
    .ask .ask-row {
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        padding: 20px;
    }
}
.ask .ask-row p {
    margin-bottom: 0;
    font-weight: bold;
    font-size: 18px;
    color: #0f2739;
    line-height: 30px;
    max-width: 63%;
}
@media (max-width: 1199px) {
    .ask .ask-row p {
        font-size: 14px;
        line-height: 21px;
        max-width: 50%;
    }
}
@media (max-width: 767px) {
    .ask .ask-row p {
        max-width: 100%;
        margin-bottom: 20px;
    }
}

.results {
    position: relative;
    /* background: url('../img/air_balloon.png') no-repeat; */
    background-position: top center;
    z-index: 10;
    /* background: #e1ecf0; */
}
.results .row-results-title {
    padding-top: 104px;
    padding-bottom: 76px;
}
@media (max-width: 767px) {
    .results .row-results-title {
        padding-top: 40px;
        padding-bottom: 40px;
    }
}
.results .row-results-title h3.page-title {
    margin-bottom: 18px;
}
.results .row-results-title p {
    margin: 0;
    font-size: 16px;
}
@media (max-width: 767px) {
    .results .row-results-title p {
        font-size: 14px;
    }
}
.results .col-result {
    background: #fff;
    height: 100%;
    position: relative;
    -webkit-box-shadow: 15px 25.981px 37px 0px rgba(52, 119, 144, 0.2);
    box-shadow: 15px 25.981px 37px 0px rgba(52, 119, 144, 0.2);
    padding: 18px 22px;
}
@media (max-width: 991px) {
    .results .col-result {
        margin-bottom: 40px;
        height: auto;
    }
}
.results .col-result:after {
    width: 5px;
    height: 45px;
    display: block;
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto 0;
    background: #d5422d;
    background-image: -moz-linear-gradient(90deg, rgb(252, 194, 105) 0%, rgb(189, 50, 127) 50%, rgb(108, 84, 187) 100%);
    background-image: -webkit-linear-gradient(90deg, rgb(252, 194, 105) 0%, rgb(189, 50, 127) 50%, rgb(108, 84, 187) 100%);
    background-image: -ms-linear-gradient(90deg, rgb(252, 194, 105) 0%, rgb(189, 50, 127) 50%, rgb(108, 84, 187) 100%);
    left: 0;
}
.row-results {
    margin-bottom: 70px;
}
.results .page-title span {
    background: linear-gradient(90deg, #f2ab6d 0%, #b23286 66%, #7351b6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.results .page-title {
    margin-bottom: 18px;
}
.results .col-result img {
    position: absolute;
    right: 35px;
    top: -44px;
    border-radius: 50%;
    border: 5px solid #fff;
    max-width: 117px;
}
.results .col-title p {
    line-height: 23px;
}
.results .col-title {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
@media (max-width: 1199px) {
    .results .col-result img {
        right: 15px;
        top: -55px;
        max-width: 90px;
    }
}
@media (max-width: 991px) {
    .results .col-result img {
        top: 10px;
    }
}
@media (max-width: 767px) {
    .results .col-result img {
        top: -20px;
    }
}
.results .col-result p {
    font-size: 16px;
    line-height: 24px;
}
@media (max-width: 767px) {
    .results .col-result p {
        font-size: 14px;
        line-height: 21px;
    }
}
.results .col-result p.result-top {
    font-style: italic;
    color: #76838d;
    margin-bottom: 23px;
}
@media (max-width: 767px) {
    .results .col-result p.result-top {
        margin-bottom: 15px;
    }
}
.results .col-result p.result-middle {
    font-weight: bold;
    color: #0f2739;
    margin-bottom: 23px;
}
@media (max-width: 767px) {
    .results .col-result p.result-middle {
        margin-bottom: 15px;
    }
}
.results .col-result p.result-bottom {
    margin-bottom: 0;
    color: #0f2739;
}

.components {
    background: #ffffff;
    padding-top: 170px;
    padding-bottom: 75px;
    margin-bottom: 75px;
    position: relative;
    margin-top: -150px;
}
@media (max-width: 991px) {
    .components {
        margin-bottom: 40px;
        padding-bottom: 0;
    }
}
@media (max-width: 767px) {
    .components {
        /* padding-top: 90px; */
    }
    .components .row-components-title h3.page-title {
        line-height: 32px;
    }
}
.components .row-components-title {
    margin-bottom: 32px;
}
.components .row-components-title h3.page-title {
    margin-bottom: 21px;
    line-height: 41px;
}
.components .row-components-title p {
    color: #76838d;
    font-size: 16px;
    margin-bottom: 0;
}
@media (max-width: 991px) {
    .components .row-components .col-lg-4 {
        margin-bottom: 40px;
    }
}
.components .row-components .col-component-title {
    margin-bottom: 30px;
}
.components2 .row-components .col-component-title {
    margin-bottom: 0px;
}
@media (max-width: 991px) {
    .components .row-components .col-component-title {
        margin-bottom: 20px;
    }
}
.components .row-components .col-component-title h4 {
    color: #00aace;
    font-size: 36px;
    padding-bottom: 16px;
    position: relative;
    margin: 0;
}
.ask .btn-cont {
    flex: 0 0 auto;
}
@media (max-width: 767px) {
    .components .row-components .col-component-title h4 {
        font-size: 24px;
        padding-bottom: 20px;
    }
}
.components .row-components .col-component-title h4:after {
    width: 45px;
    height: 5px;
    display: block;
    content: '';
    background: #d5422d;
    position: absolute;
    left: 0;
    bottom: 0;
    background-image: -moz-linear-gradient(12deg, rgb(252, 194, 105) 0%, rgb(189, 50, 127) 50%, rgb(108, 84, 187) 100%);
    background-image: -webkit-linear-gradient(12deg, rgb(252, 194, 105) 0%, rgb(189, 50, 127) 50%, rgb(108, 84, 187) 100%);
    background-image: -ms-linear-gradient(12deg, rgb(252, 194, 105) 0%, rgb(189, 50, 127) 50%, rgb(108, 84, 187) 100%);
}
.components .row-components .col-component-title .icon-component {
    height: 60px;
    width: 60px;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 46px;
    -ms-flex: 0 0 46px;
    flex: 0 0 46px;
    max-width: 46px;
    display: block;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    margin-right: 0px;
    margin-top: -8px;
}

.components2 .row-components .col-component-title .icon-component {
    height: 112px;
    width: 112px;
    max-width: 112px;
    flex: 0 0 112px;
}

.components2 {
    margin-top: 0;
    padding-top: 70px;
}
.components2 .row-components-title p {
    line-height: 1.7;
}
.components2 .row-components .col-component-title {
    align-items: center;
}

.components .row-components .col-component-title .icon-component.icon-component-1 {
    background-image: url(../img/component1.png);
}
.components .row-components .col-component-title .icon-component.icon-component-2 {
    background-image: url(../img/component2.png);
}
.components .row-components .col-component-title .icon-component.icon-component-3 {
    background-image: url(../img/component3.png);
}
.components .row-components .col-component-title .icon-component.icon-component-1-1 {
    background-image: url(../img/inst.png);
    background-size: contain;
}
.components .row-components .col-component-title .icon-component.icon-component-1-2 {
    background-image: url(../img/rassil.png);
    background-size: contain;
}
.components .row-components .col-component-title .icon-component.icon-component-1-3 {
    background-image: url(../img/live.png);
    background-size: contain;
}
.components .row-components p {
    color: #0f2739;
    font-size: 16px;
    margin-bottom: 23px;
    line-height: 24px;
}
.components2 .row-components p {
    font-size: 22px;
}
.components .row-components p:last-child {
    margin-bottom: 0;
}

.program-head {
    margin-bottom: 36px;
    margin-top: 77px;
}
@media (max-width: 991px) {
    .program-head {
        margin-top: 40px;
    }
}
.program-head .col-right-border {
    /* border-right: 5px solid #d5422d; */
}
.program-head .col-right-border:after {
    display: block;
    content: '';
    background: #d5422d;
    width: 5px;
    height: 170px;
    position: absolute;
    right: 14px;
    top: 4px;
}
@media (max-width: 991px) {
    .program-head .col-right-border:after {
        display: none;
    }
    .program-head .col-right-border {
        border: none;
    }
}
.program-head .col-left-border {
    padding-left: 12px;
}
.program-head p {
    color: #2b3e4e;
    font-size: 16px;
    line-height: 30px;
    margin-bottom: 31px;
    margin-top: -2px;
}
.program-head p:last-child {
    margin-bottom: 0;
}
@media (max-width: 991px) {
    .program-head p {
        margin-bottom: 20px;
    }
}

.program-step {
    margin-bottom: 80px;
}
.program-step .row-program-step-title {
    margin-bottom: 51px;
}
@media (max-width: 991px) {
    .program-step .row-program-step-title {
        margin-bottom: 30px;
    }
}
.program-step .row-program-step-title h4 {
    margin: 0;
    background: #fff;
    padding: 15px 20px 11px;
    border-left: 5px solid #49a8cb;
    font-size: 24px;
}
@media (max-width: 767px) {
    .program-step .row-program-step-title h4 {
        font-size: 18px;
    }
}
.program-step .row-program-step-title h4 span {
    color: #49a8cb;
}
.program-step p {
    color: #2b3e4e;
    font-size: 16px;
    line-height: 30px;
    margin-bottom: 15px;
}
@media (max-width: 1199px) {
    .program-step p {
        font-size: 14px;
        line-height: 21px;
        margin-bottom: 25px;
    }
}
.program-step p:last-child {
    margin-bottom: 0;
    font-size: 18px;
}
@media (max-width: 1199px) {
    .program-step p:last-child {
        font-size: 16px;
        line-height: 21px;
        margin-bottom: 25px;
    }
}
@media (max-width: 991px) {
    .program-step .component-carousel {
        margin-bottom: 20px;
    }
}
.program-step .component-carousel:after {
    content: '';
    width: 90%;
    height: 100px;
    z-index: 0;
    background: #fff;
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    display: block;
    bottom: 35px;
}
.program-step .component-carousel .owl-stage-outer {
    position: relative;
    z-index: 10;
    -webkit-box-shadow: 7.5px 12.99px 22px 0px rgba(52, 119, 144, 0.2);
    box-shadow: 7.5px 12.99px 22px 0px rgba(52, 119, 144, 0.2);
}
.program-step .component-carousel .owl-nav {
    font-size: 0;
    width: 50%;
    text-align: left;
    display: inline-block;
    margin-top: 52px;
}
.program-step .component-carousel .owl-nav button {
    display: inline-block;
    width: 42px;
    height: 16px;
}
.program-step .component-carousel .owl-nav button.owl-prev {
    background: url(../img/arrows.png) 0 0;
    margin-right: 7px;
}
.program-step .component-carousel .owl-nav button.owl-next {
    background: url(../img/arrows.png) -42px 0;
}
.program-step .component-carousel .owl-dots {
    width: 50%;
    text-align: right;
    display: inline-block;
}
.program-step .component-carousel .owl-dots .owl-dot {
    width: 6px;
    height: 6px;
    border: 1px solid #78899a;
    border-radius: 50%;
    margin: 0 6px;
    vertical-align: middle;
}
.program-step .component-carousel .owl-dots .owl-dot.active {
    border: 4px solid #78899a;
    background: #78899a;
}

.result {
    margin-top: 56px;
}
@media (max-width: 991px) {
    .result {
        margin-top: 40px;
    }
}
.result .row-title {
    margin-bottom: 40px;
}
.result .row-title h3.page-title {
    margin-bottom: 0;
    line-height: 42px;
}
.result .row-result {
    margin-bottom: 50px;
}
@media (max-width: 991px) {
    .result .row-result {
        margin-bottom: 30px;
    }
}
.result .row-result:last-child {
    margin-bottom: 70px;
}
@media (max-width: 991px) {
    .result .row-result:last-child {
        margin-bottom: 30px;
    }
}
@media (max-width: 991px) {
    .result .row-result .col-result-man {
        text-align: center;
        margin-bottom: 20px;
        -webkit-box-ordinal-group: 1;
        -webkit-order: 0;
        -ms-flex-order: 0;
        order: 0;
    }
}
@media (max-width: 991px) {
    .result .row-result .col-lg-9 {
        -webkit-box-ordinal-group: 2;
        -webkit-order: 1;
        -ms-flex-order: 1;
        order: 1;
    }
}
.result .row-result img {
    margin-bottom: 17px;
    max-width: 90px;
    border-radius: 50%;
    border: 5px solid #fff;
}
@media (max-width: 991px) {
    .result .row-result img {
        margin-bottom: 10px;
    }
}
.result .row-result .name {
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 35px;
}
@media (max-width: 991px) {
    .result .row-result .name {
        margin-bottom: 10px;
    }
}
.result .row-result .desc {
    font-size: 14px;
    margin-bottom: 0;
    line-height: 24px;
    color: #0f2739;
}
.result .row-result .col-result-content {
    background: #fff;
    padding: 30px;
    position: relative;
}
.result .row-result .col-result-content:before {
    display: block;
    background: url(../img/arrow.png) no-repeat;
    width: 25px;
    height: 25px;
    content: '';
    position: absolute;
    left: -25px;
}
@media (max-width: 991px) {
    .result .row-result .col-result-content:before {
        display: none;
    }
}
.result .row-result .col-result-content p {
    color: #2b3e4e;
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 35px;
}
@media (max-width: 767px) {
    .result .row-result .col-result-content p {
        font-size: 14px;
        line-height: 21px;
        margin-bottom: 15px;
    }
}
.result .row-result .col-result-content .result-hidden-content {
    display: none;
}
.result .row-result .col-result-content a {
    text-decoration: underline;
    color: #49a8cb;
    font-size: 14px;
    position: absolute;
    bottom: 35px;
}
@media (max-width: 767px) {
    .result .row-result .col-result-content a {
        bottom: 15px;
    }
}
.result .row-result .col-result-content a .more-2 {
    display: none;
}
.result .row-result .col-result-content a.active .more-1 {
    display: none;
}
.result .row-result .col-result-content a.active .more-2 {
    display: block;
}
.result .row-result.row-result-left .col-result-man {
    text-align: right;
}
@media (max-width: 991px) {
    .result .row-result.row-result-left .col-result-man {
        text-align: center;
    }
}
.result .row-result.row-result-left .col-result-content:before {
    display: block;
    background: url(../img/arrow-right.png) no-repeat;
    width: 25px;
    height: 25px;
    content: '';
    position: absolute;
    right: -25px;
    left: auto;
}
@media (max-width: 991px) {
    .result .row-result.row-result-left .col-result-content:before {
        display: none;
    }
}

.orator-title {
    margin-top: 75px;
    margin-bottom: 65px;
}
@media (max-width: 991px) {
    .orator-title {
        margin-top: 40px;
        margin-bottom: 40px;
    }
}
.orator-title h3.page-title {
    margin-bottom: 0;
    text-align: center;
}

.create {
    background: url(../img/bg-2.png) 50% 0 / cover no-repeat;
    -webkit-box-shadow: 15px 25.981px 37px 0px rgba(52, 119, 144, 0.2);
    box-shadow: 15px 25.981px 37px 0px rgba(52, 119, 144, 0.2);
    margin-bottom: 80px;
}
@media (max-width: 991px) {
    .create {
        margin-bottom: 40px;
    }
}
.create .aratop__pt {
    padding-top: 70px;
}
.create .line {
    padding-bottom: 58px;
}
.create h2 {
    color: #fff;
}
.create .create__foto {
    text-align: center;
}
.create .create__arrow {
    padding-top: 190px;
    cursor: pointer;
}
@media (max-width: 575px) {
    .create .create__arrow {
        padding-top: 50px;
    }
}
.create .block-1 {
    position: relative;
}
.create .arator__link-left {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    z-index: 10;
    cursor: pointer;
}
.create .arator-dm-left {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
}
.create .arator-mh-right {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
}
.arator__link-left {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    z-index: 10;
}

#arator1 {
    padding-top: 3px;
}

.arator__link-right {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    z-index: 10;
    cursor: pointer;
}

.arator-dm-left {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
}

.create .create__arrow-right {
    text-align: right;
}
@media (max-width: 575px) {
    .create .create__arrow-right {
        text-align: left;
    }
}
.create .create__name {
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    line-height: 30px;
    margin: 0;
}
@media (max-width: 1199px) {
    .create .create__name {
        font-size: 16px;
    }
}
@media (max-width: 575px) {
    .create .create__name {
        font-size: 12px;
    }
}
.create .create__arrow-left .create__name:before {
    display: inline-block;
    vertical-align: middle;
    content: '';
    width: 40px;
    height: 40px;
    background: url(../img/arrows-sprite.png) -40px 0;
    margin-right: 20px;
}
@media (max-width: 575px) {
    .create .create__arrow-left .create__name:before {
        display: none;
    }
}
.create .create__arrow-left .create__name:hover:before {
    background: url(../img/arrows-sprite.png) -40px -40px;
}
.create .create__arrow-right .create__name:after {
    margin-left: 20px;
    display: inline-block;
    vertical-align: middle;
    content: '';
    width: 40px;
    height: 40px;
    background: url(../img/arrows-sprite.png) 0 0;
}
@media (max-width: 575px) {
    .create .create__arrow-right .create__name:after {
        display: none;
    }
}
.create .create__arrow-right .create__name:hover:after {
    background: url(../img/arrows-sprite.png) 0 -40px;
}
.create .order-2 {
    cursor: pointer;
}
.create .order-2 .create__name:after {
    display: none;
}
.create .order-2 .create__name:before {
    display: inline-block;
    vertical-align: middle;
    content: '';
    width: 40px;
    height: 40px;
    margin-right: 20px;
    background: url(../img/arrows-sprite.png) 0 0;
}
@media (max-width: 575px) {
    .create .order-2 .create__name:before {
        display: none;
    }
}
.create .order-2:hover .create__name:before {
    background: url(../img/arrows-sprite.png) 0 -40px;
}
@media (max-width: 575px) {
    .create .order-2:hover .create__name:before {
        display: none;
    }
}
.create .block-arator-hid {
    display: none;
}
.create .block-2 .cre__mt-mixail {
    padding-top: 100px;
    padding-bottom: 0;
}
@media (max-width: 767px) {
    .create .block-2 .cre__mt-mixail {
        padding-top: 10px;
    }
}
.create .block-2 .create__name:before {
    display: none;
}
.create .block-2 .create__name:after {
    margin-left: 20px;
    display: inline-block;
    vertical-align: middle;
    content: '';
    width: 40px;
    height: 40px;
    background: url(../img/arrows-sprite.png) 40px 0;
}
@media (max-width: 575px) {
    .create .block-2 .create__name:after {
        display: none;
    }
}
.create .block-2:hover .create__name:after {
    background: url(../img/arrows-sprite.png) 40px -40px;
}
@media (max-width: 767px) {
    .create .order-2 {
        padding-bottom: 20px;
    }
}
.create .order-2 .cre__mt-dima {
    padding-top: 190px;
    margin-left: auto;
    padding-bottom: 0;
}
@media (max-width: 767px) {
    .create .order-2 .cre__mt-dima {
        padding-top: 10px;
    }
}
.create .cre__arrow {
    padding-bottom: 34px;
    width: 100%;
    max-width: 100%;
    cursor: pointer;
}
.create .create__box-text {
    margin-top: 25px;
    padding-bottom: 50px;
}
@media (max-width: 767px) {
    .create .create__box-text {
        margin-bottom: 25px;
    }
}
.create .create__items li {
    color: #fff;
    margin-bottom: 27px;
    font-size: 18px;
    font-weight: 400;
    line-height: 26px;
}
@media (max-width: 1199px) {
    .create .create__items li {
        font-size: 16px;
        line-height: 21px;
    }
}
@media (max-width: 575px) {
    .create .create__items li {
        font-size: 12px;
        line-height: 18px;
        margin-bottom: 10px;
    }
}
.create .create__items li:last-child {
    margin-bottom: 0;
}

.variants {
    margin-bottom: 118px;
    text-align: center;
}
@media (max-width: 991px) {
    .variants {
        margin-bottom: 40px;
    }
}
.variants .row-variants-title {
    margin-bottom: 120px;
}
@media (max-width: 991px) {
    .variants .row-variants-title {
        margin-bottom: 60px;
    }
}
.variants .row-variants-title h3.page-title {
    margin-bottom: 0;
}
.variants .col-variants {
    background: #fff;
    padding: 63px 45px 51px;
    position: relative;
    border: 1px solid #e8e8e8;
}
@media (max-width: 1199px) {
    .variants .col-variants {
        padding: 63px 20px;
    }
}
@media (max-width: 991px) {
    .variants .col-variants {
        margin-bottom: 40px;
    }
}
.variants .col-variants .col-variants-top {
    margin-bottom: 38px;
}
@media (max-width: 1199px) {
    .variants .col-variants .col-variants-top {
        margin-bottom: 40px;
    }
}
.variants .col-variants .col-variants-top .icon-variants {
    width: 70px;
    height: 83px;
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: -35px;
    margin: 0 auto;
    background-repeat: no-repeat;
    background-position: center;
}
.variants .col-variants .col-variants-top .icon-variants.icon-variants-1 {
    background-image: url(../img/call.png);
}
.variants .col-variants .col-variants-top .icon-variants.icon-variants-2 {
    background-image: url(../img/rocket.png);
}
.variants .col-variants .col-variants-top .icon-variants.icon-variants-3 {
    background-image: url(../img/services.png);
}
.variants .col-variants .col-variants-top h5 {
    margin-bottom: 29px;
    color: #49a8cb;
    font-size: 24px;
}
.variants .col-variants .col-variants-top p.desc {
    text-align: left;
    font-weight: bold;
    color: #0e2434;
    font-size: 16px;
    margin-bottom: 45px;
    line-height: 26px;
}
@media (max-width: 1199px) {
    .variants .col-variants .col-variants-top p.desc {
        font-size: 14px;
        line-height: 21px;
    }
}
.variants .col-variants .col-variants-top p.text {
    text-align: left;
    margin-bottom: 0;
    color: #0e2434;
    font-size: 16px;
    line-height: 26px;
}
@media (max-width: 1199px) {
    .variants .col-variants .col-variants-top p.text {
        font-size: 14px;
        line-height: 21px;
    }
}
.variants .col-variants .col-variants-bottom .price {
    margin-bottom: 18px;
}
.variants .col-variants .col-variants-bottom .price .price-top {
    font-size: 14px;
    color: #34363e;
    margin-bottom: 5px;
}
.variants .col-variants .col-variants-bottom .price .price-middle {
    color: #76838d;
    font-size: 24px;
    text-decoration: line-through;
    margin-bottom: 0px;
}
.variants .col-variants .col-variants-bottom .price .price-bottom {
    margin-bottom: 0;
    font-weight: bold;
    color: #49a8cb;
    font-size: 36px;
}
.variants .col-variants .col-variants-bottom .btn-dostup {
    letter-spacing: 1px;
    color: #fff;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 14px;
    padding: 19px 22px;
    display: inline-block;
    background: #d5422d;
}
.variants .col-variants:hover {
    background: #0e2434;
    border: 1px solid #0e2434;
}
.variants .col-variants:hover p.desc {
    color: #ffffff;
}
.variants .col-variants:hover p.text {
    color: #b8bbc3;
}

.insurance {
    margin-bottom: 128px;
}
@media (max-width: 991px) {
    .insurance {
        margin-bottom: 40px;
    }
}
.insurance .row-insurance-title {
    margin-bottom: 41px;
}
@media (max-width: 991px) {
    .insurance .row-insurance-title {
        margin-bottom: 40px;
    }
}
.insurance .row-insurance-title h3.page-title {
    margin-bottom: 0;
    text-align: center;
}
.insurance .row-insurance-content .text-block {
    margin-top: 19px;
    background: #fff;
    padding: 32px 38px 36px;
    -webkit-box-shadow: 13px 22.517px 35px 0px rgba(52, 54, 62, 0.2);
    box-shadow: 13px 22.517px 35px 0px rgba(52, 54, 62, 0.2);
    max-width: 990px;
    position: relative;
    z-index: 10;
}
@media (max-width: 991px) {
    .insurance .row-insurance-content .text-block {
        padding: 20px;
    }
}
.insurance .row-insurance-content .text-block p {
    color: #0f2739;
    font-size: 18px;
    margin-bottom: 30px;
    line-height: 30px;
}
@media (max-width: 991px) {
    .insurance .row-insurance-content .text-block p {
        font-size: 14px;
        line-height: 21px;
        margin-bottom: 15px;
    }
}
.insurance .row-insurance-content .text-block p:last-child {
    margin-bottom: 0;
}
.insurance .row-insurance-content .icon-block {
    background: url(../img/texture-2.png) no-repeat;
    width: 440px;
    height: 438px;
    position: absolute;
    right: 0;
    top: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}
@media (max-width: 1199px) {
    .insurance .row-insurance-content .icon-block {
        display: none;
    }
}
.insurance .row-insurance-content .icon-block .icon-content {
    background: url('../img/insurance.png') no-repeat;
    width: 295px;
    height: 304px;
    display: block;
    margin-left: -4px;
}

.asks {
    background: #ffffff;
    margin-bottom: 80px;
    padding: 39px 0 75px;
}
.asks .container-title {
    border-left: 6px solid #d5422d;
    padding: 10px 0 5px;
    margin-bottom: 79px;
}
@media (max-width: 991px) {
    .asks .container-title {
        margin-bottom: 40px;
    }
}
.asks .container-title h3.page-title {
    margin-bottom: 0;
}
.asks .col-ask-list a.col-ask-item {
    display: block;
    font-weight: bold;
    margin-bottom: 25px;
    color: #2b3e4e;
    font-size: 19px;
}
.asks .col-ask-list a.col-ask-item:last-child {
    margin-bottom: 0;
}
.asks .col-ask-list a.col-ask-item:hover {
    text-decoration: underline;
    color: #d5422d;
}
.asks .col-ask-list a.col-ask-item.current {
    text-decoration: underline;
    color: #d5422d;
}
.asks .ask-col {
    display: none;
}
.asks .ask-col.current {
    display: block;
}
.asks .ask-col li {
    font-size: 18px;
    color: #2b3e4e;
    line-height: 30px;
    margin-bottom: 10px;
}
@media (max-width: 1199px) {
    .asks .ask-col li {
        font-size: 16px;
        line-height: 21px;
    }
}
.asks .ask-col li:last-child {
    margin-bottom: 25px;
}
@media (max-width: 1199px) {
    .asks .ask-col li:last-child {
        margin-bottom: 15px;
    }
}
.asks .ask-col p {
    font-size: 18px;
    color: #2b3e4e;
    line-height: 30px;
    margin-bottom: 27px;
}
@media (max-width: 1199px) {
    .asks .ask-col p {
        font-size: 16px;
        line-height: 21px;
        margin-bottom: 15px;
    }
}
.asks .ask-col p:last-child {
    margin-bottom: 0;
}
@media (max-width: 991px) {
    .asks .ask-col p:last-child {
        margin-bottom: 15px;
    }
}

footer.section-container {
    margin-top: 80px;
    background: #fff;
    margin-bottom: 52px;
    padding: 50px 0;
}
@media (max-width: 991px) {
    footer.section-container {
        padding: 25px 0;
    }
}
@media (max-width: 991px) {
    footer.section-container .year {
        margin-bottom: 20px;
    }
}
footer.section-container .year p {
    font-size: 16px;
    color: #2b3e4e;
    font-weight: bold;
}
footer.section-container h5 {
    font-size: 16px;
    color: #2b3e4e;
    font-weight: bold;
    margin-bottom: 35px;
}
@media (max-width: 991px) {
    footer.section-container h5 {
        margin-bottom: 10px;
    }
}
footer.section-container a {
    display: block;
    color: #2b3e4e;
    font-size: 14px;
    line-height: 21px;
    margin-bottom: 10px;
}
footer.section-container a:last-child {
    margin-bottom: 0;
}
@media (max-width: 991px) {
    footer.section-container a:last-child {
        margin-bottom: 15px;
    }
}
footer.section-container p {
    color: #2b3e4e;
    font-size: 14px;
    line-height: 21px;
    margin-bottom: 10px;
}
footer.section-container p:last-child {
    margin-bottom: 0;
}
@media (max-width: 991px) {
    footer.section-container p:last-child {
        margin-bottom: 15px;
    }
    .row-results {
        margin-bottom: 0;
    }
}
@media (max-width: 991px) {
    footer.section-container .col-lg-3.text-right {
        text-align: left;
    }
}

#mfp-ask {
    max-width: 465px;
    background: #ffffff;
    margin: 0 auto;
    padding: 50px 28px 40px;
    position: relative;
}
@media (max-width: 767px) {
     #mfp-ask {
        padding: 20px;
    }
}
 #mfp-ask .mfp-close {
    background: url('../img/close.png') no-repeat;
    width: 14px;
    height: 14px;
    display: block;
    position: absolute;
    right: -25px;
    top: -25px;
}
@media (max-width: 767px) {
     #mfp-ask .mfp-close {
        right: 5px;
        top: 5px;
    }
}
 #mfp-ask h5 {
    color: #0f2739;
    font-size: 24px;
    margin-bottom: 50px;
    text-align: center;
}
@media (max-width: 767px) {
     #mfp-ask h5 {
        margin-bottom: 10px;
        font-size: 18px;
    }
}
 #mfp-ask .form-group {
    margin-bottom: 20px;
}
@media (max-width: 767px) {
     #mfp-ask .form-group {
        margin-bottom: 10px;
    }
}
 #mfp-ask .form-group.form-group-textarea {
    margin-bottom: 30px;
}
@media (max-width: 767px) {
     #mfp-ask .form-group.form-group-textarea {
        margin-bottom: 20px;
    }
}
 #mfp-ask .form-group.form-group-btn {
    text-align: center;
    margin-bottom: 37px;
}
@media (max-width: 767px) {
     #mfp-ask .form-group.form-group-btn {
        margin-bottom: 25px;
    }
}
 #mfp-ask .form-group input,
 #mfp-ask .form-group textarea {
    width: 100%;
    font-family: 'Muller', sans-serif;
    font-size: 16px;
    color: #76838d;
    border: 1px solid #b9bbc3;
    padding: 23px 18px;
}
@media (max-width: 767px) {
     #mfp-ask .form-group input,
     #mfp-ask .form-group textarea {
        padding: 12px;
        font-size: 14px;
    }
}
 #mfp-ask .form-group input[type='submit'] {
    letter-spacing: 1px;
    color: #ffffff;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 16px;
    width: auto;
    display: inline-block;
    background: #d5422d;
    border: none;
    padding: 19px 30px;
    cursor: pointer;
}
@media (max-width: 767px) {
     #mfp-ask .form-group input[type='submit'] {
        padding: 12px;
        font-size: 14px;
    }
}
 #mfp-ask .form-desc {
    text-align: center;
}
 #mfp-ask .form-desc p, #mfp-ask .form-desc a{
    margin-bottom: 0;
    color: #76838d;
    font-size: 13px;
    line-height: 18px;
}

#mfp-dostup {
    max-width: 465px;
    background: #ffffff;
    margin: 0 auto;
    padding: 25px 28px 40px;
    position: relative;
}
@media (max-width: 767px) {
    #mfp-dostup {
        padding: 20px;
    }
}
#mfp-dostup .toolbar {
    text-align: center;
    margin-bottom: 35px;
}
#mfp-dostup .toolbar p {
    color: #0f2739;
    font-size: 14px;
    margin-bottom: 15px;
}
#mfp-dostup .toolbar span {
    display: block;
    width: 100%;
    height: 2px;
    background: #34363e;
    position: relative;
}
#mfp-dostup .toolbar span:before {
    width: 50%;
    height: 6px;
    background: #49a8cb;
    content: '';
    display: block;
    position: absolute;
    top: -2px;
}
 #mfp-dostup .mfp-close {
    background: url('../img/close.png') no-repeat;
    width: 14px;
    height: 14px;
    display: block;
    position: absolute;
    right: -25px;
    top: -25px;
}
@media (max-width: 767px) {
    #mfp-dostup .mfp-close {
        right: 5px;
        top: 5px;
    }
}
#mfp-dostup h5 {
    color: #0f2739;
    font-size: 24px;
    margin-bottom: 25px;
    text-align: center;
}
@media (max-width: 767px) {
    #mfp-dostup h5 {
        margin-bottom: 10px;
        font-size: 18px;
    }
}
#mfp-dostup .form-group {
    margin-bottom: 20px;
}
@media (max-width: 767px) {
    #mfp-dostup .form-group {
        margin-bottom: 10px;
    }
}
#mfp-dostup .form-group.form-group-textarea {
    margin-bottom: 30px;
}
@media (max-width: 767px) {
    #mfp-dostup .form-group.form-group-textarea {
        margin-bottom: 20px;
    }
}
#mfp-dostup .form-group.form-group-btn {
    text-align: center;
    margin-bottom: 37px;
}
@media (max-width: 767px) {
    #mfp-dostup .form-group.form-group-btn {
        margin-bottom: 25px;
    }
}
#mfp-dostup .form-group input,
#mfp-dostup .form-group textarea {
    width: 100%;
    font-family: 'Muller', sans-serif;
    font-size: 16px;
    color: #76838d;
    border: 1px solid #b9bbc3;
    padding: 23px 18px;
}
@media (max-width: 767px) {
    #mfp-dostup .form-group input,
    #mfp-dostup .form-group textarea {
        padding: 12px;
        font-size: 14px;
    }
}
#mfp-dostup .form-group input[type='submit'] {
    letter-spacing: 1px;
    color: #ffffff;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 16px;
    width: auto;
    display: inline-block;
    background: #d5422d;
    border: none;
    padding: 19px 30px;
    cursor: pointer;
}
@media (max-width: 767px) {
    #mfp-dostup .form-group input[type='submit'] {
        padding: 12px;
        font-size: 14px;
    }
}
#mfp-dostup .form-desc {
    text-align: center;
}
#mfp-dostup .form-desc p, #mfp-dostup .form-desc a {
    margin-bottom: 0;
    color: #76838d;
    font-size: 13px;
    line-height: 18px;
}

@media (max-width: 575px) {
    .fs-screen__title-num {
        width: 100px;
    }
    .ask .button-ask,
    .button-ask {
        margin-right: 0;
        padding: 18px 10px;
    }
    .button-request,
    .ask .button-request {
        padding: 19px 17px;
        margin-right: 10px;
    }
}










.videobox {
    position: relative;
    z-index: 2;
  }
  
  .video-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 88px; /* Размер кнопки YouTube */
    height: 68px;
    transform: translate(-50%, -50%);
    cursor: pointer;
    z-index: 2;
    transition: all 0.3s;
  }
  @media (max-width: 480px) {
    .video-play-button {
      width: 68px;
      height: 48px;
    }
   
  }
  
  .video-play-button:hover svg {
    transform: scale(0.97);
  }
  .video-play-button svg {
    width: 100%;
    height: 100%;
    transition: all 0.3s ease  0s;
  }
  
  .video-play-button .youtube-play-button {
    transition: fill 0.3s;
  }
  
  .video-play-button:hover .youtube-play-button {
    fill: #e52d27; /* Изменение цвета кнопки при наведении */
    
  }
  


  
  /* Скрываем кнопку "Play" в контролах видео */
  video::-webkit-media-controls-play-button {
    display: none !important;
  }
  
  video::-webkit-media-controls-start-playback-button {
    display: none !important;
  }
  
  
  a.but.fancy {
    color: #b9bbc3 !important;
    text-decoration: underline;
  }



@media(min-width:992px){
    .fs-screen {
        min-height: 638px;
        
    }
    .fs-description {
        margin-top: -220px;
    }

}

/* Cookie Banner Styles */
.cookie-banner {
    position: fixed;
    bottom: 10px;
    right: 10px;
    background-color: #ffffff;
    border-top: 1px solid #e0e0e0;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 10000;
    padding: 20px;
    width: 500px;
    display: none;
}

.cookie-banner.show {
    display: block;
}

.cookie-banner-content {
    margin: 0 auto;
    display: flex;
    gap: 20px;
    flex-direction: column;
}

.cookie-banner p {
    color: #000000;
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
    flex: 1;
}

.cookie-banner a {
    color: #000000;
    text-decoration: underline;
}

.cookie-banner a:hover {
    color: #333333;
}

.cookie-accept-btn {
    background-color: #48A8C9;
    color: #ffffff;
    border: none;
    padding: 12px 24px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    transition: background-color 0.3s ease;
}

.cookie-accept-btn:hover {
    opacity: 0.8;
}

@media (max-width: 768px) {
    .cookie-banner-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .cookie-banner p {
        font-size: 13px;
    }
    
    .cookie-accept-btn {
        width: 100%;
        padding: 15px 24px;
    }
}
.popup__checkbox label {
    display: flex;
    align-items: flex-start;
    gap: 4px;
    font-size: 14px;
    margin-bottom: 20px;
}
.popup__checkbox input {
    margin: 0;
}
.popup__checkbox a {
    text-decoration: underline;
}