
body{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.container .logo-box{
    background: url("../img/triangle-shape.png") no-repeat;
    background-size: cover;
    position: absolute;
    right: 0;
    left: 0;
    z-index: 99;
    min-height:230px;
    background-position: top center;
}

.logo-box .logo img{
    display: block;
    margin: 3% auto 0;
}

.box{
    z-index: -1;
}

.box-left{
    width: 50%;
    float: left;
    position: relative;
    overflow: hidden;
}

.box-left img{
    width: 100%;
    display: block;
    height: auto;
    transition: all 0.3s linear;
   -moz-transition: all 0.3s linear;
    -ms-transition: all 0.3s linear;
     -o-transition: all 0.3s linear;
        transition: all 0.3s linear;
    transform: scale(1.1);
    -ms-transform: scale(1.1);
    -webkit-transform: scale(1.1);
}

.box-right{
    width: 50%;
    float: left;
    position: relative;
    overflow: hidden;
}

.box-right img{
    width: 100%;
    display: block;
    height: auto;
    transition: all 0.3s linear;
   -moz-transition: all 0.3s linear;
    -ms-transition: all 0.3s linear;
     -o-transition: all 0.3s linear;
        transition: all 0.3s linear;
    transform: scale(1.1);
    -ms-transform: scale(1.1);
    -webkit-transform: scale(1.1);
}

.box-left .image::after{
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(216, 49, 57, 0.4);
    top: 0;
    opacity: 0;
    transform: scale(1.1);
    -ms-transform: scale(1.1);
    -webkit-transform: scale(1.1);
    transition: all 0.3s linear;
   -moz-transition: all 0.3s linear;
    -ms-transition: all 0.3s linear;
     -o-transition: all 0.3s linear;
        transition: all 0.3s linear;
}

.box-left:hover img.target-1{
    -webkit-filter: blur(15px);
    -moz-filter: blur(15px);
    -o-filter: blur(15px);
    -ms-filter: blur(15px);
    filter: blur(15px);
    transition: all 0.3s linear;
   -moz-transition: all 0.3s linear;
    -ms-transition: all 0.3s linear;
     -o-transition: all 0.3s linear;
        transition: all 0.3s linear;
}

.box-left .image:hover::after{
    opacity: 1;
    transition: all 0.3s linear;
   -moz-transition: all 0.3s linear;
    -ms-transition: all 0.3s linear;
     -o-transition: all 0.3s linear;
        transition: all 0.3s linear;
}

.box-right .image::after{
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(29, 64,101, 0.6);
    top: 0;
    opacity: 0;
    transition: all 0.3s linear;
   -moz-transition: all 0.3s linear;
    -ms-transition: all 0.3s linear;
     -o-transition: all 0.3s linear;
        transition: all 0.3s linear;
}

.box-right:hover img.target-2{
    -webkit-filter: blur(15px);
    -moz-filter: blur(15px);
    -o-filter: blur(15px);
    -ms-filter: blur(15px);
    filter: blur(15px);
    transition: all 0.3s linear;
   -moz-transition: all 0.3s linear;
    -ms-transition: all 0.3s linear;
     -o-transition: all 0.3s linear;
        transition: all 0.3s linear;
}

.box-right .image:hover::after{
    opacity: 1;
    transition: all 0.3s linear;
   -moz-transition: all 0.3s linear;
    -ms-transition: all 0.3s linear;
     -o-transition: all 0.3s linear;
        transition: all 0.3s linear;
}

.box-left .megatugs{
    position: absolute;
    top: 50%;
    max-width: 215px;
    right: 0;
    left: 0;
    margin: 0 auto;
}

.megatugs img{
    width: 100%;
}

.box-right .zouros{
    position: absolute;
    top: 50%;
    max-width: 120px;
    right: 0;
    left: 0;
    margin: 0 auto;
}

.zouros img{
    width: 100%;
}