/*-- NORMALIZE & RESET ----------------------------------------------------------------------- */

:root {
    --red: #ce253d;
    --red-hover: #c51f37;
    --red-active: #b71a30;
    --black: #243545;
}
*{box-sizing:border-box;}article,aside,details,figcaption,figure,footer,header,img,main,menu,nav,section{display:block}button,hr,input{overflow:visible}audio,canvas,progress,video{display:inline-block}progress,sub,sup{vertical-align:baseline}img,legend,textarea{max-width:100%}a,abbr,acronym,address,applet,article,aside,audio,b,big,blockquote,body,canvas,caption,center,cite,code,dd,del,details,dfn,div,dl,dt,em,embed,fieldset,figcaption,figure,footer,form,h1,h2,h3,h4,h5,h6,header,hgroup,html,i,iframe,img,ins,kbd,label,legend,li,main,mark,menu,nav,object,ol,output,p,pre,q,ruby,s,samp,section,small,span,strike,strong,sub,summary,sup,table,tbody,td,tfoot,th,thead,time,tr,tt,u,ul,var,video{margin:0;padding:0;border:0;vertical-align:baseline;box-sizing:border-box;line-height:1}html{line-height:1;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}h1{font-weight:normal;font-size:30px;margin:0}h2{font-size:28px;font-weight:500;}h3{font-size:22px;font-weight:500;}h4{font-size:16px}h5{font-size:14px}h6{font-size:12px}figure{margin:1em 40px}hr{box-sizing:border-box;height:1px;border:none;color:#ddd;background-color:#ddd}code,kbd,pre,samp{font-family:monospace,monospace;font-size:1em}a{background-color:transparent;-webkit-text-decoration-skip:objects}a:active,a:hover{outline:0}abbr[title]{border-bottom:none;text-decoration:underline;text-decoration:underline dotted}b,strong{font-weight:700}ol,ul{padding-left:20px}dfn{font-style:italic}mark{background-color:#ff0;color:#000}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative}sub{bottom:-.25em}sup{top:-.5em}audio:not([controls]){display:none;height:0}img{border-style:none;margin:auto}svg:not(:root){overflow:hidden}blockquote,q{quotes:none}blockquote:after,blockquote:before,q:after,q:before{content:'';content:none}table{border-collapse:collapse;border-spacing:0;table-layout:fixed}button,input,optgroup,select,textarea{font-family:sans-serif;font-size:100%;line-height:1;margin:0;padding:0;box-sizing:border-box}button,select{text-transform:none}[type=reset],[type=submit],button,html [type=button]{-webkit-appearance:button}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{border-style:none;padding:0}[type=button]:-moz-focusring,[type=reset]:-moz-focusring,[type=submit]:-moz-focusring,button:-moz-focusring{outline:dotted 1px}fieldset{padding:0;margin:0;}legend{box-sizing:border-box;color:inherit;display:block;padding:0;white-space:normal;margin-bottom:15px;font-weight:bold;}textarea{overflow:auto}input[type=number]::-webkit-inner-spin-button,input[type=number]::-webkit-outer-spin-button{height:auto}input[type=search]{-webkit-appearance:textfield;outline-offset:-2px}input[type=search]::-webkit-search-cancel-button,input[type=search]::-webkit-search-decoration{-webkit-appearance:none}input[type=file]::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}summary{display:list-item}[hidden],template{display:none}a{color:var(--red);}a:hover{color:#007bff}a:active{color:#007bff}


/*-- HELPERS ----------------------------------------------------------------------- */

.clearfix:after
{
    content: '';
    display: block;
    clear: both;
}
.hidden
{
    display: none !important;
}
.unselectable {
    user-select: none;
    -moz-user-select: none;
    -khtml-user-select: none;
    -webkit-user-select: none;
    -o-user-select: none;
} 


/*-- GLOBAL ----------------------------------------------------------------------- */

html
{
    min-height: 100%;  
}
body
{
    font: 14px Helvetica, Arial;
    font-weight: 400;
    line-height: 1.6;
    background-color: #fff;
    color: #172335;
    min-width: 320px;
    min-height: 100vh;   
    position: relative;
    display: flex;
    flex-direction: column;
}
main 
{    
    position: relative;  
    flex: 1;
}
ul.checklist, ol.checklist 
{
    list-style: none;
    padding: 0;
}
ul.checklist li, ol.checklist li
{
    padding-left: 28px;
    background-image: url("data:image/svg+xml,%3Csvg height='15' width='18' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 10.7 1.8 6.5.4 7.9 6 13.5l12-12L16.6.1 6 10.7Z' fill='%23ce253d' fill-rule='evenodd'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: top 50% left 0;
    background-size: 16px;
    line-height: 1.6;
}
a, a:visited
{    
    text-decoration: none;
}
a:hover
{
    color: var(--red);
    text-decoration: underline;
}
button 
{
    cursor: pointer;
}
input:focus,
select:focus,
{
    outline: 0;
}
section
{
    position: relative;
}
.row
{
    max-width: 1230px;
    margin: 0 auto;
    width: 100%;
    padding: 0 15px;
    position: relative;
}


/* -- HEADER ------------ */

#header {
    background-color: #fff;
}
.menu-horizontal {
    display: inline-block;
    margin-left: 30px;
    z-index: 10001;
    top: 0;
    left: 0;
    max-width: 100%;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden
}

.menu-horizontal a,.menu-horizontal button {
    color: var(--black);
    text-decoration: none;
    font-size: 14px;
    padding: 0 15px;
    z-index: 1;
    position: relative;
    line-height: 80px;
    display: inline-block;
    text-decoration: none!important;
    text-transform: uppercase;
}

.menu-horizontal a.active,.menu-horizontal li.active>a,.menu-horizontal a.opened,.menu-horizontal li.opened>a {
    color: var(--red);
}


.menu-horizontal a:hover,.menu-horizontal button:hover {
    text-decoration: underline;
    color: var(--red);
}

.menu-horizontal ul {
    list-style: none;
    position: relative;
    padding: 0
}

.menu-horizontal li {
    position: relative;
    padding: 0;
    display: inline-block
}

.menu-horizontal li>ul {
    list-style: none;
    position: absolute;
    top: 0;
    left: 100%;
    min-width: 170px;
    visibility: hidden;
    opacity: 0;
    transition: transform 0.2s ease,opacity 0.2s ease,visibility 0.2s ease;
    background-color: #fff;
    border-left: 1px solid #E6E6E6;
    border-top: 1px solid #E6E6E6;
    box-shadow: 1px 1px 4px RGB(0 0 0 / .1)
}

.menu-horizontal li ul:hover {
    visibility: visible;
    opacity: 1;
    transform: translate(0,50px)
}

.menu-horizontal li>a:hover+ul {
    visibility: visible;
    opacity: 1;
    transform: translate(0,50px)
}

.menu-horizontal li li>a {
    padding: 13px 10px
}

.menu-horizontal li li:hover {
    background-color: #f9f9f9
}

.menu-horizontal li>ul a {
    width: 100%;
    padding-right: 30px;
    text-transform: none
}

.menu-horizontal li>ul>li {
    width: 100%;
    position: relative
}

.menu-horizontal>ul>li>ul>li>a:hover+ul,.menu-horizontal>ul>li>ul>li>a+ul:hover {
    transform: translate(0,0)
}

.menu-horizontal>ul>li>ul {
    top: 0;
    left: 0
}

.menu-horizontal a.sub {
    background-color: #fff;
    background-repeat: no-repeat;
    background-position: right 10px top 50%;
    background-image: url("data:image/svg+xml,%3Csvg width='48' height='48' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='none' d='M-1-1h582v402H-1z'/%3E%3Cg%3E%3Cpath stroke='null' fill='%23172335' d='M6 10l18 17 18-17 5 5-23 23L1 15l5-5z'/%3E%3C/g%3E%3C/svg%3E");
    background-size: 7px 7px
}

.menu-horizontal>ul>li>a.sub {
    padding-right: 24px
}

#langs {
    float: right;
}

#langs>a {
    display: inline-block;
    padding: 0 5px;
    line-height: 80px;
    color: var(--black);
    position: relative;
    text-decoration: none!important;
}

#langs>a:hover {
    color: var(--red);
}

#langs>a.active {
    color: var(--red);
}


