@import '../resources/sanitize.css';

/* Regulile mele adăugate la sanitize.css */
html {
    height: 100%;
}

body {
    min-height: 100%;
    position: relative;
}

html,
body,
input,
select,
textarea {
    font-family: "Rubik", sans-serif;
    font-optical-sizing: auto;
}

.group:before,
.group:after {
    content: "";
    display: table;
}

.group:after {
    clear: both;
}

.group {
    zoom: 1;
    /* For IE 6/7 (trigger hasLayout) */
}

input[type=search] {
    -moz-appearance: none;
    -webkit-appearance: none;
}

input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
    display: none;
}

input:focus,
textarea:focus,
a:focus,
button:focus {
    outline: none;
}

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

/* Alte clase speciale */

/* subliniere text fără a tăia literele în partea de jos*/
.pretty-text-underline {
    display: inline;
    /*text-shadow: 1px 1px #f5f6f9, -1px 1px #f5f6f9, -1px -1px #f5f6f9, 1px -1px #f5f6f9;*/
    background-image: linear-gradient(90deg, currentColor 100%, transparent 100%);
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: 100% 1px;
}

.pretty-text-underline::-moz-selection {
    background-color: rgba(0, 150, 255, 0.3);
    text-shadow: none;
}

.pretty-text-underline::selection {
    background-color: rgba(0, 150, 255, 0.3);
    text-shadow: none;
}

.strikethrough {
    position: relative;
}

.strikethrough:before {
    position: absolute;
    content: "";
    left: 0;
    top: 50%;
    right: 0;
    border-top: 1px solid;
    border-color: inherit;

    -webkit-transform: rotate(-10deg);
    -moz-transform: rotate(-10deg);
    -ms-transform: rotate(-10deg);
    -o-transform: rotate(-10deg);
    transform: rotate(-10deg);
}

/* switch toggle*/
.switch {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 20px;
    background-color: rgba(0, 0, 0, 0.25);
    border-radius: 20px;
    transition: all 0.3s;
}

.switch::after {
    content: '';
    position: absolute;
    width: 18px;
    height: 18px;
    border-radius: 18px;
    background-color: white;
    top: 1px;
    left: 1px;
    transition: all 0.3s;
}

input[type='checkbox']:checked+.switch::after {
    transform: translateX(20px);
}

input[type='checkbox']:checked+.switch {
    background-color: #7983ff;
}

.offscreen {
    position: absolute;
    left: -9999px;
}

/* Truncate text dacă e mai lung de o linie. Valabil DOAR PENTRU O LINIE */
.truncate-text {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    width: 200px;
}

/* Donut spinner */
@keyframes donut-spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.donut {
    display: inline-block;
    border: 7px solid rgba(0, 0, 0, 0.1);
    border-left-color: #54BA48;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: donut-spin 1.2s linear infinite;
}



/* Regulile de bază IOAN */
input[type='text'],
input[type='email'],
input[type='tel'],
input[type='password'],
select,
textarea {}

.wrapper {
    margin-left: auto;
    margin-right: auto;
    width: 95%;
    text-align: center;
}

.svgicon {
    display: inline-block;
    width: 1em;
    height: 1em;
    stroke-width: 0;
    stroke: currentColor;
    fill: currentColor;
}

.error {
    display: none;
    text-align: center;
    color: #ff0000;
    font-size: 1rem;
    line-height: 1.4;
    font-weight: normal;
}

.info {
    display: none;
    color: #3D9833;
    text-align: center;
    font-size: 1rem;
    line-height: 1.4;
    font-weight: normal;
}

.infomes {
    display: none;
    color: #3D9833;
    text-align: center;
    font-size: 1rem;
    line-height: 1.4;
    font-weight: normal;
}

.infomes.error {
    color: #ff0000;
}

.loader {
    display: none;
    font-size: 3rem;
    line-height: 1;
    color: #ccc;
}

.splash {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: url('../media/bg-black-60.png');
    z-index: 900;
}

.splash-box {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background: #fff;
    padding: 2rem;
    max-width: 95%;
    text-align: center;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    width: 100%;
}

.splash-close {
    position: absolute;
    bottom: 0;
    left: 50%;
    z-index: 910;
    -webkit-transform: translate(-50%, 50%);
    -ms-transform: translate(-50%, 50%);
    transform: translate(-50%, 50%);
    background: #ffffff;
    border: 0;
    padding: 0;
    margin: 0;
    color: #54BA48;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    width: 4rem;
    height: 4rem;
    cursor: pointer;
}

