#start{}

#start .container main{
    width: 65%;
    flex-grow: 1;
}
#start .container aside{
    width: 35%;
    max-width: 400px;
}


/*** header ***********************************************************************************************************/
#header{
    z-index: 1;
    padding-top: 130px;
    background-color: var(--blue-grey);
    background-image: url('../images/header-bg.svg');
    background-position: center top;
    overflow-y: hidden;
    color: #fff;
}
#header .background{
    position: absolute;
    z-index: 0;
    margin: auto;
    top: 0;
    left: 0;
    right: 0;
    content: '';
    width: 100%;
    height: 100%;
    background-image: url('../images/start-header-bg.svg');
    background-repeat: no-repeat;
    background-position: center top;
}

#header .container{
    position: relative;
    z-index: 0;
    min-height: 670px;
    padding-top: 118px;
}

#header main{
    padding-right: 8%;
}
#header main h1{
    margin: 0 0 35px;
}
#header main p{
    margin-bottom: 35px;
}

#header aside .news-preview{
    display: block;
    position: relative;
    padding-left: 18px;
    margin-bottom: 50px;
    cursor: pointer;
    text-decoration: none;
    color: #fff;
}
#header aside .news-preview:before{
    position: absolute;
    left: 0;
    content: '';
    display: inline-block;
    width: 3px;
    height: 100%;
    border-radius: 2px;
    background-color: var(--gsi-blue);
}
#header aside .news-preview .readmore{
    font-size: 14px;
    color: #fff;
}
#header aside .news-preview .readmore:after{
    background-color: #fff;
}
#header aside .news-preview:hover .readmore:after{
    margin-left: 15px;
}



/*** seal of approval *************************************************************************************************/
#seal-of-approval{
    background-color: var(--dark-grey-5);
    margin-bottom: 120px;
}
#seal-of-approval .container {
    min-height: 144px;
    justify-content: space-between;
    align-items: center;
}
#seal-of-approval main {
    padding-right: 15%;
    font-size: 18px;
    font-weight: bold;
}
#seal-of-approval aside {
    display: flex;
    justify-content: space-evenly;
}
#seal-of-approval aside div {
    display: flex;
    justify-content: center;
    align-items: center;
    width: calc(100% / 3);
}

#seal-of-approval aside div img{
    max-width: 133px;
    height: auto;
}

#seal-of-approval aside div.height100 img{
/*    width: auto;
    height: 100%;*/
}



/*** target groups ****************************************************************************************************/
#target-groups {
    margin-bottom: 100px;
}
#target-groups .container{
    align-items: center;
}
#target-groups .container aside{
    width: 40%;
    max-width: 390px;
    margin-right: 45px;
}
#target-groups .container main{
    position: relative;
    width: 60%;
    margin-right: -28%;
}
#target-groups main img{}
#target-groups aside h2{
    margin-bottom: 20px;
}
#target-groups aside p{
    font-size: 18px;
}


/*** #target-groups | cicle elements ***/
#target-groups main.anim-paused .circle {
    animation-play-state: paused !important;
}
#target-groups .circle {
    position: absolute;
    z-index: 0;
    border-radius: 50%;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 100ms;
    -webkit-box-shadow: 0 0 15px 0 rgba(0,0,0,0.15);
    -moz-box-shadow: 0 0 15px 0 rgba(0,0,0,0.15);
    box-shadow: 0 0 15px 0 rgba(0,0,0,0.15);
    cursor: pointer;
    overflow: hidden;
}

#target-groups .circle.active {
    z-index: 1;
    transform: scale(1) !important;
    animation: none !important;
    border-radius: 2px;
    align-items: unset;
    width: 500px !important;
    padding: 15px;
}
#target-groups .circle p.title {
    margin: 0;
    text-align: center;
    line-height: 1.2;
}
#target-groups .circle .text {
    font-size: 16px;
    text-decoration: none;
    display: none;
}

#target-groups .circle ul{
    padding: 0 0 0 15px;
    list-style-type: initial!important;
}

#target-groups .circle ul li{
    position: relative;
}

#target-groups .circle a{
    display: block;
    font-size: 14px;
    color: var(--dark-grey-100);
}

#target-groups #agencies{
    top: 50px;
    left: 75px;
    width: 126px;
    height: 126px;
    animation: agencies 4s 0s linear infinite normal;
}
#target-groups #agencies.active{
    height: 301px;
}
@keyframes agencies {
    0%      { transform: scale(1); }
    50%     { transform: scale(1.6); }
    100%    { transform: scale(1); }
}

#target-groups #service-companies{
    top: 100px;
    left: 315px;
    width: 168px;
    height: 168px;
    animation: service-companies 4s 0s linear infinite normal;
}
#target-groups #service-companies.active{
    left: calc(315px - 200px + (168px / 2));
    height: 213px;
}
@keyframes service-companies {
    0%      { transform: scale(1); }
    25%     { transform: scale(0.75); }
    75%     { transform: scale(1.2); }
    100%    { transform: scale(1); }
}

