@font-face {
    font-family: Lato;
    font-style: normal;
    font-weight: 100;
    src: url("../fonts/Lato-Hairline.ttf") format('truetype');
}

@font-face {
    font-family: Lato;
    font-style: italic;
    font-weight: 100;
    src: url("../fonts/Lato-HairlineItalic.ttf") format('truetype');
}

@font-face {
    font-family: Lato;
    font-style: normal;
    font-weight: 200;
    src: url("../fonts/Lato-Thin.ttf") format('truetype');
}

@font-face {
    font-family: Lato;
    font-style: italic;
    font-weight: 200;
    src: url("../fonts/Lato-ThinItalic.ttf") format('truetype');
}

@font-face {
    font-family: Lato;
    font-style: normal;
    font-weight: 300;
    src: url("../fonts/Lato-Light.ttf") format('truetype');
}

@font-face {
    font-family: Lato;
    font-style: italic;
    font-weight: 300;
    src: url("../fonts/Lato-LightItalic.ttf") format('truetype');
}

@font-face {
    font-family: Lato;
    font-style: normal;
    font-weight: 400;
    src: url("../fonts/Lato-Regular.ttf") format('truetype');
}

@font-face {
    font-family: Lato;
    font-style: italic;
    font-weight: 400;
    src: url("../fonts/Lato-Italic.ttf") format('truetype');
}

@font-face {
    font-family: Lato;
    font-style: normal;
    font-weight: 500;
    src: url("../fonts/Lato-Medium.ttf") format('truetype');
}

@font-face {
    font-family: Lato;
    font-style: italic;
    font-weight: 500;
    src: url("../fonts/Lato-MediumItalic.ttf") format('truetype');
}

@font-face {
    font-family: Lato;
    font-style: normal;
    font-weight: 600;
    src: url("../fonts/Lato-Semibold.ttf") format('truetype');
}

@font-face {
    font-family: Lato;
    font-style: italic;
    font-weight: 600;
    src: url("../fonts/Lato-SemiboldItalic.ttf") format('truetype');
}

@font-face {
    font-family: Lato;
    font-style: normal;
    font-weight: 700;
    src: url("../fonts/Lato-Bold.ttf") format('truetype');
}

@font-face {
    font-family: Lato;
    font-style: italic;
    font-weight: 700;
    src: url("../fonts/Lato-BoldItalic.ttf") format('truetype');
}

@font-face {
    font-family: Lato;
    font-style: normal;
    font-weight: 800;
    src: url("../fonts/Lato-Heavy.ttf") format('truetype');
}

@font-face {
    font-family: Lato;
    font-style: italic;
    font-weight: 800;
    src: url("../fonts/Lato-HeavyItalic.ttf") format('truetype');
}

@font-face {
    font-family: Lato;
    font-style: normal;
    font-weight: 900;
    src: url("../fonts/Lato-Black.ttf") format('truetype');
}

@font-face {
    font-family: Lato;
    font-style: italic;
    font-weight: 900;
    src: url("../fonts/Lato-BlackItalic.ttf") format('truetype');
}

body::-webkit-scrollbar-track {
    background-color: #e6e6e6;
}

body::-webkit-scrollbar-thumb {
    background: #999999;
    border-radius: 2px;
    transition: all 0.25s ease;
}

body::-webkit-scrollbar-thumb:window-inactive {
    background: #bbbbbb;
}

body:hover::-webkit-scrollbar-thumb, body:active::-webkit-scrollbar-thumb, body:focus::-webkit-scrollbar-thumb {
    background-color: #999999;
    border-radius: 2px;
}

body {
    font-family: Lato;
    padding-top: 90px;
    transition: all 0.25s ease;
    position: relative;
    min-height: 100%;
    overflow-x: hidden;
}

html {
    width: 100%;
    height: 100%;
}

.content {
    max-width: 1220px;
    padding: 0 10px;
    margin: auto;
    position: relative;
}

nav {
    height: 90px;
    width: 100%;
    transition: all 0.25s ease;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    background: #FFFFFF;
    will-change: height;
    border-bottom: 1px solid transparent;
}

nav > .content > .logo {
    padding: 8px 0 7px 0;
    float: left;
    margin: 0;
    overflow: hidden;
    height: 90px;
}

nav > .content > .search {
    float: right;
    font-size: 26px;
    line-height: 1;
    color: #b3b3b3;
    padding: 31px 0;
    cursor: pointer;
    width: calc(100% - 1150px);
    text-align: center;
    background: url('/assets/images/searchTopIconBlack.svg') no-repeat 50% 50%;
    background-size: 19px;
}

nav > .content > .search.clear {
    background: none;
}

nav > .content > .clear {
    display: none;
}

nav > .content > .search-input {
    display: none;
    height: 70px;
    width: 0;
    margin: 10px 10px 10px 0;
    font-size: 30px;
    font-weight: 100;
    padding: 10px 20px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: rgba(0, 0, 0, 0.5);
    transition: all 0.5s ease;
    transition-delay: 0.05s;
}

nav.red .search-input::-webkit-input-placeholder {
    color: #FFFFFF;
}

nav.red .search-input::-moz-placeholder {
    color: #FFFFFF;
}

nav.red .search-input:-moz-placeholder {
    color: #FFFFFF;
}

nav.red .search-input:-ms-input-placeholder {
    color: #FFFFFF;
}

nav.searching > .content > menu, nav.searching > .content > .free-trial, nav.searching > .content > .logo, nav.searching > .content > .search {
    display: none;
}

nav.searching > .content > .clear {
    display: block;
}

nav.searching > .content > .search-input {
    display: inline-block;
    width: calc(100% - 61px);
    will-change: padding, margin;
    transition: all 0.25s ease;
}

nav > .content > .search-input:active, nav > .content > .search-input:focus {
    outline: none;
    border-color: #e60000;
    color: #e60000;
}

nav.red > .content > .search-input {
    color: #FFFFFF;
    background: transparent;
    border: 1px solid #FFFFFF;
}

nav.red > .content > .search-input:active, nav.red > .content > .search-input:focus {
    outline: none;
    color: #e60000;
    background: #FFFFFF;
}

body.scrolled > nav.searching > .content > .search-input {
    height: 46px;
    margin: 5px 10px 5px 0;
}

.awery-svg-path {
    fill: #e60000;
    transition: all 0.25s ease;
}

nav.red {
    background: #e60000;
}

nav.red .awery-svg-path {
    fill: #FFFFFF;
}

.free-trial {
    float: right;
    text-transform: uppercase;
    color: #ffffff;
    background: #e60000;
    border-radius: 5px;
    padding: 17px 30px;
    letter-spacing: 0.5px;
    margin: 19px 0 19px 15px;
    border: 2px solid #e60000;
    transition: all 0.25s ease;
    line-height: 14px;
    font-weight: bold;
    font-size: 17px;
}

a.free-trial {
    color: #FFFFFF;
}

.free-trial:hover, .free-trial:active, .free-trial:focus {
    outline: none;
    text-decoration: none;
}

.free-trial.trial-white {
    background: #e60000;
    color: #FFFFFF;
    border: 2px solid #FFFFFF;
    font-weight: bold;
}

.free-trial.free-trial-banner {
    border-color: #FFFFFF;
    background: #FFFFFF;
    color: #E60000;
    float: left;
    margin: 20px 0 0 0;
    box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.2);
    transition: all 0.25s ease;
}

.free-trial.free-trial-banner:hover, .free-trial.free-trial-banner:hover, .free-trial.free-trial-banner:hover {
    box-shadow: 5px 5px 10px 0px rgba(0, 0, 0, 0.5);
}

.free-trial.drop {
    position: relative;
    transition: none;
    z-index: 9999;
    padding: 17px 30px 17px 20px;
    background: #e60000 url('../images/dropdown.svg') no-repeat calc(100% - 10px) 50%;
}

.free-trial.free-trial-banner {
    background: #FFFFFF url('../images/dropdown-dark-down.svg') no-repeat calc(100% - 10px) 50%;
}

.free-trial.brochure {
    margin-left: 30px;
    padding: 17px 30px 17px 20px;
    text-transform: none;
}

.free-trial.brochure > svg {
    float: left;
    margin: -3px 10px -3px 0;
}

.free-trial.drop > .drop {
    position: absolute;
    min-width: 100%;
    top: calc(100% - 5px);
    left: 0;
    background: #FFFFFF;
    border-radius: 0 0 6px 6px;
    box-shadow: 0 3px 5px 0 rgba(0, 0, 0, 0.25);
    padding: 4px 0 10px 0;
    display: none;
    /*border: 2px solid #e60000;*/
    border-top: none;
    transition: all 0.25s ease;
}

.free-trial-outer > .free-trial.drop > .drop {
    width: 100%;
    left: 0;
    box-shadow: 0 3px 5px 0 rgba(230, 0, 0, 0.2);
}

.free-trial.trial-white.drop > .drop,
.free-trial.free-trial-banner.drop > .drop {
    border-color: #FFFFFF;
}

.free-trial.drop.opened {
   /* background: #FFFFFF url('../images/dropdown-dark.svg') no-repeat calc(100% - 10px) 50%;
    color: #e60000;*/
    border: none;
}

.free-trial.drop.opened > .drop {
    display: block;
}

.drop > .drop-item {
    padding: 6px 10px 6px 20px;
    line-height: 24px;
    font-size: 14px;
    color: #000000;
    text-align: left;
    font-weight: normal;
    text-transform: none;
    cursor: pointer;
    transition: all 0.25s ease;
    display: block;

    white-space: nowrap;
}

.drop > .drop-item:hover {
    color: #e60000;
    text-decoration: none;
}

.drop > .drop-item > img {
    width: 21px;
    height: 24px;
    object-fit: contain;
    display: inline-block;
    margin-right: 8px;
}

body.scrolled > nav > .content > .free-trial.trial-white > .drop {
    border: 2px solid #e60000;
    border-top: none;
}

nav.red > .content > .search {
    background: url('/assets/images/searchTopIcon.svg') no-repeat 50% 50%;
    background-size: 19px;
}

nav.red > .content > .search.clear {
    background: none;
    color: #FFFFFF;
}

menu {
    float: left;
    margin: 0 0 0 20px;
    padding: 0;
    position: relative;
    z-index: 100;
}

menu > a, menu > .droped-menu {
    float: left;
    display: block;
    color: #000000;
    text-transform: uppercase;
    font-size: 14px;
    padding: 37px 10px;
    line-height: 1;
    transition: all 0.25s ease;
    border-top: 1px solid transparent;
    /*border-bottom:1px solid transparent;*/
    position: relative;
    z-index: 100;
}

menu > .droped-menu > a {
    transition: all 0.25s ease;
}

menu > .droped-menu > .drop-menu {
    display: none;
    position: absolute;
    /*top: calc(100% + 1px);*/
    top: 100%;
    min-width: 100%;
    /*box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.2);*/
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-top-color: #FFFFFF;
    background: #FFFFFF;
    left: 0;
    white-space: nowrap;
    padding: 0 0 10px 0;
}

menu > .droped-menu > .drop-menu .drop-menu-item {
    padding: 10px 13px 10px 15px;
    color: #000000;
    cursor: pointer;
    display: block;
    z-index: 101;
    white-space: nowrap;
    transition: all 0.25s ease;
    text-transform: none;
}

menu > .droped-menu > .drop-menu .drop-menu-item.group {
    font-weight: bold;
    padding: 15px 13px;
}

menu > .droped-menu > .drop-menu .drop-menu-item > img {
    height: 30px;
    margin: -9px 5px -9px 0;
}

menu > .droped-menu:hover > .drop-menu, menu > .droped-menu:active > .drop-menu, menu > .droped-menu:focus > .drop-menu {
    display: block;
}

menu > .droped-menu > .drop-menu .drop-menu-item:hover, menu > .droped-menu > .drop-menu .drop-menu-item:active, menu > .droped-menu > .drop-menu .drop-menu-item:focus {
    outline: none;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.25);
    color: #e60000;
}

menu > .droped-menu > a {
    color: #000000;
}

menu > .droped-menu > span.has-link {
    display: none;
}

menu > a:hover, menu > a:active, menu > a:focus,
menu > .droped-menu:hover, menu > .droped-menu:active, menu > .droped-menu:focus {
    text-decoration: none;
    cursor: pointer;
    color: #e60000;
    /*border-bottom:1px solid #e60000;
    box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.2);*/
}

menu > .droped-menu > a:hover, menu > .droped-menu > a:active, menu > .droped-menu > a:focus {
    text-decoration: none;
}

menu > .droped-menu:hover > a, menu > .droped-menu:active > a, menu > .droped-menu:focus > a {
    color: #e60000;
}

nav.red menu > a, nav.red menu > .droped-menu {
    color: #FFFFFF;
}

nav.red menu > .droped-menu > a {
    color: #ffffff;
}

body.scrolled {
    padding-top: 56px;
    /*svg 33*/
}

body.scrolled > nav {
    height: 56px;
    /*box-shadow: 0 5px 10px 0 rgba(0,0,0,0.15);*/
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
    background: #FFFFFF;
}

body > nav > .content > .search, body > nav > .content > .free-trial, body > nav > .content > .logo {
    transition: all 0.25s ease;
    will-change: padding, margin;
}

body > nav svg {
    will-change: margin;
}

/*body.scrolled > nav .aviation-software{
    display: none;
}*/
body.scrolled > nav svg {
    margin-bottom: -33px;
}

body.scrolled > nav > .content menu > a, body.scrolled > nav > .content menu > .droped-menu {
    padding: 20px 10px;
    color: #000000;
}

body.scrolled > nav > .content > .search {
    padding: 15px 0;
    transition: all 0.25s ease;
}

body.scrolled > nav > .content > .free-trial {
    margin: 5px 0 5px 15px;
    padding: 14px 30px 14px 20px;
    transition: all 0.25s ease;
    /*background: #FFFFFF;
    border-color: #E60000;
    color:#e60000;*/
}

body.scrolled > nav > .content > .free-trial.trial-demo{
    padding: 14px 20px 14px 20px;
}

body.scrolled > nav > .content > .free-trial.trial-white {
    /*    background: #FFFFFF;*/
    border-color: #E60000;
    /*color: #E60000;*/
}

body.scrolled > nav > .content > .logo {
    padding: 7px 0;
    transition: all 0.25s ease;
    height: 56px;
}

body.scrolled > nav.red > .content > .search-input {
    font-size: 24px;
    margin: 5px 10px 5px 0;
    padding: 5px 20px;
    height: 46px;
    transition: all 0.25s ease;
}

body.scrolled > nav.red menu > .droped-menu > a {
    color: #000000;
}

body.scrolled > nav.red > .content > .search {
    background: url('/assets/images/searchTopIconBlack.svg') no-repeat 50% 50%;
    background-size: 19px;
}

body.scrolled > nav.red .awery-svg-path {
    fill: #E60000;
}

nav.red menu > a:hover, nav.red menu > a:active, nav.red menu > a:focus, nav.red menu > .droped-menu:hover, nav.red menu > .droped-menu:active, nav.red menu > .droped-menu:focus {
    /*box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.2);*/
    background: #FFFFFF;
    color: #e60000 !important;
}

nav.red menu > .droped-menu:hover > a, nav.red menu > .droped-menu:active > a, nav.red menu > .droped-menu:focus > a {
    color: #e60000 !important;
}