.logo {
    float: left;
    display: inline-block;
    width: 155px;
    height: 80px;
    position: relative;    
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 370 70' fill='%23243545'%3E%3Cpath d='M35 0a35 35 0 1 0 0 70 35 35 0 0 0 0-70m0 59.89A24.9 24.9 0 0 1 10.11 35 24.9 24.9 0 0 1 35 10.11 24.9 24.9 0 0 1 59.89 35 24.9 24.9 0 0 1 35 59.89m0-20.22a4.67 4.67 0 1 1 0-9.34 4.67 4.67 0 0 1 0 9.34M35 14c2.38 0 4.9.65 4.9.65 1.03.27 1.44 1.25.9 2.17l-4.83 8.35c-.53.93-1.4.93-1.94 0l-4.82-8.35c-.53-.93-.12-1.9.9-2.17.01 0 2.52-.65 4.89-.65m-.97 30.82c.53-.92 1.4-.92 1.94 0l4.82 8.36c.54.93.13 1.9-.91 2.17 0 0-2.51.65-4.88.65s-4.9-.65-4.9-.65c-1.03-.27-1.44-1.25-.9-2.17zM16.8 24.5c1.2-2.06 3.02-3.91 3.02-3.91.75-.77 1.8-.63 2.33.3l4.82 8.35c.53.93.1 1.69-.98 1.69h-9.64c-1.07 0-1.7-.85-1.42-1.88 0 0 .69-2.5 1.88-4.55m26.21 16.26c-.53-.93-.1-1.69.98-1.69h9.64c1.07 0 1.71.85 1.43 1.88 0 0-.7 2.5-1.89 4.55-1.18 2.06-3 3.91-3 3.91-.76.77-1.8.63-2.34-.3zm-26.2 4.74c-1.2-2.06-1.89-4.57-1.89-4.57-.29-1.03.36-1.87 1.43-1.87l9.64.01c1.07 0 1.51.76.97 1.69l-4.82 8.35c-.54.92-1.59 1.05-2.34.3 0 0-1.81-1.86-3-3.9M44 30.93c-1.07 0-1.51-.76-.98-1.69l4.83-8.34c.53-.93 1.58-1.07 2.33-.3 0 0 1.82 1.85 3 3.9a23 23 0 0 1 1.89 4.57c.29 1.03-.36 1.87-1.43 1.87zM109.25 24.42H96.82v7.4h10.74v5.9H96.82V51.1H90V18.45h19.25zm12.56 20.7h10.24v5.98h-17.01V18.45h6.77zm34.35-20.7h-12.11v7.4h10.73v5.9h-10.73v7.4h12.1v5.98h-18.93V18.45h18.94zm25.92 0h-12.12v7.4h10.74v5.9h-10.74v7.4h12.12v5.98h-18.94V18.45h18.94zm25.91-5.97v5.97h-7.75V51.1h-6.7V24.42h-7.8v-5.97zm19.6 33.1c-9.61 0-16.7-6.53-16.7-16.79S217.97 18 227.58 18c7.27 0 13.1 3.73 15.42 9.92l-6.32 2.3c-1.45-3.8-4.9-5.99-9.1-5.99-5.63 0-9.95 3.94-9.95 10.53s4.32 10.56 9.94 10.56c4.2 0 7.66-2.22 9.1-6.01l6.33 2.3c-2.32 6.2-8.15 9.94-15.43 9.94zm35.44 0c-9.6 0-16.7-6.55-16.7-16.79 0-10.25 7.1-16.76 16.7-16.76 9.58 0 16.68 6.5 16.68 16.76 0 10.24-7.1 16.8-16.68 16.8m0-6.21c5.63 0 9.95-3.95 9.95-10.58 0-6.6-4.32-10.52-9.95-10.52s-9.94 3.93-9.94 10.53c0 6.62 4.32 10.57 9.94 10.57m43.68-26.89h7.2L301.86 51.1h-7.45l-12-32.65h7.18l8.57 24.74zm31.05 5.97h-12.11v7.4h10.73v5.9h-10.73v7.4h12.1v5.98h-18.93V18.45h18.94zm24.22 26.68-8.5-14.37h-1.96V51.1h-6.78V18.45h11.84c7.39 0 10.5 4.36 10.5 9.76 0 4.39-2.48 7.23-6.91 8.18L370 51.1zm-10.46-27.02v7.8h4c3.61 0 5.08-1.54 5.08-3.9 0-2.32-1.47-3.9-5.08-3.9z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: 147px 28px;
    background-position: 50% 50%;
}

#mobile-menu {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    min-width: 50px;
    height: 50px;
    width: 50px;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg width='64' height='64' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='none' d='M-1-1h582v402H-1z'/%3E%3Cg%3E%3Cpath fill='%23172335' class='st0' d='M8 13h48v6H8zM8 29h48v6H8zM8 45h48v6H8z'/%3E%3C/g%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: 26px 26px
}

.overflow-bg {
    visibility: hidden;
    display: block;
    position: fixed;
    -webkit-backface-visibility: hidden;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background-color: #000;
    opacity: 0;
    z-index: 1;
    transition: opacity 0.2s ease,visibility 0.2s ease;
    transform: translate3d(0,0,0);
    -webkit-transform: translate3d(0,0,0)
}

#mobile-lang-menu {
    display: flex;
    opacity: 0;
    visibility: hidden;
    position: fixed;
    top: 50%;
    left: 50%;
    z-index: 1001;
    width: 200px;
    background-color: #fff;
    border: 1px solid #E6E6E6;
    flex-direction: column;
    -webkit-backface-visibility: hidden;
    transform: translate3d(-50%,-50%,0);
    -webkit-transform: translate3d(-50%,-50%,0);
    transition: opacity 0.2s ease,visibility 0.2s ease;
}

#mobile-lang-menu a {
    padding: 18px 15px;
    border-bottom: 1px solid #E6E6E6
}

#mobile-lang-menu a:last-child {
    border-bottom: 0
}

#mobile-lang-menu.active~.overflow-bg {
    visibility: visible;
    opacity: .3;
    z-index: 1000
}

#langs-mobile {
    display: none
}

.header-contacts
{
    float: right;    
    padding-right: 15px;
}
.menu-horizontal .header-contacts {
    display: none;
}
.header-contacts a
{
    line-height: 80px;
    display: inline-block;
}
.header-contacts a:not(:last-child)
{
    margin-right: 10px;
}

@media (max-width: 1140px) {
    .menu-horizontal {
        margin-left: 10px;
    }
    .menu-horizontal a, .menu-horizontal button {
        padding: 0 8px;
    }
}
@media (max-width: 1040px) {
    .header-contacts a:last-child {
        display: none;
    }
    .header-contacts a:not(:last-child) {
        margin-right: 0;
    }
}

@media (max-width: 910px) {
    main {
        padding-top: 50px;
    }
    #mobile-lang-menu.active {
        visibility:visible;
        opacity: 1
    }
    .menu-horizontal .header-contacts {
        display: block;
        float: none;
        margin-top: 10px;
    }
    .header-contacts a {
        line-height: 50px;
    }
    .menu-horizontal .header-contacts a {
        display: block !important;
        line-height: 32px;
        text-transform: none;
        color: var(--red);
    }
    .header-contacts a:last-child {
        display: inline-block;
    }
    .header-contacts a:not(:last-child) {
        margin-right: 10px;
    }
    #header-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 50px;
        z-index: 1000;
        background-color: #fff;
        box-shadow: 1px 1px 2px 0 rgb(0 0 0 / .1)
    }

    #mobile-menu {
        display: block;
        transform: translate3d(0,0,0);
        transition: transform 0.2s ease,visibility 0.2s ease
    }

    .mobile-opened #mobile-menu {
        display: block;
        position: fixed;
        top: 0;
        right: auto;
        left: 0;
        z-index: 1002;
        background-image: url("data:image/svg+xml,%3Csvg width='32' height='32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='none' d='M-1-1h582v402H-1z'/%3E%3Cg%3E%3Cpath stroke-width='2' stroke-linejoin='round' stroke-linecap='round' stroke='%23172335' fill='none' class='cls-1' d='M7 7l18 18M7 25L25 7'/%3E%3C/g%3E%3C/svg%3E");
        transform: translate3d(210px,0,0)
    }

    .logo {
        position: absolute;
        top: 0;
        left: 50px;
        margin: auto;
        z-index: 1;
        transition: transform 0.2s ease;
        height: 50px;
        background-size: 105px 20px;
        width: 110px;
    }

    .menu-horizontal {
        visibility: hidden;
        padding-top: 0;
        margin-left: 0;
        width: 260px;
        background-color: #fff;
        border-right: 1px solid #eee;
        height: 100%;
        position: fixed;
        z-index: 1001;
        transform: translate3d(-260px,0,0);
        transition: transform 0.2s ease,visibility 0.2s ease
    }

    .mobile-opened .menu-horizontal {
        visibility: visible;
        transform: translate3d(0,0,0)
    }

    .menu-horizontal li {
        display: block
    }

    .menu-horizontal a {
        line-height: 50px
    }
    .menu-horizontal a, .menu-horizontal button {
        padding: 0 15px;
    }


    #langs {
        display: none
    }

    #langs-mobile {
        display: block;
        cursor: pointer;
        margin-right: -15px;
        float: right;
        color: #172335;
        background-repeat: no-repeat;
        background-position: right 10px top 50%;
        background-size: 20px;
        line-height: 50px;
        padding: 0 15px 0 12px
    }

    .mobile-opened .overflow-bg {
        visibility: visible;
        opacity: .3;
        z-index: 1000
    }
}
@media (max-width: 460px) {
    .header-contacts a:last-child {
        display: none;
    }
    .header-contacts a:not(:last-child) {
        margin-right: 0;
    }
    .header-contacts {
        padding-right: 5px;
    }  
}



/* hero */

