@import "fonts/fonts.css";
@import "css/normalize.css";
@import "css/slick.css";

/* //////////////////////////// */

body {
    font-family: 'Avenir', sans-serif;
    overflow-x: hidden;
    background: #FBFBFB;
	padding-top:77px;
}

 ::-webkit-scrollbar {
    width: 5px;
    height: 5px;
    background-color: #143861;
}

 ::-webkit-scrollbar-thumb {
    background-color: #358DA9;
    border-radius: 9em;
    box-shadow: 0;
}

 ::-webkit-scrollbar-thumb:hover {
    background-color: #253861;
}

 ::-webkit-scrollbar-button:vertical:start:decrement {
    background: linear-gradient(120deg, #02141a 40%, rgba(0, 0, 0, 0) 41%), linear-gradient(240deg, #02141a 40%, rgba(0, 0, 0, 0) 41%), linear-gradient(0deg, #02141a 30%, rgba(0, 0, 0, 0) 31%);
    background-color: #f6f8f4;
}

 ::-webkit-scrollbar-button:vertical:end:increment {
    background: linear-gradient(300deg, #02141a 40%, rgba(0, 0, 0, 0) 41%), linear-gradient(60deg, #02141a 40%, rgba(0, 0, 0, 0) 41%), linear-gradient(180deg, #02141a 30%, rgba(0, 0, 0, 0) 31%);
    background-color: #f6f8f4;
}

 ::-webkit-scrollbar-button:horizontal:start:decrement {
    background: linear-gradient(30deg, #02141a 40%, rgba(0, 0, 0, 0) 41%), linear-gradient(150deg, #02141a 40%, rgba(0, 0, 0, 0) 41%), linear-gradient(270deg, #02141a 30%, rgba(0, 0, 0, 0) 31%);
    background-color: #f6f8f4;
}

 ::-webkit-scrollbar-button:horizontal:end:increment {
    background: linear-gradient(210deg, #02141a 40%, rgba(0, 0, 0, 0) 41%), linear-gradient(330deg, #02141a 40%, rgba(0, 0, 0, 0) 41%), linear-gradient(90deg, #02141a 30%, rgba(0, 0, 0, 0) 31%);
    background-color: #f6f8f4;
}


/* ////////////////////////////// */

html {
    overflow-x: hidden;
}

.container {
    padding: 0 72px;
    margin: 0 auto;
}


/* //////////////////////////// */

header {
    background: #1E1E21;
    position: fixed;
    top: 0;
    width: 100vw;
    padding: 25px 0;
    z-index: 1;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header .header__menu {
    display: flex;
    margin: 0;
    padding: 0;
    margin-left: auto;
}

.header .header__menu li {
    list-style: none;
}

.header .header__menu li a {
    
    font-style: normal;
    font-weight: bold;
    font-size: 16px;
    line-height: 1.3;
    font-feature-settings: 'ss09' on;
    color: #358DBB;
    text-decoration: none;
    text-transform: capitalize;
    margin-right: 40px;
    -webkit-font-feature-settings: 'ss09' on;
    -moz-font-feature-settings: 'ss09' on;
}

.header .menu-item-has-children {
    margin: 0;
    padding: 0;
    margin-right: 121px;
}

.header .menu-item-has-children {
    font-style: normal;
    font-weight: bold;
    font-size: 16px;
    line-height: 1.3;
    text-transform: capitalize;
    font-feature-settings: 'ss09' on;
    color: #FFFFFF;
    text-decoration: none;
    list-style: none;
    cursor: pointer;
    -webkit-font-feature-settings: 'ss09' on;
    -moz-font-feature-settings: 'ss09' on;
    position: relative;
}

.header .menu-item-has-children>a::after {
    content: '▼';
}

.header .menu-item-has-children .sub-menu {
    padding: 0;
    transition: .3s;
    position: absolute;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -ms-transition: .3s;
    -o-transition: .3s;
}

.header .menu-item-has-children:hover>.sub-menu {
    visibility: visible;
    opacity: 1;
}

.navSlime {
    position: absolute;
    right: 0px;
    top: 0;
    width: 72px;
    height: 100%;
    display: flex;
    align-content: center;
    justify-content: center;
    align-items: center;
    background: #ffff;
}

#menuToggle {
    display: block;
    position: relative;
    z-index: 1;
    -webkit-user-select: none;
    user-select: none;
}

#menuToggle svg {
    cursor: pointer;
}

#menu {
    position: fixed;
    width: 100vw;
    z-index: 9;
    display: none;
    background: #1C1F23;
    list-style-type: none;
    -webkit-font-smoothing: antialiased;
    flex-direction: column;
    height: 100vh;
    top: 0;
}

#menu .menuToggleOpen {
    position: absolute;
    right: 0;
    top: 0;
    background: rgba(255, 255, 255, 0.1);
    width: 72px;
    cursor: pointer;
    height: 72px;
    display: flex;
    align-content: center;
    justify-content: center;
    align-items: center;
}

.menu__list {
    display: flex;
    align-items: center;
    padding: 0 72px;
    padding-top: 20vh;
    flex-wrap: wrap;
    justify-content: space-between;
}

.menu__list-left {
    margin: 0;
    padding: 0;
}

.menu__list-left li {
    list-style: none;
    margin-bottom: 23px;
}

.menu__list-left li a {
    font-family: 'Futura', sans-serif;
    font-style: normal;
    font-weight: bold;
    font-size: 42px;
    line-height: 1.33;
    text-decoration: none;
    color: #FFFFFF;
    margin: 0;
}

.menu__list-left .menu-item-has-children .sub-menu {
    bottom: -165px;
}

.menu__list-right {
    margin: 0;
    padding: 0;
}

.menu__list-right li {
    list-style: none;
    margin-bottom: 52px;
    display: flex;
    flex-direction: column;
}

.menu__list-right li span {
    font-family: 'Avenir', sans-serif;
    font-style: normal;
    font-weight: 300;
    font-size: 16px;
    line-height: 1.3;
    font-feature-settings: 'ss09' on;
    color: #FFFFFF;
    display: block;
    margin-bottom: 5px;
}

.menu__list-right li a {
    font-family: 'Futura', sans-serif;
    font-style: normal;
    font-weight: bold;
    font-size: 20px;
    line-height: 1.35;
    font-feature-settings: 'ss09' on, 'salt' on;
    color: #FFFFFF;
    text-decoration: none;
    -webkit-font-feature-settings: 'ss09' on, 'salt' on;
    -moz-font-feature-settings: 'ss09' on, 'salt' on;
}

.menu__lang {
    padding: 0 72px;
    font-family: 'Futura', sans-serif;
    font-style: normal;
    font-weight: bold;
    font-size: 42px;
    line-height: 1.33;
    cursor: pointer;
    color: #FFFFFF;
}


/* //////////////////////////// */

.mainBlock {
    padding-top: 105px;
    padding-bottom: 159px;
    position: relative;
    overflow: hidden;
}

.mainBlock::before {
    content: "";
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    z-index: -1;
    background: radial-gradient(125.75% 224.4% at 6.64% 125.75%, #3693B0 0%, #1B1E22 50.1%, #1B1E22 100%);
    transform: matrix(-1, 0, 0, 1, 0, 0);
}

.mainBlock h1 {
    font-family: 'Futura', sans-serif;
    font-style: normal;
    font-weight: bold;
    font-size: 42px;
    line-height: 1.33;
    color: #FFFFFF;
    margin-bottom: 50px;
}

.mainBlock h1 span {
    color: #358DA9;
}

.mainBlock h5 {
    max-width: 682px;
    font-family: 'Avenir', sans-serif;
    font-style: normal;
    font-weight: 300;
    font-size: 16px;
    line-height: 1.3;
    font-feature-settings: 'ss09' on;
    color: #FFFFFF;
    margin: 14px 0;
    -webkit-font-feature-settings: 'ss09' on;
    -moz-font-feature-settings: 'ss09' on;
}

.mainBlock a {
    font-family: "Avenir", sans-serif;
    font-style: normal;
    font-weight: 900;
    font-size: 16px;
    line-height: 1.37;
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
    font-feature-settings: 'ss09' on;
    color: #FFFFFF;
    background: #358DA9;
    border-radius: 8px;
    width: 269px;
    height: 56px;
    text-decoration: none;
    -webkit-font-feature-settings: 'ss09' on;
    -moz-font-feature-settings: 'ss09' on;
    margin-top: 10vh;
    transition: .3s;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -ms-transition: .3s;
    -o-transition: .3s;
}

.mainBlock a:hover {
    background: #358da959;
}

.mainBlock a:active {
    background: #000000;
    opacity: 0.15;
    border-radius: 9px;
}


/* //////////////////////////// */

.Advantages {
	padding-top: 88px;
    padding-bottom: 68px;
}

.Advantages .title {
    font-family: "Futura", sans-serif;
    font-style: normal;
    font-weight: bold;
    font-size: 42px;
    line-height: 1.33;
    text-align: center;
    color: #1C1F23;
    margin: 0 auto;
    margin-bottom: 34px;
}

.Advantages .subtitle {
    font-family: 'Avenir', sans-serif;
    font-style: normal;
    font-weight: 300;
    font-size: 16px;
    line-height: 1.37;
    text-align: center;
    font-feature-settings: 'ss09' on;
    color: #1C1F23;
    max-width: 550px;
    margin: 0 auto;
    margin-bottom: 63px;
    -webkit-font-feature-settings: 'ss09' on;
    -moz-font-feature-settings: 'ss09' on;
}

.Advantages__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 20px;
}

.Advantages__item {
    min-height: 200px;
    background: #FFFFFF;
    border: 1px solid rgba(28, 31, 35, 0.1);
    box-sizing: border-box;
    border-radius: 8px;
    padding: 28px 13px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.Advantages__item p {
    font-family: 'Avenir', sans-serif;
    font-style: normal;
    font-weight: 300;
    font-size: 16px;
    line-height: 1.37;
    font-feature-settings: 'ss09' on;
    color: #1C1F23;
    max-width: 212px;
    margin: 0 auto;
    -webkit-font-feature-settings: 'ss09' on;
    -moz-font-feature-settings: 'ss09' on;
}


/* ////////////////////////// */

.Firmware {
/*     padding-top: 95px; */
    padding-bottom: 75px;
}

.Firmware .title {
    font-family: 'Futura', sans-serif;
    font-style: normal;
    font-weight: bold;
    font-size: 42px;
    line-height: 1.33;
    text-align: center;
    color: #1C1F23;
    margin: 0;
    margin-bottom: 63px;
}

.Firmware .title span {
    color: #358DA9;
}

.Firmware .subtitle {
    font-family: 'Avenir', sans-serif;
    font-style: normal;
    font-weight: 300;
    font-size: 20px;
    line-height: 1.4;
    font-feature-settings: 'ss09' on;
    color: #1C1F23;
    margin: 0;
    margin-bottom: 25px;
    -webkit-font-feature-settings: 'ss09' on;
    -moz-font-feature-settings: 'ss09' on;
}

.Firmware .subtitle span {
    color: #358DA9;
    font-weight: 800;
}

.Firmware .description {
    font-family: 'Avenir', sans-serif;
    font-style: normal;
    font-weight: 300;
    font-size: 20px;
    line-height: 1.4;
    font-feature-settings: 'ss09' on;
    color: #1C1F23;
    -webkit-font-feature-settings: 'ss09' on;
    -moz-font-feature-settings: 'ss09' on;
    margin: 0;
    margin-bottom: 75px;
}

.Firmware__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 47px;
}

.Firmware__item {
    background: #FFFFFF;
    border: 1px solid rgba(28, 31, 35, 0.1);
    box-sizing: border-box;
    border-radius: 8px;
}

.Firmware__item-title {
    font-family: 'Futura', sans-serif;
    font-style: normal;
    font-weight: bold;
    font-size: 20px;
    line-height: 1.35;
    text-align: center;
    font-feature-settings: 'ss09' on, 'salt' on;
    color: #000000;
    -webkit-font-feature-settings: 'ss09' on, 'salt' on;
    -moz-font-feature-settings: 'ss09' on, 'salt' on;
    margin: 37px 50px 28px;
}

.Firmware__item-content {
    display: flex;
}

.Firmware__item-content-text {
    max-width: 360px;
	min-height: 240px;
    margin-left: 22px;
}

.Firmware__item-content-text p {
    font-family: 'Avenir', sans-serif;
    font-style: normal;
    font-weight: 300;
    font-size: 16px;
    line-height: 1.37;
    font-feature-settings: 'ss09' on;
    color: #1C1F23;
    margin: 0;
    margin-bottom: 15px;
    -webkit-font-feature-settings: 'ss09' on;
    -moz-font-feature-settings: 'ss09' on;
}

.Firmware__item-content-text p:last-child {
    margin-bottom: 0;
}

.Firmware__item-buttons_Download {}

.dropbtn {
    max-width: 225px;
    width: 100%;
    height: 56px;
    border-radius: 8px;
    text-decoration: none;
    display: flex;
    position: relative;
    border: none;
    outline: none;
    align-items: center;
    justify-content: space-around;
    background: #358DA9;
    cursor: pointer;
    transition: .3s;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -ms-transition: .3s;
    -o-transition: .3s;
}

.dropbtn p {
    font-family: 'Avenir', sans-serif;
    font-style: normal;
    font-weight: 900;
    font-size: 16px;
    line-height: 2;
    color: #FFFFFF;
    width: 170px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.dropbtn span {
    background: rgba(255, 255, 255, 0.1);
    height: 100%;
    display: flex;
    width: 55px;
    align-items: center;
    justify-content: center;
}

.dropbtn-one p {
    width: 225px;
}

#myDropdown {
    display: none;
    width: 100%;
    background: #ffff;
    position: absolute;
    top: 50px;
}

#myDropdown a {
    display: block;
    width: 100%;
    font-family: 'Avenir', sans-serif;
    font-style: normal;
    font-weight: 300;
    padding: 10px 20px;
    font-size: 16px;
    font-feature-settings: 'ss09' on;
    color: #000000;
    -webkit-font-feature-settings: 'ss09' on;
    -moz-font-feature-settings: 'ss09' on;
    text-decoration: none;
}