.red-gradient-top {
    width: 100% !important;
    height: auto !important;
    float: left;
    background: #e60000;
    background: -moz-linear-gradient(top, #e60000 0%, #e60068 65%, #e60088 100%);
    background: -webkit-linear-gradient(top, #e60000 0%, #e60068 65%, #e60088 100%);
    background: linear-gradient(to bottom, #e60000 0%, #e60068 65%, #e60088 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#e60000', endColorstr='#e60088', GradientType=0);
    position: relative;
    /*overflow: hidden;*/
}

.red-gradient-top > canvas, #dom_overlay_container {
    position: absolute;
    bottom: 0;
    left: calc(((100% - 1200px) / 2) + 400px);
}

.awery-slogan {
    width: 100%;
    padding: 40px 0;
    border-top: 1px dotted rgba(255, 255, 255, 0.65);
    margin-top: 25px;
    /*text-shadow:
            -1px -1px 0 #e60000,
            1px -1px 0 #e60000,
            -1px 1px 0 #e60000,
            1px 1px 0 #e60000;*/
}

.awery-slogan > .awery-slogan-top {
    font-size: 31px;
    line-height: 35px;
    font-weight: bold;
    color: #FFFFFF;
    text-transform: uppercase;
    margin: 0 0 25px 0;
    padding: 0;
    letter-spacing: 1px;
}

.awery-slogan > .awery-slogan-bottom {
    font-size: 22px !important;
    line-height: 30px;
    margin: 0;
    padding: 0;
    color: #FFFFFF;
    font-weight: 300;
    margin-bottom: 15px;
}

.title {
    width: 100%;
    float: left;
    font-weight: 600;
    text-align: center;
    margin: 40px 0 20px 0;
    font-size: 30px;
    line-height: 30px;
    padding: 0;
    text-transform: uppercase;
}

.title > a {
    color: #000000;
}

.title > a:hover, .title > a:active, .title > a:focus {
    color: #000000;
    text-decoration: none;
}

li > a > span.title {
    font-size: 14px;
    margin: 0;
    text-align: left;
    font-weight: 400;
}

.get-acquainted-container{
    display: inline-block;
    width: 100%;
    position: relative;
    padding: 50px 0;
}

.get-acquainted-titles{
    display: inline-block;
    width: 100%;
}

.get-acquainted-titles h2{
    font-size: 40px;
    font-weight: 600;
    letter-spacing: 1px;
    text-align: center;
    color: #000000;
    margin: 0;
}

.get-acquainted-titles p{
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-align: center;
    color: #000000;
    margin: 10px 0;
}

.presentation-links-block{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
}

.presentation-links-block img{
    width: 19px;
    height: 17px;
    margin: 0 20px;
}

.pres-link{
    border-radius: 6px;
    box-shadow: 0 0 12px 0 rgba(0, 0, 0, 0.05), 0 12px 20px -15px rgba(0, 0, 0, 0.4);
    background-color: #e60000;
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    color: #ffffff!important;
    text-decoration: none!important;
    padding: 16px 24px;
    min-width: 220px;
    position: relative;
    z-index: 1;
}

.pres-link.disabled:after{
    content: "";
    position: absolute;
    z-index: 2;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: rgba(255,255,255,0.7);
}

.products {
    width: 100%;
    float: left;
    padding: 0 0 20px 0;
    transition: all 0.5s ease;
    background: #FFFFFF;
}

.product {
    text-align: center;
    cursor: pointer;
}

.product > .product-link {
    border-radius: 6px;
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 3px 8px 0px rgba(74, 125, 247, 0.25);
    display: inline-block;
    padding: 20px 40px;
    text-align: center;
    transition: all 0.25s ease;
    min-width: 370px;
}

.product > .product-link:hover, .product > .product-link:active, .product > .product-link:focus {
    background-color: rgba(74, 125, 247, 0.039);
    box-shadow: 0px 5px 12px 0px rgba(74, 125, 247, 0.35);
}

.product > .product-link.button-active {
    box-shadow: none;
}

.product > .product-link.button-active:hover, .product > .product-link.button-active:active, .product > .product-link.button-active:focus {
    background: #FFFFFF;
    box-shadow: 0px 5px 12px 0px rgba(74, 125, 247, 0.35);
}

.product > .product-link > img {
    height: 30px;
}

.product:nth-child(4) {
    padding-left: 0;
}

.product:nth-child(5) {
    padding-right: 0;
}

.products .product-description {
    display: none;
    padding: 50px 0 20px 0;
    text-align: left;
    font-weight: 300;
}

.products .product-awery_erp {
    color: #406a80;
}

.products .product-documents_library {
    color: #675a80;
}

.products .product-description > p {
    margin: 0;
    padding: 0;
    font-size: 18px;
    line-height: 26px;
    letter-spacing: 1.05px;
}

.products.products-opened {
    background: #f8faff;
}

.product-title {
    width: 100%;
    text-transform: uppercase;
    font-weight: 600;
    text-align: left;
    font-size: 20px;
    margin: 45px 0 20px 0;
    line-height: 20px;
    position: relative;
}

.product-title > strong {
    padding-right: 10px;
    background: #f8faff;
    position: relative;
    z-index: 5;
}

.product-title > .line {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    border-top: 1px solid #406a80;
}

.button {
    padding: 19px 30px;
    border-radius: 6px;
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 3px 8px 0px rgba(74, 125, 247, 0.25);
    margin: 33px 10px 6px 10px;
    color: #000000;
    display: inline-block;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
}

.button-blue {
    box-shadow: 0px 3px 8px 0px rgba(74, 125, 247, 0.25);
    color: #4a7df7;
}

.button-blue:hover, .button-blue:active, .button-blue:focus {
    background-color: rgba(74, 125, 247, 0.039);
    box-shadow: 0px 5px 12px 0px rgba(74, 125, 247, 0.35);
    text-decoration: none;
}

.button-erp {
    background: #4ff3d2;
    background: -moz-linear-gradient(-45deg, #4ff3d2 0%, #1784fb 50%, #f45155 100%);
    background: -webkit-linear-gradient(-45deg, #4ff3d2 0%, #1784fb 50%, #f45155 100%);
    background: linear-gradient(135deg, #4ff3d2 0%, #1784fb 50%, #f45155 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#4ff3d2', endColorstr='#f45155', GradientType=1);
    text-transform: uppercase;
    color: #FFFFFF;
    letter-spacing: 1px;
    margin: 33px auto 6px auto;
    transition: all 0.5s ease;
}

.button-doclib {
    background: #b49efe;
    background: -moz-linear-gradient(-45deg, #b49efe 0%, #6d21fe 100%);
    background: -webkit-linear-gradient(-45deg, #b49efe 0%, #6d21fe 100%);
    background: linear-gradient(135deg, #b49efe 0%, #6d21fe 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#b49efe', endColorstr='#6d21fe', GradientType=1);
    text-transform: uppercase;
    color: #FFFFFF;
    letter-spacing: 1px;
    margin: 33px auto 6px auto;
    transition: all 0.5s ease;
}

.button-doclib:hover, .button-doclib:active, .button-doclib:focus, .button-erp:hover, .button-erp:active, .button-erp:focus {
    box-shadow: 0px 3px 8px 0px rgba(74, 125, 247, 0.5);
    text-decoration: none;
    color: #FFFFFF;
    transition: all 0.5s ease;
}

.key-features {
    width: 100%;
}

.feature {
    font-size: 14px;
    line-height: 14px;
    display: inline-block;
    margin: 5px 10px;
    letter-spacing: 0.5px;
    font-weight: 400;
}

.feature > img {
    height: 42px;
    margin-bottom: 18px;
}

.top-screens {
    width: 100%;
    white-space: nowrap;
    padding: 0 10px;
    height: 260px;
    margin: 30px 0 30px 0;
    overflow: auto;
}

.top-screens > img {
    height: 220px;
    transition: all 0.5s ease;
    display: inline-block;
    margin: 15px 10px;
    box-shadow: 0px 3px 8px 0px rgba(0, 0, 0, 0.25);
    cursor: pointer;
}

.top-screens::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}

.top-screens::-webkit-scrollbar-track {
    background-color: #e6e6e6;
}

.top-screens::-webkit-scrollbar-thumb {
    background: #999999;
    border-radius: 2px;
    transition: all 0.25s ease;
}

.top-screens::-webkit-scrollbar-thumb:window-inactive {
    background: #bbbbbb;
}

.back-black-main {
    opacity: 0;
    width: 0;
    height: 0;
    position: fixed;
    z-index: 1001;
    background: rgba(0, 0, 0, 0.75);
    left: -100px;
    top: -100px;
    display: flex;
    transition: opacity 0.5s ease;
}

.back-black-main > .close-block {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 101;
}

.back-black-main > svg {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    z-index: 107;
}

.back-black-main > img {
    max-width: 100%;
    max-height: 100%;
    margin: auto;
    z-index: 102;
}

.back-black-main > span {
    font-size: 30px;
    width: 100%;
    z-index: 105;
    color: #FFFFFF;
    top: 20px;
    position: absolute;
    text-align: center;
    text-shadow: 1px 3px 8px rgba(0, 0, 0, 0.5);
}

body.open-gallery {
    overflow: hidden;
}

body.open-gallery > .back-black-main {
    opacity: 1;
    display: flex;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    transition: opacity 0.5s ease;
}

.solutions {
    width: 100%;
    text-align: center;
    background: #d5566d;
    background: -moz-linear-gradient(-45deg, #d5566d 0%, #177efb 50%, #43e2db 100%);
    background: -webkit-linear-gradient(-45deg, #d5566d 0%, #177efb 50%, #43e2db 100%);
    background: linear-gradient(135deg, #d5566d 0%, #177efb 50%, #43e2db 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#d5566d', endColorstr='#43e2db', GradientType=1);
    padding: 20px 0 40px 0;
}

.solutions .title {
    margin: 10px 0;
    color: #FFFFFF;
    letter-spacing: 0.5px;
}

.solutions .solution-group {
    width: 100%;
    margin-top: 20px;
    text-transform: uppercase;
    color: #FFFFFF;
    font-size: 20px;
    font-weight: 300;
    float: left;
    text-align: left;
    transition: all 0.25s ease;
}

.solutions .solution-group:hover, .solutions .solution-group:active, .solutions .solution-group:focus {
    text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.5);
    text-decoration: none;
}

.solution-item {
    width: 285px;
    display: inline-block;
    padding: 10px;
}

.solution-item > a {
    padding: 10px 20px;
    background: #FFFFFF;
    width: 100%;
    border-radius: 5px;
    box-shadow: 0px 3px 8px 0px rgba(0, 0, 0, 0.25);
    float: left;
    text-align: left;
    color: #000000;
    transition: all 0.25s ease;
    text-overflow: ellipsis;
    overflow: hidden;
    /*white-space: nowrap;*/
    text-transform: uppercase;
    display: flex;
    height: 60px;
}

.solution-item > a > span {
    max-height: 40px;
    overflow: hidden;
    margin: auto 0;
}

.solution-item > a > img {
    height: 40px;
}

.solution-item > a:hover, .solution-item > a:active, .solution-item > a:focus {
    box-shadow: 0px 3px 8px 0px rgba(0, 0, 0, 0.45);
    text-decoration: none;
}

.solution-item.item-menu {
    padding: 0;
    width: 100%;
}

.solution-item.item-menu > a {
    box-shadow: none;
    padding: 0 0 10px 0;
    height: auto;
}

.customers {
    width: 100%;
    text-align: center;
}

.scroll-customers {
    width: 100%;
    white-space: nowrap;
    overflow-x: auto;
    cursor: grab;
}

.scroll-customers::-webkit-scrollbar, .testimonials-main::-webkit-scrollbar {
    width: 5px;
    height: 7px;
}

.scroll-customers::-webkit-scrollbar-track, .testimonials-main::-webkit-scrollbar-track {
    background-color: #e6e6e6;
}

.scroll-customers::-webkit-scrollbar-thumb, .testimonials-main::-webkit-scrollbar-thumb {
    background: #999999;
    border-radius: 2px;
    transition: all 0.25s ease;
}

.scroll-customers::-webkit-scrollbar-thumb:window-inactive, .testimonials-main::-webkit-scrollbar-thumb:window-inactive {
    background: #bbbbbb;
}

.customer-block {
    width: 100%;
    max-width: 251px;
    padding: 20px 25px;
    white-space: normal;
    display: inline-block;
}

.customer-block > .customer-item:first-child {
    margin-bottom: 40px;
}

.customer-item {
    width: 201px;
    height: 72px;
    object-fit: contain;
    display: inline-block;
    -webkit-filter: saturate(0);
    filter: saturate(0);
    transition: all 0.25s ease;
}

.customer-item:hover, .customer-item:active, .customer-item:focus {
    -webkit-filter: saturate(100%);
    filter: saturate(100%);
    transition: all 0.25s ease;
}

.customers > .customer-link {
    color: #0096ff;
    font-size: 16px;
    margin-top: 10px;
}

.free-trial-outer {
    width: 100%;
    text-align: center;
    padding: 40px 0 70px 0;
    position: relative;
    background: #FFFFFF;
    z-index: 102;
}

.free-trial-outer > .free-trial {
    float: none;
    display: inline-block;
    font-size: 18px;
    padding: 19px 38px 19px 28px;
    box-shadow: 0px 3px 10px 0px rgba(230, 0, 0, 0.2);
    color: #FFFFFF;
    border: none;
    background: #e60000;
}

.free-trial-outer > .free-trial.trial-demo{
    padding: 19px 28px 19px 28px;
}

.free-trial-outer > .free-trial.drop {
    background: #e60000 url('../images/dropdown.svg') no-repeat calc(100% - 15px) 50%;
}

/*.free-trial-outer > .free-trial.drop > .drop {
    width: 100%;
    left: 0;
    box-shadow: 0 3px 5px 0 rgba(230, 0, 0, 0.2);
}*/

footer {
    width: 100%;
    padding: 25px 0;
    background: rgba(255, 255, 255, 1);
    position: relative;
    z-index: 101;
}

footer > .content > div {
    float: left;
}

footer > .content > .about {
    width: 33%;
    padding-right: 30px;
}

footer > .content > .find-out {
    width: 15%;
}

footer > .content > .contact-us {
    width: 33%;
}

footer > .content > .stay-connected {
    width: 19%;
}

footer > .content > .stay-connected > h4 {
    font-size: 16px;
    margin: 15px 0 10px 0;
}

footer > .content > .stay-connected > .member {
    width: 104px;
    margin: 5px 0;
    display: inline-block;
    vertical-align: middle;
}

footer > .content > .stay-connected > .member > img {
    width: 100%;
}

footer > .content > .stay-connected > .member:nth-of-type(5),
footer > .content > .stay-connected > .member:nth-of-type(7) {
    margin-right: 8px;
}

footer > .content > .stay-connected > .member:nth-of-type(6),
footer > .content > .stay-connected > .member:nth-of-type(8) {
    margin-left: 8px;
}

.subtitle {
    width: 100%;
    font-weight: 600;
    text-align: left;
    line-height: 1;
    margin-bottom: 21px;
}

footer > .content > div > p {
    margin: 0;
    line-height: 22px;
}

.link {
    color: #e60000;
}

.link:hover, .link:active, .link:focus {
    color: #e60000;
}

.link.icon, .contact-us > .contact-item {
    line-height: 14px;
    padding: 4px 0 4px 23px;
    margin: 5px 0;
    background-size: 20px !important;
    width: 100%;
    float: left;
}

.icon-blog {
    background: url('/assets/images/footer/blogIcon.svg') no-repeat 0 50%;
}

.icon-news {
    background: url('/assets/images/footer/newsIcon.svg') no-repeat 0 50%;
}

.icon-downloads {
    background: url('/assets/images/footer/downloadsIcon.svg') no-repeat 0 50%;
}

.icon-support {
    background: url('/assets/images/footer/supportIcon.svg') no-repeat 0 50%;
}

.contact-address {
    background: url('/assets/images/footer/addressIcon.svg') no-repeat 0 50%;
}

.contact-phone {
    background: url('/assets/images/footer/phoneIcon.svg') no-repeat 0 50%;
}

.contact-email {
    background: url('/assets/images/footer/emailIcon.svg') no-repeat 0 50%;
}

.online-chat {
    float: left;
    width: 100%;
    color: #e60000;
    background: #FFFFFF;
    border-radius: 5px;
    padding: 16px 8px;
    letter-spacing: 0.5px;
    border: 2px solid #e60000;
    transition: all 0.25s ease;
    text-align: center;
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: 600;
}

.online-chat.online-transparent {
    width: auto;
    float: none;
    background: transparent;
    padding: 8px;
    margin-left: 10px;
}

.online-chat > svg {
    width: 30px;
    margin: -1px 5px -7px 0;
}

.online-chat > svg > path {
    transition: all 0.25s ease;
}

.online-chat:hover, .online-chat:active, .online-chat:focus {
    color: #FFFFFF;
    background: #e60000;
}

.online-chat:hover > svg > path, .online-chat:active > svg > path, .online-chat:focus > svg > path {
    fill: #FFFFFF !important;
}

.social {
    border: 1px solid transparent;
    padding: 0;
    width: 26px;
    height: 26px;
    float: left;
    border-radius: 5px;
    background: #FFFFFF;
    margin: 5px;
}

.social > svg {
    width: 24px;
    height: 24px;
}

.social.social-fb {
    border: 1px solid #3b5998;
}

.social-fb:hover, .social-fb:active, .social-fb:focus {
    background: #3b5998;
}

.social-fb > svg > path {
    transition: all 0.25s ease;
}

.social-fb:hover > svg > path, .social-fb:active > svg > path, .social-fb:focus > svg > path {
    fill: #FFFFFF !important;
}

.social.social-tw {
    border: 1px solid #55acee;
}

.social-tw:hover, .social-tw:active, .social-tw:focus {
    background: #55acee;
}

.social-tw > svg > path {
    transition: all 0.25s ease;
}

.social-tw:hover > svg > path, .social-tw:active > svg > path, .social-tw:focus > svg > path {
    fill: #FFFFFF !important;
}

.social.social-li {
    border: 1px solid #0077b5;
}

.social-li:hover, .social-li:active, .social-li:focus {
    background: #0077b5;
}

.social-li > svg > path {
    transition: all 0.25s ease;
}

.social-li:hover > svg > path, .social-li:active > svg > path, .social-li:focus > svg > path {
    fill: #FFFFFF !important;
}

.social.social-gp {
    border: 1px solid #db4e3f;
}

.social-gp:hover, .social-gp:active, .social-gp:focus {
    background: #db4e3f;
}

.social-gp > svg > path {
    transition: all 0.25s ease;
}

.social-gp:hover > svg > path, .social-gp:active > svg > path, .social-gp:focus > svg > path {
    fill: #FFFFFF !important;
}

.social-in {
    position: relative;
    width: 24px;
    height: 24px;
    margin-top: 6px;
}

.social-in > svg {
    margin: -1px
}

.social-in:before {
    content: '';
    position: absolute;
    top: -1px;
    right: -1px;
    bottom: -1px;
    left: -1px;
    z-index: -1;
    margin: -1px;
    /* !importanté */
    border-radius: inherit;
    /* !importanté */
    background: linear-gradient(0deg, #E09B3D, #C74C4D, #C21975, #7024C4);
}

.black, .black:hover, .black:active, .black:focus {
    color: #000000;
}

.social-in > svg rect {
    transition: all 0.25s ease;
}

.social-in:hover > svg rect {
    opacity: 0;
}

.social-in > svg path.gradient,
.social-in:hover > svg path {
    opacity: 0;
}

.social-in:hover > svg path.gradient {
    opacity: 1;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    padding: 10px 15px;
    line-height: 0;
    font-size: 24px;
    background: #FFFFFF;
    z-index: 1000;
    color: #e60000;
    transition: all 0.5s ease;
    width: 100%;
    text-align: center;
    box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.15);
}

.mobile-menu > .fa {
    float: left;
    cursor: pointer;
}

.mobile-menu > .fa-outdent {
    display: none;
}

.mobile-menu > .fa-search {
    float: right;
    margin-top: -1px;
}

.mobile-menu > .search-input, .mobile-menu > .search.clear {
    display: none;
}

.mobile-menu.searching {
    padding: 5px 15px;
}

.mobile-menu.searching > .search-input, .mobile-menu.searching > .search.clear {
    display: block;
}

.mobile-menu.searching > .fa-indent, .mobile-menu.searching > .fa-outdent, .mobile-menu.searching > svg, .mobile-menu.searching > a {
    display: none !important;
}

.mobile-menu > .search {
    width: 20px;
    float: right;
    padding: 5px 0;
}

.mobile-menu > .search-input {
    width: calc(100% - 30px);
    float: left;
    padding: 7px 10px;
    color: #000000;
    font-size: 14px;
    border: 1px solid rgba(0, 0, 0, 0.5);
    transition: all 0.25s ease;
}

.mobile-menu.red {
    color: #FFFFFF;
    background: #e60000;
}

.mobile-menu.red svg .awery-svg-path {
    fill: #FFFFFF;
}

.mobile-menu.red > .search-input {
    color: #ffffff;
    background: #e60000;
    border: 1px solid #FFFFFF;
}

.mobile-menu.red .search-input::-webkit-input-placeholder {
    color: #FFFFFF;
}

.mobile-menu.red .search-input::-moz-placeholder {
    color: #FFFFFF;
}

.mobile-menu.red .search-input:-moz-placeholder {
    color: #FFFFFF;
}

.mobile-menu.red .search-input:-ms-input-placeholder {
    color: #FFFFFF;
}

.mobile-menu > .search-input:active, .mobile-menu > .search-input:focus {
    outline: none;
    border: 1px solid #e60000;
    color: #e60000;
    transition: all 0.25s ease;
    background: #FFFFFF;
}

.menu-background {
    display: none;
}

body.blurred > .will-blur {
    filter: blur(3px);
}

.modal-dialog {
    width: 985px;
}

.modal-content {
    padding: 40px 10px;
    text-align: center;
    position: relative;
}

.modal-content > .title {
    text-transform: uppercase;
    color: #e60000;
}

.free-trial-modal {
    background: #f8faff;
    padding: 20px;
}

.free-trial-modal > .product-description-modal {
    padding: 50px 0 20px 0;
    text-align: center;
}

.free-trial-modal > .product-description-modal > p {
    margin: 0;
    padding: 0;
    font-size: 14px;
    line-height: 18px;
}

.free-trial-modal > .product-description-modal > .product-title {
    font-size: 18px;
    margin: 0;
    text-transform: none;
    font-weight: 400;
    margin-bottom: 5px;
    text-align: center;
}

.free-trial-modal.products-opened {
    background: #f8faff;
}

.free-trial-modal > .product-link.button-active {
    background-color: rgba(74, 125, 247, 0.04);
}

.product-modal-erp, .product-modal-doclib {
    display: none;
}

.product-modal-erp.active {
    display: inline-block;
}

.product-modal-doclib.active {
    display: inline-block;
}

.form-free-trial {
    width: 100%;
    max-width: 335px;
    margin: 20px auto 0 auto;
}

.icon-pre {
    width: 47px;
    text-align: left;
    float: left;
    height: 40px;
    padding: 4px 0;
}

.icon-pre > svg {
    width: 32px;
}

.free-trial-input {
    width: calc(100% - 47px);
    float: left;
}

.free-trial-input {
    padding: 9px;
    border-radius: 5px;
    border: 1px solid #c1c1c1;
    transition: all 0.25s ease;
    background-color: #FFFFFF;
}

.free-trial-input:active, .free-trial-input:focus {
    border: 1px solid #e60000;
    outline: none;
}

.form-group-modal {
    width: 100%;
    float: left;
    margin-bottom: 15px;
}

.form-free-trial > .free-trial {
    text-transform: uppercase;
    margin: 0;
    width: 100%;
    font-weight: 400;
    font-size: 16px;
}

.free-trial-input.has-error {
    background-color: rgba(230, 0, 0, 0.15);
    color: rgba(0, 0, 0, 0.5);
}

.modal-content > .fa {
    position: absolute;
    top: 20px;
    right: 20px;
    color: rgba(0, 0, 0, 0.25);
    font-size: 22px;
    line-height: 22px;
    cursor: pointer;
    transition: all 0.25s ease;
}

.modal-content > .fa:hover {
    color: rgba(0, 0, 0, 1);
}

.text-content {
    width: 100%;
    padding-bottom: 50px;
}

.company-header {
    width: 100%;
    height: 200px;
    position: relative;
    text-align: center;
    margin-top: 25px;

    background: #f3f3f2; /* Old browsers */
    background: -moz-linear-gradient(top, #f3f3f2 0%, #fafafa 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top, #f3f3f2 0%, #fafafa 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, #f3f3f2 0%, #fafafa 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f3f3f2', endColorstr='#fafafa', GradientType=0); /* IE6-9 */
}

.company-header > .images {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    background: url('/assets/images/company/people.svg'), url('/assets/images/company/city2.svg'), url('/assets/images/company/city1.svg');
    background-position: 50% 50%, 50% 100%, 50% 100%;
    background-repeat: no-repeat, no-repeat, repeat-x;
    background-size: 666px, 398px, 1200px;
}

.company-header h1 {
    position: relative;
    z-index: 5;
    margin: 0;
    padding: 30px 0 0 0;
    text-align: left;
    font-weight: 700;
    color: #999999;
    text-transform: uppercase;
    font-size: 30px;
}

.company-info {
    width: 100%;
    margin-top: 40px;
}

.company-info-item {
    width: calc(100% / 3);
    float: left;
    padding: 96px 33px 0 33px;
    background-size: 66px !important;
    font-size: 18px;
    font-weight: 300;
}

.company-info-item.info-item-1 {
    background: url('/assets/images/company/about_i1.svg') no-repeat 0 0;
}

.company-info-item.info-item-2 {
    background: url('/assets/images/company/about_i2.svg') no-repeat 33px 0;
}

.company-info-item.info-item-3 {
    background: url('/assets/images/company/about_i3.svg') no-repeat 33px 0;
}

.company-team {
    width: 100%;
    float: left;
    margin-top: 90px;
    text-align: center;
}

.company-team h1 {
    font-size: 30px;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0 0 40px 0;
}

.team-members {
    width: 100%;
    float: left;
}

.team-member {
    width: calc(100% / 5 - 48px);
    margin: 0 30px;
    float: left;
    position: relative;
}

.team-member > .member-photo {
    width: 100%;
    margin-bottom: 14px;
}

.team-member > .underline {
    width: 100%;
    height: 10px;
    background: url('/assets/images/company/underline.svg') no-repeat 0 0;
}

.team-member > .dots {
    width: 60px;
    height: 1px;
    margin-top: 4px;
    position: absolute;
    background: url('/assets/images/company/dots.svg') repeat-x 0 0;
    left: 100%;
}

.team-member > .member-photo > img {
    width: 100%;
    border-radius: 6px;
    transition: all 0.5s ease;
}

.team-member:hover > .member-photo > img {
    -webkit-box-shadow: 1px 2px 5px 0px rgba(0, 0, 0, 0.25);
    -moz-box-shadow: 1px 2px 5px 0px rgba(0, 0, 0, 0.25);
    box-shadow: 1px 2px 5px 0px rgba(0, 0, 0, 0.25);
}

/*.team-member:nth-child(8n) > .dots{
    display: none;
}*/

.company-info-item:first-child, .company-info-item:nth-child(10n) {
    padding-left: 0;
    margin-left: 0;
}

.team-member:first-child, .team-member:nth-child(10), .team-member:nth-child(19) {
    margin-left: 0;
}

.team-member:nth-child(8),
.team-member:nth-child(17) {
    margin-right: 0;
}

.team-member:last-child > .dots,
.team-member:nth-child(8) > .dots,
.team-member:nth-child(17) > .dots {
    display: none;
}

.team-member:nth-child(n+10) {
    margin-top: 20px;
}

.team-member:last-child {
    margin-right: 0;
}

.company-info-item:nth-child(8n) {
    padding-right: 0;
    margin-right: 0;
}

.member-info {
    width: 100%;
    margin-top: 12px;
}

.member-info > h2 {
    font-size: 18px;
    font-weight: 700;
    text-align: left;
    margin: 0 0 7px 0;
    transition: all 0.25s ease;
    color: #000000;
}

.member-info > h3 {
    font-size: 14px;
    text-align: left;
    margin: 0 0 15px 0;
    transition: all 0.25s ease;
    color: #000000;
}

.team-member:hover > .member-info > h2, .team-member:hover > .member-info > h3 {
    color: #E60000;
    transition: all 0.25s ease;
}

.member-info > p {
    font-size: 12px;
    text-align: left;
    margin: 15px 0 0 0;
}

.divider {
    width: 50px;
    height: 2px;
    background: #cccccc;
    margin: 0;
    transition: all 0.25s ease;
}

.team-member:hover > .member-info > .divider {
    background: #E60000;
    transition: all 0.25s ease;
    width: 100%;
}

.team-ceo {
    float: none;
    display: inline-block;
    margin-bottom: 20px;
    width: auto !important;
}

.team-ceo > .underline {
    display: none;
}

.team-ceo > .member-photo,
.team-ceo > .member-info {
    width: 192px;
    float: left;
}

.team-ceo > .member-info {
    margin-left: 20px;
}

.career {
    width: 100%;
    float: left;
    margin-top: 75px;
    text-align: center;
}

.career > .content {
    overflow: hidden;
}

.career > .content > .gradient {
    position: absolute;
    width: 100%;
    left: 0;
    top: 0;
    background: #ececec;
    background: -moz-radial-gradient(center, ellipse cover, #ececec 0%, #ffffff 50%);
    background: -webkit-radial-gradient(center, ellipse cover, #ececec 0%, #ffffff 50%);
    background: radial-gradient(ellipse at center, #ececec 0%, #ffffff 50%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ececec', endColorstr='#ffffff', GradientType=1);
    z-index: 3;
    opacity: 0.75;
    height: 350px;
}

.career h1 {
    font-size: 30px;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0 0 30px 0;
    z-index: 5;
    position: relative;
}

.career .open-button {
    background: #FFFFFF;
    box-shadow: 0 -2px 5px 0px rgba(0, 0, 0, 0.15);
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    font-size: 17px;
    text-transform: uppercase;
    color: #e60000;
    padding: 15px 25px 0 25px;
    text-align: center;
    font-weight: 700;
    display: inline-block;
    z-index: 5;
    position: relative;
    cursor: pointer;
}

.career .open-button.opened {
    color: #000000;
}

.career .open-button > .fa {
    color: #d9d9d9;
    line-height: 14px;
    font-size: 35px;
    transform: scaleY(0.8);
    margin-top: 3px;
    transition: all 0.25s ease;
}

.career .open-button:hover > .fa {
    color: #e60000;
    transition: all 0.25s ease;
}

.vacancies-block {
    width: 100%;
    float: left;
    display: none;
    background: #FFFFFF;
    position: relative;
    z-index: 5;
    padding: 30px 0 0 0;
}

.vacancy {
    padding: 11px 24px 11px 11px;
    font-size: 18px;
    color: #e60000;
    font-weight: bold;
    background: url(/assets/images/company/external_link_red.svg) no-repeat 100% 50%;
    display: inline-block;
}

.vacancy:active, .vacancy:focus, .vacancy:hover {
    color: #e60000;
}

.partners {
    width: 100%;
    float: left;
    margin-top: 50px;
    text-align: center;
    margin-bottom: 34px;
}

.partners h1 {
    font-size: 30px;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0 0 30px 0;
    z-index: 5;
    position: relative;
}

.partners a:hover, .partners a:active, .partners a:focus, .partners a:visited {
    text-decoration: none;
}

.partner-logo {
    width: 100%;
    display: inline-block;
    margin: 20px 40px;
}

.clear-team, .clear-team-less, .clear-team-less-less {
    display: none;
}

.clearfix-alone {
    display: none;
}

/*Section Customers*/

.content-background {
    max-width: 1220px;
    margin: auto;
    padding-top: 25px;
}

.content-background > #map {
    position: fixed;
    /*width: calc(((100% - 1200px) / 2) + 600px);
    left: -70px;*/
    width: calc(((100% - 1200px) / 2) + 500px);
    left: 0;
    top: 90px;
    z-index: 100;
}

.jvectormap-tip {
    z-index: 102;
}

.content-background > #map image {
    position: absolute;
    z-index: 102;
}

.customer-info {
    box-shadow: none !important;
    border-radius: 0 !important;
}

.customer-types {
    position: fixed;
    left: 0;
    width: calc(((100% - 1200px) / 2) + 480px);
    min-height: 100px;
    padding-left: calc((100% - 1200px) / 2);
    z-index: 100;
}

.customer-type {
    width: 100%;
    padding: 15px 10px;
    text-transform: uppercase;
    transition: all 0.25s ease;
    color: #000000;
    font-weight: bold;
    font-size: 18px;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    float: left;
}

.customer-type:hover {
    text-decoration: none;
    transition: all 0.25s ease;
    color: #E60000;
    cursor: pointer;
}

.main-block {
    width: 100%;
}

.content.main-block {
    z-index: 105;
}

.content-info {
    width: 60%;
    float: right;
    padding: 15px 30px;
    border-radius: 5px;
    background-color: rgba(255, 255, 255, 0.9);
    /*float: left;*/
    -webkit-box-shadow: 0px 2px 28px 2px rgba(0, 0, 0, 0.16);
    -moz-box-shadow: 0px 2px 28px 2px rgba(0, 0, 0, 0.16);
    box-shadow: 0px 2px 28px 2px rgba(0, 0, 0, 0.16);
    overflow: auto;
}

.content-customers {
    width: 61%;
    float: right;
}

.customers-back-gradient {
    width: 100%;
    background: #ebeef0;
    background: -moz-linear-gradient(top, #ebeef0 0%, #f7fbfc 100%);
    background: -webkit-linear-gradient(top, #ebeef0 0%, #f7fbfc 100%);
    background: linear-gradient(to bottom, #ebeef0 0%, #f7fbfc 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ebeef0', endColorstr='#f7fbfc', GradientType=0);
}

.line {
    width: 100%;
}

.title-content-air {
    margin-bottom: 1px;
    float: left;
    text-transform: uppercase;
}

.info-air {
    text-align: center;
    margin-top: 20px;
    padding-top: 24px;
    border-top: 1px solid #c4cacc;
}

.logo-air {
    width: 201px;
    height: 69px;
    object-fit: contain;
    display: inline-block;
    margin: auto;
}

.info-air:nth-child(2) {
    border-top: none;
    margin-top: 0;
}

.info-air:last-child {
    margin-bottom: 10px;
}

.customer-image-outer {
    width: calc(50% - 20px);
    padding: 28px 30px;
    margin: 10px;
    display: flex;
    box-shadow: 0px 1px 8px 0px rgba(0, 0, 0, 0.08);
    float: left;
    transition: all 0.25s ease;
    border-radius: 6px;
}

.customer-image-outer:hover, .customer-image-outer:active, .customer-image-outer:focus {
    box-shadow: 0px 3px 9px 0px rgba(0, 0, 0, 0.12);
}

.air-style {
    font-family: Lato;
    font-size: 24px;
    line-height: 24px;
    font-weight: 800;
    color: black;
    margin-bottom: 10px;
}

.title-carousel {
    /*font-family: Lato;*/
    font-size: 30px;
    font-weight: 600;
    color: black;
    text-align: center;
    padding: 20px;
    float: left;
    width: 100%;
}

.carousel {
    min-height: 250px;
    margin-bottom: 0;
    padding: 0 40px 30px 40px;
}

/* The controlsy */
.carousel-control {
    left: -12px;
    height: 40px;
    width: 40px;
    /*background-image: url(images/arrow.png);*/
    background: none repeat scroll 0 0 #222222;
    border: 4px solid #FFFFFF;
    border-radius: 23px 23px 23px 23px;
    margin-top: 90px;
}

.carousel-control.right {
    right: -12px;
}

/*The indicators */
.carousel-indicators {
    right: 50%;
    top: auto;
    bottom: -10px;
    margin-right: -19px;
}

/*The colour of the indicators */
.carousel-indicators li {
    border: 1px solid #bfbfbf;
    /*background: #cecece;*/
}

.carousel-indicators .active {
    background: #d0d0d0;
}

.carousel-indicators li:hover {
    background: #d0d0d0;
}

.carousel-control.left, .carousel-control.right {
    background: none;

}

.carousel-main-p {
    font-family: Lato;
    font-size: 14px;
    font-weight: 800;
    color: black;
    padding-top: 10px;
}

.carousel-p {
    font-family: Lato;
    font-size: 14px;
    font-weight: 400;
    color: black;
}

.line {
    width: 100%;
    float: left;
    height: 1px;
    border-top: 1px dashed #000000;
}

.downloads-header {
    width: 100%;
    position: relative;
    text-align: center;
    padding: 38px 0 34px 0;
    font-size: 24px;
    color: #999999;
    font-weight: 300;
    letter-spacing: 1px;
}

.downloads-block {
    padding: 40px 0 40px 0;
    position: relative;
    text-align: center;
    background: #f2f2f2;
    background: -moz-linear-gradient(top, #f2f2f2 0%, #fafafa 100%);
    background: -webkit-linear-gradient(top, #f2f2f2 0%, #fafafa 100%);
    background: linear-gradient(to bottom, #f2f2f2 0%, #fafafa 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f2f2f2', endColorstr='#fafafa', GradientType=0);

}

.downloads-item {
    width: 174px;
    display: inline-block;
    margin: 10px 20px;
    vertical-align: top;
    text-align: center;
    color: #000000;
    transition: all 0.5s ease;
}

.downloads-item > h4 {
    padding: 20px 0 5px 0;
    margin: 0;
    font-weight: bold;
    font-size: 18px;
    width: 100%;
    text-align: center;
}

.downloads-item > p {
    margin: 0;
    padding: 0;
    width: 100%;
    text-align: center;
    color: #b5b5b5;
    transition: all 0.25s ease;
}

.downloads-item > .icon {
    width: 115px;
    height: 120px;
    display: inline-block;
    /*background: url('/assets/images/downloads/downloadsDocument.svg') no-repeat 50% 50%;
    background-size: 91px!important;*/
}

.downloads-item > .icon > svg {
    -webkit-filter: drop-shadow(0px 0px 3px rgba(0, 0, 0, 0.35));
    filter: drop-shadow(0px 0px 3px rgba(0, 0, 0, 0.35));
    transition: all 0.25s ease;
}

.downloads-item:hover, .downloads-item:active, .downloads-item:focus, .downloads-item:hover > p, .downloads-item:active > p, .downloads-item:focus > p {
    text-decoration: none;
    color: #e60000;
    transition: all 0.25s ease;
}

.downloads-item:hover > .icon > svg, .downloads-item:active > .icon > svg, .downloads-item:focus > .icon > svg {
    -webkit-filter: drop-shadow(0px 0px 5px rgba(0, 0, 0, 0.25));
    filter: drop-shadow(0px 0px 5px rgba(0, 0, 0, 0.25));
    transition: all 0.25s ease;
}

.no-border {
    border: none;
}

h1.modal-title {
    font-size: 30px;
    font-weight: bold;
    margin: 30px 0 0 0;
    padding: 0;
    line-height: 30px;
}

.modal-header > p {
    font-size: 18px;
    margin: 40px 0;
    line-height: 18px;
}

.modal-content.modal-brochure {
    padding: 10px;
}

.modal-content.modal-brochure > .modal-header {
    padding: 0;
    position: relative;
}

.modal-content.modal-brochure > .modal-header > .close-button {
    position: absolute;
    top: 0;
    right: 20px;
    height: 22px;
    width: 22px;
    background: url('/assets/images/downloads/close.svg') no-repeat 0 0;
    cursor: pointer;
}

.modal-dialog.modal-brochure {
    width: 100%;
    max-width: 616px;
    margin: 30px auto;
}

/*.form-brochure{
    height: 40px;
    padding-left: 47px;
    background-size: 33px!important;
    display: inline-block;
    margin-bottom: 15px;
}
.form-brochure.brochure-name{
    background: url('/assets/images/contacts/contactsUser.svg') no-repeat 0 50%;
}
.form-brochure.brochure-email{
    background: url('/assets/images/contacts/contactsEmail.svg') no-repeat 0 50%;
}
.form-brochure.brochure-company{
    background: url('/assets/images/contacts/contactsCompany.svg') no-repeat 0 50%;
}
.form-brochure.brochure-phone{
    background: url('/assets/images/contacts/contactsPhone.svg') no-repeat 0 50%;
}
.form-brochure > input{
    border-radius: 5px;
    border:1px solid #c1c1c1;
    padding: 12px 15px;
    font-size: 12px;
    line-height: 12px;
    width: 250px;
    transition: all 0.25s ease;
}
.form-brochure > input:focus,.form-brochure > input:focus{
    outline: none;
    border-color: #e60000;
    color:#e60000;
    transition: all 0.25s ease;
}*/

.modal-content.modal-brochure > .modal-body {
    padding: 0;
}

.form-send-brochure {
    background: #e60000;
    color: #FFFFFF;
    border: 1px solid #e60000;
    padding: 20px;
    display: inline-block;
    width: 300px;
    text-transform: uppercase;
    font-size: 16px;
    line-height: 16px;
    border-radius: 5px;
    margin-top: 25px;
    margin-bottom: 20px;
    box-shadow: 0px 3px 10px 0px rgba(230, 0, 0, 0.2);
    transition: all 0.25s ease;
}

.form-send-brochure:active, .form-send-brochure:focus, .form-send-brochure:hover {
    outline: none;
    box-shadow: 0px 5px 12px 0px rgba(230, 0, 0, 0.35);
    transition: all 0.25s ease;
}

/* AWERY INPUT */
.awery-input {
    float: left;
    margin-bottom: 20px;
    position: relative;
    width: 100%;
}

.awery-input > select {
    background: transparent;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.awery-input > input,
.awery-input > textarea,
.awery-input > select {
    border-radius: 5px;
    border: 1px solid #c1c1c1;
    padding: 12px 15px;
    font-size: 12px;
    line-height: 12px;
    width: 100%;
    transition: all 0.25s ease;
    resize: vertical;
}

.awery-input > input[type="file"] {
    height: 40px;
}

.awery-input > input::-webkit-file-upload-button {
    display: none;
}

.awery-input > input:focus,
.awery-input > input:active,
.awery-input > textarea:focus,
.awery-input > textarea:active,
.awery-input > select:focus,
.awery-input > select:active {
    outline: none;
    border-color: #e60000;
    color: #e60000;
    transition: all 0.25s ease;
}

.floating-label {
    position: absolute;
    pointer-events: none;
    left: 21px;
    top: 8px;
    font-size: 14px;
    line-height: 14px;
    color: #909090;
    background: transparent;
    padding: 4px;
    transition: 0.25s ease all;
    white-space: nowrap;
}

.awery-input > textarea {
    resize: none;
}

.awery-input > input:focus ~ .floating-label,
.awery-input > textarea:focus ~ .floating-label,
.awery-input > input:not(:focus):valid ~ .floating-label,
.awery-input > textarea:not(:focus):valid ~ .floating-label {
    top: -11px;
    left: 17px;
    font-size: 12px;
    opacity: 1;
    background: #FFFFFF;
    transition: 0.25s ease all;
}

.awery-input > input:focus ~ .floating-label,
.awery-input > textarea:focus ~ .floating-label {
    color: #e60000;
}

.awery-input > input:not(:focus):valid::-webkit-file-upload-button {
    display: block;
}

.awery-input-pre {
    padding-left: 48px;
    background-size: 33px !important;
}

.awery-input-pre > .floating-label {
    left: 59px;
    top: 9px;
}

.awery-input-pre > input:focus ~ .floating-label,
.awery-input-pre > textarea:focus ~ .floating-label,
.awery-input-pre > input:not(:focus):valid ~ .floating-label,
.awery-input-pre > textarea:not(:focus):valid ~ .floating-label {
    top: -11px;
    left: 55px;
}

.awery-name {
    background: url('/assets/images/contacts/contactsUser.svg') no-repeat 0 50%;
}

.awery-company {
    background: url('/assets/images/contacts/contactsCompany.svg') no-repeat 0 50%;
}

.awery-email {
    background: url('/assets/images/contacts/contactsEmail.svg') no-repeat 0 50%;
}

.awery-phone {
    background: url('/assets/images/contacts/contactsPhone.svg') no-repeat 0 50%;
}

.awery-site {
    background: url('/assets/images/contacts/contactsSite.svg') no-repeat 0 50%;
}

.awery-message {
    background: url('/assets/images/contacts/contactsMessage.svg') no-repeat 0 10px;
}

.awery-estimated-users {
    background: url('/assets/images/pricing/estimatedUsers.svg') no-repeat 0 50%;
}

.awery-solution {
    background: url('/assets/images/contacts/contactsSite.svg') no-repeat 0 50%;
}

.awery-brochure {
    width: 100%;
    max-width: 290px;
    float: none;
    display: inline-block;
}

.awery-brochure > input.has-error {
    border-color: #e60000;
    border-style: dashed;
}

/* AWERY INPUT */

.support-header {
    width: 100%;
    position: relative;
    text-align: center;
    margin-top: 25px;
}

/*.support-header  h1{
    position: relative;
    z-index: 5;
    margin: 0;
    padding: 23px 0;
    text-align: left;
    font-weight: 700;
    color:#999999;
    text-transform: uppercase;
    font-size: 30px;
    float:left;
    width: 208px;
    line-height: 30px;
}*/
.support-header-links {
    width: 100%;
    float: left;
}

.support-header-links > a {
    width: calc(50% - 30px);
    margin: 0 15px;
    padding: 24px;
    text-align: center;
    color: #e60000;
    font-weight: bold;
    font-size: 20px;
    border-radius: 6px;
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 3px 8px 0px rgba(0, 0, 0, 0.25);
    float: left;
    transition: all 0.25s ease;
}

.support-header-links > a > h1 {
    padding: 0;
    margin: 0;
    font-size: 22px;
    font-weight: bold;
    text-transform: uppercase;
    padding-right: 30px;
    background: url('/assets/images/support/external_link.svg') no-repeat 100% 50%;
    background-size: 16px !important;
    display: inline-block;
    line-height: 22px;
}

.support-header-links > a > p {
    padding: 0;
    margin: 20px 0 0 0;
    width: 100%;
    font-size: 16px;
    color: #000000;
    font-weight: normal;
    line-height: 16px;
}

.support-header-links > a:hover, .support-header-links > a:active, .support-header-links > a:focus {
    outline: none;
    transition: all 0.25s ease;
    text-decoration: none;
    box-shadow: 0px 5px 12px 0px rgba(0, 0, 0, 0.35);
}

.support-request {
    width: 100%;
    min-height: 250px;
    margin-bottom: -60px;
    float: left;
    text-align: center;
    padding: 30px 0 90px 0;
    background: #f3f3f3;
    margin-top: 40px;
}

.support-request h1 {
    position: relative;
    z-index: 5;
    margin: 0 0 25px 0;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 30px;
    line-height: 30px;
}

.support-request p {
    position: relative;
    z-index: 5;
    margin: 0 0 15px 0;
    font-size: 16px;
    line-height: 26px;
}

.support-request a {
    font-size: 18px;
    color: #e60000;
}

.support-request a > .fa {
    color: #000000;
    margin-right: 10px;
}

.support-form {
    width: 100%;
    box-shadow: 0px 10px 25px 0px rgba(0, 0, 0, 0.1);
    padding: 40px 30px;
    background: #FFFFFF url('/assets/images/support/supportForm.png') no-repeat calc(100% - 30px) calc(100% - 40px);
    background-size: 549px !important;
    float: left;
    text-align: center;
    margin-bottom: 20px;
}

.support-form h1 {
    position: relative;
    z-index: 5;
    margin: 0 0 35px 0;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 30px;
    line-height: 30px;
    text-align: center;
}

.support-form h2 {
    position: relative;
    z-index: 5;
    margin: 0 0 20px 0;
    font-weight: 700;
    font-size: 24px;
    line-height: 24px;
    text-align: left;
}

.support-send {
    border: none;
    margin: 0 auto;
    padding: 20px 40px;
    text-align: center;
    color: #e60000;
    font-weight: bold;
    font-size: 17px;
    line-height: 17px;
    border-radius: 6px;
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 3px 8px 0px rgba(0, 0, 0, 0.25);
    transition: all 0.25s ease;
    display: inline-block;
    min-width: 290px;
    text-transform: uppercase;
}

.support-send:hover, .support-send:active, .support-send:focus {
    outline: none;
    transition: all 0.25s ease;
    text-decoration: none;
    box-shadow: 0px 5px 12px 0px rgba(0, 0, 0, 0.35);
}

.capterra{
    width: 100%;
    text-align: center;
    display: inline-block;
    margin: 30px 0;
}

.capterra img{
    width: auto;
    height: auto;
}

.contacts-block {
    width: 100%;
    position: relative;
    text-align: center;
    margin-top: 50px;
    padding-bottom: 100px;
    margin-bottom: -100px;
}

.contacts-block h1 {
    position: relative;
    z-index: 5;
    margin: 0;
    padding: 0 0 30px 0;
    text-align: left;
    font-weight: 700;
    color: #999999;
    text-transform: uppercase;
    font-size: 30px;
    float: left;
    width: 208px;
    line-height: 30px;
}

.contacts-block a {
    font-size: 16px;
    color: #e60000;
    margin-right: 15px;
    float: left;
    line-height: 16px;
    padding: 7px 0;
    transition: all 0.25s ease;
    z-index: 5;
    position: relative;
}

.contacts-block a > svg {
    margin: -9px 0;
}

#contactsMail {
    fill: none;
    stroke: #000;
    stroke-width: 1px;
    fill-rule: evenodd;
    transition: all 0.25s ease;
}

.contacts-block a:hover {
    text-decoration: none;
    color: #000000;
    transition: all 0.25s ease;
}

.contacts-block a > svg {
    margin-right: 3px;
}

.contacts-block a > svg > path {
    fill: #000000;
    transition: all 0.25s ease;
}

.contacts-block a:hover > svg > path {
    fill: #e60000;
    transition: all 0.25s ease;
}

.contacts-block a:hover > svg > #contactsMail {
    fill: none;
    stroke: #e60000;
    stroke-width: 1px;
    fill-rule: evenodd;
    transition: all 0.25s ease;
}

.contacts-form {
    width: 100%;
    box-shadow: 0px 10px 25px 0px rgba(0, 0, 0, 0.1);
    padding: 30px;
    background: #FFFFFF;
    float: left;
    text-align: center;
    margin-top: 20px;
    z-index: 5;
    position: relative;
    margin-bottom: 25px;
}

.contacts-form h1 {
    position: relative;
    z-index: 5;
    margin: 0 0 30px 0;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 30px;
    line-height: 30px;
    text-align: center;
    width: auto;
    color: #000000;
    padding: 0;
}

.contacts-send {
    border: none;
    margin: 0 auto;
    padding: 20px 40px;
    text-align: center;
    color: #e60000;
    font-weight: bold;
    font-size: 17px;
    border-radius: 6px;
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 3px 8px 0px rgba(0, 0, 0, 0.25);
    transition: all 0.25s ease;
    display: inline-block;
    text-transform: uppercase;
    line-height: 29px;
    width: 100%;
}

.contacts-send:hover, .contacts-send:active, .contacts-send:focus {
    outline: none;
    transition: all 0.25s ease;
    text-decoration: none;
    box-shadow: 0px 5px 12px 0px rgba(0, 0, 0, 0.35);
}

.contacts-block #map {
    position: absolute;
    top: -140px;
    left: 0;
    width: 100%;
    height: calc(100% + 100px);
    z-index: 3;
}

.contacts-info-block {
    width: 100%;
    float: left;
    margin-top: 220px;
}

.contacts-info-block > .col-md-6:first-child {
    padding-left: 0;
}

.contacts-info-block > .col-md-6:last-child {
    padding-right: 0;
}

.contacts-info-block h3 {
    font-size: 16px;
    margin: 0 15px 0 0;
    font-weight: bold;
    text-transform: uppercase;
    z-index: 5;
    position: relative;
    float: left;
    padding: 7px 0;
}

.map-tooltip {
    padding: 18px 30px;
    margin: 0;
    font-family: "Open Sans", sans-serif;
    text-align: center;
    color: #000000;
}

.address-label {
    border-radius: 6px !important;;
    border: none !important;
    box-shadow: 0px 3px 8px 0px rgba(0, 0, 0, 0.25);
    padding: 0;
    z-index: 100;
    background-color: #FFFFFF;
    position: absolute;
    opacity: 0;
    transition: all 0.5s ease;
    margin-top: -16px;
}

.triangle {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10px 8px 0 8px;
    border-color: #ffffff transparent transparent transparent;
    position: absolute;
    top: 100%;
    left: calc(50% - 8px);
}

.news-list {
    margin-top: 20px;
}

.news-item {
    width: 100%;
    float: left;
    border-bottom: 1px dashed #000000;
    padding: 10px 20px;
    margin-bottom: 15px;
    position: relative;
}

.news-image {
    height: calc(100% - 20px);
    width: 300px;
    position: absolute;
    top: 10px;
    left: 0;
}

.news-image > img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: top;
}

.news-details {
    width: calc(100% - 300px);
    margin-left: 300px;
}

.news-title {
    width: 100%;
    float: left;
    font-size: 24px;
    line-height: 26px;
    font-weight: 600;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    color: #000000;
}

.news-title:hover, .news-title:active, .news-title:focus {
    color: #000000;
    text-decoration: none;
}

.news-additions {
    width: 100%;
    float: left;
}

.news-date {
    color: #818181;
    padding: 10px 15px 10px 0;
    float: left;
}

.news-copy {
    color: #818181;
    padding: 10px 10px 10px 0;
    float: left;
    cursor: pointer;
    transition: all 0.25s ease;
}

.news-copy.copy-active {
    color: #e60000;
}

.news-short-description, .news-full-description {
    font-size: 16px;
    line-height: 20px;
    width: 100%;
    float: left;
    text-align: justify;
    /*text-indent: 20px;*/
}

.news-read-more {
    margin-top: 10px;
    color: #e60000;
    cursor: pointer;
}

.news-read-more > .less, .news-read-more.opened > .more {
    display: none;
}

.news-read-more.opened > .less {
    display: block;
}

.news-full-description {
    display: none;
}

.timeline {
    width: 100%;
}

.monthes {
    overflow: hidden;
    display: none;
    padding-left: 7px;
}

.monthes > .month {
    border-left: 2px solid transparent;
    line-height: 14px;
    padding: 5px 0 5px 8px;
    cursor: pointer;
    transition: all 0.25s ease;
}

.monthes > .month.month-active {
    border-color: #e60000;
    color: #e60000;
    font-weight: bold;
    transition: all 0.25s ease;
}

.timeline.fix-timeline {
    position: fixed;
    top: 66px;
}

.year {
    background: url('/assets/images/news/line.svg') repeat-y 7px 0;
}

.year-label {
    padding: 4px 0;
    line-height: 14px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.25s ease;
}

.year:first-child > .year-label {
    padding-top: 0;
    margin-top: 4px;
}

.year:last-child > .year-label {
    padding-bottom: 0;
}

.year > .year-label > svg {
    margin: -1px 0;
}

.year > .year-label > svg > path {
    fill: #FFFFFF;
    stroke: #000000;
    stroke-width: 2px;
    fill-rule: evenodd;
    transition: all 0.25s ease;
}

.year.year-active > .year-label > svg > path {
    stroke: #e60000;
    transition: all 0.25s ease;
}

.year.year-active > .year-label {
    color: #e60000;
    transition: all 0.25s ease;
}

.connect-products .cp-content {
    text-align: center;
    width: 100%;
}

.connect-products .cp-content > .cp-block {
    width: 369px;
    height: 60px;
    display: inline-block;
    margin: 15px 14px;
}

.connect-products .cp-content > .cp-block.cp-block-square {
    width: 128px;
    height: 128px;
    display: inline-block;
}

.connected-entities {
    width: 100%;
    background: #f7f7f7;
    -webkit-box-shadow: inset 0px 15px 15px 0px rgba(0, 0, 0, 0.125);
    -moz-box-shadow: inset 0px 15px 15px 0px rgba(0, 0, 0, 0.125);
    box-shadow: inset 0px 15px 15px 0px rgba(0, 0, 0, 0.125);
    padding: 35px 0;
}

.connected-entities h3 {
    font-size: 24px;
    font-weight: bold;
}

.connected-entities h4 {
    font-size: 18px;
    font-weight: bold;
}

.screens {
    text-align: center;
    margin-bottom: 15px;
}

.im-gallery {
    text-align: center;
    width: 266px;
    height: 266px;
    padding: 10px;
    cursor: pointer;
    transition: all 0.5s ease;
    display: inline-block;
}

.im-gallery > .in {
    background: #FFFFFF;
    width: 256px;
    height: 256px;
    display: table-cell;
    vertical-align: middle;
    transition: all 0.5s ease;
}

.im-gallery > .in > img {
    object-fit: cover;
}

.screens > div > .gallery {
    margin: 15px auto !important;
}

.gallery-active {
    cursor: pointer;
}

.back-black {
    width: 100%;
    height: 100%;
    position: fixed;
    background: rgba(0, 0, 0, 0.65);
    text-align: center;
    display: table;
    opacity: 0;
    transition: all 0.5s ease;
    z-index: 1001;
    top: 0;
    left: 0;
}

.back-black > .image {
    display: table-cell;
    vertical-align: middle;
    position: absolute;
    overflow: auto;
    z-index: 10;
    width: 100%;
    height: 100%;
}

.back-black > .image > img {
    z-index: 11;
    position: relative;
}

.back-black > .fa {
    color: #FFFFFF;
    font-size: 35px;
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 12;
    cursor: pointer;
    transition: all 0.2s ease;
}

.back-black > .fa:hover, .back-black > .fa:active, .back-black > .fa:focus {
    transform: scale(1.1);
    transition: all 0.2s ease;
}

.back-black > .image > .back-close {
    width: 100%;
    position: absolute;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 9;
}

.back-black > .image > .arrow {
    position: absolute;
    height: 100%;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.5);
    font-size: 60px;
    top: 0;
    z-index: 13;
    text-align: center;
    width: 70px;
    text-shadow: 0px 0px 2px rgba(150, 150, 150, 1);
}

.back-black > .image > .arrow-left {
    left: 7px;
}

.back-black > .image > .arrow-right {
    right: 0;
}

.back-black > .image > .arrow-left > .fa {
    left: 15px;
}

.back-black > .image > .arrow-right > .fa {
    right: 15px;
}

.back-black > .image > .arrow > .fa {
    top: calc(50% - 30px);
    position: absolute;
    transition: all 0.5s ease;
}

.back-black > .image > .arrow-right:hover > .fa, .back-black > .image > .arrow-right:active > .fa, .back-black > .image > .arrow-right:focus > .fa {
    right: 10px;
    transition: all 0.5s ease;
}

.back-black > .image > .arrow-left:hover > .fa, .back-black > .image > .arrow-left:active > .fa, .back-black > .image > .arrow-left:focus > .fa {
    left: 10px;
    transition: all 0.5s ease;
}

.connect-customers .cc-block {
    width: 201px;
    height: 69px;
    display: inline-block;
    margin: 15px 14px;
}

.sap-top {
    background: #f8faff;
    width: 100%;
    float: left;
    padding: 40px 0;
}

.sap-top .logo {
    width: 100%;
    text-align: center;
}

.sap-top .logo > img {
    max-width: 100%;
    height: 80px;
    object-fit: contain;
}

.sap-top .product-description {
    margin-top: 40px;
    text-align: left;
    font-weight: 300;
}

.sap-top .product-awery_erp {
    color: #406a80;
}

.sap-top .product-documents_library {
    color: #675a80;
}

.sap-top .product-description > p {
    margin: 0;
    padding: 0;
    font-size: 18px;
    line-height: 26px;
    letter-spacing: 1px;
}

.sap-top .key-features > .feature {
    width: calc(25% - 4px);
    margin: 0;
    padding: 10px 15px;
    vertical-align: top;
}

.sap-middle {
    padding: 50px 0;
}

.awery-host .logo > img {
    width: 100%;
    height: 95px;
    object-fit: contain;
    object-position: left;
}

.awery-host h3 {
    font-size: 18px;
    margin-top: 20px;
    margin-bottom: 15px;
    line-height: 18px;
    font-weight: bold;
}

.awery-host.awery-cloud h3 {
    color: #446fb6;
}

.awery-host.awery-hosted h3 {
    color: #4bb749;
}

.awery-host ul {
    padding: 0;
}

.awery-host ul > li {
    font-size: 14px;
    line-height: 16px;
    margin: 6px 0;
    list-style: none;
    padding-left: 16px;
}

.awery-host ul > li:before {
    content: "• ";
    font-size: 24px;
    line-height: 16px;
    margin: 0 0 0 -16px;
    float: left;
    width: 16px;
}

.awery-host.awery-cloud ul > li:before {
    color: #446fb6;
}

.awery-host.awery-hosted ul > li:before {
    color: #4bb749;
}

.sap-bottom {
    width: 100%;
    float: left;
    padding-top: 40px;
}

.sap-bottom h1 {
    margin: 0;
}

.sap-bottom .faq {
    font-size: 16px;
    line-height: 18px;
    width: 100%;
    float: left;
}

.sap-bottom .faq-q {
    margin-top: 40px;
    font-weight: bold;
}

.sap-bottom .faq-a {
    margin-top: 12px;
}

.view-left-menu-page {
    width: 100%;
    float: left;
    border-top: 1px solid #e6e6e6;
    padding: 25px 0;
    position: relative;
    z-index: 110;
}

.left-side-menu {
    width: 280px;
    padding: 0;
    float: left;
    z-index: 100;
    margin-right: 20px;
    overflow: auto;
    border-bottom: 1px solid #e6e6e6;
}

.view-left-menu-page.too-small {
    min-height: calc(100vh - 543px);
}

.view-left-menu-page.too-small > .left-side-menu {
    position: fixed;
    top: 100px;
    max-height: calc(100vh - 339px); /*533*/ /*443*/
}

body.scrolled .left-side-menu {
    position: fixed;
    top: 81px;
    height: calc(100vh - 81px);
}

.content-block {
    float: right;
    width: calc(100% - 300px);
}

.product-groups-list {
    width: 100%;
    padding: 0;
    float: left;
    list-style: none;
}

.product-groups-list > li {
    font-size: 16px;
    font-weight: bold;
    line-height: 18px;
    padding: 8px 0;
}

.products-list {
    width: 100%;
    padding: 0;
    list-style: none;
    margin-top: 9px;
}

.products-list > li {
    font-weight: 300;
    padding: 5px 0;
}

.products-list > li:last-child {
    padding-bottom: 0;
}

.product-groups-list > li > a, .products-list > li > a {
    color: #000000;
    transition: all 0.25s ease;
    border-bottom: 1px solid transparent;
}

.product-groups-list > li > a:hover, .product-groups-list > li > a:active, .product-groups-list > li > a:focus,
.products-list > li > a:hover, .products-list > li > a:active, .products-list > li > a:focus {
    color: #e60000;
    transition: all 0.25s ease;
    text-decoration: none;
}

.products-list > li.active > a {
    color: #e60000;
}

.products-list > li.active > a:hover, .products-list > li.active > a:active, .products-list > li.active > a:focus {
    border-bottom: 1px solid #e60000;
}

.product-logo {
    width: 100%;
    height: 80px;
    padding: 0 20px;
}

.product-logo > img {
    width: 100%;
    height: 80px;
    object-fit: contain;
    object-position: left;
}

.module-group-logo, .module-group-logo > img {
    height: 20px !important;
}

.module-group-logo > .solution {
    height: 40px !important;
}

.module-group-logo {
    padding-bottom: 10px;
}

.logo-search {
    min-height: 50px !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.logo-search > img {
    float: left;
    width: auto;
    max-width: 100%;
}

.logo-search > img:last-child {
    margin: 10px 10px 10px 0;
}

.product-description {
    width: 100%;
    float: left;
    padding: 20px 0;
    font-size: 16px;
}

.product-description p {
    margin: 0;
}

.checklist {
    width: 100%;
    float: left;
    margin-top: 20px;
}

.checklist > .checkitem {
    background: url('/assets/images/products/check.svg') no-repeat 0 6px;
    background-size: 18px;
    line-height: 18px;
    font-size: 16px;
    font-weight: bold;
    padding: 5px 0 5px 29px;
}

.product-features {
    width: 100%;
    float: left;
    margin-top: 20px;
}

.product-features > h4 {
    margin: 0 0 15px 0;
    text-align: left;
}

.product-features-list {
    width: 100%;
    float: left;
}

.product-feature {
    display: inline-block;
    width: calc(33% - 10px);
    margin: 5px;
    box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.1);
    background: #FFFFFF;
    padding: 10px;
    border-radius: 6px;
    vertical-align: top;
    color: #4c4c4c;
    line-height: 20px;
}

.product-gallery {
    width: 100%;
    float: left;
    margin-top: 20px;
}

.product-gallery-images-list {
    width: 100%;
    text-align: center;
    position: relative;
    z-index: 5;
}

.product-gallery-images-list > img {
    max-width: 100%;
    max-height: 900px;
    object-fit: contain;
    border-radius: 6px;
    border-bottom-left-radius: 0;
    box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.1);
    display: none;
}

.product-gallery-images-list > img.active {
    display: inline-block;
}

.product-gallery-images-titles {
    position: relative;
    z-index: 6;
    margin-left: 1px;
}

.product-gallery-title {
    padding: 25px 20px;
    border: none;
    background: transparent;
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;
    font-weight: bold;
    color: #000000;
}

.product-gallery-title.active {
    background: #FFFFFF;
    box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.1);
    color: #E60000;
}

.product-gallery-title:hover, .product-gallery-title:active, .product-gallery-title:focus {
    outline: none;
}

.product-group-description {
    width: 100%;
    float: left;
    padding: 20px 0;
    font-size: 16px;
}

.product-group-description p {
    margin: 0;
}

.product-group-description p:first-child {
    padding-left: 90px;
}

.products .product-description-inside {
    padding: 40px 20px;
}

.product-description-inside .key-features > .feature {
    width: calc(25% - 20px);
}

.modules-block {
    padding: 0;
    float: left;
    width: 100%;
}

.modules-block h1 {
    padding-left: 20px;
    margin: 0 0 10px 0;
    text-align: left;
}

.modules-list {
    width: 100%;
    float: left;
    padding: 0px 5px;
}

.module-item {
    width: 33%;
    padding: 15px 10px;
    float: left;
}

.module-item > img {
    height: 46px;
    width: 100%;
    object-fit: contain;
    object-position: left;
}

.module-item p {
    padding: 15px 0 0 50px;
    margin: 0;
    color: #666666;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3; /* number of lines to show */
    line-height: 20px; /* fallback */
    height: 75px;
}

.module-item:hover, .module-item:focus, .module-item:active {
    text-decoration: none;
}

.customers-map {
    width: 100%;
    height: 600px;
    padding-top: 45px;
}

.mosaic {
    width: 100%;
    background: #ffffff;
    background-size: contain;
    float: left;
    transition: all 0.25s ease;
    margin-top: 30px;
    padding: 0 18px;
}

/*.mosaic:hover{
    background: #e60000 url('/assets/images/awery_aviation_software_white.svg') no-repeat 50% 50%;
}*/
.mosaic > .element {
    width: 98px;
    height: 98px;
    border: 1px solid rgba(255, 255, 255, 0.75);
    float: left;
    margin: 0 -1px -1px 0;
    display: flex;
    transition: all 0.25s ease;
    color: #FFFFFF;
    position: relative;
    -webkit-perspective: 600px;
    perspective: 600px;
}

.mosaic > .element > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /*opacity: 0.85;*/
    transition: all 0.25s ease;
    position: absolute;
    top: 0;
    left: 0;
}

.mosaic > .element > .span-outer {
    margin: auto;
    opacity: 0;
    transition: all 0.25s ease;
    transform: rotateX(-90deg);
    padding: 0 3px;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}

.mosaic > .element:hover {
    background: rgba(230, 0, 0, 0.75);
}

.mosaic > .element:hover > .span-outer {
    opacity: 1;
    transform: rotateX(0deg);
}

.mosaic > .element:hover > img {
    opacity: 0;
    transform: rotateX(90deg);
}

.mosaic > .element.clear:hover {
    background: transparent;
}

.search-result {
    position: fixed;
    top: 90px;
    left: 0;
    width: 100%;
    max-height: calc(100% - 90px);
    background: rgba(255, 255, 255, 0.975);
    padding: 20px 0;
    z-index: 1000;
    overflow: auto;
    transition: all 0.25s ease;
    box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.15);
    display: none;
}

body.scrolled > .search-result {
    top: 56px;
    max-height: calc(100% - 56px);
    overflow: auto;
}

body.searching {
    overflow: hidden;
}

body.searching > .search-result {
    display: block;
}

/*.modules-list-search{
    margin-top: 20px;
}*/
.map-customers {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    display: none;
}

.product-logo.pricing {
    width: 100%;
    height: auto;
    min-height: 40px;
    padding: 0 20px;
    display: flex;
}

.product-logo.pricing > img {
    width: 390px;
    height: 40px;
    object-fit: contain;
    object-position: left;
    margin: auto;
}

.product-logo.pricing > .pricing-product-description {
    width: calc(100% - 430px);
    float: right;
    font-size: 16px;
}

.pricing-block {
    width: 100%;
    float: left;
    margin-bottom: -1px;
    border-top: 1px solid #d9d9d9;
    border-bottom: 1px solid #d9d9d9;
    padding: 30px 0;
    text-align: center;
}

.pricing-block:last-child {
    margin-bottom: 0;
    border-bottom: none;
    padding-bottom: 0;
}

.pricing-block > h1 {
    font-size: 30px;
    font-weight: 500;
    text-transform: uppercase;
    line-height: 30px;
    color: #000000;
    padding: 0;
    margin: 0 0 30px 0;
    text-align: center;
}

.pricing-block > h1 > i {
    text-transform: none;
    text-decoration: none;
    padding: 8px;
    /*border:1px solid #000000;*/
    border-radius: 50%;
    margin: -8px 5px -8px 0;
    font-style: normal;
    width: 48px;
    display: inline-block;
    text-align: center;
}

.pricing-select {
    padding: 30px 50px;
    border: 2px solid transparent;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0px 3px 8px 0px rgba(0, 0, 0, 0.25);
}

.pricing-select:hover {
    box-shadow: 0px 3px 8px 0px rgba(0, 0, 0, 0.15);
    border-color: rgba(230, 0, 0, 0.25);
}

.pricing-select.selected {
    box-shadow: 0px 3px 8px 0px rgba(0, 0, 0, 0);
    border-color: rgba(230, 0, 0, 1);
}

.pricing-block > .awery-input {
    width: 348px;
    max-width: 100%;
    display: inline-block;
    float: none;
    margin: 0;
}

.cut-content {
    margin: auto;
    max-width: 725px;
}

.pricing-subtext {
    width: 100%;
    float: left;
    color: #000000;
    text-align: center;
}

.pricing-subtext > a {
    color: #E60000;
}

.pricing-subtext > a:hover, .pricing-subtext > a:focus, .pricing-subtext > a:active {
    color: #e60000;
}

.pricing-request-button {
    background: #FFFFFF;

    /*background-image: -moz-linear-gradient( 120deg, rgb(124,77,255) 0%, rgb(83,109,254) 33%, rgb(0,176,255) 67%, rgb(0,184,212) 100%);
    background-image: -webkit-linear-gradient( 120deg, rgb(124,77,255) 0%, rgb(83,109,254) 33%, rgb(0,176,255) 67%, rgb(0,184,212) 100%);
    background-image: -ms-linear-gradient( 120deg, rgb(124,77,255) 0%, rgb(83,109,254) 33%, rgb(0,176,255) 67%, rgb(0,184,212) 100%);*/
    box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.25);

    padding: 30px 35px;
    color: #E60000;
    text-transform: uppercase;
    border: none;
    border-radius: 10px;
    font-size: 24px;
    line-height: 24px;
    margin: 20px 0 40px 0;
    transition: all 0.25s ease;
}

.pricing-request-button:hover, .pricing-request-button:active, .pricing-request-button:focus {
    outline: none;
    box-shadow: 0px 5px 9px 0px rgba(0, 0, 0, 0.35);
}

.pricing-block .solution-item {
    width: 297px;
    float: none;
    display: inline-block;
    padding: 10px 15px;
}

.module-neighbors {
    width: 100%;
    float: left;
    margin-top: 20px;
}

.module-neighbors > .prev {
    width: calc(50% - 24px);
    float: left;
    background: url("/assets/images/modules/arrowLeft.svg") no-repeat 20px 50%;
    padding: 24px 20px 24px 37px;
    text-align: center;
    box-shadow: 0px 3px 8px 0px rgba(0, 0, 0, 0.25);
}

.module-neighbors > .next {
    width: calc(50% - 24px);
    float: right;
    background: url("/assets/images/modules/arrowRight.svg") no-repeat calc(100% - 20px) 50%;
    padding: 24px 37px 24px 20px;
    text-align: center;
    box-shadow: 0px 3px 8px 0px rgba(0, 0, 0, 0.25);
    border-radius: 6px;
}

.module-neighbors > .prev > img, .module-neighbors > .next > img {
    height: 40px;
}

.thank-you {
    width: 100%;
    min-height: calc(100vh - 533px);
    float: left;
    display: flex;
    padding-bottom: 5px;
}

.thank-you > .thank-you-inner {
    margin: auto;
    text-align: center;
}

.thank-you > .thank-you-inner > .text-block {
    padding-bottom: 40px;
    border-bottom: 1px solid #d9d9d9;
    margin-bottom: 40px;
}

.thank-you > .thank-you-inner h1 {
    font-size: 30px;
    font-weight: bold;
    margin: 0 0 20px 0;
    padding: 0;
    line-height: 30px;
    width: 100%;
    text-align: center;
}

.thank-you > .thank-you-inner h2 {
    font-size: 20px;
    margin: 0;
    padding: 0;
    line-height: 20px;
    width: 100%;
    text-align: center;
    font-weight: normal;
}

.thank-you > .thank-you-inner h2 > a {
    font-size: 30px;
    line-height: 30px;
    color: #e60000;
    font-weight: bold;
}

.thank-you > .thank-you-inner .thank-you-button {
    border-radius: 6px;
    background: #FFFFFF;
    box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.25);
    padding: 19px 20px;
    width: 253px;
    max-width: 100%;
    border: none;
    text-transform: uppercase;
    color: #e60000;
    font-weight: bold;
    font-size: 17px;
    margin: auto;
    transition: all 0.25s ease;
    display: inline-block;
}

.thank-you > .thank-you-inner .thank-you-button:hover, .thank-you > .thank-you-inner .thank-you-button:active, .thank-you > .thank-you-inner .thank-you-button:focus {
    box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.25);
    transition: all 0.25s ease;
    text-decoration: none;
}

.page-404 {
    width: 100%;
    min-height: calc(100vh - 533px);
    float: left;
    display: flex;
    padding-bottom: 5px;
}

.page-404 > .page-404-inner {
    margin: auto;
    text-align: center;
}

.page-404 > .page-404-inner > .text-block {
    padding: 0 90px 40px 90px;
    border-bottom: 1px solid #d9d9d9;
    margin-bottom: 40px;
}

.page-404 > .page-404-inner h1 {
    font-size: 30px;
    font-weight: bold;
    margin: 0 0 20px 0;
    padding: 0;
    line-height: 30px;
    width: 100%;
    text-align: center;
}

.page-404 > .page-404-inner h1 > span {
    color: black;
    -webkit-text-fill-color: white;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: black;
}

.page-404 > .page-404-inner .page-404-button {
    border-radius: 6px;
    background: #FFFFFF;
    box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.25);
    padding: 19px 15px;
    width: 254px;
    max-width: 100%;
    border: none;
    text-transform: uppercase;
    color: #e60000;
    font-weight: bold;
    font-size: 17px;
    margin: auto;
    transition: all 0.25s ease;
    display: inline-block;
}

.page-404 > .page-404-inner .page-404-button:hover, .page-404 > .page-404-inner .page-404-button:active, .page-404 > .page-404-inner .page-404-button:focus {
    box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.25);
    transition: all 0.25s ease;
    text-decoration: none;
}

.product-into {
    width: 100%;
    padding: 20px 23px;
    border-radius: 6px;
    box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.25);
    background: #FFFFFF;
    text-decoration: none;
    display: inline-block;
    color: #000000;
    transition: all 0.25s ease;
}

.product-into > img {
    height: 40px;
    margin-bottom: 20px;
    float: left;
}

.product-into > p {
    font-size: 16px;
    margin: 0;
    padding: 0;
    text-align: left;
}

.product-into:hover, .product-into:active, .product-into:focus {
    box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.25);
    text-decoration: none;
}

.products-semi > .product-into {
    margin-bottom: 10px;
}

.products-semi > .product-into:last-child {
    margin-bottom: 0;
}

.tooltip-inner {
    background-color: rgba(0, 0, 0, 0.85);
}

.tooltip.top .tooltip-arrow {
    border-top-color: rgba(0, 0, 0, 0.85);
}

.faq > ul, .faq > ol {
    margin: 0;
}

.spinner-loader {
    font-size: 32px !important;
    margin: -8px auto !important;
    display: block !important;
}

.grecaptcha-badge {
    display: none;
}

.testimonials {
    width: 100%;
    position: relative;
    background: #FFFFFF;
    z-index: 100;
}

.testimonials-main {
    width: 100%;
    white-space: nowrap;
    overflow-x: auto;
    cursor: grab;
}

.testimonial {
    width: 50%;
    float: left;
    padding: 30px 25px;
    font-size: 14px;
}

.testimonials-main > .testimonial {
    width: 50vw;
    white-space: normal;
    float: none;
    display: inline-block;
    vertical-align: top;
}

.testimonial > img {
    width: 100%;
    float: left;
    height: 50px;
    object-fit: contain;
    object-position: left;
}

.testimonial > div {
    margin: 20px 0;
    float: left;
    width: 100%;
    font-weight: bold;
}

.testimonial > p {
    width: 100%;
    float: left;
    padding: 0;
    margin: 0;
}

.promo-news {
    width: 100%;
    float: left;
    margin: 30px 0 0 0;
}

.promo-news > .link {
    color: #000000;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: bold;
    float: left;
    width: 290px;
    cursor: pointer;
}

.promo-news > .link > span {
    float: left;
}

.promo-news > .link > .fa {
    color: #e60000;
    float: left;
    font-size: 24px;
    margin: -7px 0 -5px 5px;
    transition: all 0.25s ease;
}

.promo-news > .link:hover, .promo-news > .link:active, .promo-news > .link:focus {
    text-decoration: none;
}

.promo-news > .link:hover > .fa, .promo-news > .link:active > .fa, .promo-news > .link:focus > .fa {
    margin: -7px 0 -5px 10px;
}

.promo-news > .news-date {
    padding: 5px 0;
    font-weight: 300;
}

.promo-news > .news-container {
    width: 100%;
    position: relative;
    float: left;
    margin-top: 35px;
    color: #000000;
}

.promo-news > .news-container > .news-image {
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    width: 260px;
}

.promo-news > .news-container > .news-image > img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.promo-news > .news-container > .news-content {
    float: right;
    width: calc(100% - 290px);
}

.promo-news > .news-container > .news-content h2 {
    font-size: 18px;
    color: #000000;
    margin: 0 0 10px 0;
    font-weight: bold;
}

.promo-news > .news-container:hover, .promo-news > .news-container:active, .promo-news > .news-container:focus {
    text-decoration: none;
}

.help-aviaton {
    width: 100%;
    float: left;
}

.help-aviaton > .item {
    display: flex;
    padding: 10px 0;
}

.help-aviaton > .item > span {
    margin: auto 0 auto 20px;
    font-size: 16px;
    color: #000000;
}

.top-gradient {
    width: 100%;
    float: left;
    padding: 25px 0;
    text-align: center;
    color: #FFFFFF;
    font-size: 22px;
    line-height: 30px;
    background-image: -moz-linear-gradient(120deg, rgb(80, 244, 210) 0%, rgb(24, 126, 251) 50%, rgb(250, 80, 80) 100%);
    background-image: -webkit-linear-gradient(120deg, rgb(80, 244, 210) 0%, rgb(24, 126, 251) 50%, rgb(250, 80, 80) 100%);
    background-image: -ms-linear-gradient(120deg, rgb(80, 244, 210) 0%, rgb(24, 126, 251) 50%, rgb(250, 80, 80) 100%);
    margin: 10px 0;
}

.top-gradient > .content {
    padding: 0 70px;
}

.hidden-textarea {
    opacity: 0;
    position: absolute;
    width: 0;
    height: 0;
}

.library-top {
    background-image: -moz-linear-gradient(270deg, #FFFFFF 0%, #FFFFFF 50%, #f8faff calc(50% + 1px), #f8faff 100%);
    background-image: -webkit-linear-gradient(270deg, #FFFFFF 0%, #FFFFFF 50%, #f8faff calc(50% + 1px), #f8faff 100%);
    background-image: -ms-linear-gradient(270deg, #FFFFFF 0%, #FFFFFF 50%, #f8faff calc(50% + 1px), #f8faff 100%);
    padding: 40px 0;
    text-align: center;
}

.library-top .logo {
    width: 100%;
    text-align: center;
}

.library-top .logo > img {
    max-width: 100%;
    height: 80px;
    object-fit: contain;
}

.cloud-based {
    display: inline-block;
    padding: 28px 30px 10px 0;
    background: url('../images/products/cloud-based.svg') no-repeat 100% 50%;
    margin: 30px 0 60px 0;
    font-size: 20px;
    font-weight: 800;
    line-height: 27px;
    color: #000000;
}

.main-image {
    width: 100%;
    max-width: 900px;
    display: inline-block;
}

.library-links-blocks {
    width: 100%;
    display: flex;
    padding: 60px 0;
    justify-content: center;
    align-items: center;
}

.library-links-blocks > .link-block {
    margin: auto 20px;
    padding: 30px 30px 20px 30px;
    min-width: 250px;
    background: #FFFFFF;
    opacity: 0.99;
    border-radius: 5px;
    box-shadow: 0 2px 35px 0 rgba(117, 93, 255, 0.1);
    transition: all 0.25s ease;
}

.library-links-blocks > .link-block > img {
    display: inline-block;
    width: 60px;
    height: 60px;
    object-fit: contain;
    margin-bottom: 20px;
}

.library-links-blocks > .link-block > span {
    display: block;
    margin: 0;
    padding: 0;
    white-space: nowrap;
    text-transform: uppercase;
    font-weight: 800;
    color: #755dff;
    font-size: 16px;
    line-height: 22px;
    text-align: center;
    cursor: pointer;
}

.library-links-blocks > .link-block:hover,
.library-links-blocks > .link-block:active {
    box-shadow: 0 2px 35px 0 rgba(117, 93, 255, 0.25);
    text-decoration: none;
}

.library-links-blocks > .link-block:hover > span,
.library-links-blocks > .link-block:active > span {
    text-decoration: none;
}

.library-hiw {
    background-color: #9076ff;
    padding: 40px 0;
    color: #FFFFFF;
}

.library-hiw h4,
.library-pricing h4 {
    text-transform: uppercase;
    margin: 0;
    padding: 0;
    display: block;
    width: 100%;
    text-align: center;
}

.hiw-blocks {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hiw-item {
    margin: auto 5px;
}

.hiw-item > img {
    display: block;
    margin-bottom: 15px;
}

.hiw-item > span {
    text-align: center;
    white-space: nowrap;
    font-size: 12px;
    color: #FFFFFF;
    font-weight: 300;
    display: block;
    width: 300%;
    margin: 0 -100%;
    line-height: 17px;
}

.library-hiw-pattern {
    background: url('../images/products/hiw-pattern.svg') repeat-x 50% 50%;
    padding: 65px 0 50px 0;
    color: #FFFFFF;
}

.library-hiw-pattern .hiw-blocks > .hiw-item {
    margin: auto 20px;
}

.library-hiw-pattern .hiw-blocks > .hiw-item > img {
    margin: 0 auto 25px auto;
}

.library-hiw-pattern .hiw-blocks > .hiw-item > span,
.library-hiw-pattern .hiw-blocks > .hiw-item > b {
    display: block;
    font-size: 18px;
    line-height: 24px;
    color: #000000;
    font-weight: 400;
    text-align: center;
}

.library-hiw-pattern .hiw-blocks > .hiw-item > b {
    font-weight: 800;
}

.library-testimonials {
    background: #f8faff;
    padding: 40px 0 50px 0;
    overflow: hidden;
}

.library-testimonials.lt-top {
    padding-bottom: 0;
}

.library-testimonials.lt-bottom {
    padding-top: 0;
}

.library-testimonials h4 {
    color: #675a80;
    text-transform: uppercase;
    margin: 0 0 40px 0;
    padding: 0;
    display: block;
    width: 100%;
    text-align: center;
    font-size: 28px;
    line-height: 38px;
    font-weight: 700;
}

.testimonials-outer {
    width: 100%;
    white-space: nowrap;
    font-size: 0;
}

.testimonials-block {
    display: inline-block;
    width: calc((100% / 3) - 66px);
    margin: 0 50px;
    border-radius: 6px;
    box-shadow: 0 2px 35px 0 rgba(117, 93, 255, 0.05);
    background-color: #ffffff;
    padding: 20px;
    font-size: 14px;
    vertical-align: top;
    position: relative;
    transition: all 0.25s ease;
}

.testimonials-block:hover {
    box-shadow: 0 2px 35px 0 rgba(117, 93, 255, 0.15);
}

.testimonials-block > .detailed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
    padding: 20px;

    white-space: normal;
    text-align: left;
    font-size: 14px;
    color: #675a80;
    font-weight: normal;
    overflow: auto;
    opacity: 0;
    transition: all 0.25s ease;
}

.testimonials-block:hover > .detailed {
    opacity: 0.9;
}

.testimonials-block h4 {
    font-size: 18px;
    font-weight: 800;
    color: #675a80;
    display: block;
    margin: 0 0 15px 0;
    padding: 0;
    text-align: left;
}

.testimonials-block p {
    width: 100%;
    white-space: normal;
    text-align: left;
    font-size: 14px;
    font-style: italic;
    color: #675a80;
    font-weight: normal;
    margin: 0 0 15px 0;
    padding: 0 0 15px 0;
    border-bottom: 1px solid rgba(103, 90, 128, 0.2);
    height: 100px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.testimonials-block b,
.testimonials-block span {
    font-size: 14px;
    line-height: 17px;
    color: #675a80;
    display: block;
}

.testimonials-space {
    width: calc((100vw - 1200px) / 2);
    display: inline-block;
    padding: 20px;
}

.testimonials-block > img {
    width: 100%;
    height: 200px;
    object-fit: contain;
}

.testimonials-block:first-child {
    margin-left: 0;
}

.testimonials-block:nth-last-child(2) {
    margin-right: 0;
}

.dots {
    width: 100%;
    font-size: 0;
    text-align: center;
}

.dots > .dot {
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background-color: rgba(103, 90, 128, 0.2);
    cursor: pointer;
    transition: all 0.25s ease;
}

.dots > .dot:hover {
    background: #675a80;
}

.library-pricing-outer {
    width: 100%;
    padding: 70px 0 60px 0;
}

.library-pricing {
    width: 100%;
    padding: 30px;
    border-radius: 6px;
    background-color: #9076ff;
    color: #FFFFFF;
    text-align: center;
    font-size: 0;
}

.library-pricing > div {
    display: inline-block;
    padding: 25px;
    font-size: 14px;
    margin-top: 30px;
    vertical-align: middle;
}

.library-pricing > div:nth-child(2) {
    padding: 15px 0;
    width: calc(100% + 60px);
    margin: 20px -30px 0 -30px;
    background-color: #816aff;
    text-align: center;
}

.library-pricing > div:nth-child(2) > table {
    display: inline-block;
}

.library-pricing > div:nth-child(2) > table td {
    padding: 1px 40px !important;
    vertical-align: middle;
}

.library-pricing > div:nth-child(2) > table td > img,
.library-pricing > div:nth-child(2) > table td > b,
.library-pricing > div:nth-child(2) > table td > span {
    display: inline-block;
    vertical-align: middle;
}

.library-pricing > div:nth-child(2) > table td > img {
    margin-right: 3px;
}

.library-pricing > div:nth-child(3) {
    margin-right: 5px;
    border-radius: 6px;
    box-shadow: 0 2px 35px 0 rgba(117, 93, 255, 0.05);
    background-color: #ffffff;
    color: #000000;
}

.library-pricing > div:last-child {
    display: inline-block;
    margin-left: 5px;
}

.library-pricing > div > table {
    border-collapse: separate;
    line-height: 19px;
    font-size: 14px;
    font-weight: 300;
    text-align: left;
    vertical-align: middle;
}

.library-pricing > div > table > tfoot > tr > td,
.library-pricing > div > table > tfoot > tr > th {
    padding: 0 5px;
}

.library-pricing > div > table td,
.library-pricing > div > table th {
    padding: 0 10px;
}

.library-pricing > div > table > tfoot > tr > td {
    text-align: right;
    border-left: 1px solid #FFFFFF;
}

.library-pricing > div > table > tfoot > tr > th {
    text-align: left;
    border-right: 1px solid #FFFFFF;
}

.library-pricing > div > table > tfoot > tr:first-child > td,
.library-pricing > div > table > tfoot > tr:first-child > th {
    padding-top: 10px;
    border-top: 1px solid #FFFFFF;
}

.library-pricing > div > table > tfoot > tr:first-child > td {
    border-top-left-radius: 6px;
}

.library-pricing > div > table > tfoot > tr:first-child > th {
    border-top-right-radius: 6px;
}

.library-pricing > div > table > tfoot > tr:last-child > td,
.library-pricing > div > table > tfoot > tr:last-child > th {
    padding-bottom: 10px;
    border-bottom: 1px solid #FFFFFF;
}

.library-pricing > div > table > tfoot > tr:last-child > td {
    border-bottom-left-radius: 6px;
}

.library-pricing > div > table > tfoot > tr:last-child > th {
    border-bottom-right-radius: 6px;
}

.library-pricing > div > table > tbody > tr:last-child > td,
.library-pricing > div > table > tbody > tr:last-child > th {
    padding-bottom: 10px;
}

/*.library-pricing > div > table > tbody > tr:first-child > td,
.library-pricing > div > table > tbody > tr:first-child > th {
    padding-bottom: 10px;
    font-size: 18px;
    line-height: 24px;
    vertical-align: bottom;
}*/

.library-pricing > div > table tr.clarification > th {
    padding: 0 10px !important;
}

.library-pricing > div > table tr.clarification:nth-child(2) > td {
    color: #4a4a4a;
    font-size: 12px;
    line-height: 17px;
    padding-bottom: 10px;
    padding-top: 0;
    vertical-align: top;
}

table.pricing-form tr > td,
table.pricing-form tr > th {
    padding: 10px;
}

.pricing-input {
    font-size: 0 !important;
    padding: 0 10px !important;
    vertical-align: middle !important;
    text-align: center;
}

.pricing-input > input {
    width: 60px;
    line-height: 38px;
    margin: 0;
    border-left: none;
    border-right: none;
    display: inline-block;
    vertical-align: middle;
    border-top: 1px solid #a6a6a6;
    border-bottom: 1px solid #a6a6a6;
    color: #000000;
    outline: none !important;
    font-size: 14px;
    padding: 0 10px;
    font-weight: 600;
    text-align: center;
    -webkit-appearance: none;
    border-radius: 0;
}

.pricing-input > button {
    background: #9076ff;
    font-size: 24px;
    line-height: 38px;
    padding: 0;
    width: 40px;
    color: #FFFFFF;
    outline: none !important;
    display: inline-block;
    vertical-align: middle;
    border: 1px solid #9076ff;
    transition: all 0.25s ease;
}

.pricing-input > button:hover {
    background: #FFFFFF;
    color: #9076ff;
}

.pricing-input > button:first-child {
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
    margin: 0;
}

.pricing-input > button:last-child {
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
    margin: 0;
}

.custom-checkbox {
    line-height: 20px;
    font-size: 14px;
    font-weight: 800;
    margin-bottom: 10px;
    cursor: pointer;
}

.custom-checkbox:before {
    background: url('../images/products/checkbox.svg') no-repeat 50% 50%;
    content: " ";
    display: inline-block;
    width: 20px;
    height: 20px;
    vertical-align: middle;
    margin-right: 5px;
    overflow: hidden;
    transition: all 0.25s ease;
}

.custom-checkbox.checked:before {
    border: none;
    background: url('../images/products/checkbox-selected.svg') no-repeat 50% 50%;
}

.library-pricing-outer > .content {
    text-align: center;
}

.library-pricing-outer.library-trial {
    padding-top: 0;
}

.library-pricing-outer .free-trial {
    text-transform: uppercase;
    padding: 24px 40px 24px 107px;
    border-radius: 5px;
    box-shadow: 0 2px 35px 0 rgba(117, 93, 255, 0.6);
    background: #593dff url('../images/products/free-trial-button.svg') no-repeat 40px 50%;
    cursor: pointer;
    border: 2px solid #593dff;
    font-size: 24px;
    line-height: 33px;
    color: #FFFFFF;
    display: inline-block;
    margin: 0;
    float: none;
    transition: all 0.25s ease;
}

.library-pricing-outer .free-trial:hover {
    background: #FFFFFF url('../images/products/free-trial-button.svg') no-repeat 40px 50%;
    color: #593dff;
    text-decoration: none;
}

.library-questions {
    background: #f8faff;
    padding: 40px 0 50px 0;
    overflow: hidden;
}

.library-questions h4 {
    color: #000000;
    text-transform: uppercase;
    margin: 0 0 40px 0;
    padding: 0;
    display: block;
    width: 100%;
    text-align: center;
    font-size: 28px;
    line-height: 38px;
    font-weight: 700;
}

.library-questions .library-links-blocks {
    padding: 0;
}

.library-questions .library-links-blocks > .link-block {
    padding: 14px 30px;
    font-size: 16px;
    line-height: 22px;
}

.video-over {
    width: 100%;
    height: 100%;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.75);
    display: none;
}

.video-over.visible {
    display: flex;
}

.video-over > .closer {
    z-index: 1000;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    cursor: pointer;
}

.video-over > iframe {
    margin: auto;
    z-index: 1001;
    position: relative;
}

.library-pricing-block {
    float: left;
    border-radius: 4px;
}

.library-pricing-block > img {
    margin: 30px;
    width: calc(100% - 60px);
    max-width: 330px;
    float: left;
}

.library-pricing-left {
    width: 40%;
    margin-right: 60px;
    border: solid 1px #1e73f9;
}

.library-pricing-right {
    width: calc(60% - 60px);
    border: solid 1px #33c800;
}

.pricing-description-block {
    padding: 0 30px 30px 30px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.57;
    color: #000000;
    width: 100%;
    float: left;
    text-align: left;
}

.pricing-description-block > div {
    float: left;
    text-align: left;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.57;
    color: #000000;
}

.pricing-description-block > div:first-child {
    width: 30%;
    padding: 0 15px 0 0;
    border-right: solid 1px #d4d4d4;
    line-height: 23px;
}

.pricing-description-block > div:last-child {
    width: 70%;
    padding: 0 0 0 15px;
}

.pricing-description-block > div > label {
    line-height: 19px;
    font-size: 14px;
    color: #6e6e6e;
    width: 100%;
    float: left;
    margin: 0;
}

.pricing-description-block > div > span {
    float: left;
    width: 100%;
    line-height: 27px;
    font-size: 20px;
    font-weight: bold;
    color: #1e73f9;
}

.pricing-title-inner {
    width: 100%;
    float: left;
    line-height: 24px;
    font-size: 18px;
    font-weight: 600;
    text-align: left;
    margin-bottom: 10px;
    padding: 0 30px;
}

.library-pricing-left > .pricing-title-inner {
    color: #1e73f9;
}

.library-pricing-right > .pricing-title-inner {
    color: #36c903;
}

.pricing-table {
    width: 100%;
    float: left;
    padding: 15px 30px;
    background: #1e73f9;
    color: #FFFFFF;
}

.pricing-table > table {
    width: 100%;
}

.pricing-table > table td {
    width: 33%;
    text-align: left;
}

.pricing-table > table tr:first-child td {
    padding-bottom: 3px;
}

.pricing-calculator-total,
.pricing-calculator {
    width: 100%;
    float: left;
    padding: 30px;
}

.pricing-calculator-total > table {
    width: 100%;
    border-collapse: separate;
}

.pricing-calculator-total > table tbody tr:last-child td,
.pricing-calculator-total > table tbody tr:last-child th {
    padding-bottom: 15px;
}

.pricing-calculator-total > table tfoot tr:first-child td,
.pricing-calculator-total > table tfoot tr:first-child th {
    border-top: solid 1px #d4d4d4;
    padding-top: 10px;
}

.pricing-calculator-total > table tfoot tr:last-child td,
.pricing-calculator-total > table tfoot tr:last-child th {
    border-bottom: solid 1px #d4d4d4;
    padding-bottom: 10px;
}

.pricing-calculator-total > table tfoot tr td:first-child,
.pricing-calculator-total > table tfoot tr th:first-child {
    border-left: solid 1px #d4d4d4;
}

.pricing-calculator-total > table tfoot tr td:last-child,
.pricing-calculator-total > table tfoot tr th:last-child {
    border-right: solid 1px #d4d4d4;
}

.pricing-calculator-total > table tfoot tr:first-child td:first-child,
.pricing-calculator-total > table tfoot tr:first-child th:first-child {
    border-top-left-radius: 6px;
}

.pricing-calculator-total > table tfoot tr:first-child td:last-child,
.pricing-calculator-total > table tfoot tr:first-child th:last-child {
    border-radius: 0 6px 0 0;
}

.pricing-calculator-total > table tfoot tr:last-child td:first-child,
.pricing-calculator-total > table tfoot tr:last-child th:first-child {
    border-radius: 0 0 0 6px;
}

.pricing-calculator-total > table tfoot tr:last-child td:last-child,
.pricing-calculator-total > table tfoot tr:last-child th:last-child {
    border-radius: 0 0 6px 0;
}

.pricing-calculator-total > table td:first-child,
.pricing-calculator-total > table th:first-child {
    text-align: right;
}

.pricing-calculator-total > table tfoot tr td {
    padding-right: 10px;
}

.pricing-calculator {
    padding-top: 0;
}

.pricing-calculator .pricing-input > button {
    background: #1e73f9;
    border: 1px solid #1e73f9;
}

.pricing-calculator .pricing-input > button:hover {
    background: #FFFFFF;
    color: #1e73f9;
}

.pricing-calculator .custom-checkbox.checked:before {
    background: url(../images/products/checkbox-selected-pricing.svg) no-repeat 50% 50%;
}

.form-pricing {
    width: 100%;
    float: left;
    text-align: left;
    padding: 0 30px;
}

.form-pricing > .form-block {
    margin: 10px 15px 0 0;
    width: calc((100% / 3) - 10px);
    float: left;
}

.form-block.form-block-2-3 {
    width: calc(((100% / 3) * 2) - 5px);
}

.form-after-2-3 {
    margin-right: 0 !important;
}

.form-pricing > .form-block:nth-child(3n) {
    margin-right: 0;
}

.form-pricing > .form-block > input,
.form-pricing > .form-block > select,
.form-pricing > .form-block > textarea {
    border-radius: 2px;
    border: solid 1px #a6a6a6;
    width: 100%;
    float: left;
    padding: 10px 5px 10px 10px;
    line-height: 19px;
    font-size: 14px;
    color: #000000;
    -webkit-appearance: none;
    background: #FFFFFF;
    resize: none;
    outline: none !important;
}

.form-pricing > .form-block > input::placeholder,
.form-pricing > .form-block > select::placeholder {
    color: #9b9b9b;
}

.form-pricing > .form-block > label {
    margin-bottom: 5px;
    font-size: 14px;
    font-weight: 600;
    color: #000000;
    line-height: 19px;
}

.form-pricing > .form-block.full {
    width: 100%;
}

.pricing-button {
    margin: 20px 0 30px 0;
    width: 100%;
    float: left;
    text-align: center;
    line-height: 33px;
    opacity: 0.99;
    font-size: 24px;
    font-weight: bold;
    color: #ffffff;
    border-radius: 5px;
    background-color: #33c800;
    padding: 20px 0;
    text-transform: uppercase;
    border: 2px solid #33c800;
    outline: none !important;
    transition: all 0.25s ease;
}

.pricing-button:hover,
.pricing-button:focus,
.pricing-button:active {
    color: #33c800;
    background: #ffffff;
}

@media (max-width: 1199px) {
    body, body.scrolled {
        padding-top: 44px;
    }

    nav.searching > .content > menu, nav.searching > .content > .free-trial, nav.searching > .content > .logo {
        display: block;
    }

    nav.searching > .content > .clear, nav.searching > .content > .search {
        display: none;
    }

    .mobile-menu {
        display: block;
    }

    .menu-background {
        width: 100%;
        height: 100%;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 999;
        background: rgba(230, 0, 0, 0.25);;
    }

    nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 220px;
        height: 100% !important;
        background: #FFFFFF;
        z-index: 1001;
        box-shadow: 0 0 10px 1px rgba(230, 0, 0, 0);
        transform: translate3d(-220px, 0, 0);
        transition: all 0.5s ease;
        overflow: auto;
    }

    body.menu-open {
        overflow: hidden;
    }

    body.menu-open > nav {
        box-shadow: 0 0 10px 1px rgba(230, 0, 0, 0.25);
        transform: translate3d(0, 0, 0);
    }

    body.menu-open > .mobile-menu {
        padding-left: 235px;
    }

    body.menu-open > .mobile-menu > .fa-outdent {
        display: block;
    }

    body.menu-open > .mobile-menu > .fa-indent {
        display: none;
    }

    body.menu-open > .menu-background {
        display: block;
    }

    nav > .content {
        padding: 0;
    }

    nav > .content > .logo {
        width: 100%;
        text-align: center;
    }

    nav > .content > .search {
        display: none;
    }

    nav > .content > .search-input {
        display: none;
    }

    nav > .content > .free-trial {
        width: calc(100% - 10px);
        margin: 10px 5px 0 5px !important;
        padding: 10px !important;
        font-weight: 300;
    }

    menu {
        margin: 15px 0 0 0;
        width: 100%;
    }

    menu > a {
        width: 100%;
        padding: 15px 20px !important;
    }

    menu > .droped-menu {
        width: 100%;
        padding: 0 !important;
    }

    menu > .droped-menu > span, menu > .droped-menu > a {
        padding: 15px 20px 15px 20px;
        width: 100%;
        display: inline-block;
    }

    menu > .droped-menu > span.has-link {
        display: block;
    }

    menu > .droped-menu > a.has-link {
        display: none;
    }

    menu > .droped-menu:hover > .drop-menu, menu > .droped-menu:active > .drop-menu, menu > .droped-menu:focus > .drop-menu {
        display: none;
    }

    menu > .droped-menu.opened > .drop-menu, menu > .droped-menu.opened > .drop-menu, menu > .droped-menu.opened > .drop-menu {
        display: block;
        position: relative;
        box-shadow: none;
    }

    menu > .droped-menu > .drop-menu .drop-menu-item {
        padding: 15px 0 15px 10px;
        text-overflow: ellipsis;
        overflow: hidden;
        white-space: nowrap;
    }

    .company-header {
        margin-top: 51px;
    }

    .company-info-item {
        padding: 51px 15px 0 15px;
        background-size: 33px !important;
    }

    .clear-team-less-less {
        display: block;
    }

    .clearfix-less-less-less {
        display: none;
    }

    .team-member {
        float: none;
        position: relative;
        display: inline-block;
        vertical-align: top;
        margin-bottom: 20px;
        width: 192px;
    }

    .team-member:nth-child(10) {
        margin-right: 30px;
    }

    .team-member:nth-child(10),
    .team-member:nth-child(19) {
        margin-left: 30px;
    }

    .team-member:nth-child(6),
    .team-member:nth-child(13) {
        margin-right: 0;
    }

    .team-member:nth-child(6) > .dots,
    .team-member:nth-child(13) > .dots {
        display: none;
    }

    .team-member:nth-child(8),
    .team-member:nth-child(15) {
        margin-left: 0;
    }

    .team-member:nth-child(8) {
        margin-right: 30px;
        margin-top: 20px;
    }

    .team-member:nth-child(8) > .dots {
        display: block;
    }

    .presentation-links-block{
        margin-top: 30px;
    }

    .pres-link{
        min-width: unset;
    }

    .news-list {
        margin-top: 51px;
    }

    .news-timeline {
        margin-top: 90px;
    }

    .awery-slogan {
        margin-top: 43px;
    }

    .red-gradient-top > canvas {
        left: calc(((100% - 1200px) / 2) + 300px);
    }

    .view-left-menu-page {
        margin-top: 14px;
    }

    .module-item {
        padding: 15px 7px;
    }

    body.searching > .search-result {
        top: 44px;
        max-height: calc(100% - 44px);
    }

    .content-background {
        padding-top: 75px;
    }

    .free-trial {
        font-size: 14px;
    }

    .free-trial.drop > .drop > .drop-item {
        padding: 6px 0 6px 16px;
    }

    .free-trial.drop > .drop > .drop-item > img {
        display: none;
    }

    .free-trial-outer > .free-trial.drop > .drop > .drop-item > img {
        display: inline-block;
    }
}

@media (max-width: 1170px) {
    .module-item > img {
        height: 40px;
    }

    .testimonials-block {
        width: calc((100% / 2) - 50px);
        margin: 0 25px;
    }

    .testimonials-block p {
        height: auto;
    }
}

@media (max-width: 1079px) {
    .support-header-links {
        width: 100%;
    }

    .product-feature {
        width: calc(33% - 11px);
    }

    .module-item {
        padding: 15px;
        width: 50%;
    }

    .customer-image-outer {
        width: calc(100% - 20px);
    }

    .clearfix-less-less-less,
    .clear-team-less-less {
        display: none;
    }

    .clear-team-less {
        display: block;
    }

    .team-member:nth-child(4),
    .team-member:nth-child(10),
    .team-member:nth-child(15) {
        margin-right: 0;
    }

    .team-member:nth-child(4) > .dots,
    .team-member:nth-child(10) > .dots,
    .team-member:nth-child(15) > .dots {
        display: none;
    }

    .team-member:nth-child(6),
    .team-member:nth-child(12),
    .team-member:nth-child(17) {
        margin-left: 0;
    }

    .team-member:nth-child(6),
    .team-member:nth-child(13) {
        margin-right: 30px;
        margin-top: 20px;
    }

    .team-member:nth-child(6) > .dots,
    .team-member:nth-child(13) > .dots {
        display: block;
    }

    .team-member:nth-child(8),
    .team-member:nth-child(10),
    .team-member:nth-child(15) {
        margin-left: 30px;
    }

    .library-hiw {
        padding: 20px 0;
    }

    .library-hiw h4 {
        margin-bottom: 20px;
    }

    .hiw-blocks {
        flex-wrap: wrap;
    }

    .hiw-blocks > .hiw-item:nth-child(6) {
        width: 100%;
        height: 20px;
    }

    .hiw-blocks > .hiw-item:nth-child(6) > * {
        display: none;
    }

    .library-pricing-left,
    .library-pricing-right {
        width: 100%;
        margin-right: 0 !important;
    }

    .library-pricing-left {
        margin-bottom: 20px;
    }
}

@media (max-width: 991px) {
    .contacts-block #map {
        height: 100%;
    }

    .news-timeline {
        display: none;
    }

    .product-feature {
        width: calc(50% - 12px);
    }

    .modal-dialog {
        width: auto;
    }

    .module-neighbors > .prev {
        padding: 20px 10px 20px 21px;
        background-position: 2px 50%;
    }

    .module-neighbors > .next {
        padding: 20px 21px 20px 10px;
        background-position: calc(100% - 2px) 50%;
    }

    .product-into > img {
        height: 20px;
    }

    .presentation-links-block{
        flex-direction: column;
    }

    .pres-link{
        min-width: 220px;
    }

    .presentation-links-block img{
        margin: 20px 0;
        -moz-transform: rotate(90deg); /* Для Firefox */
        -ms-transform: rotate(90deg); /* Для IE */
        -webkit-transform: rotate(90deg); /* Для Safari, Chrome, iOS */
        -o-transform: rotate(90deg); /* Для Opera */
        transform: rotate(90deg);
    }
}

@media (max-width: 930px) {
    .awery-slogan {
        padding: 35px 0 165px 0;
    }

    .red-gradient-top > canvas {
        left: calc(((100% - 1200px) / 2) + 350px);
        bottom: -50px;
    }

    .solutions .solution-item > a {
        padding: 10px;
    }

    .product-description-inside .key-features > .feature {
        width: calc(50% - 20px);
    }

    .module-neighbors > .prev {
        width: calc(50% - 12px);
        padding: 12px 10px 12px 12px;
        background-position: 2px 50%;
        background-size: 8px;
    }

    .module-neighbors > .next {
        width: calc(50% - 12px);
        padding: 12px 12px 12px 10px;
        background-position: calc(100% - 2px) 50%;
        background-size: 8px;
    }


}

@media (max-width: 900px) {


    .content-background {
        padding-top: 0;
    }

    footer > .content > .about {
        width: 50%;
    }

    footer > .content > .contact-us {
        width: 35%;
    }

    footer > .content > .stay-connected {
        width: 100%;
    }

    .company-info-item {
        width: 100%;
        padding: 51px 15px 0 15px !important;
        background-position: 15px 0 !important;
        margin-bottom: 15px;
    }

    .solutions .solution-item > a {
        padding: 10px 20px;
    }

    .product-feature {
        width: calc(100% - 10px);
    }

    .module-item {
        padding: 15px 7px;
    }

    .customers-map {
        height: 400px;
    }

    .customers-back-gradient {
        padding-top: 400px;
    }

    .content-customers {
        width: 100%;
    }

    .customer-types {
        display: none !important;
    }

    .content-background > #map {
        width: 100%;
        height: 400px !important;
        top: 60px;
        left: 0;
    }

    .content-info {
        width: 100%;
        float: left;
    }

    .module-neighbors > .prev {
        width: 100%;
        padding: 12px 10px 12px 37px;
        background-position: 20px 50%;
        background-size: 16px;
        margin-bottom: 10px;
    }

    .module-neighbors > .next {
        width: 100%;
        padding: 12px 37px 12px 10px;
        background-position: calc(100% - 20px) 50%;
        background-size: 16px;
    }

    .customer-image-outer {
        width: calc(50% - 20px);
    }

    .product-logo.pricing {
        display: block;
        float: left;
    }

    .product-logo.pricing > img {
        width: 100%;
        margin-bottom: 10px;
    }

    .product-logo.pricing > .pricing-product-description {
        width: 100%;
    }

    footer > .content > .stay-connected > h4 {
        margin: 0 15px 0 0;
        display: inline-block;
        vertical-align: middle;
    }

    .library-links-blocks {
        padding: 30px 0;
        justify-content: space-around;
    }

    .library-links-blocks > .link-block {
        min-width: 200px;
        margin: auto;
        padding: 15px 15px 10px 15px;
    }

    .library-links-blocks > .link-block > span {
        font-size: 14px;
        line-height: 18px;
    }
}

@media (max-width: 822px) {
    .module-item {
        padding: 15px 0;
        width: 100%;
    }

    .clearfix-less-less-less,
    .clear-team-less {
        display: none;
    }

    .clearfix-less-less-less:nth-last-child(2) {
        display: block;
    }

    .clear-team,
    .clear-team-less-less {
        display: block;
    }

    .team-member:nth-child(2),
    .team-member:nth-child(6),
    .team-member:nth-child(13),
    .team-member:nth-child(17) {
        margin-right: 0;
        margin-left: 30px;
    }

    .team-member:nth-child(2) > .dots,
    .team-member:nth-child(6) > .dots,
    .team-member:nth-child(13) > .dots,
    .team-member:nth-child(17) > .dots {
        display: none;
    }

    .team-member:nth-child(4),
    .team-member:nth-child(8),
    .team-member:nth-child(15) {
        margin-left: 0;
        margin-right: 30px;
        margin-top: 20px;
    }

    .team-member:nth-child(4) > .dots,
    .team-member:nth-child(8) > .dots,
    .team-member:nth-child(15) > .dots {
        display: block;
    }
}

@media (max-width: 767px) {
    footer > .content > .about {
        width: 100%;
    }

    footer > .content > .contact-us {
        width: 100%;
    }

    footer > .content > .find-out {
        width: 100%;
        padding: 10px 0;
    }

    footer > .content > .find-out > .subtitle {
        float: none;
        width: auto;
        display: inline-block;
        margin: 10px 10px 10px 0;
    }

    .link.icon {
        float: none;
        width: auto;
        display: inline-block;
        margin: 5px 10px 5px 0;
    }

    footer > .content > .stay-connected {
        padding-top: 15px;
    }

    .product {
        padding: 15px !important;
    }

    .gallery > .gallery-image {
        height: 140px;
    }

    .solutions .solution-item {
        padding: 11px 15px;
    }

    .customer-block > .customer-item:first-child {
        margin-bottom: 20px;
    }

    .product > .product-link {
        min-width: auto;
        width: 100%;
    }

    .company-team {
        margin-top: 60px;
    }

    .company-header > .images {
        background-size: contain, 398px, 1200px;
    }

    /*.clear-team{
        display: none;
    }*/
    .clear-team-less-less {
        display: block;
    }

    .clearfix-less-less-less {
        display: none;
    }

    .contacts-send > br {
        display: none;
    }

    .contacts-send {
        line-height: 17px;
    }

    .contacts-block #map {
        height: 600px;
    }

    .news-image {
        width: 200px;
    }

    .news-details {
        width: calc(100% - 200px);
        margin-left: 200px;
    }

    .red-gradient-top > canvas {
        left: calc(((100% - 1200px) / 2) + 250px);
        bottom: -100px;
    }

    .feature {
        width: calc(33% - 20px);
    }

    .awery-host:first-child {
        margin-bottom: 25px;
    }

    .sap-middle {
        padding: 25px 0;
    }

    .awery-host > .logo > img {
        object-position: center;
    }

    .sap-bottom {
        padding: 20px 0;
    }

    .sap-bottom .faq {
        font-size: 14px;
    }

    .sap-bottom .faq-q {
        margin-top: 20px;
    }

    .sap-bottom .faq-a {
        margin-top: 6px;
    }

    .sap-top {
        padding: 50px 0 20px 0;
    }

    .left-side-menu {
        display: none;
    }

    .content-block {
        width: 100%;
    }

    .product-feature {
        width: calc(50% - 12px);
    }

    .partner-logo {
        padding: 0;
    }

    .module-item {
        padding: 15px;
        width: 50%;
    }

    .product-description-inside .key-features > .feature {
        width: calc(25% - 20px);
    }

    .product-logo {
        padding: 0;
    }

    .products .product-description-inside {
        padding: 20px 10px;
    }

    /*menu > .droped-menu{
        padding: 0 0 0 10px;
    }*/
    menu > a {
        padding: 15px 0 15px 20px;
    }

    menu > .droped-menu > .drop-menu .drop-menu-item {
        padding: 15px 0 15px 20px !important;;
        text-overflow: ellipsis;
        overflow: hidden;
        white-space: nowrap;
    }

    .module-neighbors > .prev {
        width: calc(50% - 12px);
        padding: 12px 10px 12px 37px;
        /*background-position: 2px 50%;
        background-size: 8px;*/
    }

    .module-neighbors > .next {
        width: calc(50% - 12px);
        padding: 12px 37px 12px 10px;
        /*background-position: calc(100% - 2px) 50%;
        background-size: 8px;*/
    }

    .product-into > img {
        height: 40px;
    }

    .testimonial {
        width: 100%;
    }

    .testimonials-main > .testimonial {
        width: 100vw;
    }

    .help-aviaton > .item {
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }

    .cloud-based {
        margin: 10px 0 15px 0;
    }

    .library-testimonials {
        padding: 20px 0 25px 0;
    }

    .library-pricing {
        padding: 15px;
    }

    .library-pricing > div {
        padding: 10px;
    }

    .library-pricing > div:nth-child(2) {
        width: calc(100% + 20px);
        margin: 20px -10px 0 -10px !important;
    }

    .library-pricing > div:nth-child(2) > table td {
        padding: 1px 20px !important;
    }

    .library-pricing-block > img {
        width: calc(100% - 20px);
        margin: 10px;
    }

    .pricing-description-block {
        padding: 0 10px 10px 10px;
    }

    .pricing-title-inner,
    .form-pricing {
        padding: 0 10px;
    }

    .pricing-table,
    .pricing-calculator-total,
    .pricing-calculator {
        padding: 10px;
    }

    .pricing-description-block > div:first-child {
        width: 40%;
    }

    .pricing-description-block > div:last-child {
        width: 60%;
    }
}

@media (max-width: 670px) {
    .downloads-item {
        margin-bottom: 20px;
    }

    .support-header-links > a {
        width: calc(100% - 30px);
        margin: 15px;
        padding: 24px 10px;
        font-size: 18px;
    }

    .support-request {
        margin-top: 15px;
    }

    .contacts-block a {
        margin: 5px 0;
        width: 100%;
        text-align: left;
    }

    .news-image,
    .promo-news > .news-container > .news-image {
        width: 150px;
    }

    .news-details {
        width: calc(100% - 150px);
        margin-left: 150px;
    }

    .products {
        padding: 10px 0;
    }

    .sap-top .product-description {
        margin-top: 20px;
    }

    .sap-top .key-features > .feature {
        width: calc(50% - 2px);
    }

    .product-description-inside .key-features > .feature {
        width: calc(50% - 20px);
    }

    .customers-back-gradient {
        padding-top: 300px;
    }

    .content-background > #map {
        height: 300px !important;
        top: 50px;
    }

    .module-neighbors > .prev {
        width: calc(50% - 12px);
        padding: 12px 10px 12px 12px;
        background-position: 2px 50%;
        background-size: 8px;
    }

    .module-neighbors > .next {
        width: calc(50% - 12px);
        padding: 12px 12px 12px 10px;
        background-position: calc(100% - 2px) 50%;
        background-size: 8px;
    }

    .customer-image-outer {
        width: calc(100% - 20px);
    }

    .library-links-blocks {
        flex-wrap: wrap;
    }

    .library-links-blocks > .link-block {
        width: 100%;
        margin: 10px 0;
    }

    .library-top {
        padding: 20px 0 0 0;
    }

    .testimonials-block {
        width: calc(100% - 20px);
        margin: 0 10px;
    }

    .cloud-based {
        text-shadow: 0 0 3px rgba(255, 255, 255, 0.5);
    }
}

