/*** general styles ***************************************************************************************************/
.technology h2 {
    font-size: 20px;
}

.technology h3 {
    font-size: 18px;
}

.technology a {
    white-space: nowrap;
    text-decoration: none;
}
.technology a:hover:not(.readmore) {
    text-decoration: underline;
}



/*** card with 1 col list ***/
.technology .card-with-1-col-list {
    background-color: var(--dark-grey-100);
    color: #fff;
    padding: 40px 45px;
    border-radius: 5px;
}

.technology .card-with-1-col-list h3 {
    margin-bottom: 30px;
}

.technology .card-with-1-col-list ul {
    padding: 0;
    list-style: none;
}

.technology .card-with-1-col-list li {
    margin-bottom: 15px;
}

.technology .card-with-1-col-list li:before {
    content: '';
    width: 7px;
    height: 7px;
    background-color: #fff;
    border-radius: 50%;
    display: inline-block;
    margin-top: 9px;
    margin-right: 10px;
    vertical-align: top;
}


/*** card with 2 col list ***/
.technology .card-with-2-col-list {
    background-color: var(--dark-grey-100);
    color: #fff;
    padding: 40px 45px;
    border-radius: 5px;
}

.technology .card-with-2-col-list h3 {
    margin-bottom: 30px;
}

.technology .card-with-2-col-list ul {
    padding: 0;
    list-style: none;
}

.technology .card-with-2-col-list li {
    margin-bottom: 15px;
}

.technology .card-with-2-col-list li:before {
    content: '';
    width: 7px;
    height: 7px;
    background-color: #fff;
    border-radius: 50%;
    display: inline-block;
    margin-top: 9px;
    margin-right: 10px;
    vertical-align: top;
}


/*** card with table ***/
.technology .card-with-table {
    padding: 40px 45px;
    border-radius: 5px;
    -webkit-box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
}

.technology .card-with-table h3 {
    margin-bottom: 30px;
}

.technology .card-with-table table {
    width: 100%;
    border-collapse: collapse;
}

.technology .card-with-table th {
    text-align: left;
    padding: 0 0 15px;
    border-bottom: 3px solid var(--dark-grey-15);
}

.technology .card-with-table td {
    padding-top: 8px;
    padding-bottom: 7px;
    border-bottom: 1px solid var(--dark-grey-10);
}


/*** icon list ***/
.technology dl.icon-list {
    display: flex;
    margin-top: 0;
    margin-bottom: 50px;
}

.technology dl.icon-list dd {
    margin: 0;
}

.technology dl.icon-list dd.icon {
    margin-right: 25px;
}


/*** box with title and list ***/
.technology .box-with-title-and-list{
    width: 100%;
    max-width: 265px;
    margin: 0;
    border-radius: 5px;
    overflow: hidden;
    background-color: #fff;
    -webkit-box-shadow: 0 0 24px 0 rgba(0,0,0,0.08);
    -moz-box-shadow: 0 0 24px 0 rgba(0,0,0,0.08);
    box-shadow: 0 0 24px 0 rgba(0,0,0,0.08);
}
.technology .box-with-title-and-list dt{
    padding: 15px 35px;
    background-color: var(--dark-grey-100);
    color: #fff;
    font-weight: bold;
}
.technology .box-with-title-and-list dd{
    margin: 0;
    padding: 30px 35px;
}
.technology .box-with-title-and-list ul{
    list-style: none;
    padding: 0;
}
.technology .box-with-title-and-list li{
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
}
.technology .box-with-title-and-list li:last-of-type{
    margin-bottom: 0;
}
.technology .box-with-title-and-list li:before{
    position: absolute;
    top: 3px;
    left: 0;
    width: 18px;
    height: 18px;
    content: url('../images/list-point-with-hook_green.svg');
}









/*** highlighting ***/
.highlighting-green {
    padding: 3px 10px;
    border-radius: 3px;
    background-color: rgba(36, 209, 126, 0.12);
    color: var(--gsi-green);
}
.highlighting-orange {
    padding: 3px 10px;
    border-radius: 3px;
    background-color: rgba(255, 149, 101, 0.10);
    color: var(--gsi-orange);
}
.highlighting-blue {
    padding: 4px 15px;
    border-radius: 30px;
    background-color: rgba(35,154,255, 0.10);
    color: var(--gsi-blue);
    font-weight: normal;
}


