* 
{
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}


*:focus 
{
    outline: 0;
}

a
{
    text-decoration: none;
    color:#000;
}

.mobile
{
    display: block;
}

.desktop
{
    display: none;
}

.middle
{
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.center
{
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
}

.end
{
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    text-align: end;
}

.auto-width
{
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    max-width: 100%;
}

.flex
{
    display:flex;
}

.bottom
{
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
}


img
{
    border:0px;
}


select
{
    -webkit-appearance: none;
    -moz-appearance:    none;
    appearance:         none;   
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
}

.no-scrolable 
{
    overflow: hidden;
}

.default-button
{
    padding: 5px 20px;
    background-color: #eb3d54;
    border-radius: 8px;
    color:#fff;
    font-size: 14px;
    letter-spacing: 0.5px;
}

.default-button.big
{
    font-size: 18px;
    font-weight: 600;

}

.default-button.blue
{
    background-color:#3678dc;
}

.item-layout
{
    padding: 100px 0;
}

.item-layout.inline-title
{
    padding: 50px 0;
}

.item-layout.colored
{
    background-color: #f5f5f5;
}

.item-layout:nth-child(1) 
{
    padding-top: 0;
}

.item-layout:nth-child(2n+3) 
{
    background: #f5f5f5;
    
}

.item-layout.no-color 
{
    background-color:transparent !important;
    
}

.item-layout .item-content
{
    max-width: 1070px;
    margin:  0 auto;
    
}

.item-layout .item-content h2
{
    font-size: 30px;
    line-height: 52px;
    font-weight: 400;
    margin: 0;
    padding: 0;
}

.item-layout.inline-title h2
{
    margin-bottom: 30px;
    margin-top: 10px;
}


.item-layout .item-content span
{
    font-size:18px;
}

.item-layout .items
{
    margin-top: 0px;
    margin-bottom: 20px;
}

.item-layout.inline-title .items
{
    margin-top: 20px;
    
}




.item-layout .items .item
{
    margin: 0 20px;
}

.item-layout .items .text
{
    text-align: left;
    line-height: 24px;
}

.item-layout .items .image
{
    display: flex;
}

.item-layout .items .image img
{
    width: 100%;
    border-radius: 10px;
}

.item-layout.no-top-padding
{
    padding-top:0;
}

.item-layout.no-bottom-padding
{
    padding-bottom: 0;
}

.item-layout .inline-button
{
    margin-top: 30px;
}

.tick
{
    margin: 0;
    padding-left: 20px;
    position: relative;
}

.tick::after
{
    content: "";
    position: absolute;
    left: 0;
    top: -3;
    background: url('../images/icon-tick.svg') no-repeat left center;
    background-size: 46%;
    width: 30px;
    height: 30px;
}