.splash-close>.svgicon {
    height: 100%;
    max-width: 100%;
    width: 60%;
    display: inline-block;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.ht {
    display: none !important;
}

.menu-item {
    list-style: none;
    padding: 0;
    margin: 0;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
}

.menu-item li.menu-has-child {
    position: relative;
}

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

.menu-item a .svgicon {
    display: inline-block;
    margin-right: 0.5rem;
    height: 1.5rem;
    width: 1.5rem;
}

.menu-item .menu-has-icon a {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
}


.buton1 {
    background: #3363AE;
    color: #fff;
    font-size: 1rem;
    line-height: 1.2;
    font-weight: 500;
    text-decoration: none;
    padding: 1rem 0;
    cursor: pointer;
    display: block;
    text-align: center;
    width: 100%;
    border: 0;
    margin: 0 auto;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    text-transform: uppercase;
}

.buton1>.svgicon {
    display: inline-block;
    margin-right: 0.5rem;
    color: #fff;
    height: 1.5rem;
    width: 1.5rem;
}

.buton2 {
    color: #000;
    font-size: 0.9rem;
    line-height: 1.2;
    font-weight: normal;
    text-decoration: none;
    background: none;
    padding: 0;
    border: 0;
    cursor: pointer;
    margin: 0;
}

.buton3 {
    background: #fff;
    color: #3363AE;
    font-size: 1rem;
    line-height: 1.2;
    font-weight: 500;
    text-decoration: none;
    padding: 1rem 1rem;
    cursor: pointer;
    display: inline-block;
    text-align: center;
    width: auto;
    border: 2px solid #C8E3FB;
    margin: 0 auto;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    text-transform: uppercase;
}

.buton3 strong {
    font-weight: 500;
    color: #AF2B04;
}

.buttons-area {
    margin-top: 2rem;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.buttons-area-2 {
    margin-top: 1rem;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
}

.buttons-area-2>a {
    display: inline-block;
    margin-left: 1rem;
}

.buttons-area-2>a:first-child {
    margin-left: 0;
}

.form1 fieldset {
    padding: 0;
    margin: 2rem 0 0 0;
    border: 0;
}

.form1 fieldset:first-child {
    margin-top: 0;
}

.form1 input[type='email'],
.form1 input[type='password'],
.form1 input[type='text'],
.form1 input[type='tel'],
.form1 select,
.form1 textarea {
    color: #000;
    background: #fff;
    border: 1px solid #3363AE;
    margin: 0;
    font-size: 0.9rem;
    line-height: 1;
    font-weight: normal;
    padding: 1rem 1.25rem;
    flex-grow: 1;
    flex-shrink: 1;
    min-width: auto;
    max-width: none;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    width: 100%;
}

.form1 textarea {
    resize: none;
    line-height: 1.4;
    height: 100px;
    padding-top: 1rem;
    width: 100%;
}

.form1 input[type='email'].js-mandatory-error,
.form1 input[type='password'].js-mandatory-error,
.form1 input[type='text'].js-mandatory-error,
.form1 input[type='tel'].js-mandatory-error,
.form1 select.js-mandatory-error,
.form1 textarea.js-mandatory-error {
    border-color: #ff0000;
}

.form1 input[type='email'].mxerr,
.form1 input[type='password'].mxerr,
.form1 input[type='text'].mxerr,
.form1 input[type='tel'].mxerr,
.form1 select.mxerr,
.form1 textarea.mxerr {
    border-color: #ff0000;
}

.form1 input[type='email']:focus,
.form1 input[type='password']:focus,
.form1 input[type='text']:focus,
.form1 input[type='tel']:focus,
.form1 select:focus,
.form1 textarea:focus {
    background: #fff;
    border-color: #4AA4F2;
}

.form1 input[type='email']:first-child,
.form1 input[type='password']:first-child,
.form1 input[type='text']:first-child,
.form1 input[type='tel']:first-child,
form1 select:first-child,
form1 textarea:first-child {
    margin-top: 0;
}

.form1 .error,
.form1 .info {
    margin-bottom: 1rem;
    font-size: 0.9rem;
    line-height: 1.4;
    font-weight: normal;
}


.arrow {
    display: inline-block;
    border: solid plum;
    border-width: 0 0 1px 1px;
    width: 1rem;
    height: 1rem;
    background: none;
}

.arrow-up {
    transform: rotate(135deg)
}

.arrow-right {
    transform: rotate(225deg)
}

.arrow-down {
    transform: rotate(-45deg)
}

.arrow-left {
    transform: rotate(45deg)
}


/* BREADCRUMBS ----------------------------------------------------------------------------------- */
.breadcrumbs-wrapper {
    padding: 0;
    margin: 0 0 2rem 0;
    background: #fff;
    display: none;
}

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

/* HEADER ----------------------------------------------------------------------------------- */
.lang_url {
    position: relative;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    margin-top: 0;
}

.lang_url ul {
    list-style: none;
    position: relative;
    display: inline-block;
    padding: 0;
    margin: 0;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
}

.lang_url ul>li {
    border-left: 1px solid #D8D8D8;
}

.lang_url ul>li:first-child {
    border-left: 0;
}

.lang_url ul>li>a {
    display: block;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: normal;
    line-height: 1;
    color: #989898;
    text-transform: uppercase;
    padding: 0.5rem 1rem;
    border: 0;
    white-space: nowrap;
}

.lang_url ul>li.active>a {
    color: #E5E5E5;
}


.stickybar {
    background: #53a646;
    text-align: center;
}

.mobile-menu {
    position: fixed;
    z-index: 800;
    right: 0;
    top: 0;
    -webkit-transform: translate(100%, 0%);
    -ms-transform: translate(100%, 0%);
    transform: translate(100%, 0%);
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    width: 80%;
    height: 100%;
    background: linear-gradient(to right, #008FDB 0%, #00B0BD 100%);
}

.mobile-menu.active {
    -webkit-transform: translate(0%, 0%);
    -ms-transform: translate(0%, 0%);
    transform: translate(0%, 0%);
}

.mobile-menu-content {
    padding: 5rem 2rem 2rem 2rem;
    overflow: auto;
    height: 100%;
}

.mobile-menu li {
    display: block;
    width: 100%;
    margin-top: 0.5rem;
}

.mobile-menu li:first-child {
    margin-top: 0;
}

.mobile-menu li a {
    display: block;
    width: 100%;
    color: #fff;
    padding: 0.5rem 0;
    text-align: left;
    font-size: 1.3rem;
    font-weight: normal;
    line-height: 1.3;
    text-decoration: none;
    text-transform: uppercase;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    letter-spacing: 0.1rem;
}

.mobile-menu li.active a {
    color: #00FFC4;
}

.mobile-menu li.mm-homepage a {
    color: #fff;
}

.mobile-menu li.mm-separated {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #fff;
}

.mobile-menu li.mm-normal a {
    font-weight: normal;
    text-transform: none;
    font-size: 1.1rem;
    line-height: 1;
}

.mobile-menu li ul li a {
    color: #ffffff;
    padding: 0.5rem 0 0.5rem 1rem;
    text-transform: none;
    border-color: #91d196;
    font-size: 1.1rem;
    line-height: 1.3;
}

.mobile-menu li ul li ul li a {
    color: #ffffff;
    padding: 0.5rem 0 0.5rem 2rem;
}

.mobile-menu li ul li ul li ul li a {
    color: #ffffff;
    padding: 0.5rem 0 0.5rem 3rem;
}

.mobile-menu li ul li ul li ul li ul li a {
    color: #ffffff;
    padding: 0.5rem 0 0.5rem 4rem;
}

.mobile-menu li:first-child a {
    border-top: 0;
}

.second-mobile-menu {
    margin-top: 2rem;
}

.second-mobile-menu li {
    margin-top: 0;
}

.second-mobile-menu li a {
    text-transform: none;
    letter-spacing: normal;
    font-size: 1rem;
    line-height: 1.3;
}

.mobile-menu-button-close {
    background: none;
    padding: 0;
    color: #fff;
    border: 0;
    cursor: pointer;
    line-height: 1;
    margin: 0;
    height: 2rem;
    width: 2rem;
    position: absolute;
    right: 1.5rem;
    top: 1.5rem;
}

.mobile-menu-button-close .svgicon {
    height: 100%;
    width: 100%;
}

.mobile-menu-button {
    background: none;
    padding: 0;
    color: #fff;
    border: 0;
    cursor: pointer;
    line-height: 1;
    margin: 0 0 0 0.5rem;
    height: 3.2rem;
    width: 3.2rem;
    flex-shrink: 0;
    position: fixed;
    right: 0.5rem;
    top: 0.5rem;
    z-index: 80;
}

.mobile-menu-button .svgicon {
    height: 100%;
    width: 60%;
}

.mobile-menu li>ul {
    padding: 0 0 0 0;
    display: none;
    margin-bottom: 1rem;
}

.mobile-menu li.menu-has-child>a {
    padding-right: 2rem;
}


/* FOOTER ----------------------------------------------------------------------------------- */
.main-footer {
    margin-top: 5rem;
}

.footer-line {
    text-align: center;
    margin-top: 1.5rem;
}

.footer-line:first-child {
    margin-top: 0;
}

.footer-line-row {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.footer-coperta-line {
    margin-top: 2rem;
    padding-bottom: 2rem;
}

.footermenu {
    margin-top: 1rem;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
}

.footermenu>li {
    position: relative;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    margin: 0.25rem;
    padding-left: 0.5rem;
    border-left: 1px solid rgba(255, 255, 255, .2);
}

.footermenu>li:first-child {
    margin-left: 0;
    padding-left: 0;
    border-left: 0;
}

.footermenu>li>a {
    padding: 0.25rem;
    display: block;
    font-size: 0.9rem;
    line-height: 1;
    color: rgba(255, 255, 255, .8);
}

.footermenu+.footermenu {
    margin-top: 1rem;
}

.fl-certificari-wrapper {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.fl-certificari-wrapper>img {
    margin-left: 1rem;
    height: 60px;
    width: auto;
}

.fl-certificari-wrapper>img:first-child {
    margin-left: 0;
}

.cookies-disclaimer {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 0;
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 1.5rem;
    background: url('../media/bg-black-60.png');
    font-size: 0.9rem;
    line-height: 1.3;
    font-weight: normal;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
    z-index: 101;
}

.cookies-disclaimer.invisible {
    -webkit-transform: translate(0%, 100%);
    -ms-transform: translate(0%, 100%);
    transform: translate(0%, 100%);
    bottom: 0;
}

.cookies-disclaimer-more {
    text-decoration: none;
    font-size: 0.85rem;
    line-height: 1.5;
    text-align: center;
    color: #000;
    color: #fff;
    text-align: center;
    width: 100%;
}

.cookies-agree {
    font-size: 0.9rem;
    line-height: 1.1;
    font-weight: normal;
    text-align: center;
    text-transform: uppercase;
    background: #C8E3FB;
    color: #3363AE;
    display: block;
    margin: 0.75rem 0 0 0;
    padding: 1rem;
    border: 0;
    width: 100%;
    cursor: pointer;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
}

.cookies-agree.inactive {
    visibility: hidden;
}

.coperta {
    display: inline-block;
    text-align: center;
}

.coperta>a {
    text-decoration: none;
    position: relative;
    text-align: center;
    display: block;
}

.coperta .svgicon {
    width: 4.5rem;
    height: 4.5rem;
    display: inline-block;
}

.coperta-web-studio {
    color: #fff;
    font-size: 80%;
    position: absolute;
    white-space: nowrap;
    top: 0.5rem;
    left: 50%;
    margin-left: 1.5rem;
}

.coperta-web-studio-engine {
    color: #bccbd3;
    font-size: 80%;
    margin: 0 0 0;
    display: inline-block;
    font-weight: normal;
    text-decoration: none;
}


/* SEARCH BAR ----------------------------------------------------------------------------------- */
.searchbar {
    padding: 1.5rem 0;
    background: #2f2f30;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 300;
    -webkit-transform: translate(0%, -100%);
    -ms-transform: translate(0%, -100%);
    transform: translate(0%, -100%);
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.searchbar.active {
    -webkit-transform: translate(0%, 0%);
    -ms-transform: translate(0%, 0%);
    transform: translate(0%, 0%);
}

.searchbar .infomes {
    margin-top: 1rem;
}

.searchform-wrapper {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    background: #fff;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    height: 3.2rem;
    padding-left: 1rem;
}

.searchkey {
    flex-grow: 1;
    flex-shrink: 1;
    line-height: 3.2rem;
    padding: 0;
    border: 0;
    margin: 0;
    text-align: left;
    background: none;
    color: #000;
    font-size: 0.9rem;
    font-weight: normal;
    width: 200px;
}

.searchbutton {
    padding: 0;
    padding: 0;
    margin: 0;
    background: none;
    cursor: pointer;
    border: 0;
    color: #fff;
    background: #49A4F2;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    height: 3.2rem;
    width: 3.2rem;
    display: block;
    flex-grow: 0;
    flex-shrink: 0;
}

.searchbutton>.svgicon {
    height: 100%;
    width: 1.5rem;
}

.search-form {
    position: relative;
}

.search-form .infomes {
    position: absolute;
    right: 0;
    top: -0.5rem;
    padding: 0.75rem;
    background: #ff0000;
    color: #fff;
    font-size: 1rem;
    line-height: 1;
    -webkit-transform: translate(0%, -100%);
    -ms-transform: translate(0%, -100%);
    transform: translate(0%, -100%);
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
}



/* STATIC PAGE ------------------------------------------------------------------------------------------ */
.cnt {
    display: block;
    margin: 2rem auto 0 auto;
    padding: 0 1rem;
}

.cnt p {
    margin: 1rem 0 0 0;
    padding: 0;
    text-align: justify;
    font-size: 0.9rem;
    line-height: 1.4;
    font-weight: normal;
    color: #fff;
}

.cnt p:first-child {
    margin-top: 0;
}

.cnt ul,
.cnt ol {
    margin: 1rem 0 0 1rem;
    padding: 0;
}

.cnt ul {
    list-style: disc;
}

.cnt ul li,
.cnt ol li {
    margin-top: 0.25rem;
    text-align: left;
    font-size: 0.9rem;
    line-height: 1.4;
    font-weight: normal;
    color: #fff;
}

.cnt ul li:first-child,
.cnt ol li:first-child {
    margin-top: 0;
}

.cnt ul li p:first-child,
.cnt ol li p:first-child {
    margin-top: 0;
}

.cnt a {
    text-decoration: none;
    color: #F89E0D;
}

.cnt h2,
.cnt h3,
.cnt h4,
.cnt h5,
.cnt h6 {
    font-weight: normal;
    color: #fff;
    text-align: left;
    margin: 1.5rem 0 0 0;
    padding: 0;
}

.cnt h2:first-child,
.cnt h3:first-child,
.cnt h4:first-child,
.cnt h5:first-child,
.cnt h5:first-child {
    margin-top: 0;
}

.cnt h2 {
    font-size: 1.3rem;
    line-height: 1.4;
    color: #fff;
}

.cnt h3 {
    font-size: 1.1rem;
    line-height: 1.4;
    color: #fff;
}

.cnt h4,
.cnt h5,
.cnt h6 {
    font-size: 1.1rem;
    line-height: 1.4;
    color: #fff;
}

.cnt b,
.cnt strong {
    font-weight: 500;
    color: #00FFC4;
}


/* CONTACT ------------------------------------------------------------------------------------------ */
.contact-wrapper {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.contact-line {
    margin: 2rem 0 0 0;
    flex-grow: 1;
}

.contact-line:first-child {
    margin-top: 0;
}

.contact-item {
    width: 100%;
    text-align: center;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #ccc;
}

.contact-item:first-child {
    margin-top: 0;
    padding-top: 0;
    border-top: 0;
}

.contact-item p {
    text-align: center;
    font-weight: normal;
    font-size: 0.9rem;
    line-height: 1.4;
    padding: 0;
    margin: 0.5rem 0 0 0;
}

.contact-item p:first-child {
    margin-top: 0;
}

.contact-item a {
    text-decoration: none;
    color: #54BA48;
}

.contact-item strong,
.contact-item b {
    font-weight: 500;
    color: #49A4F2;
}

.contact-item h2,
.contact-item h3,
.contact-item h4,
.contact-item h5,
.contact-item h5 {
    text-align: center;
    font-weight: 500;
    font-size: 1.3rem;
    line-height: 1;
    margin: 0 0 1.5rem 0;
    color: #3363AE;
    padding: 0;
}

.contact-item h2 {
    font-size: 1.5rem;
    text-transform: uppercase;
    line-height: 1.3;
}

.contact-line:nth-child(2) {
    padding: 2rem 2rem;
    background: #F3F9FD;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
}

.map {
    width: 100%;
    height: 400px;
    background-color: #ccc;
    margin-top: 3rem;
}



.flex_sb {
    justify-content: space-between !important;
}

.spin {
    -webkit-animation-name: spin;
    -webkit-animation-duration: 1500ms;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    -moz-animation-name: spin;
    -moz-animation-duration: 1500ms;
    -moz-animation-iteration-count: infinite;
    -moz-animation-timing-function: linear;
    -ms-animation-name: spin;
    -ms-animation-duration: 1500ms;
    -ms-animation-iteration-count: infinite;
    -ms-animation-timing-function: linear;

    animation-name: spin;
    animation-duration: 1500ms;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

@-ms-keyframes spin {
    from {
        -ms-transform: rotate(0deg);
    }

    to {
        -ms-transform: rotate(360deg);
    }
}

@-moz-keyframes spin {
    from {
        -moz-transform: rotate(0deg);
    }

    to {
        -moz-transform: rotate(360deg);
    }
}

@-webkit-keyframes spin {
    from {
        -webkit-transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}


.select-branch-wrapper {
    width: 60%;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
}

.select-branch-group {
    flex-grow: 1;
}

.form1-row {
    margin-top: 0.5rem;
}

.form1-row:first-child {
    margin-top: 0;
}

.form1-row-inline {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: flex-start;

}

.form1-row-item {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: flex-start;
    flex-grow: 1;
    margin: 0.5rem 0 0 0;
}

.form1-row-item:first-child {
    margin-top: 0;
}


.form1-row-item-element {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: flex-start;
    flex-grow: 1;
}

.form1-row-item>label {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    line-height: 1.4;
    font-weight: normal;
    color: #000;
    text-align: center;
}

.form1-row-item>label.mandatory {
    color: #000;
}

.form1-row-item>label a {
    text-decoration: none;
    color: #54BA48;
}

.form1-row-column {
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;
}

.form1-row-column>* {
    width: 100%;
    margin-top: 0.5rem !important;
}

.form1-row-column>*:first-child {
    margin-top: 0 !important;
}

.form1-row-inline>.form1-row-item:nth-child(odd) {
    margin-left: 0;
}

.anpc {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.anpc>a {
    margin: 0 0 0 1rem;
    text-decoration: none;
    display: inline-block;
    flex-grow: 1;
    flex-shrink: 1;
    max-width: calc((100% - 1rem) / 2);
}

.anpc>a:first-child {
    margin-left: 0;
}

.anpc>a>img {
    display: block;
    height: auto;
    width: 100%;
}

.payment-logos+.anpc {
    margin-top: 0.5rem;
}

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

.payment-logos>li {
    margin-left: 1rem;
    display: inline-block;
    height: 4rem;
}

.payment-logos>li:first-child {
    margin-left: 0;
}

.payment-logos>li .svgicon {
    height: 100%;
}

.icon-mastercard {
    width: 3rem;
}

.icon-visa {
    width: 4rem;
}

.gotop {
    background: none;
    margin: 0;
    padding: 0;
    color: #fff;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    text-align: center;
    width: 54px;
    height: 54px;
    position: relative;
    cursor: pointer;
    border: 2px solid #fff;
    text-transform: uppercase;
    font-size: 0.8rem;
    line-height: 1;
    font-weight: normal;
    position: fixed;
    right: 0;
    bottom: 1rem;
    z-index: 200;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
    -webkit-transform: translate(100%, 0%);
    -ms-transform: translate(100%, 0%);
    transform: translate(100%, 0%);
}

.gotop>.svgicon {
    height: 100%;
    width: 50%;
}

.gotop.active {
    -webkit-transform: translate(0%, 0%);
    -ms-transform: translate(0%, 0%);
    transform: translate(0%, 0%);
    right: 0.5rem;
}

.menubar {
    position: sticky;
    top: -1px;
    z-index: 90;
}

.menubar-wrapper-parent {
    background: #3363AE;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}

.menubar-wrapper {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    position: relative;
    width: auto;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}

.menubar-left {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    flex-grow: 1;
    margin-right: 0.5rem;
}

.menubar-right {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: stretch;
}

.menubar-item {
    margin-left: 0.5rem;
}

.menubar-item:first-child {
    margin-left: 0;
}

.menu-open-children {
    position: absolute;
    cursor: pointer;
    background: none;
    padding: 1.2;
    margin: 0;
    border: 0;
    right: 0;
    top: 0;
}

.menu-open-children::after {
    content: '▾';
    display: block;
    position: absolute;
    right: 0rem;
    top: 0.5rem;
    color: #fff;
    font-size: 1.2rem;
}

.isopen>.menu-open-children::after {
    -moz-transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

.mainmenu .menu-open-children {
    display: none;
}

.topbar {
    padding: 1rem 0 1rem 0;
}

.topbar-wrapper {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
}

.topbar-left {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    padding-right: 3.2rem;
}

.topbar-right {
    /*display: none;*/
    padding-right: 4rem;
}

.topbar-right-group {
    margin-left: 1.5rem;
}

.topbar-right-group:first-child {
    margin-left: 0;
}

.search-trigger {
    padding: 0;
    margin: 0;
    background: none;
    cursor: pointer;
    border: 0;
    color: #fff;
    background: #49A4F2;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    height: 3.2rem;
    width: 3.2rem;
}

.search-trigger>.svgicon {
    width: 1.25rem;
    height: 1.5rem;
}

.topmenu {
    margin-top: 0;
}

.topmenu>li {
    margin-left: 1rem;
    border-left: 1px solid #D8D8D8;
    padding-left: 1rem;
}

.topmenu>li:first-child {
    margin-left: 0;
    padding-left: 0;
    border-left: 0;
}

.topmenu a {
    color: #989898;
    font-size: 0.9rem;
    line-height: 1;
    font-weight: normal;
    white-space: nowrap;
    text-decoration: none;
    padding: 0.25rem 0.25rem;
    display: block;
}

.topmenu a .svgicon {
    color: #ccc;
    width: 1.8rem;
    height: 1.8rem;
}

.topmenu .iconbut a {
    border: 1px solid #ccc;
    padding: 0.75rem 1rem;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    border-radius: 50px;
}

.social {
    list-style: none;
    margin: 0;
    padding: 0;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
}

.social>li {
    margin-left: 0.75rem;
}

.social>li:first-child {
    margin-left: 0;
}

.social>li>a {
    text-decoration: none;
    display: block;
    width: 2.7rem;
    height: 2.7rem;
    line-height: 1;
    color: #fff;
    border: 1px solid #4AA4F2;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    text-align: center;
}

.social>li>a>.svgicon {
    height: 100%;
    width: 50%;
}

.logo {
    text-decoration: none;
    display: inline-block;
}

.logo>img {
    display: block;
    border: 0;
    width: auto;
    height: 70px;
}

body {
    background: #0508B9;
}

.home-section {
    background: #0508B9;
    padding-top: 1.25rem;
    padding-bottom: 3rem;
    min-height: calc(100vh + 1px);
}

.maintitle {
    margin: 0;
    padding: 0 0 0.75rem 1rem;
    text-align: left;
    color: #fff;
    font-weight: normal;
    font-size: 1.5rem;
    line-height: 1.4;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    border-bottom: 1px solid rgba(255, 255, 255, .3);
}

.getorderz {
    margin: 0;
    padding: 0;
    display: inline-block;
    font-weight: 500;
    font-size: 1.6rem;
    line-height: 1;
    white-space: nowrap;
    text-transform: uppercase;
    color: #00FFC4;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
}

.getorderz strong {
    color: #fff;
    font-weight: normal;
    padding: 0.5rem;
    border: 2px solid #fff;
    -webkit-border-bottom-left-radius: 1rem;
    -moz-border-radius-bottomleft: 1rem;
    border-bottom-left-radius: 1rem;
    margin-left: 0.5rem;
}

.getorderz .svgicon {
    color: #F89E0D;
    height: 2.7rem;
    width: 2.7rem;
}

.intro {
    background: linear-gradient(to bottom, #0508b9 0%, #000684 100%);
    min-height: 100vh;
}

.intro h1 {
    text-align: center;
    font-size: 1.3rem;
    line-height: 1.3;
    font-weight: normal;
    color: #fff;
    margin: 0;
    padding: 0;
}

.intro h2 {
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.3;
    font-weight: normal;
    color: #fff;
    margin: 0;
    padding: 0 1rem 0 1rem;
}

.intro h1 strong,
.intro h2 strong {
    color: #F89D0F;
    font-weight: normal;
}

.intro .getorderz {
    margin-bottom: 2rem;
}

.intro h1 {
    margin-bottom: 0.25rem;
}

.intro .boxes {
    margin-top: 1.5rem;
}

.features {
    background: linear-gradient(to bottom, #7E0195 0%, #01A107 100%);
}

.benefits {
    background: linear-gradient(to bottom, #0087A0 0%, #7E0195 100%);
}

.benefits .fitems li {
    font-size: 1rem;
    line-height: 1.6;
}

.pricing {
    background: linear-gradient(to bottom, #01A107 0%, #0508b9 100%);
}

.pricing .boxes {
    margin-top: 1.5rem;
}

.clients {
    background: linear-gradient(to bottom, #000684 0%, #0087A0 100%);
}

.contact {
    background: linear-gradient(to bottom, #0508b9 0%, #000684 100%);
    padding-bottom: 0;
}

.contact>.wrapper {
    padding-left: 1rem;
    padding-right: 1rem;
}


.boxes {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    padding-left: 1rem;
    padding-right: 1rem;
}

.box {
    position: relative;
    width: 100%;
    margin: 0;
    padding-top: 1rem;
}

.box:first-child {
    padding-top: 0;
}

.box.box-second {
    padding-bottom: 1rem;
}

.box-title {
    font-size: 1.3rem;
    line-height: 1;
    white-space: nowrap;
    margin: 0;
    font-weight: 500;
    text-align: center;
    text-transform: uppercase;
    color: #fff;
    background: #008FDB;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
    padding: 1.5rem 1rem;
    position: relative;
    z-index: 10;
}

.box-sep {
    color: #fff;
    height: 3rem;
    width: 3rem;
    position: relative;
    flex-shrink: 0;
    flex-grow: 0;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    font-size: 1.3rem;
    line-height: 1;
    top: 1rem;
}

.pricing .box-sep {}

.box-sep>.svgicon {
    height: 100%;
    width: 50%;
}

.box-sep-circle {
    height: 130%;
    width: 130%;
    border: 2px solid #fff;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 15;
}

.pricing .box-sep {
    width: 4rem;
    height: 4rem;
}

.pricing .box-sep-circle {
    height: 130%;
    width: 130%;
}

.pricing .info-but {
    top: auto;
    bottom: 0;
}

.box-desc {
    margin-top: 1rem;
    padding: 0 1.5rem 1rem 1.5rem;
    position: relative;
    z-index: 9;
}

.box-desc p {
    font-size: 0.9rem;
    line-height: 1.5;
    font-weight: normal;
    text-align: center;
    margin: 0.5rem 0 0 0;
    padding: 0;
    color: #fff;
}

.box-desc p:first-child {
    margin-top: 0;
}

.box-desc p strong {
    font-weight: 500;
    color: #4CD6F7;
}

.box-contour {
    position: absolute;
    left: 50%;
    top: 50%;
    -moz-transform: rotate(-3deg) translateX(-50%) translateY(-50%);
    -webkit-transform: rotate(-3deg) translateX(-50%) translateY(-50%);
    -o-transform: rotate(-3deg) translateX(-50%) translateY(-50%);
    -ms-transform: rotate(-3deg) translateX(-50%) translateY(-50%);
    transform: rotate(-3deg) translateX(-50%) translateY(-50%);
    z-index: 8;
    width: 100%;
    height: 100%;
    border: 2px solid #fff;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
    transform-origin: center center;
    margin-top: 1rem;
    margin-left: 0.5rem;
}



.box-purple .box-title {
    background: #A708AC;
}

.box-purple .box-desc p strong {
    color: #FA69FF;
}

.box-teal .box-title {
    background: #00C6CE;
}

.box-teal .box-desc p strong {
    color: #00FFC4;
}

.mainmenu-ask {
    padding: 1.5rem 2.5rem;
    background: #008FDB;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    border-radius: 50px;
    color: #fff;
    font-size: 1.1rem;
    line-height: 1;
    white-space: nowrap;
    text-align: center;
    font-weight: normal;
    text-transform: uppercase;
    position: absolute;
    z-index: 110;
    right: 0;
    bottom: 0;
    cursor: pointer;
    letter-spacing: 0.05rem;
    margin: 0;
    margin-right: 3rem;
    margin-bottom: -2.5rem;
    border: 0;
    text-decoration: none;
}

.clients-list {
    list-style: none;
    margin: 1rem auto 0 auto;
    padding: 0;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
}



.clients-list>li>a {
    text-decoration: none;
    display: block;
    width: 100%;
    padding-bottom: 100%;
    position: relative;
    background: #fff;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
    position: relative;
}

.clients-list>li>a>img {
    position: absolute;
    left: 50%;
    top: 50%;
    width: calc(100% - 4rem);
    height: calc(100% - 4rem);
    object-fit: contain;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.fitems {
    list-style: none;
    margin: 0;
    padding: 0;
    display: block;
    width: 100%;
}

.benefits .fitems {
    margin-top: 0.5rem;
}

.benefits .fitems:first-child {
    margin-top: 0;
}

.fitems li {
    margin-top: 0.5rem;
    position: relative;
    padding: 1.25rem 1.5rem 1.25rem 1.5rem;
    font-size: 0.9rem;
    line-height: 1.5;
    font-weight: normal;
    color: #fff;
    text-align: left;
    border: 1px solid #00AFBE;
    -webkit-border-radius: 10px;
    -webkit-border-top-left-radius: 0;
    -moz-border-radius: 10px;
    -moz-border-radius-topleft: 0;
    border-radius: 10px;
    border-top-left-radius: 0;
}

.fitems li.withinfo {
    padding-right: 3rem;
}



.fitems li:first-child {
    margin-top: 0;
}

.fitems strong {
    font-weight: 500;
    color: #F89D0F;
}

.fitems-check {
    position: absolute;
    top: 1.5rem;
    left: -1rem;
    -webkit-transform: translate(-100%, 0%);
    -ms-transform: translate(-100%, 0%);
    transform: translate(-100%, 0%);
    width: 2rem;
    height: 2rem;
    color: #03BFC7;
    display: none;
}

.fitems-check>.svgicon {
    height: 100%;
    width: 100%;
}

.fitems-wrapper {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin: 1rem auto 0 auto;
}

.fitems-title {
    font-size: 1.1rem;
    line-height: 1;
    font-weight: normal;
    color: #fff;
    text-align: center;
    margin: 0 0 1rem 0;
    padding: 0;
    text-transform: uppercase;
}

.fitems-more {
    font-size: 1.1rem;
    line-height: 1.4;
    font-weight: normal;
    color: #fff;
    text-align: center;
    margin: 1rem 0 0 0;
    padding: 0;
}





.features-wrapper {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin: 2rem auto 0 auto;
}

.features-column {
    width: 100%;
}

.features-column .fitems-wrapper {
    margin-top: 0;
    padding-left: 0;
    padding-right: 0;
}

.features-sep {
    margin-top: 3rem;
}

.info-but {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
}

.info-symbol {
    width: 1.8rem;
    height: 1.8rem;
    background: rgba(255, 255, 255, .1);
    text-align: center;
    color: #fff;
    border: 0;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    z-index: 20;
    position: relative;
    cursor: pointer;
}

.info-symbol>.svgicon {
    height: 100%;
    width: 50%;
}

.info-text {
    position: absolute;
    right: 0.9rem;
    top: 0.9rem;
    min-width: 250px;
    max-width: 350px;
    padding: 1rem 1.5rem;
    background: #F89E0D;
    color: #fff;
    font-size: 0.9rem;
    line-height: 1.5;
    font-weight: normal;
    text-align: left;
    margin: 0;
    z-index: 18;
    -webkit-border-radius: 10px;
    -webkit-border-top-right-radius: 0;
    -moz-border-radius: 10px;
    -moz-border-radius-topright: 0;
    border-radius: 10px;
    border-top-right-radius: 0;
    display: none;
}

.info-but:hover .info-symbol {
    background: #F89E0D;
}

.info-but:hover .info-text {
    display: block;
}

.footer {
    margin-top: 5rem;
    padding-bottom: 1.5rem;
}

.footer-coperta {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    font-size: 0.9rem;
    line-height: 1;
    font-weight: normal;
    color: rgba(255, 255, 255, .8);
}

.footer-coperta .getorderz {
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.footer-coperta .getorderz .svgicon {
    height: 2.5rem;
    width: 2.5rem;
}

.footer-coperta .coperta {
    margin-top: 1.5rem;
}

.contact-company {
    margin: 2rem auto 0 auto;
}

.contact-company p {
    font-size: 0.9rem;
    line-height: 1.3;
    font-weight: normal;
    text-align: center;
    color: rgba(255, 255, 255, .8);
    margin: 0.5rem 0 0 0;
    padding: 0;
}

.contact-company p:first-child {
    margin-top: 0;
}

.contact-info {
    margin: 3rem auto 0 auto;
    padding: 2rem;
    position: relative;
}

.contact-info p {
    font-size: 1.1rem;
    line-height: 1.6;
    font-weight: normal;
    text-align: center;
    color: #fff;
    margin: 0.5rem 0 0 0;
    padding: 0;
    position: relative;
    z-index: 1;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
}

.contact-info p:first-child {
    margin-top: 0;
}

.contact-info p a {
    color: #F89D0F;
    text-decoration: none;
}

.contact-info-contour {
    position: absolute;
    left: 50%;
    top: 50%;
    -moz-transform: rotate(-3deg) translateX(-50%) translateY(-50%);
    -webkit-transform: rotate(-3deg) translateX(-50%) translateY(-50%);
    -o-transform: rotate(-3deg) translateX(-50%) translateY(-50%);
    -ms-transform: rotate(-3deg) translateX(-50%) translateY(-50%);
    transform: rotate(-3deg) translateX(-50%) translateY(-50%);
    z-index: 0;
    width: 100%;
    height: 100%;
    border: 2px solid #fff;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
    transform-origin: center center;
    margin-top: -1rem;
}

.contact-icon {
    height: 3.5rem;
    width: 3.5rem;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, .2);
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    display: none;
    margin: 0 0.5rem;
}

.contact-icon>.svgicon {
    height: 100%;
    width: 50%;
}

.appstores {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    padding-left: 2rem;
    padding-right: 2rem;

}

.appstores img {
    width: calc((100% - 1rem) / 2);
    height: auto;
    margin-left: 1rem;
}

.appstores img:first-child {
    margin-left: 0;
}

.static {
    padding-top: 1.5rem;
}

/* RESPONSIVE */
@media only screen and (min-width: 767px) {
    .home-section {
        padding-top: 9rem;
        padding-bottom: 3rem;
    }

    .home-section.contact {
        padding-bottom: 0;
    }

    .getorderz {
        font-size: 2.5rem;
        line-height: 1;
    }
    .getorderz .svgicon {
        width: 4rem;
        height: 4rem;
    }
    .footer-coperta .getorderz .svgicon {
        height: 3rem;
        width: 3rem;
    }

    .intro h1 {
        font-size: 1.5rem;
        line-height: 1.3;
    }

    .intro h2 {
        font-size: 1.1rem;
        line-height: 1.3;
    }

    .intro .getorderz {
        margin-bottom: 1.5rem;
    }

    .intro .boxes {
        margin-top: 3rem;
    }


    .boxes {
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: center;
        align-items: center;
        padding-left: 3rem;
        padding-right: 3rem;
    }

    .box {
        width: 35%;
        padding-top: 0;
    }

    .box-title {
        font-size: 1.7rem;
        line-height: 1;
        padding: 1.5rem 1rem;
    }

    .box-sep {
        top: 3rem;
        height: 4rem;
        width: 4rem;
    }

    .box-sep-circle {
        height: 160%;
        width: 160%;

    }

    .box-desc {
        margin-top: 2rem;
        padding: 0 3rem 3rem 3rem;
    }

    .box-desc p {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .box.box-first .box-contour {
        margin-top: 4rem;
    }

    .box.box-second {
        padding-bottom: 0;
    }

    .box.box-second .box-contour {
        margin-top: 2.5rem;
    }

    .appstores {
        padding-left: 3rem;
        padding-right: 3rem;
    }

    .maintitle {
        font-size: 1.7rem;
        line-height: 1;
        white-space: nowrap;
        text-align: center;
        padding-left: 0;
        padding-bottom: 0;
        border: 0;
    }

    .features-wrapper {
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: space-between;
        margin: 2rem auto 0 auto;
        max-width: 1500px;
        padding-left: 4rem;
        padding-right: 4rem;
    }

    .features-column {
        width: calc((100% - 5rem) / 2);
        padding-top: 0rem;
        padding-bottom: 0rem;
    }

    .features-sep {
        border-top: 0;
        border-left: 1px solid rgba(255, 255, 255, .5);
        padding-top: 0;
        padding-bottom: 0;
        margin-top: 0;
    }

    .fitems-title {
        font-size: 1.2rem;
        line-height: 1;
        text-align: left;
        margin: 0 0 1.5rem 0;
    }

    .features-column:last-child .fitems-title {
        text-align: right;
    }

    .fitems li {
        margin-top: 1rem;
        padding: 1.5rem 2rem 1.5rem 2rem;
        font-size: 1rem;
        line-height: 1.6;
    }

    .fitems li.withinfo {
        padding-right: 3rem;
    }

    .fitems-more {
        font-size: 1.2rem;
        line-height: 1.4;
        margin: 1.5rem 0 0 0;
    }

    .fitems-wrapper {
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: space-between;
        margin: 2rem auto 0 auto;
        max-width: 1500px;
        padding-left: 4rem;
        padding-right: 4rem;
    }

    .benefits .fitems {
        width: calc((100% - 5rem) / 2);
    }



    .benefits .fitems {
        margin-top: 0;
    }

    .pricing .boxes {
        margin-top: 2rem;
    }

    .pricing .box-sep {
        margin-left: 0.5rem;
        margin-right: 0.5rem;
    }

    .pricing .box-sep-circle {
        height: 180%;
        width: 180%;
    }

    .pricing .info-but {
        bottom: -1.5rem;
    }

    .clients-list {
        margin-top: 2rem;
        max-width: 900px;
    }

    .info-text {
        min-width: 450px;
        max-width: 550px;
    }

    .static {
        padding-top: 13rem;
    }

    .contact {
        min-height: 100vh;
    }



    .social>li {
        margin-left: 1rem;
    }

    .social>li>a {
        width: 3rem;
        height: 3rem;
        line-height: 1;
    }

    .logo>img {
        width: auto;
        height: 80px;
    }

    .footer-line-row {
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: space-between;
        align-items: center;
    }

    .gotop {
        width: 54px;
        height: 54px;
    }

    .gotop.active {
        right: 1rem;
    }

    .menu-open-children {
        padding: 0;
    }

    .menu-open-children::after {
        top: 0.5rem;
        font-size: 1rem;
    }

    li ul li .menu-open-children::after {
        color: #fff;
    }

    .mainmenu>li.menu-has-child>.menu-open-children::after {
        top: 0.25rem;
    }

    .cnt {
        max-width: 1000px;
        margin: 3rem auto 0 auto;
        padding: 0;
    }

    .cnt p {
        text-align: justify;
        font-size: 1rem;
        line-height: 1.4;
    }

    .cnt ul li,
    .cnt ol li {
        font-size: 1rem;
        line-height: 1.4;
    }

    .cnt ul,
    .cnt ol {
        margin-left: 2rem;
    }

    .cnt h2,
    .cnt h3,
    .cnt h4,
    .cnt h5,
    .cnt h6 {
        margin-top: 2rem;
    }

    .cnt h2 {
        font-size: 1.6rem;
        line-height: 1.4;
    }

    .cnt h3 {
        font-size: 1.4rem;
        line-height: 1.4;
    }

    .cnt h4,
    .cnt h5,
    .cnt h6 {
        font-size: 1.4rem;
        line-height: 1.4;
    }

    .wrapper {
        max-width: 1800px;
        padding-left: 1rem;
        padding-right: 1rem;
        width: 100%;
    }

    .info {
        text-align: left;
    }

    .error {
        text-align: left;
    }

    .menu-item {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: flex-start;
        align-items: center;
    }

    .buton1 {
        display: inline-block;
        padding-left: 1rem;
        padding-right: 1rem;
        width: auto;
    }

    .form1 {
        margin-left: auto;
        margin-right: auto;
    }

    .form1 .error,
    .form1 .info {
        text-align: center;
        font-size: 1rem;
        line-height: 1.4;
    }

    /* BREADCRUMBS START ----------------------------------------------------------------------------------- */
    .breadcrumbs-wrapper {
        display: block;
    }

    .breadcrumbs {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

    .breadcrumbs li {
        margin-left: 1rem;
    }

    .breadcrumbs li::before {
        margin-right: 1rem;
        content: '|';
        display: inline-block;
        color: #ededed;
    }

    .breadcrumbs li:first-child {
        margin-left: 0;
    }

    .breadcrumbs li:first-child:before {
        display: none;
    }

    .breadcrumbs>li>a {
        text-decoration: none;
        font-size: 0.9rem;
        font-weight: normal;
        line-height: 1.2;
        text-align: left;
        display: inline-block;
        color: #ccc;
    }

    /* FOOTER ----------------------------------------------------------------------------------- */
    .cookies-disclaimer {
        max-width: 400px;
        -webkit-border-radius: 10px;
        -moz-border-radius: 10px;
        border-radius: 10px;
        left: 1rem;
        bottom: 1rem;
        padding: 2rem;
        background: url('../media/bg-black-60.png');
    }

    .cookies-disclaimer-more {
        text-align: justify;
        font-size: 0.9rem;
        line-height: 1.5;

    }

    .cookies-agree {
        margin-top: 1rem;
        padding: 1rem;
    }

    .footermenu {
        justify-content: center;
        margin-top: 2rem;
    }

    .footermenu>li {
        margin-top: 0;
        margin-left: 2rem;
        padding-left: 2rem;
        padding-top: 0.5rem;
        padding-bottom: 0.5rem;
    }

    .footermenu>li:first-child {
        margin-left: 0;
    }

    .footermenu>li>a {
        padding: 0;
        font-size: 0.9rem;
        line-height: 1;
    }

    .footermenu+.footermenu {
        margin-top: 0;
    }

    .home .featured-products {
        margin-top: 0;
        margin-bottom: 4rem;
    }

    .main-header {
        display: block;
        position: fixed;
        left: 0;
        top: 0;
        width: 100%;
        z-index: 100;
        padding: 0;
        margin: 0;
    }

    .mainmenu {
        position: relative;
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: space-between;
        align-items: center;
        padding-left: 4rem;
        padding-right: 4rem;
    }

    .mainmenu li ul {
        display: none;
        position: absolute;
        white-space: nowrap;
        padding: 0;
        margin: 0;
    }

    .mainmenu li a {
        display: block;
        text-align: center;
        color: #fff;
        text-decoration: none;
        white-space: nowrap;
        padding: 1rem 1rem;
        text-transform: uppercase;
        font-size: 1rem;
        line-height: 1;
        white-space: nowrap;
        font-weight: normal;
        color: #fff;
        letter-spacing: 0.1rem;
    }

    .mainmenu li.active a {
        color: #00FFC4;
    }

    .mainmenu li {
        position: relative;
    }

    .mainmenu>li {
        margin-left: 0.5rem;
    }

    .mainmenu>li:first-child {
        margin-left: 0;
    }

    .mainmenu-wrapper {
        max-width: 1500px;
        margin: 0 auto;
        position: relative;
        padding: 0.75rem 0 2rem 0;
    }

    .mainmenu-underline {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        border-bottom: 2px solid #fff;
        -moz-transform: rotate(-1.5deg);
        -webkit-transform: rotate(-1.5deg);
        -o-transform: rotate(-1.5deg);
        -ms-transform: rotate(-1.5deg);
        transform: rotate(-1.5deg);
    }

    .footer {
        margin-top: 6rem;
        padding-bottom: 2rem;
    }

    .footer-coperta {
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: center;
        align-items: center;
        font-size: 1rem;
        line-height: 1;
    }

    .footer-coperta .getorderz {
        margin-right: 1.5rem;
        font-size: 2rem;
        margin-bottom: 0;
    }

    .footer-coperta .coperta {
        margin-left: 1.5rem;
        margin-top: 0;
    }

    .contact-info {
        margin: 2rem auto 0 auto;
        padding: 3rem;
        max-width: 600px;
    }

    .contact-info p {
        font-size: 1.2rem;
        line-height: 1.3;
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: center;
        align-items: center;
    }

    .contact-company {
        margin: 3rem auto 0 auto;
    }

    .contact-company p {
        font-size: 1rem;
        line-height: 1.3;
    }

    .contact-icon {
        display: inline-block;
    }
}

@media only screen and (max-width: 1000px) {
    .clients-list>li {
        width: calc((100% - 1rem) / 2);
        margin-top: 1rem;
        margin-left: 1rem;
    }

    .clients-list>li:nth-child(-n+2) {
        margin-top: 0;
    }

    .clients-list>li:nth-child(2n+1) {
        margin-left: 0;
    }
}

@media only screen and (min-width: 1001px) and (max-width: 1500px) {
    .clients-list>li {
        width: calc((100% - 3rem) / 4);
        margin-top: 1rem;
        margin-left: 1rem;
    }

    .clients-list>li:nth-child(-n+4) {
        margin-top: 0;
    }

    .clients-list>li:nth-child(4n+1) {
        margin-left: 0;
    }

    .clients-list>li>a>img {
        width: calc(100% - 5rem);
        height: calc(100% - 5rem);
    }

}

@media only screen and (min-width: 1501px) {
    .clients-list>li {
        width: calc((100% - 6rem) / 4);
        margin-top: 2rem;
        margin-left: 2rem;
    }

    .clients-list>li:nth-child(-n+4) {
        margin-top: 0;
    }

    .clients-list>li:nth-child(4n+1) {
        margin-left: 0;
    }

    .clients-list>li>a>img {
        width: calc(100% - 6rem);
        height: calc(100% - 6rem);
    }

}

@media only screen and (min-width: 1440px) {

    .home-section {
        padding-top: 9rem;
        padding-bottom: 5rem;
    }

    .box-desc p {
        font-size: 1rem;
        line-height: 1.5;
    }

    .intro h1 {
        font-size: 1.7rem;
        line-height: 1.3;
    }

    .intro h2 {
        font-size: 1.2rem;
        line-height: 1.3;
    }

    .footer {
        margin-top: 10rem;
        padding-bottom: 2rem;
    }

    .benefits .fitems {
        width: calc((100% - 5rem) / 2);
    }

    .features-column {
        width: calc((100% - 7rem) / 2);
        padding-top: 0rem;
        padding-bottom: 0rem;
    }
}

@media only screen and (min-width: 1600px) {
    .box {
        width: 30%;
    }
    .benefits .fitems {
        width: calc((100% - 7rem) / 2);
    }
    .getorderz {
        font-size: 3rem;
        line-height: 1;
    }
    .getorderz .svgicon {
        width: 4rem;
        height: 4rem;
    }
}

@media only screen and (min-width: 1700px) {
    .pricing .boxes {
        margin-top: 5rem;
    }

    .fitems-wrapper {
        margin-top: 5rem;
    }

    .features-column {
        width: calc((100% - 10rem) / 2);
        padding-top: 2rem;
        padding-bottom: 2rem;
    }

    .fitems-check {
        display: block;
    }

    .mainmenu-wrapper {
        padding: 2rem 0;
    }

    .mainmenu li a {
        padding: 1rem 1rem;
        font-size: 1.1rem;
        line-height: 1;
    }

    .mainmenu-ask {
        padding: 1.5rem 3rem;
        font-size: 1.2rem;
        line-height: 1;
    }

    .home-section {
        padding-top: 13rem;
        padding-bottom: 5rem;
    }

    .maintitle {
        font-size: 2rem;
    }

    .getorderz {
        font-size: 3.5rem;
        line-height: 1;
    }
    .getorderz .svgicon {
        width: 4.5rem;
        height: 4.5rem;
    }

    .intro h1 {
        font-size: 2rem;
        line-height: 1.3;
    }

    .intro h2 {
        font-size: 1.5rem;
        line-height: 1.3;
    }

    .intro .boxes {
        margin-top: 5rem;
    }

    .box-title {
        font-size: 2rem;
        line-height: 1;
        padding: 2rem 1rem;
    }

    .benefits .fitems {
        width: calc((100% - 10rem) / 2);
    }

    .fitems-title {
        font-size: 1.4rem;
        line-height: 1;
        margin: 0 0 2rem 0;
    }

    .benefits .fitems li {
        font-size: 1.1rem;
        line-height: 1.6;
    }

    .clients-list {
        margin-top: 3rem;
        max-width: 1200px;
    }
}

@media only screen and (max-width: 767px) {

    /* JUST MOBILE */
    .just-desktop {
        display: none !important;
    }

    .intro {}

    .intro .getorderz {
        justify-content: flex-start;
        padding-left: 1rem;
    }
}

@media only screen and (min-width: 767px) {

    /* JUST DEKSTOP */
    .just-mobile {
        display: none !important;
    }
}

@media (hover: hover) {

    /* HOVER */

    .cookies-disclaimer-more:hover {}

    .cookies-agree:hover {
        background: #3363ae;
        color: #fff;
    }

    .buton1:hover {
        background: #588AD9;
    }

    .buton2:hover {
        color: #49A4F2;
    }

    .footermenu>li:hover>a,
    .footermenu>li>a:hover {
        color: #fff;
    }

    .social>li:hover a,
    .social>li>a:hover {
        color: #4AA4F2;
    }

    .order-existing-addresses>li:not(.active):hover {
        background: #FFF8FB;
    }

    .mainmenu>li>a:hover,
    .mainmenu>li:hover>a {}
}