/*
	Theme Name: Rent Service
	Theme URI: https://www.rentservicemn.com
	Description: HTML5 WordPress Theme
	Version: 2.0
	Author: Gabriel Nasatse
	Author URI: http://gabrielnastase.com
	Tags: Blank, HTML5, CSS3

	License: MIT
	License URI: http://opensource.org/licenses/mit-license.php
*/

/*------------------------------------*\
    MAIN
\*------------------------------------*/

/* global box-sizing */
*,
*:after,
*:before {
	-moz-box-sizing:border-box;
	box-sizing:border-box;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
	text-rendering:optimizeLegibility;
}
/* html element 62.5% font-size for REM use */
html {
	font-size:62.5%;
}
body {
	color:#000;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 1.6rem;
    line-height: 1.5;
}
/* clear */

.clear {
   clear: both;
    height: 0;
}
img {
	max-width:100%;
	vertical-align:bottom;
    height: auto;
}
a {
    color: #000;
	text-decoration:none;
    transition: all 200ms;
}
a:hover {
	color:#0092E2;
}
a:focus {
	outline:0;
}
a:hover,
a:active {
	outline:0;
}
input:focus {
	outline:0;
}

h1, h2, h3 {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-style: normal;
    margin: 20px 0;
}
h3.azzurro {
    color: #0092E2;
}
.section-title {
    font-size: 4rem;
}
.left-30 .section-title {
    margin-top: 20%;
}
p {margin-bottom: 10px;}

.view-article {
    display: block;
    margin-top: 10px;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 1.2rem;
}
.post-edit-link {
    font-size: 1.4rem;
    text-transform: uppercase;
    font-weight: 800;
    background: #000;
    border-radius: 7px;
    color: #fff;
    padding: 4px;
    border-radius: 2px;
    margin-top: 10px;
}
.post-edit-link:hover {color: #0092E2;}

input, textarea {
    border: solid 1px #ddd;
    padding: 7px;
    margin-bottom: 10px;
    transition: all 200ms;
    width: 100%;
}

input:hover, textarea:hover {
    background-color: #f2f2f2;
}

.wpcf7-submit {
    background: #000;
    color: #fff;
    font-weight: bold;
    transition: all 200ms;
    width: 140px;
    border-radius: 20px;
}

.wpcf7-submit:hover {
    background: #0092E2;
}

.disclaimer {
    padding-bottom: 15px;
    display: block;
}

.acceptance-106  input {
    width: auto;
    position: absolute;
    top: 0;
    left: 0;
}


* {
  margin: 0;
  padding: 0; 
}

/* Icon 1 */

#nav-icon1 {
  width: 25px;
  height: 25px;
  position: fixed;
  top: 80px;
    right: 2.5%;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .5s ease-in-out;
  -moz-transition: .5s ease-in-out;
  -o-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
  cursor: pointer;
    display: none;
    transition: top 300ms ease-out;
    cursor: pointer;
}

#nav-icon1 span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: #000;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .25s ease-in-out;
  -moz-transition: .25s ease-in-out;
  -o-transition: .25s ease-in-out;
  transition: .25s ease-in-out;
}

#nav-icon1 span:nth-child(1) {
  top: 0px;
}

#nav-icon1 span:nth-child(2) {
  top: 10px;
}

#nav-icon1 span:nth-child(3) {
  top: 20px;
}

#nav-icon1.open span:nth-child(1) {
  top: 10px;
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  -o-transform: rotate(135deg);
  transform: rotate(135deg);
}

#nav-icon1.open span:nth-child(2) {
  opacity: 0;
  left: -60px;
}

#nav-icon1.open span:nth-child(3) {
  top: 10px;
  -webkit-transform: rotate(-135deg);
  -moz-transform: rotate(-135deg);
  -o-transform: rotate(-135deg);
  transform: rotate(-135deg);
}


/*------------------------------------*\
    STRUCTURE
\*------------------------------------*/

/* wrapper */
.wrapper {
	max-width: 90%;
	margin:0 auto;
	position:relative;
}
.narrow-wrapper {
	max-width: 1100px;
	margin: 0 auto;
	position:relative;
    display: block;
}