/*** header ***********************************************************************************************************/
header {
    z-index: 2;
    background-color: var(--blue-grey);
    color: #fff;
}

header .background {
    position: absolute;
    z-index: 0;
    margin: auto;
    top: 0;
    left: -20px;
    right: 0;
    content: '';
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center;
}

header .container {
    position: relative;
    min-height: 434px;
    z-index: 0;
    justify-content: space-between;
    align-items: center;
}

header .container > article {
    width: 65%;
}
header h1 {
    display: inline-block;
    margin-right: 20px;
}
header p:last-of-type {
    margin-bottom: 0;
}

header .appendix {
    display: inline-block;
    border-radius: 3px;
    padding: 3px 15px;
    vertical-align: top;
    margin-top: 7px;
    border: 1px solid #fff;
    color: #fff;
    background-color: var(--blue-grey);
}

header aside {
}

header aside img {
    width: 100%;
    max-width: 137px;
    height: auto;
}


/*** intro ************************************************************************************************************/
#intro {
    position: relative;
}

#intro .background {
    position: absolute;
    z-index: 0;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--dark-grey-3);
    transform-origin: 0 100%;
    transform: skewY(-1.5deg);

}

#intro .container {
    position: relative;
    z-index: 1;
    flex-direction: column;
    padding-top: 75px;
    padding-bottom: 125px;
}

#intro p {
    margin-bottom: 30px;
}

#intro p:last-of-type {
    margin-bottom: 0;
}


/*** content **********************************************************************************************************/
#content {
}

#content .container:first-of-type {
    padding-top: 70px;
    padding-bottom: 150px;
}


/*** view specific styles *********************************************************************************************/

/*** gpu-detection ***/
#gpu-detection {
}

#gpu-detection .appendix {
    border: 1px solid var(--gsi-purple);
    color: var(--gsi-purple);
}

#gpu-detection header .background {
    background-image: url('../images/technology_gbu-detection_bg.svg');
}
#gpu-detection header p{
    max-width: 75%;
}
#gpu-detection a {
    color: var(--gsi-purple);
}

#gpu-detection #content .container {
    padding-bottom: 180px;
}

#gpu-detection #content .container div {
    margin-right: 50px;
}

#gpu-detection #content .container div:last-of-type {
    margin-right: 0;
}

#gpu-detection .title-box {
    width: 30%;
}

#gpu-detection .title-box h2 {
    font-size: 20px;
}

#gpu-detection .title-box img {
    display: block;
    margin-top: 35px;
    width: 100%;
    max-width: 286px;
    height: auto;
}

#gpu-detection .card-with-1-col-list {
    width: 29%;
}

#gpu-detection .card-with-1-col-list li:before {
    background-color: var(--gsi-purple);
}

#gpu-detection .card-with-table {
    width: 41%;
}

#gpu-detection .highlighting-green {
    margin-left: -10px;
}


/*** ip-verification ***/
#ip-verification {
}

#ip-verification .appendix {
    border: 1px solid var(--gsi-orange);
    color: var(--gsi-orange);
}

#ip-verification header .background {
    background-image: url('../images/technology_ip-verification_bg.svg');
}
#ip-verification header p{
    max-width: 73%;
}
#ip-verification a {
    color: var(--gsi-orange);
}

#ip-verification #content .container {
    justify-content: space-between;
}

#ip-verification #content article {
    width: 55%;
    max-width: 640px;
}

#ip-verification #content article h2 {
    font-weight: normal;
    color: var(--gsi-orange);
    margin-bottom: 50px;
}

#ip-verification #content aside {
    position: relative;
    width: 45%;
    max-width: 455px;
}

#ip-verification #content aside:after {
    position: absolute;
    top: -28px;
    right: -28px;
    content: '';
    width: 185px;
    height: 157px;
    background-image: url('../images/technologies/ip-verification-dots-bg_1.svg');
}

#ip-verification #content aside div {
    display: flex;
}

#ip-verification .card-with-2-col-list ul {
    width: 50%;
}