.hero-block 
{
    position: relative;
    padding: 24px 15px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    max-width: 1200px;
    background: #f6f6f7;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.1);
}
.hero-block img
{
    border-radius: 16px;
    object-fit: contain;
    object-position: 100% center;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.hero-text 
{
    position: relative;
    padding: 24px;
    border-radius: 16px;
    max-width: 550px;
    line-height: 1.6;
    z-index: 1;
}
.hero-subtext 
{
    margin: 16px 0;
    line-height: 1.6;
    font-size: 16px;
}
.hero-block .checklist
{
    margin-bottom: 24px;
}
.hero-block .checklist li
{
    line-height: 2;
}
.hero-block .btn
{
    margin: 0 10px 15px 0;    
}
.hero-block .btn:last-child {
    margin-right: 0;
}
@media (max-width: 940px)
{   
    .hero-block {
        margin-top: 15px;
    }
    .hero-block img {
        height: 80%;   
    }    
}
@media (max-width: 830px)
{  
    .hero-block img {
        height: 60%;   
    }
}
@media (max-width: 768px)
{    
    h1 {
        font-size: 24px;
        line-height: 1.4;
    }    
}
@media (max-width: 730px)
{
    .hero-block {
        padding-bottom: 150px;
    }
    .hero-block img {
        height: 50%;   
    }
    .hero-text {
        padding: 0;
    }
}
@media (max-width: 610px)
{
    .hero-block {
        padding-bottom: 240px;
    }
    .hero-block img {
        height: 45%;   
    }
}
@media (max-width: 440px)
{
    h1 {
        font-size: 20px;
    }
}
@media (max-width: 380px)
{
    .hero-block img {
        height: auto;
        
    }
}
.btn 
{
    display: inline-block;
    border-radius: 32px;
    padding: 16px 24px;
    font-size: 14px;
    color: #fff !important;
    border: 0;
    background-color: var(--red);
    transition: background-color 0.2s linear;
    text-decoration: none !important;
}
.btn:hover
{    
    background-color: var(--red-hover);
    color: inherit;
}
.btn:active
{    
    background-color: var(--red-active);
    color: inherit;
}
.btn-white
{
    background-color: transparent;
    color: var(--black) !important;
    border: 1px solid var(--black);
}
.btn-white:hover
{    
    background-color: rgba(0,0,0,0.03);
}
.btn-white:active
{    
    background-color: rgba(0,0,0,0.06);
}
.btn-bordered
{
    color: var(--red) !important;
    border: 1px solid var(--red);
    background-color: transparent;
}
.btn-bordered:hover
{    
    background-color: rgba(0,0,0,0.03);
}
.btn-bordered:active
{    
    background-color: rgba(0,0,0,0.06);
}

/* insurance */

.auto-insurance__types {
    margin-top: 24px;    
}
.auto-insurance__types-list {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.auto-insurance__types-item {
    border-radius: 16px;
    margin-bottom: 24px;
    width: calc(50% - 12px);
    flex: 0 0 calc(50% - 12px);
    padding: 24px 238px 23px 32px;
    background-color: #f6f6f7;
    background-repeat: no-repeat;
    background-position: bottom 0 right -10px;
    background-size: auto 100%;
    transition: .3s all;
    box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.1);
}
.auto-insurance__types-item_title {
    font-size: 20px;
    margin-bottom: 12px;
}
.auto-insurance__types-item_text {
    font-size: 17px;
    line-height: 1.6;
    max-width: 650px;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 16px;
}
.auto-insurance__types-item_btns a {
    display: inline-block;
}
.auto-insurance__types-item_btns a:not(:last-child) {
    margin-right: 10px;
}
.auto-insurance__types-item:nth-child(1)
{
    background-image: url(/assets/car1.png);
}
.auto-insurance__types-item:nth-child(2)
{
    background-image: url(/assets/car2.png);
}
.auto-insurance__types-item:nth-child(3)
{
    background-image: url(/assets/car3.png);
}
.auto-insurance__types-item:nth-child(4)
{
    background-image: url(/assets/car4.png);
}
@media (max-width: 1200px)
{
    .auto-insurance__types-item {
        flex: 0 0 100%;
        width: 100%;
        padding: 24px 190px 23px 32px;
        margin-bottom: 16px;
    }
    .auto-insurance__types {
        margin-top: 15px;
    }
}
@media (max-width: 660px)
{
    .auto-insurance__types-item {
        padding: 24px 24px 90px 24px;
        background-position: bottom -40px right 0;
        background-size: auto 260px;
    }
}
@media (max-width: 480px)
{
    .auto-insurance__types-item {
        background-size: auto 200px;
        background-position: bottom -20px right 0;
        padding: 16px 16px 115px 16px;
    }
}

/* texts */

.auto-insurance__advantages-title {
    font-size: 24px;
    line-height: 1.4;
    font-weight: 600;
    margin-bottom: 40px;
    text-align: center;
    margin-top: 40px;
}
.auto-insurance__advantages {
    margin-bottom: 80px;
    display: flex;
    -webkit-box-pack: justify;
    justify-content: space-between;
}
.auto-insurance__advantages-img {
    width: calc(50% - 20px);
    -webkit-box-flex: 0;
    flex: 0 0 calc(50% - 20px);
    border-radius: 16px;
    overflow: hidden;
    background: url(/assets/why-man-insurance.jpg) center center / cover no-repeat;
}
.auto-insurance__advantages-text {
    width: calc(50% - 20px);
    -webkit-box-flex: 0;
    flex: 0 0 calc(50% - 20px);
    padding: 28px 0px;
}
.list {
    margin: 0px;
    list-style-type: none;
    padding-left: 0px;
}
.list li p {
    font-size: 17px;
    line-height: 22px;
    margin: 0px;
    line-height: 1.6;
}
.list li p + p {
    margin-top: 8px;
}
.list li + li {
    margin-top: 40px;
}
.list li p b {
    display: block;
    font-size: 18px;
    line-height: 24px;
    font-weight: 600;
}

.auto-insurance__differences-title {
    font-size: 24px;
    line-height: 38px;
    font-weight: 600;
    margin-bottom: 46px;
    text-align: center;
}
.auto-insurance__differences {
    margin-bottom: 55px;
    display: flex;
    -webkit-box-pack: justify;
    justify-content: space-between;
    position: relative;
}
.auto-insurance__differences__slider {
    position: relative;
    display: flex;
}
.auto-insurance__differences__osago-kasko:first-child {
    margin-right: 45px;
}
.auto-insurance__differences__osago-kasko {
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    max-width: 565px;
}
.auto-insurance__differences__osago-kasko .osago-image {
    background-image: url(/assets/digital-man-osago.jpg);
}
.auto-insurance__differences__osago-kasko .kasko-image {
    background-image: url(/assets/differences-car-kasko.jpg);
}
.auto-insurance__differences__osago-kasko-img {
    width: 100%;
    -webkit-box-flex: 0;
    flex: 0 0 400px;
    border-radius: 16px;
    overflow: hidden;
    background: center center / cover no-repeat;
}
.auto-insurance__differences__osago-kasko-text {
    padding: 28px 0px;
}

@media (max-width: 768px) {
    .auto-insurance__advantages {
        flex-direction: column;
        margin-bottom: 30px;
    }
    .auto-insurance__advantages-text,
    .auto-insurance__advantages-img {
        flex: auto;
        width: 100%;
    }
    .auto-insurance__advantages-img {
        height: 300px;
    }
    .auto-insurance__differences__slider {
        flex-direction: column;
    }
    .auto-insurance__differences__osago-kasko:first-child {
        margin-right: 0;
    }
    .auto-insurance__differences__osago-kasko {
        max-width: 100%;
    }
    .auto-insurance__differences__osago-kasko-img {
        flex: 0 0 300px;
    }
}




/* grid */

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px; 
  font-family: sans-serif;
  margin-top: 20px;
}
.card {
  padding: 0;
  padding-bottom: 16px;
  text-align: center;
}

.card-icon {
  font-size: 2.5rem;
  margin-bottom: 12px;
}

.card-title {
  font-size: 1.25rem;
  margin: 0 0 8px 0;
  line-height: 1.4;
}

.card-text {
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
}
.card-icon img {
    width: 70px;
    height: 70px;
    filter: invert(15%) sepia(87%) saturate(4171%) hue-rotate(341deg) brightness(88%) contrast(96%);
    opacity: 0.8;
}



/* contacts */