.col-50 {
    width: 50%;
}
.left-50 {
    width: 50%;
    float: left;
}
.right-50 {
    width: 46%;
    float: right;
}

.left-30 {
    width: 30%;
    float: left;
}
.right-70 {
    width: 66%;
    float: right;
}
.right-30 {
    width: 30%;
    float: right;
}
.left-70 {
    width: 66%;
    float: left;
}
.content-padding {
    padding:  110px 0;
}
.less-padding {
    padding: 60px 0;
}

/* header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 900;
    transition: all 200ms ease-out;
    font-size: 1.4rem;
    background: #fff;
    padding-bottom: 20px;
    box-shadow: 0 1px 3px rgba(0,0,0,.12);
}

.header-info {
    background: #000;
    color: #fff;
    padding: 10px 0;
    text-align: right;
}
.header-info i {
    margin-left: 30px;
}
.center {
    text-align: center;
}

/* logo */
.logo {
    max-width: 200px;
    margin-top: 20px;
}
.logo-img {
    display: block;
    float: left;
}
/* nav */
.nav {
    float: right;
    margin-top: 20px;
}
.nav a {
    color: #000;
    padding: 3px;
    border: solid 2px transparent;
}
.nav a:hover {color: #0092E2;}
.nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    font-weight: 800;
}
.nav ul li {
    display: inline-block;
    margin-left: 20px;
    position: relative;
}
.nav ul li ul {
    visibility: hidden;
    opacity: 0;
    transition: visibility 0s, opacity 300ms ease-out;
    position: absolute;
    top: 20px;
    left: 3px;
    text-align: left;
    padding: 20px;
    background: #fff;
    box-shadow: 2px 2px 10px rgba(0,0,0,.15);
    border-radius: 2px;
    width: 240px;
}

.nav ul li ul li {
    margin-left: 0;
    display: block;
    margin: 10px 0;
    padding: 0;
}
.nav ul li ul li a {
    color: #000;
}