#ip-verification .card-with-2-col-list li:before {
    background-color: var(--gsi-orange);
}

#ip-verification #content .container:last-of-type {
    padding-bottom: 200px;
}

#ip-verification #content .additional-info-box {
    position: relative;
    margin: auto;
    width: 100%;
    max-width: 480px;
    text-align: center;
    padding: 35px;
    border-radius: 5px;
    -webkit-box-shadow: 0 -6px 24px 0 rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 -6px 24px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 -6px 24px 0 rgba(0, 0, 0, 0.1);
    background-color: #fff;
}

#ip-verification #content .additional-info-box img {
    width: 100%;
    max-width: 77px;
    height: auto;
    margin-bottom: 30px;
}

#ip-verification #content .additional-info-box p {
    font-size: 18px;
}

#ip-verification #content .additional-info-box .decoration-dots {
    position: absolute;
    z-index: -1;
    bottom: -24px;
    left: -28px;
    content: '';
    width: calc(100% + 56px);
    height: 157px;
    background-image: url('../images/technologies/ip-verification-dots-bg_2.svg');
    background-repeat: no-repeat;
}


/*** brand-safety-content-analyse ***/
#brand-safety-content-analyse {
}

#brand-safety-content-analyse .appendix {
    border: 1px solid var(--gsi-green);
    color: var(--gsi-green);
}

#brand-safety-content-analyse header .background {
    background-image: url('../images/technology_brand-safety-content-analyse_bg.svg');
}
#brand-safety-content-analyse header p{
    max-width: 73%;
}
#brand-safety-content-analyse .container {
    justify-content: space-between;
}

#brand-safety-content-analyse .container .col-1 {
    width: 30%;
}

#brand-safety-content-analyse .container .col-2 {
    width: 60%;
}

#brand-safety-content-analyse a {
    color: var(--gsi-green);
}

/** intro **/
#brand-safety-content-analyse #intro .background > span {
    position: relative;
    display: block;
    top: 0;
    left: 0;
    width: 40%;
    height: 100%;
    background-color: var(--dark-grey-10);
}

#brand-safety-content-analyse #intro .container {
    flex-direction: row;
}

/** content **/
#brand-safety-content-analyse #content .icon-with-title h2 {
    margin-bottom: 30px;
}
#brand-safety-content-analyse #content .container:first-of-type .icon-with-title h2 {
    margin-bottom: 0;
}

#brand-safety-content-analyse #content .highlighting-green {
    margin-bottom: 0;
    padding: 0;
    font-size: 18px;
    background-color: transparent;
}

#brand-safety-content-analyse #content ul.col-1 {
    margin: 0;
    padding-left: 14px;
}

#brand-safety-content-analyse #content .col-1 li {
    margin-bottom: 30px;
}

#brand-safety-content-analyse #content .box {
    position: relative;
    padding: 20px;
    background-color: #fff;
    -webkit-box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.08);
    -moz-box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.08);
    box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.08);
}

#brand-safety-content-analyse #content .box .decoration-dots-1 {
    position: absolute;
    z-index: -1;
    bottom: -24px;
    left: -17px;
    content: '';
    width: calc(100% + 34px);
    height: 60px;
    background-image: url('../images/technologies/brand-safety-content-analyse-dots-bg_1.svg');
    background-repeat: no-repeat;
    background-position: bottom left;
}

#brand-safety-content-analyse #content .icon-with-title p.highlighting-green {
/*    margin-top: 30px;*/
}

#brand-safety-content-analyse #content .before-special-background {
    padding-bottom: 60px;
}

#brand-safety-content-analyse #content .special-background-style {
    position: relative;
    overflow-y: hidden;
    padding-top: 255px;
}