@media (max-width: 604px) {
    .module-item {
        padding: 15px 7px;
    }

    .customers-map {
        height: 320px;
    }

    .module-neighbors > .prev {
        width: 100%;
        padding: 12px 10px 12px 37px;
        background-position: 20px 50%;
        background-size: 16px;
        margin-bottom: 10px;
    }

    .module-neighbors > .next {
        width: 100%;
        padding: 12px 37px 12px 10px;
        background-position: calc(100% - 20px) 50%;
        background-size: 16px;
    }

    .form-pricing > .form-block {
        width: 100%;
        margin-right: 0;
    }
}

@media (max-width: 540px) {
    .red-gradient-top > canvas {
        transform: scale(0.5);
        left: calc(((100% - 1200px) / 2) + 280px);
    }

    .awery-slogan {
        padding: 40px 20px;
    }

    .product > .product-link {
        padding: 10px;
    }

    .product > .product-link > img {
        height: 30px;
        max-width: 100%;
    }

    .title {
        margin: 15px 0;
        font-size: 24px;
    }

    .free-trial-outer {
        padding: 20px 0;
    }

    .subtitle {
        margin: 10px 0;
    }

    nav > .content > .free-trial {
        font-size: 14px;
    }

    .customer-block {
        padding: 10px;
    }

    .company-info-item {
        font-size: 16px;
        padding: 41px 10px 0 10px !important
    }

    h1 {
        font-size: 24px !important;
        line-height: 24px;
    }

    h2 {
        font-size: 20px !important;
        line-height: 20px;
    }

    .member-info > h2 {
        font-size: 18px !important;
        line-height: 1.1;
    }

    .company-team {
        margin-top: 30px;
    }

    .partner-logo {
        width: calc(100% - 40px);
        margin: 10px 20px;
    }

    .career .open-button {
        padding: 10px 15px 0 15px;
    }

    .support-form, .contacts-form {
        background-size: contain !important;
        padding: 20px 10px;
    }

    .news-image,
    .promo-news > .news-container > .news-image {
        width: 100%;
        height: 100px;
        position: relative;
        float: left;
        top: 0;
    }

    .promo-news > .news-container > .news-content {
        width: 100%;
    }

    .news-details {
        width: 100%;
        margin-left: 0;
        float: left;
        margin-top: 10px;
    }

    .news-item {
        padding: 10px 0;
    }

    .news-title {
        font-size: 18px;
        line-height: 20px;
    }

    .news-short-description, .news-full-description {
        font-size: 14px;
        line-height: 14px;
    }

    .feature {
        width: calc(50% - 20px);
    }

    .solutions {
        padding: 10px 0 20px 0;
    }

    .product-feature {
        width: calc(100% - 10px);
    }

    .product-gallery-title {
        padding: 12px 10px;
    }

    .module-item {
        padding: 15px 0;
        width: 100%;
    }

    .modules-list {
        padding: 0;
    }

    .modules-block h1 {
        padding: 0;
    }

    .product-logo {
        height: 40px;
    }

    .product-logo > img {
        height: 40px;
    }

    .product-group-description p:first-child {
        padding-left: 45px;
    }

    .products .product-description-inside {
        padding: 10px;
    }

    .product-into > img {
        height: 20px;
    }

    .product {
        padding: 15px 0 !important;
    }

    .free-trial.free-trial-banner {
        margin: 20px 0;
    }

    .top-gradient > .content {
        padding: 0 10px;
    }

    .help-aviaton > .item > span {
        font-size: 14px;
    }

    .team-member {
        margin-left: 15px;
        margin-right: 15px;
    }

    .team-member > .dots {
        width: 30px;
    }

    .team-member:nth-child(2),
    .team-member:nth-child(6),
    .team-member:nth-child(10),
    .team-member:nth-child(13),
    .team-member:nth-child(17) {
        margin-right: 0;
        margin-left: 15px;
    }

    .team-member:nth-child(4),
    .team-member:nth-child(8),
    .team-member:nth-child(15) {
        margin-left: 0;
        margin-right: 15px;
        margin-top: 20px;
    }

    .hiw-blocks > .hiw-item:nth-child(even) {
        width: 100%;
        height: 20px;
    }

    .hiw-blocks > .hiw-item:nth-child(even) > * {
        display: none;
    }

    .hiw-blocks > .hiw-item:nth-child(odd) {
        width: 100% !important;
        text-align: center;
        margin: 0;
    }

    .hiw-blocks > .hiw-item:nth-child(odd) > img {
        margin: 0 0 10px 0;
        display: inline-block;
    }

    .hiw-blocks > .hiw-item:nth-child(odd) > span {
        width: 100%;
        margin: 0;
    }

    .library-hiw-pattern .hiw-blocks > .hiw-item {
        width: 100% !important;
        text-align: center;
        margin: 0 0 20px 0;
        height: auto !important;
    }

    .library-hiw-pattern .hiw-blocks > .hiw-item > img {
        margin: 0 0 10px 0;
        display: inline-block;
    }

    .library-hiw-pattern .hiw-blocks > .hiw-item > span {
        width: 100%;
        margin: 0;
    }

    .library-hiw-pattern {
        padding: 25px 0 15px 0;
    }

    .cloud-based {
        margin-top: 0;
        padding-top: 10px;
    }

    .library-pricing {
        padding: 15px 5px;
    }

    .library-pricing > div:nth-child(2) {
        width: calc(100% + 10px);
        margin: 20px -5px 0 -5px !important;
    }

    .library-pricing-outer > .content {
        width: 100%;
        padding: 0;
    }

    .library-pricing > div {
        margin: 10px 0 0 0 !important;
    }

    .library-pricing table td,
    .library-pricing table th {
        white-space: normal !important;
    }

    .library-pricing table td.pricing-input {
        white-space: nowrap !important;
    }

    .library-pricing > div > table td, .library-pricing > div > table th {
        padding-right: 5px !important;
        padding-left: 5px !important;
    }

    .pricing-input {
        padding: 0 5px !important;
    }

    .pricing-input > button {
        line-height: 28px;
        width: 40px;
    }

    .pricing-input > input {
        width: 30px;
        line-height: 28px;
        font-size: 12px;
        padding: 0 5px;
    }

    .library-pricing > div > table tr.clarification > th {
        padding: 0 5px !important;
    }

    /*.library-pricing > div > table > tbody > tr:first-child > td,
    .library-pricing > div > table > tbody > tr:first-child > th {
        font-size: 16px;
        line-height: 20px;
    }*/
    .library-pricing-outer {
        padding: 30px 0 20px 0;
    }

    .library-pricing-outer .free-trial {
        padding: 12px 20px 12px 53px;
        font-size: 20px;
        line-height: 28px;
        background: #593dff url(../images/products/free-trial-button.svg) no-repeat 20px 50%;
        background-size: 24px;
    }

    .library-pricing-outer .free-trial:hover {
        background: #ffffff url(../images/products/free-trial-button.svg) no-repeat 20px 50%;
        background-size: 24px;
    }

    .library-questions {
        padding: 20px 0 30px 0;
    }

    .library-questions h4 {
        margin-bottom: 20px;
    }

    .get-acquainted-titles p{
        font-size: 16px;
    }

    .presentation-links-block{
        margin-top: 10px;
    }

    .pres-link{
        min-width: 182px;
        padding: 8px 20px;
        font-size: 18px;
    }

    .presentation-links-block img{
        margin: 10px 0;
    }
}