.nav .menu-item-has-children {
    padding-right: 16px;
    background-image: url(img/nav-arrow.png);
    background-repeat: no-repeat;
    background-size: 12px;
    background-position: right center;
}
.nav .menu-item-has-children:hover ul {
    visibility: visible;
    opacity: 1;
    animation-delay: 800ms;
}
.nav .current_page_item a {color: #0092E2;}

.btn {
    font-weight: 800;
    padding: 10px 15px;
    line-height: 1;
    border-radius: 20px;
    transition: all 300ms ease-in;
    background: #009EE2;
    color: #fff;
    display: inline-block;
}

.btn:hover {
    background: #181818;
}
.btn-grey {
    background: #E7EFF2;
    color: #000;
}
.btn-grey:hover {color: #fff;}
.btn-black {
    background: #000;
    color: #fff;
}
.btn-black:hover {color: #fff; background: #009EE2;}

.btn i {
    margin-left: 30px;
}
.btn-fullwidth {width: 100%; margin-bottom: 15px;}
.testata {
    position: relative;
    z-index: 5;
    margin-top: 100px;
}

.rettangolo-azzurro {
    background: #0092E2;
    color: #fff;
}
.testata .rettangolo-azzurro {
    width: 33%;
    position: absolute;
    left: 0;
    bottom: -30px;
    padding: 70px 70px 350px 70px;
    z-index: 20;
}
.testata .rettangolo-azzurro h1 {
    font-size: 4rem;
}
.testata .overlay {
    position: absolute;
    bottom: 30px;
    left: 0;
    color: #fff;
    z-index: 22;
    width: 100%;
    font-size: 1.8rem;
    font-weight: bold;
}

.chi-siamo-home {
    position: relative;
    z-index: 0;
}
.light-grey {
    background: #E7EFF2;
}
.scritta-prodotti {
    width: 33%;
    margin-bottom: 60px;
}
.prodotti-home-parent {
    position: relative;
}
.flex-container {
    display: flex;
}

.prodotti-home {
    margin-top: -180px;
}
.prodotti-home .item {
    background: #fff;
    padding: 30px;
    box-shadow: -1px 3px 3px rgba(0,0,0,.12);
}

.prodotti-home .item h4 {
    font-size: 2rem;
    margin: 20px 0;
    display: block;
} 

.prodotti-home .item:first-child {
    background: #0092E2;
    color: #fff;
}
.prodotti-home .item:nth-child(2) {
    background: #009EE2;
    color: #fff;
} 


.prodotti-home .item:first-child a:hover, .prodotti-home .item:nth-child(2) a:hover {
    color: #fff;
}

.soluzioni-per-home {
    position: relative;
}
.scritta-soluzioni {
    position: absolute;
    width: 51%;
    bottom: -50px;
    right: 0;
    z-index: 20;
}
.articoli-alternati {
    display: block;
    position: relative;
    list-style: none;
    margin: 0;
    padding: 0;
}

.articoli-alternati h2 {font-size: 3.6rem;}


.articoli-alternati li {
    margin-bottom: 0;
}

.articoli-alternati li .article-thumb {
    float: left;
    height: 540px;
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: center;
    text-align: right;
}
.articoli-alternati li .article-text {
    float: right;
    padding: 50px;
}


.articoli-alternati li:nth-child(2n+2) .article-thumb {
    float: right;
    text-align: left;
}
.articoli-alternati li:nth-child(2n+2) .article-text {
    float: left;
    text-align: right;
}

.articoli-alternati .view-article {
    display: none;
}
.articoli-alternati .btn {
    margin-top: 20px;
}

.articoli-alternati-prodotti li .article-text {
    background: #E7EFF2;
}
.articoli-alternati-prodotti li .article-thumb {
    height: auto;
    padding: 40px;
}
.servizi-home {
    text-align: center;
    color: #fff;
    background-image: url(img/servizi.jpg);
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: 100%;
    background-position: center;
    padding-bottom: 220px;
    margin-top: -30px;
    position: relative;
    z-index: 20;
}

.servizi-home .btn {
    margin-top: 30px;
}

#newsCarousel {
    text-align: left;
}
#newsCarousel img {
    box-shadow: 0 5px 8px rgba(0,0,0,.12);
    margin-bottom: 20px;
    transition: all 300ms ease;
}
#newsCarousel img:hover {
    box-shadow: 0 10px 22px rgba(0,0,0,.22);
}
#newsCarousel .date {
    font-size: 1.2rem;
    color: #aaa;
    display: block;
    margin-bottom: 20px;
}
.footer .flex-container .item {
    margin-right: 40px;
}

.novita {
    margin-top: -100px;
    position: relative;
    z-index: 30;
}
.novita img {
    float: right;
    margin-left: 30px;
}
/* footer */
.footer {
    background: #000;
    color: #fff;
    font-size: 1.2rem;
}
.logo-footer {
    width: 200px;
    margin-bottom: 40px;
}
.footer a {
    color: #fff;
}
.footer .btn {
    font-size: 2rem;
    float: right;
}

.footer .icona {font-size: 2rem; margin-top: 10px;}

.article .btn {margin-top: 20px;}
/*------------------------------------*\
    PAGES
\*------------------------------------*/

.page-header {
    padding: 120px 0;
    background-color: #000;
    background-repeat: no-repeat;
    background-position: left center;
    background-size: 100%;
    position: relative;
    text-align: center;
}
.page-header h1 {
    font-size: 6rem;
}

.more-padding {
    padding-top: 240px;
}

.img-left {
    margin-bottom: 30px;
}


.privacy-policy .content-padding ul, .cookie-policy .content-padding ul {
    padding: 20px;
}
.privacy-policy .content-padding a, .cookie-policy .content-padding a {text-decoration: underline; font-weight: bold;}

.privacy-policy h4, .privacy-policy h3, .cookie-policy h4, .cookie-policy h3 {
    margin: 20px 0;
}

.page-header-prodotti {
    background-position: 0 -100px;
}