.sdat-form-block--wrapper > .row {
    background-color: #f6f6f7;
    border-radius: 15px;
    padding: 32px;
    box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.1);
}
.contacts-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}
.sdat-form-block--content button {
    padding: 0 40px;
}
.sdat-form-block--form button {
    background-color: var(--red);
    max-width: 200px;
    width: 100%;
    margin-top: 15px;
}
.sdat-form-block .wpcf7-form-control-wrap {
    display: contents;
}
.sdat-form-block textarea {
    width: 100%;
    height: 110px;
    font-size: 18px;
    border-radius: 10px;
    border: 1px solid var(--black);    
    padding: 16px;
}
.sdat-form-block .wpcf7-spinner {
    background-color: #bbb;
    margin: 11px 0 0 15px;
}
.sdat-form-block .wpcf7-response-output{    
    margin: 15px 0 0 0 !important;
    width: 100%;
    grid-column: 1 / -1;
    padding: 5px 8px !important;
}
.sdat-form-block .wpcf7-not-valid-tip{    
    color: #fff;
    padding-top: 5px;
}
.sdat-form-block{position:relative;z-index:1;display:grid;grid-template-columns:490px auto;grid-gap:110px;padding:0;}@media(max-width:1200px){.sdat-form-block{grid-template-columns:50% auto;grid-gap:24px}}@media(max-width:768px){.sdat-form-block{grid-template-columns:auto;grid-gap:20px;padding:24px 0}}.sdat-form-block--wrapper{position:relative;overflow:hidden;background-position: 50% 50%;background-size:cover;}.sdat-form-block--wrapper.dark{background:linear-gradient(94.8deg,#303752 .58%,#2b3452 102.38%);-webkit-backdrop-filter:blur(64px);backdrop-filter:blur(64px)}.sdat-form-block--wrapper.dark .sdat-form-block--content:after{content:"";z-index:-1;position:absolute;width:624.31px;height:582.26px;left:-300px;top:-160px;background:rgba(83,148,253,.4);filter:blur(150px);transform:rotate(-20.27deg)}.sdat-form-block--content{font-weight:600;font-size:28px;line-height:42px;letter-spacing:-.02em;position:relative}.sdat-form-block--content h2{font-weight:700;text-align: left;margin-bottom:28px;line-height: 1.6}@media(max-width:768px){.sdat-form-block--content h2{font-size:20px;line-height:1.3;margin-bottom:8px}}.sdat-form-block--grid{display:grid;grid-template-columns:1fr 1fr;grid-gap:24px}@media(max-width:768px){.sdat-form-block--grid{grid-template-columns:auto;grid-gap:16px}}.sdat-form-block--form .round-textarea-wrapper{grid-column:1/3}@media(max-width:768px){.sdat-form-block--form .round-textarea-wrapper{grid-column:unset}}.sdat-form-block--form label{margin-bottom:0}.sdat-form-block--form .sdat-form-block-description{margin-top: 15px;grid-column:1/3;margin-bottom:8px;font-weight:400;font-size:14px;line-height:18px;}@media(max-width:768px){.sdat-form-block--form .sdat-form-block-description{grid-column:unset}}.sdat-form-block--form .sdat-form-block-description a{color:inherit;text-decoration:underline}.sdat-form-block--line{position:relative;font-weight:500;font-size:20px;line-height:1.7;}@media(max-width:768px){.sdat-form-block--line{font-weight:400;font-size:16px;line-height:24px}}.sdat-form-block--line img{position:absolute;top:-13px;margin-left:12px}.sdat-form-block--form .form-group--error input{border: 1px solid var(--red) !important;}

/* FORM */
.round-input{position:relative;width:100%;margin-bottom:0}.round-input .input-wrapper{position:relative;width:inherit}.round-input .input-wrapper+.error-text-form{margin-top:4px}.round-input.confirmed input{padding-right:50px;background-image:url(/_nuxt/931a8f6e672b75cad994c41b807c76ce.svg);background-repeat:no-repeat;background-position:calc(100% - 16px) 50%}.round-input.p-l input{padding-left:46px}.round-input::-webkit-input-placeholder{font-size:16px;line-height:24px;letter-spacing:-.01em;color:rgba(23,35,53,.48)}.round-input::-moz-placeholder{font-size:16px;line-height:24px;letter-spacing:-.01em;color:rgba(23,35,53,.48)}.round-input:-ms-input-placeholder{font-size:16px;line-height:24px;letter-spacing:-.01em;color:rgba(23,35,53,.48)}.round-input::placeholder{font-size:16px;line-height:24px;letter-spacing:-.01em;color:rgba(23,35,53,.48)}.round-input.small input{height:40px;font-size:16px;line-height:24px}.round-input.small input::-webkit-input-placeholder{color:rgba(23,35,53,.64)}.round-input.small input::-moz-placeholder{color:rgba(23,35,53,.64)}.round-input.small input:-ms-input-placeholder{color:rgba(23,35,53,.64)}.round-input.small input::placeholder{color:rgba(23,35,53,.64)}.round-input.large input{    border: 1px solid var(--black);background-color: #fff;height:60px;font-size:16px;border-radius:10px}.round-input.large input::-webkit-input-placeholder{line-height:60px;font-size:16px}.round-input.large input::-moz-placeholder{line-height:60px;font-size:16px}.round-input.large input:-ms-input-placeholder{line-height:60px;font-size:16px}.round-input.large input::placeholder{line-height:60px;font-size:16px}@media(max-width:768px){.round-input.large input{height:48px;border-radius:8px}.round-input.large input::-webkit-input-placeholder{line-height:48px}.round-input.large input::-moz-placeholder{line-height:48px}.round-input.large input:-ms-input-placeholder{line-height:48px}.round-input.large input::placeholder{line-height:48px}}.round-input.large65 input{height:65px;width:52px;font-weight:500;font-size:32px;line-height:48px;text-align:center}.round-input.large65 input::-webkit-input-placeholder{line-height:64px}.round-input.large65 input::-moz-placeholder{line-height:64px}.round-input.large65 input:-ms-input-placeholder{line-height:64px}.round-input.large65 input::placeholder{line-height:64px}.round-input.large80 input{height:80px;width:64px;font-weight:500;font-size:40px;line-height:48px;text-align:center}.round-input.large80 input::-webkit-input-placeholder{line-height:80px}.round-input.large80 input::-moz-placeholder{line-height:80px}.round-input.large80 input:-ms-input-placeholder{line-height:80px}.round-input.large80 input::placeholder{line-height:80px}@media(max-width:768px){.round-input.large80 input{height:60px;width:43px;font-weight:700;font-size:28px;line-height:34px}.round-input.large80 input::-webkit-input-placeholder{line-height:60px}.round-input.large80 input::-moz-placeholder{line-height:60px}.round-input.large80 input:-ms-input-placeholder{line-height:60px}.round-input.large80 input::placeholder{line-height:60px}}.round-input.clear-btn input{padding-right:48px}.round-input.uppercase input{text-transform:uppercase}.round-input.hide-appearance input::-webkit-inner-spin-button,.round-input.hide-appearance input::-webkit-outer-spin-button{-webkit-appearance:none;margin:0}.round-input.hide-appearance input[type=number]{-moz-appearance:textfield}.round-input.placeholder-accent input:not(:focus)::-webkit-input-placeholder{color:var(--black)}.round-input.placeholder-accent input:not(:focus)::-moz-placeholder{color:var(--black)}.round-input.placeholder-accent input:not(:focus):-ms-input-placeholder{color:var(--black)}.round-input.placeholder-accent input:not(:focus)::placeholder{color:var(--black)}.round-input input{height:48px;width:100%;padding:0 16px;margin:0;background-color:#f2f4f8;border-radius:8px;border:2px solid rgba(83,148,253,0);cursor:pointer;outline:none;cursor:text}.round-input input,.round-input input,.round-input input select{font-weight:400;font-size:16px;line-height:26px;letter-spacing:-.01em;color:var(--black)}@media(max-width:768px){.round-input input{height:40px;font-size:16px}}.round-input input.focus,.round-input input:focus,textarea.round-input:focus{background-color:#fff;border-color:var(--red) !important;outline: 0;}.round-input input:disabled{cursor:default;background-color:#f5f7fa}.round-input input:disabled input::-webkit-input-placeholder{color:rgba(23,35,53,.24)}.round-input input:disabled input::-moz-placeholder{color:rgba(23,35,53,.24)}.round-input input:disabled input:-ms-input-placeholder{color:rgba(23,35,53,.24)}.round-input input:disabled,.round-input input:disabled .placeholder,.round-input input:disabled input::placeholder{color:rgba(23,35,53,.24)}.round-input input::-webkit-input-placeholder,.round-input input::-webkit-input-placeholder{font-weight:400;font-size:16px;line-height:44px;color:rgba(23,35,53,.48)}.round-input input::-moz-placeholder,.round-input input::-moz-placeholder{font-weight:400;font-size:16px;line-height:44px;color:rgba(23,35,53,.48)}.round-input input:-ms-input-placeholder,.round-input input:-ms-input-placeholder{font-weight:400;font-size:16px;line-height:44px;color:rgba(23,35,53,.48)}.round-input input .placeholder,.round-input input::placeholder,.round-input input::placeholder{font-weight:400;font-size:16px;line-height:44px;color:rgba(23,35,53,.48)}@media(max-width:768px){.round-input input::-webkit-input-placeholder,.round-input input::-webkit-input-placeholder{font-size:16px;line-height:40px}.round-input input::-moz-placeholder,.round-input input::-moz-placeholder{font-size:16px;line-height:40px}.round-input input:-ms-input-placeholder,.round-input input:-ms-input-placeholder{font-size:16px;line-height:40px}.round-input input .placeholder,.round-input input::placeholder,.round-input input::placeholder{font-size:16px;line-height:40px}}.round-input input.error{background-color:#fef2f1}.round-input .icon-after{left:12px}.round-input .btn,.round-input .icon-after{position:absolute;top:50%;width:24px;height:24px;transform:translateY(-50%)}.round-input .btn{right:16px;cursor:pointer}.round-input .static-input-postfix{position:absolute;right:12px;top:50%;transform:translateY(-50%);font-weight:500;font-size:16px;line-height:24px;letter-spacing:-.01em;color:rgba(23,35,53,.48);-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}
.round-input{width:100%;margin-bottom:0}.round-input.confirmed input{padding-right:50px;background-image:url(/_nuxt/931a8f6e672b75cad994c41b807c76ce.svg);background-repeat:no-repeat;background-position:calc(100% - 16px) 50%}.round-input.large input{height:60px;font-size:16px;border-radius:10px}.round-input.large input::placeholder{font-size:16px}@media(max-width:768px){.round-input.large input{height:48px;border-radius:8px}}.round-input.large80 input{height:80px;width:64px;font-weight:500;font-size:40px;line-height:48px;text-align:center}@media(max-width:768px){.round-input.large80 input{height:60px;width:43px;font-weight:700;font-size:28px;line-height:34px}}.round-input input{height:48px;width:100%;padding:0 16px;margin:0;background-color:#f2f4f8;border-radius:8px;border:2px solid rgba(83,148,253,0);cursor:pointer;outline:none;cursor:text}.round-input input,.round-input input,.round-input input select{font-weight:400;font-size:16px;line-height:26px;letter-spacing:-.01em;color:var(--black)}@media(max-width:768px){.round-input input{height:40px;font-size:16px}}.round-input input.focus,.round-input input:focus{background-color:#fff;border-color:var(--red)}.round-input input:disabled{cursor:default;background-color:#f5f7fa}.round-input input:disabled input::-webkit-input-placeholder{color:rgba(23,35,53,.24)}.round-input input:disabled input::-moz-placeholder{color:rgba(23,35,53,.24)}.round-input input:disabled input:-ms-input-placeholder{color:rgba(23,35,53,.24)}.round-input input:disabled,.round-input input:disabled .placeholder,.round-input input:disabled input::placeholder{color:rgba(23,35,53,.24)}.round-input input::-webkit-input-placeholder,.round-input input::-webkit-input-placeholder{font-weight:400;font-size:16px;line-height:44px;color:rgba(23,35,53,.48)}.round-input input::-moz-placeholder,.round-input input::-moz-placeholder{font-weight:400;font-size:16px;line-height:44px;color:rgba(23,35,53,.48)}.round-input input:-ms-input-placeholder,.round-input input:-ms-input-placeholder{font-weight:400;font-size:16px;line-height:44px;color:rgba(23,35,53,.48)}.round-input input .placeholder,.round-input input::placeholder,.round-input input::placeholder{font-weight:400;font-size:16px;line-height:44px;color:rgba(23,35,53,.48)}@media(max-width:768px){.round-input input::-webkit-input-placeholder,.round-input input::-webkit-input-placeholder{font-size:16px;line-height:40px}.round-input input::-moz-placeholder,.round-input input::-moz-placeholder{font-size:16px;line-height:40px}.round-input input:-ms-input-placeholder,.round-input input:-ms-input-placeholder{font-size:16px;line-height:40px}.round-input input .placeholder,.round-input input::placeholder,.round-input input::placeholder{font-size:16px;line-height:40px}}.round-input input.error{background-color:#fef2f1}
.round-textarea-wrapper{display:flex}.round-textarea-wrapper .round-textarea{background:#f2f4f8;border-radius:8px;border:none;width:100%;outline:none}.round-textarea-wrapper .round-textarea::-webkit-input-placeholder{color:rgba(23,35,53,.48)}.round-textarea-wrapper .round-textarea::-moz-placeholder{color:rgba(23,35,53,.48)}.round-textarea-wrapper .round-textarea:-ms-input-placeholder{color:rgba(23,35,53,.48)}.round-textarea-wrapper .round-textarea::placeholder{color:rgba(23,35,53,.48)}.round-textarea-wrapper.large .round-textarea{padding:16px 20px;font-size:16px}


#message-alert-success {
    color: #4caf50;
    display: inline-block;
    padding: 10px;
    line-height: 26px;
}
#message-alert-error {
    color: var(--red);
    display: inline-block;
    padding: 10px;
    line-height: 26px;
}













.layout__footer { flex: 0 0 100%; margin: 40px auto 0; }
.page-layout { max-width: var(--page-content-width); margin: 0px auto; width: 100%; }
.page-layout > .page-layout__body--zebra > :nth-child(2n) > .section:not(.content-blocks).section:not(.covid__form, .conditions) { background: var(--gradient-surface); }
.mat-icon { font-family: var(--iizi-sys-typeface-icon); font-variation-settings: "FILL" 0, "wght" 300, "GRAD" 0, "opsz" 20; }
.page-layout p { line-height: 1.5; margin: 0px 0px 1em; }
.page-layout h1, .page-layout .h1, .page-layout h2, .page-layout .h2, .page-layout h3, .page-layout .h3 { margin: 0px; }
.page-layout h2.heading--logo, .page-layout .h2.heading--logo { margin-bottom: 60px; }
.page-layout h2.heading--logo, .page-layout .h2.heading--logo { position: relative; }
.page-layout h2.heading--logo::before, .page-layout h2.heading--logo::after, .page-layout .h2.heading--logo::before, .page-layout .h2.heading--logo::after { position: absolute; bottom: -24px; content: ""; }
.page-layout h2.heading--logo::before, .page-layout .h2.heading--logo::before { height: 12px; width: 12px; transform: translate(-50%, 50%); }
.page-layout h2.heading--logo::after, .page-layout .h2.heading--logo::after { width: 184px; height: 1px; background: linear-gradient(90deg,var(--secondary400) 38%,transparent 38%,transparent 62%,var(--secondary400) 62%); }
.page-layout h2.heading--logo, .page-layout .h2.heading--logo { text-align: center; }
.page-layout h2.heading--logo::before, .page-layout h2.heading--logo::after, .page-layout .h2.heading--logo::before, .page-layout .h2.heading--logo::after { left: 50%; }
.page-layout h2.heading--logo::after, .page-layout .h2.heading--logo::after { transform: translate(-50%); }
.page-layout h1:not([class]), .page-layout .h1 { font-size: var(--body-text-33); font-weight: var(--iizi-sys-weight-bold); line-height: 1.3; }
.page-layout h2:not([class]), .page-layout .h2 { font-size: var(--body-text-30); font-weight: var(--iizi-sys-weight-bold); line-height: 1.2; }
.page-layout h3:not([class]), .page-layout .h3 { font-size: var(--body-text-26); font-weight: var(--iizi-sys-weight-bold); line-height: 1.4; }
.error__actions .actions__contact .contact__item .iizi-icon { color: var(--iizi-sys-black); width: var(--icon-16); margin-top: 4px; margin-right: 4px; }

.page-layout { max-width: var(--page-content-width); margin: 0px auto; width: 100%; }
.page-layout > .page-layout__body--zebra > :nth-child(2n) > .section:not(.content-blocks).section:not(.covid__form, .conditions) { background: var(--gradient-surface); }
.main-layout--business .page-layout > .page-layout__body--zebra > :nth-child(2n) > .section:not(.content-blocks) { background: var(--gradient-surface-business); }
.main-layout--calc .page-layout > .page-layout__body--zebra > :nth-child(2n) > .section:not(.content-blocks) { background: transparent !important; }
.mat-icon { font-family: var(--iizi-sys-typeface-icon); font-variation-settings: "FILL" 0, "wght" 300, "GRAD" 0, "opsz" 20; }
.page-layout p, .my-layout p { line-height: 1.5; margin: 0px 0px 1em; }
.page-layout h1, .page-layout .h1, .page-layout h2, .page-layout .h2, .page-layout h3, .page-layout .h3, .page-layout h4, .page-layout .h4, .page-layout h5, .page-layout .h5, .my-layout h1, .my-layout .h1, .my-layout h2, .my-layout .h2, .my-layout h3, .my-layout .h3, .my-layout h4, .my-layout .h4, .my-layout h5, .my-layout .h5 { margin: 0px; }
.text .page-layout h1, .text .page-layout .h1, .text .page-layout h2, .text .page-layout .h2, .text .page-layout h3, .text .page-layout .h3, .text .page-layout h4, .text .page-layout .h4, .text .page-layout h5, .text .page-layout .h5, .text .my-layout h1, .text .my-layout .h1, .text .my-layout h2, .text .my-layout .h2, .text .my-layout h3, .text .my-layout .h3, .text .my-layout h4, .text .my-layout .h4, .text .my-layout h5, .text .my-layout .h5 { margin-bottom: 0.5em; }
.page-layout h1.heading--logo, .page-layout .h1.heading--logo, .page-layout h2.heading--logo, .page-layout .h2.heading--logo, .page-layout h3.heading--logo, .page-layout .h3.heading--logo, .page-layout h4.heading--logo, .page-layout .h4.heading--logo, .page-layout h5.heading--logo, .page-layout .h5.heading--logo, .my-layout h1.heading--logo, .my-layout .h1.heading--logo, .my-layout h2.heading--logo, .my-layout .h2.heading--logo, .my-layout h3.heading--logo, .my-layout .h3.heading--logo, .my-layout h4.heading--logo, .my-layout .h4.heading--logo, .my-layout h5.heading--logo, .my-layout .h5.heading--logo { margin-bottom: 60px; }
.page-layout h1.heading--logo, .page-layout .h1.heading--logo, .page-layout h2.heading--logo, .page-layout .h2.heading--logo, .page-layout h3.heading--logo, .page-layout .h3.heading--logo, .page-layout h4.heading--logo, .page-layout .h4.heading--logo, .page-layout h5.heading--logo, .page-layout .h5.heading--logo, .my-layout h1.heading--logo, .my-layout .h1.heading--logo, .my-layout h2.heading--logo, .my-layout .h2.heading--logo, .my-layout h3.heading--logo, .my-layout .h3.heading--logo, .my-layout h4.heading--logo, .my-layout .h4.heading--logo, .my-layout h5.heading--logo, .my-layout .h5.heading--logo { position: relative; }
.page-layout h1.heading--logo::before, .page-layout h1.heading--logo::after, .page-layout .h1.heading--logo::before, .page-layout .h1.heading--logo::after, .page-layout h2.heading--logo::before, .page-layout h2.heading--logo::after, .page-layout .h2.heading--logo::before, .page-layout .h2.heading--logo::after, .page-layout h3.heading--logo::before, .page-layout h3.heading--logo::after, .page-layout .h3.heading--logo::before, .page-layout .h3.heading--logo::after, .page-layout h4.heading--logo::before, .page-layout h4.heading--logo::after, .page-layout .h4.heading--logo::before, .page-layout .h4.heading--logo::after, .page-layout h5.heading--logo::before, .page-layout h5.heading--logo::after, .page-layout .h5.heading--logo::before, .page-layout .h5.heading--logo::after, .my-layout h1.heading--logo::before, .my-layout h1.heading--logo::after, .my-layout .h1.heading--logo::before, .my-layout .h1.heading--logo::after, .my-layout h2.heading--logo::before, .my-layout h2.heading--logo::after, .my-layout .h2.heading--logo::before, .my-layout .h2.heading--logo::after, .my-layout h3.heading--logo::before, .my-layout h3.heading--logo::after, .my-layout .h3.heading--logo::before, .my-layout .h3.heading--logo::after, .my-layout h4.heading--logo::before, .my-layout h4.heading--logo::after, .my-layout .h4.heading--logo::before, .my-layout .h4.heading--logo::after, .my-layout h5.heading--logo::before, .my-layout h5.heading--logo::after, .my-layout .h5.heading--logo::before, .my-layout .h5.heading--logo::after { position: absolute; bottom: -24px; content: ""; }
.page-layout h1.heading--logo::before, .page-layout .h1.heading--logo::before, .page-layout h2.heading--logo::before, .page-layout .h2.heading--logo::before, .page-layout h3.heading--logo::before, .page-layout .h3.heading--logo::before, .page-layout h4.heading--logo::before, .page-layout .h4.heading--logo::before, .page-layout h5.heading--logo::before, .page-layout .h5.heading--logo::before, .my-layout h1.heading--logo::before, .my-layout .h1.heading--logo::before, .my-layout h2.heading--logo::before, .my-layout .h2.heading--logo::before, .my-layout h3.heading--logo::before, .my-layout .h3.heading--logo::before, .my-layout h4.heading--logo::before, .my-layout .h4.heading--logo::before, .my-layout h5.heading--logo::before, .my-layout .h5.heading--logo::before { height: 12px; width: 12px; transform: translate(-50%, 50%); }
.page-layout h1.heading--logo::after, .page-layout .h1.heading--logo::after, .page-layout h2.heading--logo::after, .page-layout .h2.heading--logo::after, .page-layout h3.heading--logo::after, .page-layout .h3.heading--logo::after, .page-layout h4.heading--logo::after, .page-layout .h4.heading--logo::after, .page-layout h5.heading--logo::after, .page-layout .h5.heading--logo::after, .my-layout h1.heading--logo::after, .my-layout .h1.heading--logo::after, .my-layout h2.heading--logo::after, .my-layout .h2.heading--logo::after, .my-layout h3.heading--logo::after, .my-layout .h3.heading--logo::after, .my-layout h4.heading--logo::after, .my-layout .h4.heading--logo::after, .my-layout h5.heading--logo::after, .my-layout .h5.heading--logo::after { width: 184px; height: 1px; background: linear-gradient(90deg,var(--secondary400) 38%,transparent 38%,transparent 62%,var(--secondary400) 62%); }
.page-layout h1.heading--logo, .page-layout .h1.heading--logo, .page-layout h2.heading--logo, .page-layout .h2.heading--logo, .page-layout h3.heading--logo, .page-layout .h3.heading--logo, .page-layout h4.heading--logo, .page-layout .h4.heading--logo, .page-layout h5.heading--logo, .page-layout .h5.heading--logo, .my-layout h1.heading--logo, .my-layout .h1.heading--logo, .my-layout h2.heading--logo, .my-layout .h2.heading--logo, .my-layout h3.heading--logo, .my-layout .h3.heading--logo, .my-layout h4.heading--logo, .my-layout .h4.heading--logo, .my-layout h5.heading--logo, .my-layout .h5.heading--logo { text-align: center; }
.page-layout h1.heading--logo::before, .page-layout h1.heading--logo::after, .page-layout .h1.heading--logo::before, .page-layout .h1.heading--logo::after, .page-layout h2.heading--logo::before, .page-layout h2.heading--logo::after, .page-layout .h2.heading--logo::before, .page-layout .h2.heading--logo::after, .page-layout h3.heading--logo::before, .page-layout h3.heading--logo::after, .page-layout .h3.heading--logo::before, .page-layout .h3.heading--logo::after, .page-layout h4.heading--logo::before, .page-layout h4.heading--logo::after, .page-layout .h4.heading--logo::before, .page-layout .h4.heading--logo::after, .page-layout h5.heading--logo::before, .page-layout h5.heading--logo::after, .page-layout .h5.heading--logo::before, .page-layout .h5.heading--logo::after, .my-layout h1.heading--logo::before, .my-layout h1.heading--logo::after, .my-layout .h1.heading--logo::before, .my-layout .h1.heading--logo::after, .my-layout h2.heading--logo::before, .my-layout h2.heading--logo::after, .my-layout .h2.heading--logo::before, .my-layout .h2.heading--logo::after, .my-layout h3.heading--logo::before, .my-layout h3.heading--logo::after, .my-layout .h3.heading--logo::before, .my-layout .h3.heading--logo::after, .my-layout h4.heading--logo::before, .my-layout h4.heading--logo::after, .my-layout .h4.heading--logo::before, .my-layout .h4.heading--logo::after, .my-layout h5.heading--logo::before, .my-layout h5.heading--logo::after, .my-layout .h5.heading--logo::before, .my-layout .h5.heading--logo::after { left: 50%; }
.page-layout h1.heading--logo::after, .page-layout .h1.heading--logo::after, .page-layout h2.heading--logo::after, .page-layout .h2.heading--logo::after, .page-layout h3.heading--logo::after, .page-layout .h3.heading--logo::after, .page-layout h4.heading--logo::after, .page-layout .h4.heading--logo::after, .page-layout h5.heading--logo::after, .page-layout .h5.heading--logo::after, .my-layout h1.heading--logo::after, .my-layout .h1.heading--logo::after, .my-layout h2.heading--logo::after, .my-layout .h2.heading--logo::after, .my-layout h3.heading--logo::after, .my-layout .h3.heading--logo::after, .my-layout h4.heading--logo::after, .my-layout .h4.heading--logo::after, .my-layout h5.heading--logo::after, .my-layout .h5.heading--logo::after { transform: translate(-50%); }
.page-layout h1:not([class]), .page-layout .h1, .my-layout h1:not([class]), .my-layout .h1 { font-size: var(--body-text-33); font-weight: var(--iizi-sys-weight-bold); line-height: 1.3; }
.page-layout h2:not([class]), .page-layout .h2, .my-layout h2:not([class]), .my-layout .h2 { font-size: var(--body-text-30); font-weight: var(--iizi-sys-weight-bold); line-height: 1.2; }
.page-layout h3:not([class]), .page-layout .h3, .my-layout h3:not([class]), .my-layout .h3 { font-size: var(--body-text-26); font-weight: var(--iizi-sys-weight-bold); line-height: 1.4; }
.page-layout h4:not([class]), .page-layout .h4, .my-layout h4:not([class]), .my-layout .h4 { font-size: var(--body-text-24); font-weight: var(--iizi-sys-weight-bold); line-height: 1.4; }
.page-layout h5:not([class]), .page-layout .h5, .my-layout h5:not([class]), .my-layout .h5 { font-size: var(--body-text-20); font-weight: var(--iizi-sys-weight-bold); line-height: 1.4; }
.submit-form .submit-form__msg .iizi-icon { font-size: var(--body-text-55); }
.submit-form .submit-form__info .iizi-icon { font-size: var(--body-text-20); color: var(--primary); margin-right: 0.5em; }
.icon-list li .iizi-icon { font-size: var(--icon-24); color: var(--brand-neutral400); width: var(--icon-32); }
.page-layout__body--news .ctc { background: var(--gradient-surface); }
.page-layout__body--news .error { margin-left: auto; margin-right: auto; max-width: var(--text-content-width) !important; padding: 0 var(--container-padding) !important; }
.overview .overview__header .mat-button .mat-icon { margin-top: -4px; }
.calc-layout .prices .price__cta .mat-icon { font-weight: 400; font-size: var(--icon-24); vertical-align: middle; }
.calc-layout .prices .price--recommended .price__caption .title { color: var(--iizi-sys-white); font-size: var(--body-text-12); text-transform: uppercase; letter-spacing: 3px; font-weight: var(--iizi-sys-weight-bold); }
.calc-layout .packages .package--recommended .package__caption .title { color: var(--iizi-sys-neutral-neutral100); font-size: var(--body-text-12); text-transform: uppercase; letter-spacing: 3px; font-weight: var(--iizi-sys-weight-bold); }
.selection-card .toggle-showmore .toggle-showmore__trigger .mat-icon { vertical-align: middle; transform: rotate(0deg); transition: var(--transition); }
.selection-card .toggle-showmore.active .toggle-showmore__trigger .mat-icon { transform: rotate(180deg); transition: var(--transition); }
@keyframes _ngcontent-iizi-ngx-c877444968_folding { 
  0%, 10% { transform: perspective(140px) rotateX(-180deg); opacity: 0; }
  25%, 75% { transform: perspective(140px) rotateX(0deg); opacity: 1; }
  90%, 100% { transform: perspective(140px) rotateY(180deg); opacity: 0; }
}
@keyframes _ngcontent-iizi-ngx-c877444968_opacity-anim { 
  0%, 10% { opacity: 0; }
  25%, 65% { opacity: 1; }
  80%, 100% { opacity: 0; }
}
@keyframes _ngcontent-iizi-ngx-c877444968_rotate { 
  100% { transform: rotate(360deg); }
}
@keyframes _ngcontent-iizi-ngx-c877444968_prixClipFix { 
  0% { clip-path: polygon(50% 50%, 0px 0px, 0px 0px, 0px 0px, 0px 0px, 0px 0px); }
  25% { clip-path: polygon(50% 50%, 0px 0px, 100% 0px, 100% 0px, 100% 0px, 100% 0px); }
  50% { clip-path: polygon(50% 50%, 0px 0px, 100% 0px, 100% 100%, 100% 100%, 100% 100%); }
  75% { clip-path: polygon(50% 50%, 0px 0px, 100% 0px, 100% 100%, 0px 100%, 0px 100%); }
  100% { clip-path: polygon(50% 50%, 0px 0px, 100% 0px, 100% 100%, 0px 100%, 0px 0px); }
}
.maintenance .maintenance__body .iizi-icon { margin-right: 0.75em; vertical-align: middle; }
.mainheader .branding { order: 1; z-index: 111; flex: 0 0 auto; margin: 8px 16px 8px 0px; font-size: var(--body-text); display: flex; align-items: center; }
.mainheader .branding .branding__logo { display: block; vertical-align: top; line-height: 0; height: 32px; width: 32px; }
.mainheader .branding .branding__logo--partner { width: 100%; }
.mainheader .branding .branding__logo--partner .iizi-icon { height: 100%; }
.mainheader .branding .branding__logo--partner img { width: auto; }
.mainheader .branding .branding__title { color: var(--iizi-sys-neutral-neutral20); font-size: var(--body-text); margin: 0px; font-weight: var(--iizi-sys-weight-regular); padding: 0px 0px 0px 1em; }
.mainheader .langmenu .langmenu__trigger .iizi-icon { margin: 4px 0px; width: 24px; height: 18px; border: 1px solid var(--iizi-sys-neutral-neutral80); }
.mainheader .megamenu .megamenu__content .megamenu__item.offset > .megamenu__link { position: absolute; right: var(--container-padding-lg); top: auto; display: flex; align-self: center; height: auto; width: auto; border: 1px solid var(--iizi-sys-primary-primary40); color: var(--iizi-sys-primary-primary40); border-radius: 4px; font-size: var(--body-text); background-color: var(--iizi-sys-white); padding: 0.25em 1em; }
.mainheader .megamenu__dropdown .submenu__item.submenu__item--card .navigation-card__image { max-width: 4em; line-height: 0; display: inline-block; vertical-align: baseline; }
.mainheader .megamenu__dropdown .submenu__item.submenu__item--card .navigation-card__icon { display: none; }
.mainheader .stepsmenu .toggle-button .iizi-icon { font-size: var(--icon-24); }
.mainheader .stepsmenu .steps .substeps li button .iizi-icon { margin-top: 3px; margin-right: 5px; }
:root .main-layout.main-layout--calc .mainheader .branding { order: 1; margin: 16px auto 15px 0px; }
:root .main-layout.main-layout--myiizi .mainheader .branding { order: 1; margin: 16px auto 15px 0px; }
@keyframes scale-in { 
  0% { transform: scale(0); }
  80% { transform: scale(1.1); }
  100% { transform: scale(1); }
}
.lite-header .header__breadcrumbs .toggle-button:disabled .mat-icon, .question-header .header__breadcrumbs .toggle-button:disabled .mat-icon { visibility: hidden; opacity: 0; }
.mainfooter { margin-top: 0px; display: flex; justify-content: center; align-items: center; flex-flow: wrap; position: relative; z-index: 1; font-size: var(--body-text); line-height: 1.5; color: var(--iizi-sys-neutral-neutral100); background: var(--gradient-footer); }
.mainfooter .mainfooter__newsletter { flex: 0 0 100%; display: flex; place-content: center; align-items: center; flex-flow: wrap; background: var(--gradient-footer-reverse); max-width: var(--container-max-width); }
.mainfooter .mainfooter__newsletter .newsletter { max-width: var(--container-max-width); padding: 3em 15%; display: flex; flex-wrap: nowrap; align-items: center; }
.mainfooter .mainfooter__newsletter .newsletter__copy { flex: 1 1 40%; padding-right: 2em; }
.mainfooter .mainfooter__newsletter .newsletter__title { font-size: var(--body-text-20); font-weight: var(--iizi-sys-weight-bold); }
.mainfooter .mainfooter__newsletter .newsletter__body { padding: 1em 0px; }
.mainfooter .mainfooter__newsletter .newsletter__form { flex: 1 1 60%; padding-left: 2em; }
.mainfooter .mainfooter__newsletter .form__saved, .mainfooter .mainfooter__newsletter .form__error { text-align: center; position: relative; }
.mainfooter .mainfooter__newsletter .form__saved .iizi-icon, .mainfooter .mainfooter__newsletter .form__error .iizi-icon { font-size: var(--body-text-26); }
.mainfooter .mainfooter__newsletter .form__saved .iizi-icon { color: var(--iizi-sys-success-success40); }
.mainfooter .mainfooter__newsletter .form__error .iizi-icon { color: var(--iizi-sys-error-error35); }
.mainfooter .mainfooter__newsletter .form__submit { display: flex; position: relative; }
.mainfooter .mainfooter__newsletter .form__submit .iizi-icon { font-size: var(--body-text-26); line-height: 1; transform: rotate(-33deg); }
.mainfooter .mainfooter__newsletter .form__email { flex: 1 1 auto; color: var(--iizi-sys-color-body); }
.mainfooter .mainfooter__newsletter .form__button { text-align: right; padding-bottom: 1em; }
.mainfooter .mainfooter__container { flex: 0 0 100%; display: flex; place-content: center flex-start; align-items: stretch; flex-flow: wrap; max-width: var(--container-max-width); padding: 4em var(--container-padding-lg) 0; }
.mainfooter .mainfooter__container ol, .mainfooter .mainfooter__container ul { margin: 0px; }
.mainfooter .mainfooter__container a, .mainfooter .mainfooter__container button { font-size: inherit; line-height: 1.5; font-family: inherit; margin: 0px; border-width: medium; border-style: none; border-color: currentcolor; border-image: initial; color: currentcolor; background: transparent; cursor: pointer; padding: 0px; }
.mainfooter .mainfooter__container a:hover, .mainfooter .mainfooter__container a:focus, .mainfooter .mainfooter__container button:hover, .mainfooter .mainfooter__container button:focus { color: var(--brand); }
.mainfooter .mainfooter__container .title { color: var(--brand); font-size: var(--body-text-20); font-weight: var(--iizi-sys-weight-bold); text-align: left; margin-bottom: 15px; }
.mainfooter .nav { flex: 1 1 66%; display: flex; flex-flow: wrap; align-items: flex-start; justify-content: flex-start; }
.mainfooter .nav .nav__item { flex: 0 0 33%; }
.mainfooter .nav .nav__item li { margin-top: 1em; }
.mainfooter .nav .nav__item li .iizi-icon { line-height: 1; margin-right: 0.5em; display: inline-block; vertical-align: middle; color: color-mix(in srgb,var(--iizi-sys-neutral-neutral100) 40%,transparent); }
.mainfooter .nav .nav__item li .iizi-icon svg { height: 1em; width: 1em; }
.mainfooter .nav .nav__item.offset { margin-top: -5em; }
.mainfooter .nav .nav__item.extra-item { display: none; }
.mainfooter .nav .nav__trigger { width: 100%; padding: 0.75em 0px; position: relative; }
.mainfooter .nav .nav__trigger::after { content: "+"; position: absolute; right: 0px; top: 0.75em; z-index: 2; color: var(--secondary500); }
.mainfooter .nav .nav__trigger:hover::after, .mainfooter .nav .nav__trigger:focus::after { color: var(--brand); }
.mainfooter .nav .nav__trigger.nav__trigger--active::after { content: "-"; }
.mainfooter .nav .nav__dropdown { flex: 1 1 100%; overflow: hidden; clip: rect(1px, 1px, 1px, 1px); height: 0px; margin: 0px; }
.mainfooter .nav .nav__dropdown.nav__dropdown--active { clip: auto; height: auto; overflow: visible; }
.mainfooter .social { flex: 1 1 33%; display: flex; flex-wrap: wrap; align-content: flex-start; }
.mainfooter .social .social__item { flex: 1 1 100%; }
.mainfooter .social .social__item ul { margin-top: 1em; }
.mainfooter .social .social__item.social__item--app { padding: 0px 0px 3em; }
.mainfooter .social .social__item.social__item--app li { display: inline-block; vertical-align: top; padding-right: 1em; padding-bottom: 1em; }
.mainfooter .social .social__item.social__item--app img { height: 40px; width: auto; }
.mainfooter .social .social__item.social__item--social li { display: inline-block; vertical-align: top; margin-right: 2em; }
.mainfooter .social .social__item.social__item--social svg { height: 1.5em; width: auto; fill: var(--iizi-sys-neutral-neutral100); }
.mainfooter .branding { display: flex; align-items: center; justify-content: flex-start; flex: 1 1 100%; font-size: var(--body-text-14); padding: 4em 0px 3em; }
.mainfooter .branding .branding__logos { flex: 0 0 33%; display: flex; flex-flow: row; place-content: center; }
.mainfooter .branding .branding__logos .branding__item { flex: 1 1 auto; align-self: center; padding: 0px 16px 0px 0px; font-size: var(--body-text-12); font-weight: var(--iizi-sys-weight-bold); }
.mainfooter .branding .branding__logos .branding__item.branding__item--logo { flex: 0 0 67px; line-height: 0; font-size: 0px; }
.mainfooter .branding .branding__logos .branding__item.branding__item--text { padding-right: 15%; }
.mainfooter .branding .branding__logos .branding__item figure, .mainfooter .branding .branding__logos .branding__item img, .mainfooter .branding .branding__logos .branding__item svg { width: 100%; height: auto; }
.mainfooter .branding .branding__nav { flex: 0 0 66%; display: flex; flex-flow: wrap; align-items: center; justify-content: flex-start; }
.mainfooter .branding .branding__nav li { padding: 0.5em 0px 0.5em 2em; flex: 0 0 auto; }
.mainfooter .disclaimer { color: var(--iizi-sys-neutral-neutral100); padding: 30px 20px; text-align: center; position: relative; width: 100%; }
.mainfooter .disclaimer > p { opacity: 0.7; font-size: var(--body-text-12); }
.main-layout--calc .mainfooter, .main-layout--myiizi .mainfooter { color: var(--iizi-sys-color-body); background: var(--brand-neutral200); }
.main-layout--calc .mainfooter::after, .main-layout--myiizi .mainfooter::after { content: ""; background-color: var(--brand-neutral200); position: absolute; height: 100%; left: -100%; right: -100%; bottom: 0px; z-index: 0; }
.main-layout--calc .mainfooter .title, .main-layout--myiizi .mainfooter .title { display: none; }
.main-layout--calc .mainfooter .mainfooter__container, .main-layout--myiizi .mainfooter .mainfooter__container { padding: 3em var(--container-padding-lg); border-width: medium; border-style: none; border-color: currentcolor; border-image: initial; z-index: 1; }
.main-layout--calc .mainfooter .nav, .main-layout--myiizi .mainfooter .nav { flex: 1 1 100%; padding-bottom: 0px; display: flex; column-count: unset; justify-content: space-between; }
.main-layout--calc .mainfooter .nav .nav__item, .main-layout--myiizi .mainfooter .nav .nav__item { flex: 0 0 auto; width: auto; padding-bottom: 0px; }
.main-layout--calc .mainfooter .nav .nav__item li, .main-layout--myiizi .mainfooter .nav .nav__item li { margin-top: 0px; margin-right: 1.5em; margin-bottom: 0px; display: inline-block; vertical-align: top; }
.main-layout--calc .mainfooter .nav .nav__item li .iizi-icon, .main-layout--myiizi .mainfooter .nav .nav__item li .iizi-icon { color: color-mix(in srgb,var(--iizi-sys-color-body),60%,transparent); }
.main-layout--calc .mainfooter .nav .nav__item:last-child, .main-layout--myiizi .mainfooter .nav .nav__item:last-child { text-align: right; border-left: 1px solid var(--brand-neutral300); }
.main-layout--calc .mainfooter .nav .nav__item:last-child a, .main-layout--myiizi .mainfooter .nav .nav__item:last-child a { text-decoration: underline; }
.main-layout--calc .mainfooter .nav .nav__item:last-child li, .main-layout--myiizi .mainfooter .nav .nav__item:last-child li { margin-left: 1.5em; margin-right: 0px; }
.main-layout--myiizi .layout__footer { display: none; }
.main-layout--myiizi .mainfooter { color: var(--iizi-sys-white); background: var(--gradient-neutral-variant40); }
.main-layout--myiizi .mainfooter::after { content: ""; background: var(--gradient-neutral-variant40); }
.main-layout--business .mainfooter { background: var(--gradient-footer-business); }
.main-layout--business .mainfooter .mainfooter__newsletter { background: var(--gradient-footer-reverse-business); }
.page-layout .arguments-list__list.grid--gutter-default { margin-bottom: -20px; }
.page-layout .grid--gutter-default > .arguments-list__col.grid__col { margin-bottom: 20px; }
.navigation-card[_ngcontent-iizi-ngx-c2822645530] { position: relative; display: block; height: 100%; }
.navigation-card__image[_ngcontent-iizi-ngx-c2822645530] { width: 75px; }
.navigation-card__icon[_ngcontent-iizi-ngx-c2822645530] { color: var(--secondary400); font-size: var(--body-text-13); line-height: 1.4; vertical-align: middle; }
.navigation-card__title[_ngcontent-iizi-ngx-c2822645530] { font-size: var(--body-text); line-height: 1.4; }
.navigation-card__badge[_ngcontent-iizi-ngx-c2822645530] { position: absolute; top: 24px; right: 10px; transform: translateY(-100%); z-index: 1; }
.navigation-card__lottie[_ngcontent-iizi-ngx-c2822645530] { width: 75px; height: auto; display: block; }
@keyframes fb_transform { 
  0% { opacity: 0; transform: scale(0.95); }
  100% { opacity: 1; transform: scale(1); }
}
@keyframes rotateSpinner { 
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
@media only screen and (min-width: 1200px){.page-layout h2.heading--logo, .page-layout .h2.heading--logo { margin-bottom: 48px; }
.page-layout h1:not([class]), .page-layout .h1 { font-size: var(--body-text-55); line-height: 1.3; }
.page-layout h2:not([class]), .page-layout .h2 { font-size: var(--body-text-38); line-height: 1.4; }
.page-layout h3:not([class]), .page-layout .h3 { font-size: var(--body-text-26); line-height: 1.4; }
.page-layout h1.heading--logo, .page-layout .h1.heading--logo, .page-layout h2.heading--logo, .page-layout .h2.heading--logo, .page-layout h3.heading--logo, .page-layout .h3.heading--logo, .page-layout h4.heading--logo, .page-layout .h4.heading--logo, .page-layout h5.heading--logo, .page-layout .h5.heading--logo, .my-layout h1.heading--logo, .my-layout .h1.heading--logo, .my-layout h2.heading--logo, .my-layout .h2.heading--logo, .my-layout h3.heading--logo, .my-layout .h3.heading--logo, .my-layout h4.heading--logo, .my-layout .h4.heading--logo, .my-layout h5.heading--logo, .my-layout .h5.heading--logo { margin-bottom: 48px; }
.page-layout h1:not([class]), .page-layout .h1, .my-layout h1:not([class]), .my-layout .h1 { font-size: var(--body-text-55); line-height: 1.3; }
.page-layout h2:not([class]), .page-layout .h2, .my-layout h2:not([class]), .my-layout .h2 { font-size: var(--body-text-38); line-height: 1.4; }
.page-layout h3:not([class]), .page-layout .h3, .my-layout h3:not([class]), .my-layout .h3 { font-size: var(--body-text-26); line-height: 1.4; }
.page-layout h4:not([class]), .page-layout .h4, .my-layout h4:not([class]), .my-layout .h4 { font-size: var(--body-text-24); line-height: 1.4; }
.page-layout h5:not([class]), .page-layout .h5, .my-layout h5:not([class]), .my-layout .h5 { font-size: var(--body-text-20); line-height: 1.4; }
.page-layout__body--news .error { padding: 0 var(--container-padding-lg) !important; }
.page-layout .stats-grid__col.grid__col--lg { flex-basis: 20%; max-width: 20%; }
.page-layout .stat__title.h2 { line-height: 0.85; }}
@media (max-width: 767px){.calc-layout .packages .package__body .package__argument .argument__value .mat-icon { position: relative; top: -3px; }
.mainheader .branding { order: 3; margin-right: auto; }
.mainheader .branding .branding__title { display: none; }
.mainheader .megamenu .megamenu__content .megamenu__item.offset { border-top-width: medium; border-top-style: none; border-top-color: currentcolor; padding: 1.5em var(--calc-viewport-padding); order: 1; }
.mainheader .megamenu .megamenu__content .megamenu__item.offset > .megamenu__link { position: relative; right: auto; top: 0px; width: 100%; display: block; text-align: center; padding: 0.5em 1em; }
:root .main-layout.main-layout--myiizi .mainheader .branding__title { display: block; }
.lite-header .header__breadcrumbs .toggle-button .mat-icon, .question-header .header__breadcrumbs .toggle-button .mat-icon { width: 16px; height: 16px; font-size: var(--body-text); }
.mainfooter .mainfooter__newsletter .newsletter { flex-wrap: wrap; padding: 2em var(--calc-viewport-padding); }
.mainfooter .mainfooter__newsletter .newsletter__copy { flex: 1 1 100%; padding-right: 0px; padding-bottom: 1em; }
.mainfooter .mainfooter__newsletter .newsletter__form { flex: 1 1 100%; padding-left: 0px; }
.mainfooter .mainfooter__container { padding: 0 var(--calc-viewport-padding); }
.mainfooter .nav { flex: 0 0 100%; order: 0; padding-bottom: 0px; display: flex; column-count: unset; }
.mainfooter .nav .nav__item { flex: 0 0 100%; position: relative; padding-bottom: 0px; }
.mainfooter .nav .nav__item::after { content: ""; position: absolute; left: var(--calc-viewport-padding-neg); right: var(--calc-viewport-padding-neg); bottom: 0px; z-index: 2; border-bottom: 1px solid color-mix(in srgb,var(--iizi-sys-neutral-neutral100) 20%,transparent); }
.mainfooter .nav .nav__item li { margin-top: 0px; margin-bottom: 1em; }
.mainfooter .nav .nav__item.offset { margin-top: 0px; }
.mainfooter .nav .nav__item.extra-item { display: block; }
.mainfooter .social { flex: 0 0 100%; order: 1; }
.mainfooter .social .social__item.social__item--app { padding: 3em 0px 0px; }
.mainfooter .social .social__item.social__item--social { padding: 3em 0px 0px; }
.mainfooter .branding { order: 3; padding: 3em 0px; }
.mainfooter .branding .branding__logos { flex: 0 0 100%; }
.mainfooter .branding .branding__logos .branding__item.branding__item--text { padding-right: 0px; }
.mainfooter .branding .branding__nav { display: none; }
.mainfooter .disclaimer { order: 4; padding: 3em 0px; }
.main-layout--calc .mainfooter .nav .nav__item, .main-layout--myiizi .mainfooter .nav .nav__item { flex: 1 1 100%; }
.main-layout--calc .mainfooter .nav .nav__item::after, .main-layout--myiizi .mainfooter .nav .nav__item::after { display: none; }
.main-layout--calc .mainfooter .nav .nav__item:last-child, .main-layout--myiizi .mainfooter .nav .nav__item:last-child { text-align: left; margin-top: 1em; border-left-width: medium; border-left-style: none; border-left-color: currentcolor; border-top: 1px solid var(--brand-neutral300); }
.main-layout--calc .mainfooter .nav .nav__item:last-child li, .main-layout--myiizi .mainfooter .nav .nav__item:last-child li { display: block; margin-top: 1em; margin-left: 0px; }
.iizi-icon .iizi-icon__svg.icon-partner-medium-xl { height: 48px; width: 100px; margin-right: 0px !important; margin-top: 0px !important; }}
@media (max-width: 1200px){.mainheader .megamenu .megamenu__content .megamenu__item.offset > .megamenu__link { right: var(--container-padding); }
.mainfooter .mainfooter__container { padding: 4em var(--calc-viewport-padding) 0; }
.main-layout--calc .mainfooter .mainfooter__container, .main-layout--myiizi .mainfooter .mainfooter__container { padding: 2em var(--container-padding); }}
@media (max-width: 993px){.mainfooter .nav { padding-bottom: 3em; display: block; column-count: 2; }
.mainfooter .nav .nav__item { flex: 0 0 50%; display: inline-block; width: 100%; vertical-align: top; padding-bottom: 2em; }
.mainfooter .nav .nav__item.offset { margin-top: 0px; }}
@media only screen and (min-width: 768px){.main-layout--myiizi .layout__footer { display: block; }
.page-layout .arguments-list__list.grid--gutter-default { margin-bottom: -32px; }
.page-layout .grid--gutter-default > .arguments-list__col.grid__col { margin-bottom: 32px; }}
@media only screen and (max-width: 767px){.page-layout .content-image__grid.grid--gutter-default { margin-bottom: -24px; }
.page-layout .grid--gutter-default > .content-image__col { margin-bottom: 24px; }}
@media only screen and (max-width: 480px) {
    .mainfooter .nav { column-count: 1;}
}