#target-groups #end-customers{
    top: 68px;
    left: 595px;
    width: 126px;
    height: 126px;
    animation: end-customers 4s 1s linear infinite normal;
}
#target-groups #end-customers.active{
    left: calc(595px - 200px + (126px / 2));
    height: 253px;
}
@keyframes end-customers {
    0%      { transform: scale(1); }
    50%     { transform: scale(1.6); }
    100%    { transform: scale(1); }
}

#target-groups #dsp-adserver-tec{
    top: 130px;
    left: 800px;
    width: 177px;
    height: 177px;
    animation: dsp-adserver-tec 4s 0s linear infinite normal;
}
#target-groups #dsp-adserver-tec.active{
    left: calc(800px - 500px + 177px);
    height: 333px;
}
@keyframes dsp-adserver-tec {
    0%      { transform: scale(1); }
    25%     { transform: scale(1.13); }
    75%     { transform: scale(0.8); }
    100%    { transform: scale(1); }
}

#target-groups #marketers{
    top: 260px;
    left: 80px;
    width: 172px;
    height: 172px;
    animation: marketers 4s 1s linear infinite normal;
}
#target-groups #marketers.active{
    height: 349px;
}
@keyframes marketers {
    0%      { transform: scale(1); }
    25%     { transform: scale(0.78); }
    75%     { transform: scale(1.16); }
    100%    { transform: scale(1); }
}

#target-groups #e-commercer{
    top: 360px;
    left: 290px;
    width: 172px;
    height: 172px;
    animation: e-commercer 4s 1s linear infinite normal;
}
#target-groups #e-commercer.active{
    left: calc(290px - 200px + (172px / 2));
    height: 344px;
}
@keyframes e-commercer {
    0%      { transform: scale(1); }
    50%     { transform: scale(1.16); }
    100%    { transform: scale(1); }
}

#target-groups #publisher{
    top: 290px;
    left: 560px;
    width: 162px;
    height: 162px;
    animation: publisher 4s 1.5s linear infinite normal;
}
#target-groups #publisher.active{
    left: calc(560px - 200px + (162px / 2));
    height: 333px;
}
@keyframes publisher {
    0%      { transform: scale(1); }
    50%     { transform: scale(1.23); }
    100%    { transform: scale(1); }
}



/*** products *********************************************************************************************************/
#products {
    background-image: url('../images/products-bg.png');
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: center bottom 230px;
    margin-bottom: 130px;
}
#products .container.header{
    flex-direction: column;
}
#products .header h2{
    text-align: center;
}
#products .header p{
    text-align: center;
}
#products .container.boxes{
/*    justify-content: space-between;*/
    justify-content: center;
}
#products .container.boxes div{
    width: calc((100% - 12.3%) / 2);
    /*    max-width: 350px;*/
    max-width: 400px;
    border-radius: 3px;
    margin: 0 35px;
    padding: 25px;
    background-color: #fff;
    -webkit-box-shadow: 0 0 40px 0 rgba(0,0,0,0.1);
    -moz-box-shadow: 0 0 40px 0 rgba(0,0,0,0.1);
    box-shadow: 0 0 40px 0 rgba(0,0,0,0.1);
}

#products .boxes h3{
    margin-bottom: 20px;
    min-height: 60px;
}
#products .box-1 h3{
    color: var(--gsi-blue);
}
#products .box-2 h3{
    color: var(--gsi-purple);
}
#products .box-3 h3{
    color: var(--gsi-green);
}
#products .boxes p{
    min-height: 245px;
    padding-bottom: 25px;
    margin-bottom: 25px;
    border-bottom: 1px solid var(--dark-grey-10);
}
#products .boxes dl{
    margin-bottom: 20px;
}
#products .boxes dl:last-of-type{
    margin-bottom: 35px;
}
#products .boxes dt{
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 3px;
}
#products .boxes dd{
    margin: 0;
}
#products .boxes .button{
    display: block;
}




/*** training *********************************************************************************************************/
#training {
    margin-bottom: 160px;
}
#training .container{
    justify-content: space-between;
}
#training .container:first-of-type{
    display: block;
}
#training h2{
    margin-top: -12px;
    width: calc(100% / 1.9);
}
#training dl{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;

    width: calc((100% - 12.19512195121951%) / 3);
    padding: 20px;
    border-radius: 3px 3px 0 0;
    background-color: #fff;
    border-bottom: 5px solid rgba(255,149,101,0.6);
    -webkit-box-shadow: 0 0 40px 0 rgba(0,0,0,0.1);
    -moz-box-shadow: 0 0 40px 0 rgba(0,0,0,0.1);
    box-shadow: 0 0 40px 0 rgba(0,0,0,0.1);
}
#training dl:hover{
    border-color: var(--gsi-orange);
}
#training dt{
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 20px;
}
#training dd{
    margin-left: 0;
    font-size: 14px;
    margin-bottom: 20px;
}
#training dd:last-of-type{
    align-self: flex-end;
    margin-bottom: 0;
}