#brand-safety-content-analyse #content .special-background-style .background {
    position: absolute;
    z-index: 0;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform-origin: 100% 0;
    transform: skewY(-5deg);
    background: var(--dark-grey-5);
    background: -moz-linear-gradient(180deg, var(--dark-grey-5) 0%, #fff 100%);
    background: -webkit-linear-gradient(180deg, var(--dark-grey-5) 0%, #fff 100%);
    background: linear-gradient(180deg, #f3f3f3 0%, #fff 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#f3f3f3", endColorstr="#ffffff", GradientType=1);
}

#brand-safety-content-analyse #content .special-background-style .background:before,
#brand-safety-content-analyse #content .special-background-style .background:after {
    position: absolute;
    content: '';
    width: 100%;
    max-width: 255px;
    height: 100%;
    max-height: 130px;
    transform-origin: 0 0;
}

#brand-safety-content-analyse #content .special-background-style .background:before {
    top: -130px;
    left: 0;
    background-color: var(--dark-grey-5);
}

#brand-safety-content-analyse #content .special-background-style .background:after {
    top: 0;
    right: 0;
    background-color: var(--dark-grey-10);
}

#brand-safety-content-analyse #content .special-background-style .container {
    position: relative;
    z-index: 1;
    padding-bottom: 200px;
}

#brand-safety-content-analyse #content .special-background-style .icon-with-title {
    width: 25%;
    max-width: 250px;
}

#brand-safety-content-analyse #content .special-background-style .container > div:last-of-type {
    position: relative;
    display: flex;
    justify-content: space-evenly;
    width: 75%;
}

#brand-safety-content-analyse #content .special-background-style .container > div:last-of-type .decoration-dots-2 {
    position: absolute;
    z-index: -1;
    bottom: -26px;
    left: 0;
    content: '';
    width: 100%;
    height: 60px;
    background-image: url('../images/technologies/brand-safety-content-analyse-dots-bg_2.svg');
    background-repeat: no-repeat;
    background-position: bottom left;
    background-size: 100% auto;
}





/*** ad-and-traffic-verification ***/
#ad-and-traffic-verification {}
#ad-and-traffic-verification .appendix {
    border: 1px solid var(--gsi-yellow);
    color: var(--gsi-yellow);
}
#ad-and-traffic-verification header .background {
    background-image: url('../images/technology_ad-and-traffic-verification_bg.svg');
}
#ad-and-traffic-verification header p{
    max-width: 73%;
}

#ad-and-traffic-verification #content{
    position: relative;
}
#ad-and-traffic-verification #content .container{
    flex-direction: column;
    padding-bottom: 155px;
}

#ad-and-traffic-verification #content dl.box {
    position: relative;
    padding: 30px;
    background-color: #fff;
    -webkit-box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.08);
    -moz-box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.08);
    box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.08);
    margin: 0 0 80px
}
#ad-and-traffic-verification #content dl.box:last-of-type {
    margin-bottom: 0;
}

#ad-and-traffic-verification #content dt {
    display: flex;
    align-items: center;
}
#ad-and-traffic-verification #content dt img{
    margin-right: 20px;
    margin-bottom: 20px;
}
#ad-and-traffic-verification #content dd {
    margin: 0;
}
#ad-and-traffic-verification #content dd p:last-of-type{
    margin-bottom: 35px;
}

#ad-and-traffic-verification #content dd.decoration-dots {
    position: absolute;
    z-index: -1;
    bottom: -26px;
    left: -26px;
    content: '';
    width: 286px;
    height: 157px;
    background-image: url('../images/technologies/ad-and-traffic-verification-dots-bg.svg');
    background-repeat: no-repeat;
}
#ad-and-traffic-verification #content dl.box:first-of-type dd.decoration-dots {
    left: auto;
    right: -26px;
    top: -26px;
    bottom: auto;
    transform: rotate(180deg);
}
#ad-and-traffic-verification #content dl.box:last-of-type dd.decoration-dots {
    left: auto;
    right: -26px;
    transform: rotateY(180deg);
}

