/* CSS Resets */
html {
    color: #000;
}

body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
legend,
input,
textarea,
p,
blockquote,
th,
td {
    margin: 0;
    padding: 0;
}

/* remove all margins and paddings. do not use * because it puts load on browser */
table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* remove default cell spacing */
ol,
ul {
    list-style: none;
}

caption,
th {
    text-align: left;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-size: 100%;
    font-weight: normal;
}

/* reset all headings to normal */
input,
textarea,
select {}

/* because form elements do not inherit from body, they take from operating system */
img {
    border: 0;
    margin: 0;
    padding: 0
}

/* remove image border */
article,
section,
aside,
hgroup,
nav,
header,
footer,
figure,
figcaption,
div {
    display: block;
}

/* for non html5 browsers */
body {
    font-size: 14px;
    line-height: 1.2;
    font-family: Arial, Helvetica, sans-serif;
    background: url(../images/avast-bg.png);
    background-size: 100% 100%, cover;
}

/* set for consistency across browsers */
a {
    text-decoration: none;
    outline: none;
}

input {
    outline: none;
}

img {
    height: auto;
}

.clear {
    clear: both;
}

* {
    box-sizing: border-box;
}

.fleft {
    float: left;
}

.fright {
    float: right;
}

.hide {
    display: none;
}

.breadcrumb {
    position: absolute;
    top: -30px;
    left: 0;
}

.breadcrumb li {
    color: #9d9d9c;
    display: inline-block;
    font-size: 12px;
    margin-right: 5px;
}

.breadcrumb li span {
    color: #f04e29;
}

.breadcrumb li a {
    color: #9d9d9c;
}

.breadcrumb li a:hover,
.breadcrumb li a:focus {
    color: #f04e29;
}

.inner {
    width: 90%;
    margin: auto;
    padding-bottom: 90px;
}

.header {
    background: #fff;
    /* height: 71px; */
}

.header .fleft {
    margin: 12px 0 0 0;
}

.container {
    clear: both;
    display: table;
    width: 100%;
    margin: 70px 0 0 0;
}

.container .left-col {
    display: table-cell;
    width: 50%;
    padding: 20px 0 0 80px;
    vertical-align: top;
}

.container .left-col h1 {
    color: #000;
    font-size: 43px;
    margin: 0 0 10px 0;
}

.container .left-col h2 {
    color: #000;
    font-size: 61px;
    margin: 0 0 10px 0;
}

.container .right-col {
    display: table-cell;
    width: 50%;
    background: url(../images/saprater.png) left top no-repeat;
    vertical-align: top;
    padding: 15px 50px 0 67px;
}

.container .right-col p {
    color: #000;
    font-size: 18px;
    line-height: 32px;
}

.continue {
    width: 136px;
    line-height: 56px;
    border: solid 1px #616161;
    color: #fff;
    background: #000;
    text-align: center;
    margin: 25px 0 0 0;
    display: block;
    font-size: 18px;
}

.support {
    padding-left: 80px;
}

.support li {
    margin-bottom: 15px;
}

.support img {
    display: inline-block;
    vertical-align: bottom;
    margin-right: 10px;
}

.support li span,
.support li a {
    color: #fff;
}

.support li a {
    text-decoration: underline;
}

@media screen and (-webkit-min-device-pixel-ratio:0) {
    .container {
        margin: 76px 0 0 0;
    }
}

/* .footer {
    line-height: 60px;
    color: #fff;
    text-align: center;
    background: #525252;
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
} */
/* 
.footer a {
    color: #f37711;
} */

.contact-info {
    margin-top: 40px;
}

.d-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
}

.d-flex>* {
    width: 50%;
}

.info-box {
    width: 500px;
    max-width: 50%;
    padding: 20px;
    border: 1px solid #000;
}

.info-box ul {
    padding-left: 0;
}

.info-box h2,
.info-box h3 {
    margin: 0;
    text-transform: uppercase;
}

.info-box h2 {
    font-size: 18px;
    font-weight: bold;
}

.info-box h3 {
    font-size: 17px;
}