@media (max-width: 470px) {
    .mobile-menu > a > svg {
        height: 34px !important;
        margin: 0 !important;
    }

    .mobile-menu > a {
        width: 163px;
        transition: all 0.25s ease;
        overflow: hidden;
        display: inline-block;
        margin: -5px 0;
    }

    body.menu-open > .mobile-menu > a {
        width: 0;
        transition: all 0.25s ease;
    }

    .library-pricing > div:nth-child(2) > table td {
        padding: 1px 5px !important;
    }
}

@media (max-width: 450px) {
    .red-gradient-top > canvas {
        left: calc(((100% - 1200px) / 2) + 220px);
        bottom: -135px;
    }

    body, body.scrolled {
        padding-top: 10px;
    }

    .gallery > .gallery-image {
        height: 100px;
    }

    .solutions .solution-item {
        width: 100%;
    }

    .customer-item {
        width: 100px;
    }

    .customer-block {
        padding: 0;
    }

    .customer-block > .customer-item {
        margin: 10px !important;
    }

    .free-trial {
        font-size: 16px;
        padding: 10px 20px;
        font-weight: 300;
        margin: 10px auto;
    }

    body::-webkit-scrollbar, .scroll-customers::-webkit-scrollbar, .gallery::-webkit-scrollbar {
        width: 3px;
        height: 3px;
    }

    .company-header > .images {
        background-size: contain, 291px, 800px;
    }

    .company-info-item {
        font-size: 14px;
        padding: 38px 10px 0 10px !important
    }

    .support-send {
        width: 100%;
        min-width: auto;
    }

    .contacts-block #map {
        height: 200px;
        top: 0;
    }

    .contacts-info-block {
        margin-top: 150px;
    }

    .awery-slogan {
        padding: 20px 0 0 0;
    }

    .awery-slogan > .awery-slogan-top {
        font-size: 20px !important;
        line-height: 28px;
        margin-bottom: 10px;
    }

    .awery-slogan > .awery-slogan-top > br {
        display: none;
    }

    .awery-slogan > .awery-slogan-bottom {
        font-size: 14px !important;
        line-height: 16px;
        margin-bottom: 10px;
    }

    .top-screens {
        height: 130px !important;
    }

    .top-screens > img {
        height: 115px !important;
        margin: 5px 10px;
    }

    .sap-top .key-features > .feature {
        width: 100%;
        text-align: center;
    }

    .feature > img {
        margin-bottom: 9px;
    }

    .awery-host > .logo > img {
        height: auto;
    }

    .awery-host h3 {
        margin-top: 10px;
        margin-bottom: 7px;
    }

    .product-logo, .product-logo > img {
        height: auto;
    }

    .product-description > p {
        text-align: justify;
    }

    .product-description-inside .key-features > .feature {
        width: calc(50% - 10px);
        margin: 5px;
        text-align: center;
        vertical-align: top;
    }

    .feature > img {
        height: 21px;
        margin-bottom: 3px;
    }

    .customers-map {
        height: 240px;
    }

    .mobile-menu {
        font-size: 18px;
    }

    .mobile-menu > .search-input {
        font-size: 12px;
        padding: 6px 8px;
    }

    .mobile-menu > a > svg {
        height: 28px !important;
    }

    .mobile-menu > a {
        width: 135px;
    }

    body.searching > .search-result {
        top: 38px;
        max-height: calc(100% - 38px);
    }

    .customers-back-gradient {
        padding-top: 200px;
    }

    .content-background > #map {
        height: 200px !important;
    }

    .content-info {
        padding: 10px;
    }

    .customer-image-outer {
        padding: 14px 15px;
    }

    .clear-team, .clear-team-less, .clear-team-less-less, .clearfix-alone {
        display: block;
    }

    .team-member {
        float: none;
        position: relative;
        display: inline-block;
        vertical-align: top;
        width: 192px;
        margin: 10px 54px 30px 54px !important;
    }

    .team-member > .dots {
        display: none !important;
    }

    .team-ceo {
        width: 192px !important;
    }

    .team-ceo > .member-info,
    .team-ceo > .member-photo {
        float: none;
    }

    .team-ceo > .member-info {
        margin-left: 0;
    }

    .team-ceo > .underline {
        display: block;
    }

    .mosaic > .element {
        float: none;
        display: inline-block;
        vertical-align: top;
    }

    .mosaic > .element > .span-outer {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        display: flex;
    }

    .mosaic > .element > .span-outer > span {
        margin: auto;
    }

    .module-group-logo.logo-search {
        height: auto !important;
        padding-bottom: 5px;
        float: left;
    }

    .pricing-select {
        padding: 15px 20px;
    }

    .top-gradient {
        font-size: 16px;
        line-height: 1.2;
    }

    .library-pricing > div:nth-child(2) > table td {
        padding: 1px !important;
    }
}