@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@300;400;500;600;700&display=swap');

html, body, div, span, h1, h2, h3, h4, h5, h6, p, figure, img, strong, 
i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, tbody,
tr, th, td {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    line-height: 100%;
    vertical-align: baseline;
    background: transparent;
	}
body{
	overflow-x:hidden; 
    font-family: 'Rajdhani', sans-serif;
	font-weight: 300;
    cursor: default;
	}
.clear{clear:both;}
strong{font-weight: 500;}

.s-container, section{
	box-sizing:border-box;
	position:relative;
	}

.s-container{
	padding: 50px 20px;
	max-width: 1178px;
	margin: auto;
	}

section.s .s-container p{margin: 20px 0;}

section.header{
	background: url(../img/deepmedia_bg.png) no-repeat;
	background-size: cover;
	height: 420px;
    /*height: 649px;*/
	}

.logo{
	position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
	max-width: 463px;
	width: 100%;
	}

.arrow{
  position: absolute;
  bottom: 20px;
	margin-left: -20px;
  left: 50%;
  width: 25px;
  height: 40px;

  background:transparent url(../img/arrow-down.png) no-repeat;
  background-size: contain;
}

.bounce {
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-30px);
  }
  60% {
    transform: translateY(-15px);
  }
}


/****Content***/

p {
	font-size:20px;
	line-height: 30px;
	}
h3{
	font-size: 40px;
	color: #923838;
	text-transform: uppercase;
	font-weight: 700;
	margin-bottom: 30px;
	}

.btt{text-align: right; margin-top:30px;}
.btn{
    color: #FFF;
    text-decoration: none;
    font-family: 'Robot', sans-serif;
    text-transform: uppercase;
    font-size: 18px;
    line-height: 45px;
    display: inline-block;
    background: #923838;
    padding: 2px 20px 0px;
	transition: background-color 0.2s ease, border-color 0.1s ease, color 0.1s ease, box-shadow 0.6s ease, outline 0.6s ease;
	} 

.btn::after {
    display: inline-block;
    content: "";
    background: url(../img/arrow.png) no-repeat;
    width: 13px;
    height: 21px;
    transition: padding 0.1s ease;
    margin-left: 25px;
    margin-bottom: -5px;
	}
.btn:hover {
    background: #a74747;
	}

section.oferta .oferta-list{
    padding-left: 20px;
}
section.oferta .oferta-list li{

}
section.oferta .oferta-list li p{
    margin: 5px 0 0 0;
}

section.oferta > .s-container .offer-row{
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;

}
section.oferta > .s-container .offer-row .col{
    box-sizing: border-box;
    padding: 20px;
    border: 1px solid #ededed;
    position: relative;
}  

section.oferta .s-container .offer-row .col-quarter::after{
        content: '';
        position: absolute;
        width: 0%;
        height: 0%;
        background: #ededed;
        z-index: 20;
        top:0;
        left: 0;
    
        
}

section.oferta > .s-container .offer-row .col-quarter:hover::after{
      display: block;
    width: 100%;
    height: 100%;
    opacity: 0.2;
}

section.oferta > .s-container .offer-row .col-half{
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
    border: none;
    align-self: center;
    padding-left: 10px;
}

section.oferta > .s-container .offer-row .col-quarter{
  -ms-flex: 0 0 25%;
  flex: 0 0 25%;
  max-width: 25%;
  text-align: center;
}

section.oferta > .s-container .offer-row .col-quarter.col-white{
    background: #fff;
}
section.oferta > .s-container .offer-row .col-quarter.col-grey{
    background: #fafafa;
}

section.oferta > .s-container .offer-row .col-inner .col-inner-txt p{
    font-size: 19px;
    line-height: 23px;
    margin: 0;
}

section.oferta > .s-container .offer-row .col-inner .col-inner-icon{
    margin: 20px 0;
}