#ad-and-traffic-verification #content .decoration-blocks-left,
#ad-and-traffic-verification #content .decoration-blocks-right{
    position: absolute;
    width: 220px;
    height: 284px;
}
#ad-and-traffic-verification #content .decoration-blocks-left{
    top: 35%;
    left: 0;
}
#ad-and-traffic-verification #content .decoration-blocks-right{
    top: 50%;
    right: 0;
}
#ad-and-traffic-verification #content .decoration-blocks-left:before,
#ad-and-traffic-verification #content .decoration-blocks-left:after{
    display: block;
    content: '';
    height: 50%;
    border-radius: 0 5px 5px 0;
}
#ad-and-traffic-verification #content .decoration-blocks-left:before{
    width: 100%;
    background-color: rgba(107,211,248,0.1);
}
#ad-and-traffic-verification #content .decoration-blocks-left:after{
    width: 40%;
    background-color: rgba(36,209,126,0.1);
}
#ad-and-traffic-verification #content .decoration-blocks-right:before,
#ad-and-traffic-verification #content .decoration-blocks-right:after{
    margin-left: auto;
    margin-right: 0;
    display: block;
    content: '';
    height: 50%;
    border-radius: 5px 0 0 5px;
}
#ad-and-traffic-verification #content .decoration-blocks-right:before{
    width: 40%;
    background-color: rgba(107,211,248,0.1);
}
#ad-and-traffic-verification #content .decoration-blocks-right:after{
    width: 100%;
    background-color: rgba(36,209,126,0.1);
}


/*** user-agent-parser ***/
#user-agent-parser {}
#user-agent-parser .appendix {
    border: 1px solid var(--gsi-light-blue);
    color: var(--gsi-light-blue);
}
#user-agent-parser header .background {
    background-image: url('../images/technology_user-agent-parser_bg.svg');
}
#user-agent-parser header p{
    max-width: 70%;
}
#user-agent-parser a {
    color: var(--gsi-light-blue);
}

#user-agent-parser #intro .background > span {
    position: relative;
    display: block;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background-color: var(--dark-grey-10);
}
#user-agent-parser #intro .container{
    flex-direction: row;
    justify-content: space-between;
}
#user-agent-parser #intro article{
    width: 45%;
}

#user-agent-parser #content{
    background-image: url('../images/technologies/user-agent-parser-dots-bg.svg');
    background-repeat: no-repeat;
    background-position: right center;
}

#user-agent-parser #content .container{
    justify-content: space-between;
    padding-top: 120px;
    padding-bottom: 210px;
}
#user-agent-parser #content article:first-of-type{
    width: 50%;
}
#user-agent-parser #content article:last-of-type{
    width: 45%;
}
#user-agent-parser #content dl{
    margin: 0 0 48px;
}
#user-agent-parser #content dl:last-of-type{
    margin-bottom: 0;
}
#user-agent-parser #content dt{
    display: flex;
    align-items: center;
}
#user-agent-parser #content dt img{
    margin-right: 25px;
}
#user-agent-parser #content dt h4{
    margin-bottom: 0;
}

#user-agent-parser #content dd ul{
    list-style: none;
}
#user-agent-parser #content dd li{
    position: relative;
}
#user-agent-parser #content dd > ul > li{
    padding-left: 28px;
    margin-bottom: 12px;
}
#user-agent-parser #content dd > ul > li:before{
    position: absolute;
    top: 3px;
    left: 0;
    width: 18px;
    height: 18px;
    content: url('../images/list-point-with-hook_green.svg');
}

#user-agent-parser #content dd > ul ul{
    margin-top: 12px;
    padding-left: 0;
}
#user-agent-parser #content dd > ul ul > li{
    padding-left: 18px;
    margin-bottom: 12px;
}
#user-agent-parser #content dd > ul ul > li:last-of-type{
    margin-bottom: 0;
}
#user-agent-parser #content dd > ul ul > li:before{
    position: absolute;
    content: '';
    top: 10px;
    left: 0;
    width: 8px;
    height: 4px;
    border-radius: 1px;
    background-color: var(--blue-grey);
}
#user-agent-parser .card-with-table{
    position: relative;
    background-color: #fff;
}
#user-agent-parser .card-with-table > div{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 35px;
}
#user-agent-parser .card-with-table > div h3{
    margin-bottom: 0;
}

#user-agent-parser #phone-switch{
    border-radius: 5px;
    background-color: var(--dark-grey-5);
    padding: 14px 7px;
    font-size: 14px;
}
#user-agent-parser #phone-switch span{
    padding: 6px 15px;
    cursor: pointer;
    user-select: none;
}
#user-agent-parser #phone-switch span.active{
    border-radius: 3px;
    background-color: var(--blue-grey);
    color: #fff;
}
#user-agent-parser .card-with-table table{
    display: none;
}
#user-agent-parser .card-with-table table.active{
    display: table;
}