table td {
    border-bottom: solid 1px rgba(0,0,0,.07);
    padding: 10px;
}
.btn-preventivo {
    margin-top: 30px;
}
.dark-bg {color: #fff; text-shadow: 2px 2px 5px rgba(0,0,0,.7);}


/*------------------------------------*\
    RESPONSIVE
\*------------------------------------*/

@media only screen and (max-width: 1280px) {
    .wrapper, .narrow-wrapper {
        max-width: 95%;
    }
    
    .content-padding {
        padding:  90px 0;
    }

    .testata .rettangolo-azzurro {
        width: 33%;
        position: absolute;
        left: 0;
        bottom: -20px;
        padding: 30px 2.5% 300px 2.5%;
        z-index: 20;
    }
    .testata .rettangolo-azzurro h1 {
        font-size: 3rem;
    }
    
    .scritta-prodotti {
        width: 33%;
        margin-bottom: 70px;
    }
    .novita {
        margin-top: -30px;
    } 

}

@media only screen and (max-width:1100px) {
    .flex-control-nav {bottom: 30px;}
    .testata .rettangolo-azzurro {
        width: 45%;
        position: absolute;
        left: 0;
        bottom: 320px;
        padding: 10px 2.5% 10px 2.5%;
        z-index: 200;
    }
    .testata .rettangolo-azzurro h1 {
        font-size: 2.4rem;
    }
    .testata .flexslider {
        z-index: 5;
    }
    .testata .overlay {
        position: relative;
        bottom: auto;
        left: 0;
        color: #fff;
        z-index: 22;
        width: 100%;
        font-size: 1.6rem;
        font-weight: bold;
        background: #000;
        padding: 80px 0;
        z-index: 1;
    }
    .content-padding {
        padding:  80px 0;
    }
    .scritta-prodotti {
        width: 65%;
        margin-bottom: 90px;
    }
    .scritta-soluzioni {
        position: absolute;
        width: 80%;
        bottom: -35px;
        right: 0;
        z-index: 20;
    }
    .page-header {
        padding: 80px 0;
    }
    .page-header h1 {
        font-size: 4.2rem;
    }

    .more-padding {
        padding-top: 220px;
    }
    #nav-icon1 {
        display: block;
    }
    .logo-img {
        float: none;
    }
    
    .nav {
        float: none;
        margin-top: 30px;
        text-align: right;
        display: none;
    }
    .nav a {
        color: #000;
        padding: 3px;
        border: solid 2px transparent;
        font-size: 2rem;
    }
    .nav a:hover {color: #0092E2;}
    .nav ul {
        list-style: none;
        margin: 0;
        padding: 0;
        font-weight: 800;
    }
    .nav ul li {
        display: block;
        margin-left: 0;
        position: relative;
        margin-bottom: 20px;
    }
    .nav ul li ul {
        visibility: visible;
        opacity: 1;
        transition: none;
        position: relative;
        top: auto;
        left: auto;
        text-align: right;
        padding: 20px;
        background: none;
        box-shadow: none;
        border-radius: 0;
        width: auto;
        padding: 0;
        margin: 0;
        margin-right: -10px;
        padding-right: 10px;
        border-right: solid 1px #ccc;
    }

    .nav ul li ul li {
        margin-left: 0;
        display: block;
        margin: 10px 0;
        padding: 0;
    }
    .nav ul li ul li a {
        color: #898989;
    }

    .nav .menu-item-has-children {
        padding-right: 16px;
        background-image: url(img/nav-arrow.png);
        background-repeat: no-repeat;
        background-size: 12px;
        background-position: right 15px;
    }
    .nav .menu-item-has-children:hover ul {
        visibility: visible;
        opacity: 1;
        animation-delay: 800ms;
    }
    
    .prodotti-home {flex-wrap: wrap;}
    .prodotti-home .item {flex-basis: 50%;}
}

@media only screen and (max-width:800px) {
    .page-header {
        background-size: cover;
    }
    .testata .rettangolo-azzurro {
        bottom: 280px;
    }
    .testata .rettangolo-azzurro h1 {
        font-size: 2rem;
    }
    .section-title {
        font-size: 3rem;
    }
    .less-padding {
        padding: 40px 0;
    }
    .articoli-alternati h2 {font-size: 2.8rem;}


    .articoli-alternati li {
        margin-bottom: 0;
    }

    .articoli-alternati li .article-thumb {
        float: left;
        height: 540px;
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
        text-align: right;
    }
    .articoli-alternati li .article-text {
        float: right;
        padding: 20px;
    }


    .articoli-alternati li:nth-child(2n+2) .article-thumb {
        float: right;
        text-align: left;
    }
    .articoli-alternati li:nth-child(2n+2) .article-text {
        float: left;
        text-align: right;
    }

    .articoli-alternati .view-article {
        display: none;
    }
    .articoli-alternati .btn {
        margin-top: 20px;
    }

    .articoli-alternati-prodotti li .article-text {
        background: #E7EFF2;
    }
    .articoli-alternati-prodotti li .article-thumb {
        height: auto;
        padding: 40px;
    }
    .article h2 {
        font-size: 1.8rem;
        margin-top: 0;
        padding-top: 0;
    }
    .btn {
        padding: 6px 10px;
        font-size: 1.4rem;
    }
    .footer .btn {
        font-size: 1.6rem;
        float: right;
    }
    .prodotti-home-parent .flex-container {
        display: block;
    }
    .prodotti-home-parent .item .thumb {
        max-width: 33%;
        clear: right;
        float: left;
    }
    .prodotti-home-parent .item .thumb  img {
        max-width: 90%;
    }
    .prodotti-home-parent .item .text {
        width: 67%;
        float: right;
    }
    .scritta-soluzioni {
        position: relative;
        width: 50%;
        bottom: auto;
        right: auto;
        z-index: 20;
        margin-top: 80px;
        display: block;
        margin-left: auto;
        margin-right: auto;
    }
    .articoli-alternati li .article-thumb {
        height: 400px;
    }
}

@media only screen and (max-width:600px) {
    
    body {
        font-size: 1.4rem;
    }
    .header-info {
        display: none;
    }
    .header {
        padding: 7px 0!important;
        top: 0!important;
    }
    .logo {
        max-width: 80px;
        margin-top: 0!important;
    }
    #nav-icon1 {
      top: 15px!important;
    }
    
    .testata {
        margin-top: 50px;
    }
    
    .testata .rettangolo-azzurro {
        width: 100%;
        position: relative;
        left: auto;
        bottom: auto;
        padding: 10px 2.5%;
        z-index: 20;
    }
    .testata .rettangolo-azzurro h1 {
        margin: 0;
        padding: 0;
    }
     .testata .overlay {
        padding: 50px 0;
         font-size: 1.4rem;
    }
    .content-padding {
        padding:  30px 0;
    }
    .left-30 .section-title {
        margin-top: 0;
    }
    
    .col-50 {
        width: 100%;
    }
    .left-50 {
        width: 100%;
        float: none;
    }
    .right-50 {
        width: 100%;
        float: none;
    }

    .left-30 {
        width: 100%;
        float: none;
    }
    .right-70 {
        width: 100%;
        float: none;
    }
    .right-30 {
       width: 100%;
        float: none;
    }
    .left-70 {
        width: 100%;
        float: none;
    }
    .overlay .left-30 {
        width: 25%;
        float: left;
    }
    .overlay .right-70 {
        width: 73%;
        float: right;
    }
    .prodotti-home .item {
        background: #fff;
        padding: 10px;
    }
    .scritta-prodotti {
        width: 30%;
        margin: 0 auto;
        position: relative;
        display: block;
        margin-bottom: 40px;
        
    }
    .prodotti-home-parent .item .thumb {
        max-width: 100%;
        margin-top: 20px;
        float: none;
    }
    .prodotti-home-parent .item .thumb  img {
        max-width: 100%;
    }
    .prodotti-home-parent .item .text {
        width: 100%;
        float: none;
    }
    .prodotti-home {
        margin-top: 0;
    }
    .articoli-alternati li .article-text {
        text-align: left!important;
        padding: 0 2.5%;
        padding-bottom: 20px;
    }
    .articoli-alternati li .article-thumb {
        height: 300px;
    }
    .servizi-home {
        background-size: cover;
        padding-bottom: 60px;
    }
    .servizi-home .btn {
        margin-top: 15px;
    }
    .novita {
        margin-top: -5px;
        text-align: center;
    }
    .novita img {
        float: none;
        margin-left: auto;
        max-width: 30%;
    }
    .novita .wp-block-buttons {
        justify-content: center;
    }
    .flex-container {
        display: block;
    }
    .footer {
        text-align: center;
    }
    .footer .flex-container .item {
        margin-right: 0;
    }

    .logo-footer {
        max-width: 1200px;
        margin-bottom: 20px;
    }
    .footer a {
        color: #fff;
    }
    .footer .btn {
        font-size: 1.2rem;
        float: none;
        margin-top: 20px;
    }

    .footer .icona {font-size: 2rem; margin-top: 10px;}
    
    .page-header {
        padding: 40px 0;
    }
    .page-header h1 {
        font-size: 3rem;
    }

    .more-padding {
        padding-top: 120px;
    }
    
    .article h2 {
        font-size: 1.8rem;
        margin-top: 30px;
        padding-top: 0;
    }
    

}