section.oferta > .s-container {padding: 0;}
section.oferta > .s-container > .ss-container {
    position: relative;
    padding: 0 25px 50px 25px;
	}


section#contact{
    background: #fbfbfb;
}

footer{background: url(../img/deepmedia_bg_footer.png); color:#FFF; text-align: center;}
footer div p{
	font-size: 14px;
	line-height: 24px;
	text-align: center;
	color: #a8a8a8;
	}
footer div a{
	color:#a8a8a8;
	text-decoration: none;
	}
footer div a:hover{text-decoration: underline;}

@media all and (max-width: 900px) {
p{
	font-size: 20px;
	line-height: 29px;
	}
	
.logo{width: 90%;}
section.header{
	height: 450px; 
	background-position:right;
	}
}

/******/

@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    -ms-transform: translateX(-20px);
    transform: translateX(-20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;

  }

  100% {
    opacity: 1;

  }
}
.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}
.animated {
  -webkit-animation-duration: 8s;
  animation-duration: 6s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.animated.hinge {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}


/********************************/

#cookies-message-container {
    background-color: rgba(0, 0, 0, 0.8);
    bottom: 0;
    color: #FFFFFF;
    display: block;
    font-size: 11px;
    position: fixed;
    width: 100%;
    z-index: 9999;
	}
#cookie {
    margin: auto;
    padding: 10px 0 10px 0;
    width: 95%;
    max-width: 1200px;
    position: relative;
    }

#cookies-message {
    display: inline-block;
    float: left;
    width: 100%;
    font-family: sans-serif;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 10px 200px 13px 0;
    font-size: 10px;
	line-height: 10px;
    text-align: justify;
    }

.cookie {
    font-weight: bold;
    }

#cookie .close {
    color: #fff;
    font-size: 14px;
    background: #923838;
    text-decoration: none;
    padding: 10px 25px;
    opacity: 1;
    position: absolute;
    right: 60px;
    top: 24px;
    -webkit-box-sizing:initial;
    box-sizing:initial;
	}

#cookie .close:hover,#cookie .close-2:hover {
    opacity:0.8;
	}

#cookie .close-2{
    background: #FFF;
    padding: 10px 12px;
    border-radius: 100%;
    position: absolute;
    right: 0;
    top: 7px;
    }
.accept-cookies-checkbox{text-decoration:none;}
#cookie a span{text-decoration:none;}

/****/	

.pp ol li, .pc p{
    font-size:22px;
    line-height: 28px;
    margin-left: 48px;
    margin-bottom: 15px;
}

/**********RWD**********/	

@media screen and (max-width: 830px) {
    p {
        font-size: 18px;
        line-height: 25px;
    }
    section.oferta > .s-container .offer-row .col-inner .col-inner-txt p {
        font-size: 18px;
        line-height: 22px;
        margin: 0;
    }
}

@media screen and (max-width: 750px) {
    section.oferta > .s-container .offer-row .col-quarter {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
        text-align: center;
    }
}
@media screen and (max-width: 690px) {
#cookies-message {
    padding: 10px 10px 30px;
	}
#cookie .close {
    padding: 10px 25px;
    position: relative;
    right: -10px;
    top: -9px;
    display: inline-block;
	}
p {
    font-size: 18px;
    line-height: 28px;
    }    
}

@media screen and (max-width: 600px) {

    section.oferta > .s-container .offer-row .col-half,
    section.oferta > .s-container .offer-row .col-quarter {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }
.btt {
  text-align: center;
}
}

@media screen and (max-width: 450px) {
section.header {
    height: 330px;
}
    h3 {
    font-size: 35px;
	}
p {
    font-size: 16px;
    line-height: 26px;
	}
footer div p {
    font-size: 13px;
    line-height: 20px;
	}	
.pp h3{font-size: 25px;}	
.pp ol li, .pc p {
    font-size: 15px;
    line-height: 25px;
    margin-left: 16px;
	}	
}