#user-agent-parser .card-with-table td:first-of-type{
    width: 60%;
}

#user-agent-parser .card-with-table td img{
    display: block;
    height: 26px;
    width: auto;
}
#user-agent-parser .card-with-table td img.smaller{
    height: 14px;
    width: auto;
}
#user-agent-parser .card-with-table .background {
    position: absolute;
    z-index: -1;
    top: 15px;
    left: 54px;
    width: 95%;
    height: 100%;
    border-radius: 5px;
    background-color: rgba(107,211,248,0.1);
    transform-origin: 0 100%;
    transform: rotate(2deg);
    margin-bottom: 0;
}



/*** invalid-traffic-fraud-detection ***/
#invalid-traffic-fraud-detection {}

#invalid-traffic-fraud-detection .appendix {
    border: 1px solid var(--gsi-red);
    color: var(--gsi-red);
}

#invalid-traffic-fraud-detection header .background {
    background-image: url('../images/technology_invalid-traffic-fraud-detection_bg.svg');
}
#invalid-traffic-fraud-detection header p{
    max-width: 75%;
}
#invalid-traffic-fraud-detection #content .container {
    justify-content: space-between;
    padding-bottom: 260px;
}

#invalid-traffic-fraud-detection #content article{
    position: relative;
    width: 45%;
}

#invalid-traffic-fraud-detection #content article .highlighting-orange{
    font-size: 20px;
    background-color: transparent;
}

#invalid-traffic-fraud-detection #content article .box{
    display: flex;
    align-items: center;
    padding: 30px;
    -webkit-box-shadow: 0 0 25px 0 rgba(0,0,0,0.1);
    -moz-box-shadow: 0 0 25px 0 rgba(0,0,0,0.1);
    box-shadow: 0 0 25px 0 rgba(0,0,0,0.1);
}
#invalid-traffic-fraud-detection #content article > div img{
    margin-right: 20px;
}
#invalid-traffic-fraud-detection #content .readmore{
    font-weight: normal;
}
#invalid-traffic-fraud-detection #content article .background{
    position: absolute;
    width: 100%;
    height: 35px;
}
#invalid-traffic-fraud-detection #content article .background:before{
    display: block;
    margin: auto;
    content: '';
    width: 90%;
    height: 20px;
    background-color: var(--dark-grey-5);
    border-radius: 0 0 4px 4px;
}
#invalid-traffic-fraud-detection #content article .background:after{
    display: block;
    margin: auto;
    content: '';
    width: 85%;
    height: 15px;
    background-color: var(--dark-grey-3);
    border-radius: 0 0 4px 4px;
}



/*** conversion-and-event-verification ***/
#conversion-and-event-verification {
}
#conversion-and-event-verification .appendix {
    border: 1px solid var(--gsi-pink);
    color: var(--gsi-pink);
}
#conversion-and-event-verification header .background {
    background-image: url('../images/technology_conversion-and-event-verification_bg.svg');
}
#conversion-and-event-verification header p{
    max-width: 70%;
}
#conversion-and-event-verification a {
    color: var(--gsi-pink);
}

#conversion-and-event-verification #content .container.first{
    justify-content: space-between;
    padding-bottom: 115px;
}
#conversion-and-event-verification #content .container.first article{
    display: flex;
    align-items: flex-start;
    width: 45%;
}
#conversion-and-event-verification #content .container.first article img{
    width: 48px;
    min-width: 48px;
    height: auto;
    margin-right: 25px;
}
#conversion-and-event-verification #content .container.first article p{
    margin-bottom: 0;
}
#conversion-and-event-verification #content .container.last{
    flex-direction: column;
    margin-bottom: 200px;
}
#conversion-and-event-verification #content .container.last h3{
    text-align: center;
    margin-bottom: 45px;
}
#conversion-and-event-verification #content .container.last article{
    margin: auto;
    width: 100%;
    max-width: 750px;
}
#conversion-and-event-verification #content .container.last article div{
    position: relative;
    display: flex;
    justify-content: space-around;
}
#conversion-and-event-verification #content .container.last article div .background{
    position: absolute;
    z-index: -1;
    bottom: -22px;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/technologies/conversion-and-event-verification-dots-bg.svg');
    background-repeat: no-repeat;
    background-position: bottom center;
}