.Firmware__item-buttons_Details {
    font-family: 'Avenir', sans-serif;
    font-style: normal;
    font-weight: 900;
    font-size: 16px;
    line-height: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: #FFFFFF;
    border: 1px solid #358DA9;
    box-sizing: border-box;
    border-radius: 8px;
    color: #358DA9;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
    text-decoration: none;
    max-width: 225px;
    width: 100%;
    height: 56px;
}

.Firmware__item-buttons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 27px;
    justify-content: center;
    margin: 0 auto;
    justify-items: center;
    margin-bottom: 39px;
    margin-top: 25px;
    padding: 0 27px;
}


/* //////////////////////////////////////// */

.feedback {
    position: relative;
    overflow: hidden;
    padding-top: 88px;
    padding-bottom: 88px;
}

.feedback::before {
    content: "";
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    z-index: -1;
    background: radial-gradient(116.2% 116.2% at 47.19% 119.25%, #3693B0 0%, #22221B 57.58%, #1B1E22 100%);
    transform: rotate(-180deg);
}

.feedback .title {
    font-family: 'Futura', sans-serif;
    font-style: normal;
    font-weight: bold;
    font-size: 42px;
    line-height: 1.33;
    text-align: center;
    color: #FFFFFF;
    margin: 0;
    margin-bottom: 15px;
}

.feedback .subtitle {
    font-family: 'Avenir', sans-serif;
    font-style: normal;
    font-weight: 300;
    font-size: 16px;
    line-height: 1.37;
    text-align: center;
    font-feature-settings: 'ss09' on;
    color: #FFFFFF;
    -webkit-font-feature-settings: 'ss09' on;
    -moz-font-feature-settings: 'ss09' on;
    margin: 0;
    margin-bottom: 104px;
}

.feedback .form {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    justify-content: center;
    max-width: 665px;
    margin: 0 auto;
}

.feedback .form input {
    background: none;
    border: none;
    outline: none;
    font-family: 'Futura', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.31;
    letter-spacing: 0.08em;
    color: #FFFFFF;
    padding: 10px 10px 10px 0px;
    display: block;
    width: 100%;
    border: none;
}

.feedback .form .group {
    position: relative;
    margin-bottom: 45px;
}

.feedback .form input:focus {
    outline: none;
}

.feedback .form label {
    font-family: 'Futura', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.31;
    letter-spacing: 0.08em;
    color: #FFFFFF;
    position: absolute;
    pointer-events: none;
    left: 0px;
    top: 15px;
    transition: 0.2s ease all;
    -moz-transition: 0.2s ease all;
    -webkit-transition: 0.2s ease all;
}

.feedback .form input:focus~label,
.feedback .form input:valid~label {
    top: -20px;
    font-weight: bold;
}

.feedback .form .bar {
    position: relative;
    display: block;
    width: 100%;
    height: 1px;
    background: #FFFFFF;
}

.feedback .form .bar:before,
.feedback .form .bar:after {
    content: '';
    height: 3px;
    width: 0;
    bottom: 1px;
    position: absolute;
    background: #FFFFFF;
    transition: 0.2s ease all;
    -moz-transition: 0.2s ease all;
    -webkit-transition: 0.2s ease all;
}

.feedback .form .bar:before {
    left: 50%;
}

.feedback .form .bar:after {
    right: 50%;
}

.feedback .form input:focus~.bar:before,
.feedback .form input:focus~.bar:after {
    width: 50%;
}

.feedback .form .highlight {
    position: absolute;
    height: 60%;
    width: 100px;
    top: 25%;
    left: 0;
    pointer-events: none;
    opacity: 0.5;
}

.feedback .form input:focus~.highlight {
    -webkit-animation: inputHighlighter 0.3s ease;
    -moz-animation: inputHighlighter 0.3s ease;
    animation: inputHighlighter 0.3s ease;
}

@-webkit-keyframes inputHighlighter {
    from {
        background: #5264AE;
    }
    to {
        width: 0;
        background: transparent;
    }
}

@-moz-keyframes inputHighlighter {
    from {
        background: #5264AE;
    }
    to {
        width: 0;
        background: transparent;
    }
}

@keyframes inputHighlighter {
    from {
        background: #5264AE;
    }
    to {
        width: 0;
        background: transparent;
    }
}

.btn-accept {
    background: #358DA9;
    border-radius: 8px;
    outline: none;
    border: none;
    font-family: 'Avenir', sans-serif;
    font-style: normal;
    font-weight: 900;
    font-size: 16px;
    line-height: 140%;
    font-feature-settings: 'ss09' on;
    color: #FFFFFF;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
    -webkit-font-feature-settings: 'ss09' on;
    -moz-font-feature-settings: 'ss09' on;
    height: 56px;
    display: block;
    width: 269px;
    margin: 0 auto;
    margin-top: 45px;
    cursor: pointer;
}


/* //////////////////////// */

.footer {
    background: #1C1F23;
    padding-top: 50px;
}

.footer .container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer__left {
    margin: 0;
    padding: 0;
    max-width: 29%;
    width: 100%;
}

.footer__left li {
    list-style: none;
    margin-bottom: 25px;
}

.footer__left li a {
    font-family: 'Futura', sans-serif;
    font-style: normal;
    font-weight: bold;
    font-size: 20px;
    line-height: 1.35;
    font-feature-settings: 'ss09' on, 'salt' on;
    color: #FFFFFF;
    -webkit-font-feature-settings: 'ss09' on, 'salt' on;
    -moz-font-feature-settings: 'ss09' on, 'salt' on;
    text-decoration: none;
}

.footer__right {
    display: flex;
    flex-direction: column;
    max-width: 71%;
    width: 100%;
}

.footer__right ul {
    margin: 0;
    padding: 0;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.footer__right ul:nth-child(odd)::after {
    content: '';
    width: 100%;
    height: 1px;
    background: #FFFFFF;
    opacity: 0.1;
    bottom: 0;
}

.footer__right ul li {
    list-style: none;
    margin-bottom: 20px;
    width: 33%;
}

.footer__right ul li a {
    text-decoration: none;
    font-family: 'Avenir', sans-serif;
    font-style: normal;
    font-weight: 300;
    font-size: 17px;
	padding-right: 10px;
    line-height: 1.37;
    font-feature-settings: 'ss09' on;
    color: #FFFFFF;
    -webkit-font-feature-settings: 'ss09' on;
    -moz-font-feature-settings: 'ss09' on;
}

.footer__right-title {
    margin-bottom: 19px;
    width: 100% !important;
}

.footer__right ul .footer__right-title a {
    font-family: 'Futura', sans-serif;
    font-style: normal;
    font-weight: bold;
    font-size: 20px;
    line-height: 1.35;
    font-feature-settings: 'ss09' on, 'salt' on;
    color: #FFFFFF;
    -webkit-font-feature-settings: 'ss09' on, 'salt' on;
    -moz-font-feature-settings: 'ss09' on, 'salt' on;
}

.footer .coopyright {
    width: 100%;
    background: radial-gradient(125.75% 224.4% at 6.64% 125.75%, #3693B0 0%, #1B1E22 50.1%, #1B1E22 100%);
    padding-top: 71px;
    padding-bottom: 24px;
    font-family: 'Avenir', sans-serif;
    font-style: normal;
    font-weight: 300;
    font-size: 16px;
    line-height: 1.37;
    font-feature-settings: 'ss09' on;
    color: #FFFFFF;
    -webkit-font-feature-settings: 'ss09' on;
    -moz-font-feature-settings: 'ss09' on;
}


/* /////////////////////////////////// */

.singleProduct {
    padding-top: 88px;
}

.singleProduct .title {
    font-family: 'Futura', sans-serif;
    font-style: normal;
    font-weight: bold;
    font-size: 42px;
    line-height: 1.33;
    font-feature-settings: 'ss09' on, 'salt' on;
    color: #1C1F23;
    -webkit-font-feature-settings: 'ss09' on, 'salt' on;
    -moz-font-feature-settings: 'ss09' on, 'salt' on;
    margin: 0;
    margin-bottom: 67px;
}

.singleProduct__content {
    display: grid;
    grid-template-areas: 
		'left right right right'
		'attention attention attention attention';		
}

.singleProduct__content-img {
    max-width: 274px;
    width: 100%;
    margin-bottom: 35px;
}

.singleProduct__content-img img {
    width: 100%;
    display: block;
}

.singleProduct__content-left {
	grid-area: left;
}

.singleProduct__content-right {
	padding-left: 50px;
    grid-area: right;
}
.singleProduct__banner {
	max-width: 300px;
}
.singleProduct__banner img{
   max-width: 100%;
}
.singleProduct__content-right p {
    font-family: 'Avenir', sans-serif;
    font-style: normal;
    font-weight: 300;
    font-size: 16px;
    line-height: 1.37;
    font-feature-settings: 'ss09' on;
    color: #1C1F23;
    -webkit-font-feature-settings: 'ss09' on;
    -moz-font-feature-settings: 'ss09' on;
}

.singleProduct__content-right p b {
    font-weight: bold;
}

.singleProduct__ATTENTION {
	grid-area: attention;
    background: #FFFFFF;
    border: 1px solid rgba(28, 31, 35, 0.1);
    box-sizing: border-box;
    border-radius: 8px;
    padding: 55px 50px 55px 64px;
    width: 100%;
    margin-top: 55px;
}

@media(max-width:990px){
.singleProduct__content {
    display: grid;
    grid-template-areas: 
		'left'
		'right'
		'attention';		
}
	.singleProduct__content-left {
		margin: 0 auto;
	}
	.Firmware__item-buttons_dropdown a{
	margin: 0 auto;
}
}

.Firmware__item-buttons_dropdown{
	margin-bottom: 50px;
}



.singleProduct__ATTENTION-title {
    font-family: 'Avenir', sans-serif;
    font-style: normal;
    font-weight: 300;
    font-size: 20px;
    line-height: 1.4;
    font-feature-settings: 'ss09' on;
    -webkit-font-feature-settings: 'ss09' on;
    -moz-font-feature-settings: 'ss09' on;
    margin: 0;
    margin-bottom: 10px;
}

.singleProduct__ATTENTION-title span {
    font-weight: 800;
    color: #358DA9;
}

.singleProduct__ATTENTION-title p {
    font-family: 'Avenir', sans-serif;
    font-style: normal;
    font-weight: 300;
    font-size: 20px;
    line-height: 1.4;
    font-feature-settings: 'ss09' on;
    -webkit-font-feature-settings: 'ss09' on;
    -moz-font-feature-settings: 'ss09' on;
}


/* //////////////// */

.singleProduct__other {
    margin-top: 151px;
    padding-bottom: 115px;
}

.singleProduct__other-title {
    font-family: 'Futura', sans-serif;
    font-style: normal;
    font-weight: bold;
    font-size: 42px;
    line-height: 1.33;
    font-feature-settings: 'ss09' on, 'salt' on;
    color: #1C1F23;
    -webkit-font-feature-settings: 'ss09' on, 'salt' on;
    -moz-font-feature-settings: 'ss09' on, 'salt' on;
    margin-bottom: 22px;
}

.singleProduct__other-list .slick-dots {
    font-size: 0;
    width: 100%;
    text-align: center;
    padding: 0;
    margin-top: 44px;
}

.singleProduct__other-list .slick-dots li {
    list-style: none;
    display: inline;
    margin-right: 13px;
}

.singleProduct__other-list .slick-dots li:last-child {
    margin: 0;
}

.singleProduct__other-list .slick-dots button {
    background: none;
    border: none;
    width: 16px;
    height: 16px;
    background: #1C1F23;
    opacity: 0.2;
    border-radius: 100px;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    -ms-border-radius: 100px;
    -o-border-radius: 100px;
}

.singleProduct__other-list .slick-dots .slick-active button {
    opacity: 1;
}

.singleProduct__other-item {
    background: #FFFFFF;
    border: 1px solid rgba(28, 31, 35, 0.1);
    box-sizing: border-box;
    border-radius: 8px;
    padding: 12px;
    padding-top: 0;
    max-width: 200px;
    width: 100%;
    margin: 0 15px;
}

.singleProduct__other-item a {
    text-decoration: none;
}

.singleProduct__other-item img {
    display: block;
    margin: 0 auto;
    max-width: 134px;
    width: 100%;
}

.singleProduct__other-item p {
    font-family: 'Futura', sans-serif;
    font-style: normal;
    font-weight: bold;
    font-size: 14px;
    line-height: 1.35;
    color: #000000;
}

@media (max-width:1200px) {
    .Firmware__item-content {
        padding: 0 10px;
    }
    .dropbtn p {
        width: 115px;
    }
}

@media (max-width:768px) {
    .header .header__menu {
        display: none;
    }
    .header .menu-item-has-children {
        margin-right: 50px;
    }
    .mainBlock {
        padding-top: 48px;
        padding-bottom: 45px;
    }
    .mainBlock h1 {
        font-size: 36px;
        margin-bottom: 31px;
    }
    .container {
        padding: 0 79px;
    }
    .mainBlock a {
        margin-top: 31px;
    }
    .Advantages {
        
        padding-bottom: 75px;
    }
    .Advantages .title {
        font-size: 36px;
        margin-bottom: 20px;
    }
    .Advantages .subtitle {
        margin-bottom: 29px;
    }
    .Advantages__list {
        grid-template-columns: repeat(2, 1fr);
    }
    .Firmware {
        padding-top: 0;
        padding-bottom: 99px;
    }
    .Firmware .title {
        font-size: 36px;
        margin-bottom: 47px;
        max-width: 608px;
    }
    .Firmware .description {
        margin-bottom: 20px;
    }
    .Firmware__list {
        grid-template-columns: repeat(1, 1fr);
        grid-gap: 20px;
    }
    .Firmware__item-content_img img {
        max-width: 88px;
        width: 100%;
    }
    .dropbtn p {
        width: 170px;
    }
    .Firmware__item-buttons {
        margin-bottom: 33px;
        grid-gap: 20px;
    }
    .feedback {
        padding-top: 52px;
        padding-bottom: 91px;
    }
    .feedback .title {
        font-size: 36px;
        margin-bottom: 23px;
    }
    .feedback .subtitle {
        margin-bottom: 26px;
    }
    .footer .container {
        flex-direction: column;
    }
    .footer__left li {
        margin-bottom: 15px;
    }
    .footer__left li a {
        font-size: 16px;
    }
    .footer__left {
        max-width: 100%;
        margin-bottom: 65px;
    }
    .footer__right {
        max-width: 100%;
    }
    .footer__right ul .footer__right-title a {
        font-size: 16px;
        margin-bottom: 29px;
    }
    .footer__right ul {
        margin-bottom: 74px;
    }
    .footer__right ul li a {
        font-size: 14px;
    }
    .footer__right ul:nth-child(odd)::after {
        content: none;
    }
    .footer .coopyright {
        padding-top: 25px;
    }
    .dropbtn-one p {
        width: 216px;
    }
    .menu__list-left li a,
    .menu__lang {
        font-size: 28px;
    }
    .menu__list {
        align-items: flex-start;
    }
    .singleProduct {
        padding-top: 54px;
    }
    .singleProduct .title {
        margin-bottom: 28px;
    }
    .singleProduct__content-img img {
        max-width: 216px;
        width: 100%;
    }
    .singleProduct__content-left {
        order: 1;
    }
    .singleProduct__ATTENTION {
        order: 2;
        margin: 0;
        padding: 26px 25px 33px 39px;
        margin-bottom: 60px;
    }
    .singleProduct__content-right {
        order: 3;
    }
    .singleProduct__ATTENTION-title {
        font-size: 16px;
    }
    .singleProduct__other {
        margin-top: 99px;
        padding-bottom: 81px;
    }
    .singleProduct__other .container {
        padding: 0 !important;
    }
    .singleProduct__other-title {
        padding: 0 72px;
        margin-bottom: 57px;
        margin-top: 0;
    }
}

@media (max-width:600px) {
    .Firmware__item-content_img img {
        max-width: 100%;
        width: 100%;
    }
    .Firmware__item-content {
        flex-direction: column;
    }
    .Firmware__item-buttons {
        grid-template-columns: repeat(1, 1fr);
    }
    .menu__list {
        padding: 0 30px;
        padding-top: 20vh
    }
    .menu__lang {
        padding: 0 30px;
    }
    .menu__list-left li a,
    .menu__lang {
        font-size: 20px;
    }
    .menu__list-right li a {
        font-family: 'Futura', sans-serif;
        font-style: normal;
        font-weight: bold;
        font-size: 16px;
    }
    .container {
        padding: 0 30px;
    }
    .Advantages__list {
        grid-template-columns: repeat(1, 1fr);
    }
}

@media (max-width:400px) {
    .menu__list {
        padding: 0 15px;
        padding-top: 20vh;
    }
    .menu__lang {
        padding: 0 15px;
    }
}

.wpcf7-response-output {
    max-width: 50%;
    margin: 0 auto !important;
}


.skiptranslate{
	display:none !important;
}

.blog__title{
	    text-align: center;
    margin-bottom: 50px;
}

.blog__list{
	display:grid;
	grid-template-columns: repeat(3,1fr);
	grid-gap:20px;
}

.blog__item__wrapper {
    background-color: white;
    min-height: 490px;
    border-radius: 4px; 
    -webkit-filter: drop-shadow(0px 0px 15px rgba(2, 70, 129, 0.15));
    filter: drop-shadow(0px 0px 15px rgba(2, 70, 129, 0.15));
    display: flex;
    flex-direction: column;
    height: 100%;
}

.blog__item__img-wrapprer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    max-width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.blog__item__img-wrapprer img {
    width: 100%;
	height: auto;
	max-width:300px;
    border-radius: 4px 4px 0px 0px;
}

.blog__item__tittle {
    padding-top: 30px;
    padding-left: 30px;
    padding-bottom: 18px;
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 24px;
}

.blog__item__wrapper .blog__item__tittle {
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 24px;
    color: #333333;
}

.blog__item__excerpt {
    padding-left: 30px;
    padding-right: 30px;
    padding-bottom: 21px;
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 21px;
    color: #333333;
    mix-blend-mode: normal;
    opacity: 0.8;
    height: auto;
}

.blog__item__btn {
    font-family: "Avenir", sans-serif;
    font-style: normal;
    font-weight: 900;
    font-size: 16px;
    line-height: 1.37;
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
    font-feature-settings: 'ss09' on;
    color: #FFFFFF;
    background: #358DA9;
    border-radius: 8px;
    width: 269px;
    height: 56px;
    text-decoration: none;
    -webkit-font-feature-settings: 'ss09' on;
    -moz-font-feature-settings: 'ss09' on;
    transition: .3s;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -ms-transition: .3s;
    -o-transition: .3s;
    margin-left: auto;
    margin-right: 20px;
    margin-bottom: 20px;
}
.blog{
	padding-bottom:50px;
}

@media(max-width:990px){
	.blog__list{
	grid-template-columns: repeat(2,1fr);
}
}

@media(max-width:700px){
	.blog__list{
	grid-template-columns: repeat(1,1fr);
}
}

.Firmware__item-content_img img {
 max-width: 150px;	
	margin-left: 25px;
}

.container strong {
	font-weight: bold;
}
ul li, ol li {
	margin-bottom: 5px;
}
.p-main {
	color: white;
	font-size: 17px;
}
.single_blog {
	padding-bottom: 50px;
}
.single_blog ul {
	margin-top: 12px;
	margin-bottom: 12px;
}
.single_blog img {
	margin: 10px 0;
}
.single_blog h1 {
	margin-bottom: 35px;
}
.posts-box {
	display: flex;
	gap: 15px;
	flex-wrap: wrap;
}
.post-box a{
text-decoration: none;

}
.post-box__image {
	margin-bottom: 15px;
}
.post-box__title {
	font-weight: bold;
	color: black;
	margin-top: 15px;
}

.breadcrumb {
	list-style: none;
	padding: 0;
}
.breadcrumb li {
	display: inline-block;
	
}
.breadcrumb li a{
	text-decoration: none;
	color: gray;
	font-size: 13px;
}
.breadcrumb span{
	color: gray;
	font-size: 13px;
}
.breadcrumb > li + li:before {
	content: "-";
    font-size: 15px;
    padding: 0 3px;
    color: #888888 !important;
    line-height: 13px;
}
.content-box {
	display: grid;
	margin: 0 auto;
	grid-template-areas: "content sidebar";
	grid-template-columns: 1fr 30%;
	max-width: 1200px;
}
.content {
	grid-area: content;
}
.sidebar {
	grid-area: sidebar;
}
.thumbnail-box {
	
}
.thumbnail-box img{
	max-width: 100%;
}
.main-wrapper {
	color: white;
	max-width: 700px;
}
.alignleft {
	float: left;
}
.alignright {
	float: right;
}
.banner-block {
	margin-bottom: 50px;
}
.banner-block img{
	margin: 0 auto;
	display:block;
}