/*------------------------------------*\
    MISC
\*------------------------------------*/

::selection {
	background:#04A4CC;
	color:#FFF;
	text-shadow:none;
}
::-webkit-selection {
	background:#04A4CC;
	color:#FFF;
	text-shadow:none;
}
::-moz-selection {
	background:#04A4CC;
	color:#FFF;
	text-shadow:none;
}

/*------------------------------------*\
    WORDPRESS CORE
\*------------------------------------*/

.alignnone {
	margin:5px 20px 20px 0;
}
.aligncenter,
div.aligncenter {
	display:block;
	margin:5px auto 5px auto;
}
.alignright {
	float:right;
	margin:5px 0 20px 20px;
}
.alignleft {
	float:left;
	margin:5px 20px 20px 0;
}
a img.alignright {
	float:right;
	margin:5px 0 20px 20px;
}
a img.alignnone {
	margin:5px 20px 20px 0;
}
a img.alignleft {
	float:left;
	margin:5px 20px 20px 0;
}
a img.aligncenter {
	display:block;
	margin-left:auto;
	margin-right:auto;
}
.wp-caption {
	background:#FFF;
	border:1px solid #F0F0F0;
	max-width:96%;
	padding:5px 3px 10px;
	text-align:center;
}
.wp-caption.alignnone {
	margin:5px 20px 20px 0;
}
.wp-caption.alignleft {
	margin:5px 20px 20px 0;
}
.wp-caption.alignright {
	margin:5px 0 20px 20px;
}
.wp-caption img {
	border:0 none;
	height:auto;
	margin:0;
	max-width:98.5%;
	padding:0;
	width:auto;
}
.wp-caption .wp-caption-text,
.gallery-caption {
	font-size:11px;
	line-height:17px;
	margin:0;
	padding:0 4px 5px;
}


.sticky {

}
.bypostauthor {

}

/*------------------------------------*\
    PRINT
\*------------------------------------*/

@media print {
	* {
		background:transparent !important;
		color:#000 !important;
		box-shadow:none !important;
		text-shadow:none !important;
	}
	a,
	a:visited {
		text-decoration:underline;
	}
	a[href]:after {
		content:" (" attr(href) ")";
	}
	abbr[title]:after {
		content:" (" attr(title) ")";
	}
	.ir a:after,
	a[href^="javascript:"]:after,
	a[href^="#"]:after {
		content:"";
	}
	pre,blockquote {
		border:1px solid #999;
		page-break-inside:avoid;
	}
	thead {
		display:table-header-group;
	}
	tr,img {
		page-break-inside:avoid;
	}
	img {
		max-width:100% !important;
	}
	@page {
		margin:0.5cm;
	}
	p,
	h2,
	h3 {
		orphans:3;
		widows:3;
	}
	h2,
	h3 {
		page-break-after:avoid;
	}
}