#conversion-and-event-verification #content .box-with-title-and-list{
    max-width: 335px;
    background-color: #fff;
}
#conversion-and-event-verification #content .decoration-blocks-left,
#conversion-and-event-verification #content .decoration-blocks-right{
    position: absolute;
    width: 220px;
    height: 260px;
}
#conversion-and-event-verification #content .decoration-blocks-left{
    top: 65%;
    left: 0;
    transform-origin: 0 100%;
    transform: skewY(-5deg);
}
#conversion-and-event-verification #content .decoration-blocks-right{
    top: 20%;
    right: 0;
    transform-origin: 100% 0;
    transform: skewY(-5deg);
}
#conversion-and-event-verification #content .decoration-blocks-left:before,
#conversion-and-event-verification #content .decoration-blocks-left:after{
    display: block;
    content: '';
    height: 50%;
    border-radius: 0 5px 5px 0;
    background: rgb(231,231,232);
    background: -moz-linear-gradient(90deg, rgba(231,231,232,1) 0%, rgba(231,231,232,0) 100%);
    background: -webkit-linear-gradient(90deg, rgba(231,231,232,1) 0%, rgba(231,231,232,0) 100%);
    background: linear-gradient(90deg, rgba(231,231,232,1) 0%, rgba(231,231,232,0) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#e7e7e8",endColorstr="#e7e7e8",GradientType=1);
}
#conversion-and-event-verification #content .decoration-blocks-left:before{
    width: 65%;
}
#conversion-and-event-verification #content .decoration-blocks-left:after{
    width: 100%;
}
#conversion-and-event-verification #content .decoration-blocks-right:before,
#conversion-and-event-verification #content .decoration-blocks-right:after{
    margin-left: auto;
    margin-right: 0;
    display: block;
    content: '';
    height: 50%;
    border-radius: 5px 0 0 5px;
    background: rgb(231,231,232);
    background: -moz-linear-gradient(90deg, rgba(231,231,232,0) 0%, rgba(231,231,232,1) 100%);
    background: -webkit-linear-gradient(90deg, rgba(231,231,232,0) 0%, rgba(231,231,232,1) 100%);
    background: linear-gradient(90deg, rgba(231,231,232,0) 0%, rgba(231,231,232,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#e7e7e8",endColorstr="#e7e7e8",GradientType=1);
}
#conversion-and-event-verification #content .decoration-blocks-right:before{
    width: 75%;
}
#conversion-and-event-verification #content .decoration-blocks-right:after{
    width: 100%;
}




/*** viewability ***/
#viewability {}

#viewability .appendix {
    border: 1px solid var(--gsi-blue);
    color: var(--gsi-blue);
}

#viewability header .background {
    background-image: url('../images/technology_viewability_bg.svg');
}
#viewability header p{
    max-width: 70%;
}
#viewability a {
    color: var(--gsi-blue);
}

#viewability #content .section-1{
    background-image: url('../images/technologies/viewability-dots-bg_1.svg');
    background-repeat: no-repeat;
    background-position: right 15px center;
}
#viewability #content .section-1 .container{
    flex-direction: column;
    align-items: flex-start;
    padding-bottom: 160px;
}
#viewability #content .section-1 .container > img{
    margin-bottom: 25px;
}

#viewability #content .section-1 .row {
    display: flex;
    justify-content: space-between;
}
#viewability #content .section-1 .col-1{
    width: 40%;
}
#viewability #content .section-1 .col-2{
    width: 55%;
}
#viewability #content .section-1 .col-1 article h5{
    display: inline-block;
    margin-bottom: 10px;
}
#viewability #content .section-1 .col-1 article p{
    margin-bottom: 30px;
}