/*** contact **********************************************************************************************************/
#contact {
    padding-top: 170px;
    margin-bottom: 140px;
}
#contact .background{
    position: absolute;
    z-index: 0;
    top: 0;
    width: 100%;
    min-height: 640px;
    background-color: var(--dark-grey-5);
    transform-origin: 100% 0;
    transform: skewY(-3.5deg);
}
#contact .container{
    position: relative;
    z-index: 1;
    justify-content: space-between;
    flex-direction: row;
}
#contact .container aside{
    width: 50%;
    max-width: none;
}
#contact .container aside > div{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}
#contact .container main{
    position: relative;
    flex-grow: 0;
    width: calc(50% - 30px);
    padding: 30px 40px;
    background-color: #fff;
    -webkit-box-shadow: 0 0 40px 0 rgba(0,0,0,0.1);
    -moz-box-shadow: 0 0 40px 0 rgba(0,0,0,0.1);
    box-shadow: 0 0 40px 0 rgba(0,0,0,0.1);
}
#contact .container main:before{
    position: absolute;
    top: -40px;
    right: -40px;
    content: '';
    width: 210px;
    height: 210px;
    background-image: url('../images/contact-form-bg.svg');
    background-repeat: no-repeat;
}
#contact h2{
    margin-bottom: 30px;
}
#contact aside h2{
    margin-top: 30px;
}
#contact p{
    font-size: 18px;
    margin-bottom: 30px;
}
#contact dl{
    float: left;
    width: 40%;
    margin-top: 0;
}
#contact dl:first-of-type{
    width: 60%;
}
#contact dt{
    font-weight: bold;
}
#contact dd{
    margin-left: 0;
}

#contact form{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
}
#contact label{
    width: calc(50% - 15px);
}
#contact label:last-of-type{
    width: 100%;
}
#contact button{
    margin: auto;
}



/*** downloads ********************************************************************************************************/
#downloads {
    margin-bottom: 230px;
}
#downloads .background{
    position: absolute;
    z-index: 0;
    bottom: -40px;
    width: 100%;
    height: 100%;
    background-image: url('../images/download-bg.svg');
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: 915px auto;
}
#downloads .container{
    max-width: 860px;
    flex-direction: column;

}
#downloads .container:first-of-type{
    display: block;
}
#downloads h2{
    margin: 0 auto 80px;
    text-align: center;
}
#downloads .container > div{
    display: flex;
    justify-content: space-between;
}
#downloads .card{
    position: relative;
    width: 230px;
    min-height: 325px;
    background-color: var(--blue-grey);
    color: #fff;
    padding: 20px;
    border-radius: 10px;
    background-repeat: no-repeat;
    background-position: left 10px top 10px;
    background-size: calc(100% - 20px);
    overflow: hidden;
    cursor: pointer;
}
#downloads .card *{
    transition: 50ms;
}
#downloads .card img.logo{
    width: 100%;
    max-width: 84px;
    height: auto;
    margin-bottom: 40px;
}
#downloads .card:after{
    position: absolute;
    z-index: 0;
    left: 0;
    bottom: 0;
    content: '';
    width: 100%;
    height: 130px;
    background-color: #1E242B;
    transform-origin: 100% 0;
    transform: skewY(-18deg);
}
#downloads .card-1{
    background-image: url('../images/download-card-1-bg.svg');
}
#downloads .card-2{
    background-image: url('../images/download-card-2-bg.svg');
}
#downloads .card-3{
    background-image: url('../images/download-card-3-bg.svg');
}
#downloads .card .icon,
#downloads .card .button{
    position: absolute;
    z-index: 1;
    margin: auto;
    left: 0;
    right: 0;
    opacity: 0;
}
#downloads .card .icon{
    top: 85px;
    width: 78px;
    height: auto;
}
#downloads .card .button{
    top: 220px;
    width: 150px;
    background-color: transparent;
    border-color: #fff;
    color: #fff;
}
#downloads .card:hover{
    background-image: none;
}
#downloads .card:hover:after,
#downloads .card:hover .logo,
#downloads .card:hover h4{
    opacity: 0;
}
#downloads .card:hover .icon,
#downloads .card:hover .button{
    opacity: 1;
}
#downloads .card .button:hover{
    background-color: #fff;
    border-color: #fff;
    color: var(--dark-grey-100);
}