#viewability #content .section-1 .box{
    position: relative;
    padding: 20px;
    background-image: url('../images/technologies/icon_viewability-dots.svg');
    background-repeat: no-repeat;
    background-position: top 20px right 20px;
    -webkit-box-shadow: 0 0 25px 0 rgba(0,0,0,0.1);
    -moz-box-shadow: 0 0 25px 0 rgba(0,0,0,0.1);
    box-shadow: 0 0 25px 0 rgba(0,0,0,0.1);
}
#viewability #content .section-1 .box img{
    margin-bottom: 15px;
}
#viewability #content .section-1 .box p{
    margin-bottom: 0 !important;
}

#viewability #content .section-1 .box .background{
    position: absolute;
    left: 0;
    bottom: -35px;
    width: 100%;
    height: 35px;
}
#viewability #content .section-1 .box .background:before,
#viewability #content .section-1 .box .background:after{
    display: block;
    margin: auto;
    content: '';
    border-radius: 0 0 4px 4px;
}
#viewability #content .section-1 .box .background:before{
    width: 90%;
    height: 20px;
    background-color: var(--dark-grey-3);
}
#viewability #content .section-1 .box .background:after{
    width: 85%;
    height: 15px;
    background-color: var(--dark-grey-5);
}

#viewability #content .section-1 .col-2 h5{
    display: inline-block;
}
#viewability #content .section-1 .col-2 article p{
    margin-bottom: 35px;
}
#viewability #content .section-1 .col-2 article:last-of-type p{
    margin-bottom: 0;
}


#viewability #content .section-2{
    background-color: var(--blue-grey);
    color: #fff;
}
#viewability #content .section-2 .container{
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 155px;
}
#viewability #content .section-2 .col-1{
    width: 40%;
}
#viewability #content .section-2 .col-2{
    width: 55%;
}
#viewability #content .section-2 article img{
    margin-bottom: 20px;
}
#viewability #content .section-2 article h5{
    margin-bottom: 20px;
}
#viewability #content .section-2 article ul{
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
}
#viewability #content .section-2 article li{
    position: relative;
    padding-left: 16px;
    margin-bottom: 20px;
}
#viewability #content .section-2 article li:before{
    position: absolute;
    top: 10px;
    left: 0;
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--gsi-blue);
}
#viewability #content .section-2 article li:last-of-type{
    margin-bottom: 0;
}


#viewability #content .section-3 .container{
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 160px;
}
#viewability #content .section-3 article{
    width: 28%;
    min-width: 320px;
    max-width: 343px;
}
#viewability #content .section-3 article img{
    margin-bottom: 25px;
}
#viewability #content .section-3 article h5{
    margin-bottom: 5px;
}

#viewability #content .section-4{
    position: relative;
}
#viewability #content .section-4 > .background{
    position: absolute;
    z-index: -1;
    left: 0;
    top: 0;
    width: 100%;
    height: 150%;
    transform: skewY(-10deg);
    background: var(--dark-grey-5);
    background: -moz-linear-gradient(180deg, var(--dark-grey-5) 0%, #fff 100%);
    background: -webkit-linear-gradient(180deg, var(--dark-grey-5) 0%, #fff 100%);
    background: linear-gradient(180deg, #f3f3f3 0%, #fff 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#f3f3f3", endColorstr="#ffffff", GradientType=1);
}
#viewability #content .section-4 .container{
    justify-content: space-between;
    padding-top: 60px;
    padding-bottom: 180px;
}
#viewability #content .section-4 article{
    position: relative;
    width: 47%;
    min-width: 320px;
    max-width: 560px;
    padding: 30px;
    background-color: #fff;
    -webkit-box-shadow: 0 0 30px 0 rgba(0,0,0,0.06);
    -moz-box-shadow: 0 0 30px 0 rgba(0,0,0,0.06);
    box-shadow: 0 0 30px 0 rgba(0,0,0,0.06);
}
#viewability #content .section-4 article .background{
    position: absolute;
    z-index: -1;
    left: -24px;
    bottom: -24px;
    width: 95%;
    height: 157px;
    background-image: url('../images/technologies/viewability-dots-bg_2.svg');
    background-repeat: no-repeat;
    background-position: left bottom;
}
#viewability #content .section-4 article img{
    margin-bottom: 25px;
}
#viewability #content .section-4 article h5{
    margin-bottom: 5px;
}







