/***********************************************/
/*
/* GENERAL
/*
/***********************************************/

html,
body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    background-color: #ffffff;
    font-size: 18px;
    font-family: 'Lato', sans-serif;
    font-weight: 400;
}

ul {
    list-style: none;
}

a {
    cursor: pointer;
    text-decoration: none;
    border: none;
    outline: none;
    padding: 0;
    margin: 0;
}

h1 {
    font-size: 26px;
    font-weight: 900;
    color: white;
}

textarea,
input {
    outline: none;
    text-indent: 0;
}

::-moz-focus-inner {
    border: 0;
    padding: 0;
}

div.clear {
    clear: both;
}

.hidden {
    display: none;
}

.onlyMobile {
    display: none !important;
}

.onlyDesktop {
    display: block;
}

.locked {
    cursor: not-allowed !important;
    pointer-events: none !important;
}

/***********************************************/
/*
/* HEADER
/*
/***********************************************/

header {
    top: 0;
    left: 0;
    z-index: 10;
    width: 100%;
    height: auto;
    background-color: #ffffff;
}

#banner {
    height: 60px;
    background-color: #232323;
    width: 100%;
    position: relative;
    overflow: hidden;
    text-align: right;
    padding: 0;
    margin: 0;
}

#banner a {
    display: inline-block;
    height: 60px;
}

#banner a .phone {
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    color: #FFFFFF;
    font-size: 25px;
    height: 60px;
    line-height: 59px;
    display: inline-block;
    width: 230px;
    padding-right: 20px;
}

#banner a .phone img {
    margin-right: 12px;
}

#banner a .info {
    font-weight: 700;
    color: #FFFFFF;
    font-size: 25px;
    line-height: 60px;
    font-family: 'Lato', sans-serif;
    display: inline-block;
}

#banner .graphic {
    line-height: 60px;
    background-color: #EC2029;
    height: 60px;
    float: left;
            clip-path: polygon(0px 0, 90% 0, 100% 100%, 0 100%);
    -webkit-clip-path: polygon(0px 0, 90% 0, 100% 100%, 0 100%);
        -ms-clip-path: polygon(0px 0, 90% 0, 100% 100%, 0 100%);
         -o-clip-path: polygon(0px 0, 90% 0, 100% 100%, 0 100%);
}

#banner .graphic img {
    margin: 0px 120px 0px 14px;
}

#sticker {
    width: 100%;
    height: 120px;
    z-index: 999 !important;
    background-color: #ffffff;
}

.mobileMenu {
    display: none;
}

header nav {
    width: 100%;
    height: 120px;
    position: relative;
    max-width: 1750px;
    margin: 0 auto;
}

header nav .logo {
    height: 120px;
}

header nav .logoLink {
    display: block;
    width: auto;
    height: 120px;
    float: left;
    margin-left: 38px;
}

header nav .menu {
    padding: 0;
    float: right;
    text-transform: uppercase;
    margin: 0;
    height: 120px;
}

header nav .menu li {
    font: bold 12px sans-serif;
    display: inline-block;
    margin: 0;
    padding: 50px 0;
}

header nav .menu li:last-child a {
    border: none;
}

header nav .menu li a:hover {
    color: #ec2029;
}

header nav .menu li a {
    cursor: pointer;
    font-weight: 700;
    color: #333333;
    border-right: 1px solid black;
    padding: 10px 20px;
    outline: none;
    line-height: 0px;
    font-family: 'Lato', sans-serif;
    display: block;
}

/***********************************************/
/*
/* HOMEPAGE
/*
/***********************************************/

.mainImages {
    width: 100%;
    height: calc(100% - 260px);
    margin: 0;
    padding: 0;
    position: relative;
    background-color: #232323;
}

.mainImages li {
    width: calc(100% / 3);
    height: 100%;
    position: relative;
    margin: 0;
    padding: 0;
    float: left;
    -webkit-transition: opacity 0.2s ease-in-out;
    -moz-transition: opacity 0.2s ease-in-out;
    -o-transition: opacity 0.2s ease-in-out;
    transition: opacity 0.2s ease-in-out;
}

.mainImages li a img {
    width: 100%;
    height: 100%;
    object-position: 70% 50%;
    object-fit: cover;
    opacity: 0.5;
    position: absolute;
}

.mainImages li a .overlay {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(236, 32, 41, 0.8);
    opacity: 0;
    -webkit-transition: opacity 0.2s ease-in-out;
    -moz-transition: opacity 0.2s ease-in-out;
    -o-transition: opacity 0.2s ease-in-out;
    transition: opacity 0.2s ease-in-out;
    color: #ffffff;
    text-align: center;
}

.mainImages li:hover,
.mainImages li:hover a .overlay {
    opacity: 1;
}

.mainImages .overlay .content {
    position: relative;
    top: 50%;
    -webkit-transform: translateY(-40%);
    -ms-transform: translateY(-40%);
    transform: translateY(-40%);
    max-width: 450px;
    margin: 0 auto;
    opacity: 0;
    -webkit-transition: opacity 0.2s ease-in-out;
    -moz-transition: opacity 0.2s ease-in-out;
    -o-transition: opacity 0.2s ease-in-out;
    transition: opacity 0.2s ease-in-out;
    -webkit-transition-delay: 0.1s;
    -moz-transition-delay: 0.1s;
    -o-transition-delay: 0.1s;
    transition-delay: 0.1s;
    z-index: 999;
    padding: 0 40px;
    height: auto;
    min-height: 220px;
}

.mainImages li a {
    width: 100%;
    height: 100%;
    position: relative;
    display: block;
}

.mainImages li a h1 {
    font-weight: 900;
    font-size: 28px;
    color: #ffffff;
    text-align: center;
    position: relative;
    max-width: 400px;
    z-index: 100;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    margin: 0 auto;

    position: relative;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.mainImages li:hover a h1 {
    top: calc(50% - 120px);
}

.overlay .content p {
    font-size: 16px;
    margin: 0 30px 0 30px;
    display: block;
    color: white;
    font-weight: 400;
}

.mainImages li:hover a .overlay .content {
    opacity: 1;
}

.overlay .content .customer {
    color: #ffffff;
    font-size: 12px;
    width: auto;
    padding: 8px;
    display: block;
}

.overlay .content .contact_note {
    color: #ffffff;
    font-size: 12px;
    width: auto;
    padding: 8px;
    display: block;
}

.overlay .content .more {
    color: #ffffff;
    font-size: 20px;
    width: auto;
    padding: 25px;
    display: block;
    padding-top: 10px;
    opacity: 0.8;
}

.overlay .content .more:hover {
    opacity: 0.6;
}
.overlay .content .moreinfoprod {
    color: #ffffff;
    font-size: 18px;
    font-size: 19px;
    font-weight: 400;
    width: auto;
    padding: 37px;
    display: block;
    cursor: pointer;
}

.freeQuote {
    width: 100%;
    background-color: rgba(236, 32, 41, 1);
    text-align: center;
    cursor: pointer;
    height: 80px;
    -webkit-transition: background-color 0.2s ease-in-out;
    -moz-transition: background-color 0.2s ease-in-out;
    -o-transition: background-color 0.2s ease-in-out;
    transition: background-color 0.2s ease-in-out;
    color: #ffffff;
}

.freeQuote h1 {
    margin: 0;
    -webkit-transition: padding-top 0.2s ease-in-out;
    -moz-transition: padding-top 0.2s ease-in-out;
    -o-transition: padding-top 0.2s ease-in-out;
    transition: padding-top 0.2s ease-in-out;
    padding-top: 25px;
}

.freeQuote span {
    opacity: 0;
    -webkit-transition: opacity 0.2s ease-in-out;
    -moz-transition: opacity 0.2s ease-in-out;
    -o-transition: opacity 0.2s ease-in-out;
    transition: opacity 0.2s ease-in-out;
    font-size: 12px;
    font-weight: 400;
}

.freeQuote .mobile {
    display: none;
}

.freeQuote:not(.nohover):hover {
    background-color: #232323;
}

.freeQuote:not(.nohover):hover h1 {
    padding-top: 13px;
}

.freeQuote:not(.nohover):hover span {
    opacity: 1;
}

.before_fill_form {
    background-color: black !important;
}

.quoteForm {
    height: auto;
    position: relative;
}

.quoteForm .zebra {
    position: absolute;
    bottom: 0;
    max-height: 449px;
    left: calc(((100% - 900px) / 2) - 238px);
}

.quoteForm .inner {
    width: 740px;
    height: auto;
    margin: 0 auto;
    position: relative;
    padding-bottom: 5px;
    padding: 30px 80px;
}

.quoteForm .inner .quoteColLeft {
    width: 365px;
    display: inline-block;
    float: left;
    height: 181px;
}

.quoteForm .inner .quoteColRight {
    width: 365px;
    display: inline-block;
    float: right;
    top: 85px;
    height: 181px;
}

.quoteForm .inner input[type='text'],
.quoteForm .inner input[type='tel'],
.quoteForm .inner input[type='email'] {
    width: 335px;
    color: #333333;
    font-family: 'Lato', sans-serif;
    border: none;
    border-radius: 2px;
    display: block;
    font-size: 16px;
    font-weight: 700;
    padding: 10px 14px;
    margin: 5px 5px 5px 0;
    box-sizing: content-box;
    border: 1px solid #d4d4d4;
}

.quoteForm .inner textarea {
    resize: none;
    width: 335px;
    padding: 10px 15px;
    color: #333333;
    font-family: 'Lato', sans-serif;
    border: none;
    border-radius: 2px;
    font-weight: 700;
    font-size: 16px;
    margin: 5px 5px 5px 0;
    height: 157px;
    box-sizing: content-box;
    border: 1px solid #d4d4d4;
    margin-bottom: 0;
}

.quoteForm .inner span {
    display: block;
    width: 100%;
    margin: 20px 0;
    float: left;
    text-align: center;
    border-radius: 7px;
}

.quoteForm .inner label {
    float: left;
    width: calc((740px - 20px) / 3);
    height: 33px;
    display: inline-block;
    border-radius: 2px;
    -webkit-appearance: none;
    text-align: center;
    margin: 5px 10px 5px 0;
}

.quoteForm .inner label input[type="checkbox"] + span {
    height: 33px;
    display: block;
    cursor: pointer;
    border-radius: 2px;
    color: #333333;
    line-height: 33px;
    margin: 0;
    font-weight: 400;
    border: 1px solid #d4d4d4;
}

.quoteForm .inner label input[type="checkbox"]:checked + span {
    background-color: #333333;
    color: #ffffff;
}

.quoteForm .inner label input[type="checkbox"] {
    display: none;
}

.quoteForm .inner label:nth-child(3n+1) {
    margin-right: 0;
}

.quoteForm .inner .submitSection {
    width: 100%;
    height: 85px;
    position: relative;
    margin-bottom: 15px;
}

.quoteForm .inner .info {
    margin: 0;
    display: block;
    width: 100%;
    text-align: center;
    line-height: 85px;
}

.quoteForm .inner button.submit {
    background-color: #EC2029;
    width: 100%;
    height: 55px;
    color: #fff;
    border: none;
    outline: none;
    cursor: pointer;
    left: 0;
    font-weight: 700;
    font-size: 15px;
    margin: 15px 0;
    position: absolute;
    -webkit-transition: background-color 0.2s ease-in-out;
    -moz-transition: background-color 0.2s ease-in-out;
    -o-transition: background-color 0.2s ease-in-out;
    transition: background-color 0.2s ease-in-out;
}

.quoteForm .inner button.submit i
{
    color: #ffffff;
    display: block;
    text-align: center;
    font-size: 17px;
    width: 100%;
}

.quoteForm .inner button.submit:hover {
    background-color: #000000;
}

.quoteForm .inner .header,
.quoteForm .inner .exit {
    display: none;
}

::-webkit-input-placeholder {
    /* WebKit, Blink, Edge */
    color: #000;
    font-weight: 400;
    opacity: 1;
}

:-moz-placeholder {
    /* Mozilla Firefox 4 to 18 */
    color: #000;
    font-weight: 400;
    opacity: 1;
}

::-moz-placeholder {
    /* Mozilla Firefox 19+ */
    color: #000;
    font-weight: 400;
    opacity: 1;
}

:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: #000;
    font-weight: 400;
    opacity: 1;
}

.textContent {
    min-height: 500px;
    background-color: #f9f9f9;
}

.textContent .inner {
    height: auto;
    position: relative;
    width: 870px;
    padding: 50px 0 30px 0;
    margin: 0 auto;
}

.textContent .inner.faq {
    padding: 0 0 50px 0;
}

.textContent .inner .row {
    margin: 25px 0 0 0;
    position: relative;
    display: inline-block;
    width: 100%;
    height: auto;
}

.textContent .inner h2 {
    margin: 0px;
    margin-top: 50px;
    text-align: center;
}

.textContent .inner h3 {
  margin: 0px;
  margin-top: 20px;
  text-align: center;
}

.textContent .inner p {
    margin: 10px 0;
}

.textContent .inner .column {
    width: calc(50% - 30px);
}

.textContent .inner .column.left {
    float: left;
}

.textContent .inner .column.right {
    float: right;
}

.textContent a{
    font-weight: 700;
    color: #000000;
    text-decoration: none;;;
}

.textContent li{
    margin-top: auto;
}

.textContent a:hover{
    text-decoration: none;
    color: #ec2029;
    font-weight: 700;
    display: inline;
}

.desktopCenter {
    text-align: center;
}

.logos {
    height: 30px;
    width: 100%;
    background-color: #f9f9f9;
    margin: 0px auto;
    padding: 60px 0;
}

.logos .inner {
    width: 870px;
    height: 32px;
    margin: 0;
    padding: 0;

}

.logos .inner li {
    width: 25%;
    float: left;
    text-align: center;
    cursor: pointer;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    margin: 0px;
    padding: 0px;
    height: auto;
    display: block;
    position: relative;
}

.logos .inner li a {
    display: block;
}

.logos_suppliers .inner{
    height: 250px;
    margin: 0 auto;
    width: 870px;;;;
}

.logos_suppliers .inner li img{
    width: auto;
    height:42px;
}

.logos_suppliers {
    height: 200px;
    background-color: #f9f9f9;
    margin: 0;
    padding: 25px 0 0 0;
    width: 100%;
}

.logos_suppliers h2{
    text-align: center;
}

.logos_suppliers .inner {
    width: 900px;
    margin: 0 auto;
    height: 100px;
    padding: 0px;
}

.logos_suppliers .inner li {
    width: 16.6666%;
    float: left;
    text-align: center;
    height: auto;
    padding-top: 20px;
}

.deals {
    height: 195px;
    background-color: #ec2029;
    margin: 0;
    padding: 0;
}

.deals .inner {
    width: 900px;
    margin: 0 auto;
    padding: 0;
    height: 100%;
}

.deals .inner li {
    width: 50%;
    float: left;
    height: 100%;
    text-align: center;
    margin: 0;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.deals .inner li a {
    padding: 40px 0;
    display: block;
}

.deals .inner li img {
    position: relative;
    top: 50%;
}

.deals .inner li:hover {
    opacity: 0.7;
}

/***********************************************/
/*
/* FOOTER
/*
/***********************************************/

footer {
    width: 100%;
    height: auto;
    background-color: #232323;
}

footer nav {
    width: 100%;
    height: 120px;
    position: relative;
    max-width: 1750px;
    margin: 0 auto;
}

footer nav .logo {
    height: 120px;
    float: left;
    margin-left: 20px;
}

footer nav .menu {
    width: 900px;
    margin: 0 auto;
    padding: 15px 0;
    text-transform: uppercase;
    text-align: center;
    margin: 0 auto;
    position: relative;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

footer nav .menu li {
    position: relative;
    display: inline-block;
    cursor: pointer;
    font: bold 12px sans-serif;
}

footer nav .menu li:last-child a {
    border: none;
}

footer nav .menu li:hover a {
    color: #ec2029;
}

footer nav .menu li a {
    padding: 10px 20px;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    color: #ffffff;
    border-right: 1px solid white;
    line-height: 0px;
    display: block;
}

footer .links {
    margin: 0;
    padding: 0;
    color: #ffffff;
    font-size: 15px;
    margin: 30px 0;
}

footer .links .inner {
    padding: 0;
    width: 900px;
    margin: 0 auto;
    height: 140px;
}

footer .links .inner li {
    width: calc(100% / 3);
    text-align: center;
    float: left;
}

footer .links .list {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 140px;
}

footer .links .list li {
    clear: both;
    width: 100%;
    padding: 2px 0;
    cursor: pointer;
}

footer .links .list li a {
    color: #fff;
    text-decoration: none;
}

footer .links .list li:hover a {
    color: #ec2029;
}

footer .links .list li:first-child {
    font-weight: 700;
    padding: 10px 0;
    font-size: 20px;
    pointer-events: none;
}

footer .copyright {
    width: 100%;
    height: 100px;
    line-height: 100px;
    color: #ffffff;
    text-align: center;
    font-size: 12px;
}

footer .copyright a{
    text-decoration: none;
    color: #ffffff;
    display: inline;
}

footer .copyright a:hover{
    color: #ec2029;

}

/***********************************************/
/*
/* MODAL GALLERY
/*
/***********************************************/

.modalGallery ul {}

.modalGallery ul li {}

.modalGallery ul li a {}

.modalGallery ul li a img {}

.modalGallery ul li a .overlay {}

.modalGallery ul li a .content {}

/***********************************************/
/*
/* MODAL QUOTE
/*
/***********************************************/

.modalQuoteForm .inner {
    padding-top: 0;
    padding-bottom: 0;
}

.modalQuoteForm .zebra {
    display: none !important;
}

.modalQuoteForm .inner .title {
    display: none !important;
}

.modalQuoteForm .inner .exit {
    display: block !important;
    position: absolute;
    top: 0;
    right: 0;
    background-color: #fff;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 25px;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.modalQuoteForm .inner .exit:hover {
    transform: scale(0.9);
    -moz-transform: scale(0.9);
    -webkit-transform: scale(0.9);
    -o-transform: scale(0.9);
    -ms-transform: scale(0.9);
    opacity: 0.7;
}

.modalQuoteForm .inner .header {
    display: block !important;
    padding-top: 30px;
}

.modalQuoteForm .inner .header .logo {
    margin: 0 auto;
    width: 250px;
    display: block;
}

.modalQuoteForm .inner .header .freeQuote {
    color: #000000 !important;
    cursor: default !important;
    background-color: #ffffff;
}

.modalQuoteForm .inner .header .freeQuote h1 {
    padding-top: 36px !important;
    color: #000000 !important;
}

.modalQuoteForm .inner .header .freeQuote span {
    margin: 0;
    opacity: 1 !important;
    margin-top: 3px;
    margin-bottom: 44px;
}

.modalQuoteForm .inner textarea {
    top: 245px;
}

/***********************************************/
/*
/* PRODUCT PAGE
/*
/***********************************************/

.mainImage {
    width: 100%;
    height: calc(100% - 259px);
    margin: 0;
    padding: 0;
    position: relative;
    background-color: #232323;
    min-height: 401px;
}

.mainImage img {
    width: 100%;
    height: 100%;
    object-position: 70% 50%;
    object-fit: cover;
}

.mainImage .overlay {
    display: block;
    width: 450px;
    height: 100%;
    z-index: 99;
    background-color: #fff;
    text-align: center;
    color: #ffffff;
    position: absolute;
    top: 0;
    right: 0;
    min-height: 401px;
}

.mainImage .overlay .content {
    height: auto;
    z-index: 999;
}

/***********************************************/
/*
/* SIDE FORM
/*
/***********************************************/

.mainImage .overlay .content .quoteForm .zebra {
    display: none;
}

.mainImage .overlay .content .quoteForm .inner {
    padding: 0;
    width: 100%;
    background: #fff;
    box-sizing: border-box;
}

.mainImage .overlay .content .inner .header .freeQuote {
    color: #fff !important;
    cursor: default !important;
    background-color: rgb(236, 32, 41);
    height: 90px;
}

.mainImage .overlay .content .inner .header .freeQuote h1 {
    padding-top: 20px !important;
    color: #fff !important;
}

.mainImage .overlay .content .inner .header .freeQuote span {
    margin: 0;
    opacity: 1 !important;
    margin-top: 3px;
    margin-bottom: 20px;
    color: #fff;
    font-size: 12px;
}

.mainImage .overlay .content .quoteForm .inner .header
{
    pointer-events: none;
    display: block;
}

.mainImage .overlay .content .quoteForm .inner .header .logo {
    display: none;
}

.mainImage .overlay .content .quoteForm .inner .quoteColLeft {
    width: 100%;
    display: block;
    height: auto;
    padding: 10px;
    box-sizing: border-box;
}

.mainImage .overlay .content .quoteForm .inner .quoteColRight {
    width: 100%;
    display: block;
    height: auto;
    padding: 10px;
    padding-top: 0;
    box-sizing: border-box;
}

.mainImage .overlay .content .quoteForm .inner input[type='text'],
.mainImage .overlay .content .quoteForm .inner input[type='tel'],
.mainImage .overlay .content .quoteForm .inner input[type='email'] {
    width: 100%;
    font-size: 15px;
    box-sizing: border-box;
    border-radius: 7px;
    font-family: 'Lato', sans-serif;
    border-radius: 2px;
    display: block;
    font-size: 16px;
    font-weight: 700;
    padding: 10px 14px;
    margin: 15px 5px 5px 0;
}

.mainImage .overlay .content .quoteForm .inner textarea {
    width: 100%;
    font-size: 15px;
    box-sizing: border-box;
    border-radius: 7px;
    font-family: 'Lato', sans-serif;
    border-radius: 2px;
    display: block;
    font-size: 16px;
    font-weight: 700;
    padding: 10px 15px;
    margin: 0px 5px 5px 0;
}

.mainImage .overlay .content .quoteForm .inner span {
    text-align: center;
    font-size: 18px;
    color: #000;
}

.mainImage .overlay .content .quoteForm .inner label {
    height: auto;
    margin-bottom: 0px;
    width: calc((450px - 42px) / 3);
}

.mainImage .overlay .content .quoteForm .inner label:nth-child(3n+2) {
    margin-left: 10px;
}

.mainImage .overlay .content .quoteForm .inner label input[type="checkbox"] + span {
    height: 33px;
    display: block;
    cursor: pointer;
    border-radius: 2px;
    color: #333333;
    line-height: 33px;
    margin: 0;
    font-weight: 400;
    border: 1px solid #d4d4d4;
}

.mainImage .overlay .content .quoteForm .inner label input[type="checkbox"]:checked + span {
    background-color: #333333;
    color: #fff;
}

.mainImage .overlay .content .quoteForm .inner .submitSection {
    height: 70px;
    margin: 0;
    margin-top: 15px;
    padding-bottom: 10px;
}

.mainImage .overlay .content .quoteForm .inner .info {
    display: none;
}

.mainImage .overlay .content .quoteForm .inner button.submit {
    height: 70px;
    font-size: 20px;
    margin: 0 10px;
    width: calc(100% - 20px);
}

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

.gallery {
    width: 100%;
    height: 250px;
    margin: 0;
    padding: 0;
    position: relative;
    background-color: #232323;
}

.gallery li {
    width: calc(100% / 5);
    height: 100%;
    position: relative;
    margin: 0;
    padding: 0;
    float: left;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.gallery li a img {
    width: 100%;
    height: 100%;
    object-position: 70% 50%;
    object-fit: cover;
    position: absolute;
}

.gallery li a .overlay {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(236, 32, 41, 0.8);
    opacity: 0;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    color: #ffffff;
    text-align: center;
}

.gallery li:hover,
.gallery li:hover a .overlay {
    opacity: 1;
}

.gallery li a {
    width: 100%;
    height: 100%;
}

.gallery li a h1 {
    font-weight: 900;
    font-size: 28px;
    color: #ffffff;
    text-align: center;
    position: relative;
    top: 50%;
    height: auto;
    padding: 20px 50px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    max-width: 400px;
    margin: 0 auto;
    z-index: 100;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.gallery li:hover a h1 {
    top: calc(50% - 100px);
}

.gallery li:hover a .overlay .content {
    opacity: 1;
}

.gallery li .overlay .content {
    -webkit-transition-delay: 0s;
    -moz-transition-delay: 0s;
    -o-transition-delay: 0s;
    transition-delay: 0s;
    height: 100%;
    padding: 20px;
}

.gallery li .overlay .content span {
    padding-top: 10px;
    display: block;
}

.menu-selected a {
    color: red !important;
}

/***********************************************/
/*
/* MAIN GALLERY BY SIM
/*
/***********************************************/

.productGallery {
    width: calc(100% - 450px);
    height: 100%;
    margin: 0;
    padding: 0;
    background-color: #232323;
    position: absolute;
    left: 0;
    overflow: hidden;
}

.productGallery li {
    width: calc(100% / 2);
    height: 50%;
    position: relative;
    margin: 0;
    padding: 0;
    float: left;
    -webkit-transition: opacity 0.2s ease-in-out;
    -moz-transition: opacity 0.2s ease-in-out;
    -o-transition: opacity 0.2s ease-in-out;
    transition: opacity 0.2s ease-in-out;
}

.productGallery li a img {
    width: 100%;
    height: 100%;
    object-position: 70% 50%;
    object-fit: cover;
    position: absolute;
}

.productGallery li a .overlay {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    color: #ffffff;
    text-align: center;
}

.productGallery li:hover,
.productGallery li:hover a .overlay {
    opacity: 1;
}

.productGallery li a {
    width: 100%;
    height: 100%;
}

.productGallery li a h1 {
    font-weight: 900;
    font-size: 4vmin;
    width:100%;
    color: #ffffff;
    text-align: center;
    position: relative;
    display:inline-block;
    top:20%;
    z-index: 100;
}

.productGallery li:hover a h1 {

}


.productGallery .overlay {
    display: block;
    width: 450px;
    height: 100%;
    z-index: 99;
    background-color: #fff;
    text-align: center;
    color: #ffffff;
    position: absolute;
    top: 0;
    right: 0;
    min-height: auto;
}


.productGallery li a .overlay .content{
    font-weight: 900;
    font-size: 2.5vmin;
    width:100%;
    color: #ffffff;
    text-align: center;
    position: relative;
    display:inline-block;
    top:60%;
    z-index: 100;
}

/***********************************************/
/*
/* CONTACT
/*
/***********************************************/

.contact_gallery .overlay .content p{
    font-weight:100;
    font-size: 13px;
}

.contact_gallery .overlay .content .contact_note{
    font-size: 15px;
    font-weight: 600;
}


.quoteFormSideMap {
    width: calc((100% / 3) * 2);
    /* height: calc(100% - 180px); */
    margin: 0 auto;
    padding: 0;
    position: relative;
    background-color: #ffffff;
    /* float: left; */
}

.quoteFormSideMap .zebra {
    display: none;
}

.quoteFormSideMap .quoteForm .inner {
    padding: 0;
}

#mapContainer {
    position: absolute;
    width: 100%;
    height: 100%;
}

.map {
    display: inline-block;
    width: calc(100% / 3);
    height: calc(100% - 180px);
    min-height: 600px;
    z-index: 99;
    text-align: center;
    float: right;
    position: relative;
}

.map .overlay {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    z-index: 20;
    background-color: rgba(236, 32, 41, 0.8);
}

.map .overlay .content {
    opacity: 1;
}

.address {
    margin-top: 40px !important;
    font-size: 20px;
}

.map .overlay .content {
    position: relative;
    top: 50%;
    height: auto;
    padding: 20px 10px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    max-width: 450px;
    margin: 0 auto;
    opacity: 1;
    z-index: 999;
}

.topPart h1 {
    margin-top: 0;
    color: white;
}
.topPart a{
    color: white;
}

.bottomPart {
    margin-top: 73px;
}

.bottomPart a {
    display: inline-block;
    color: #fff;
    width: 200px;
    margin-top: 20px
}

.bottomPart a h1 {
    font-size: 16px;
}

.bottomPart a:hover {
    opacity: 0.7;
}

.bottomPart .pin_no_link {
    display: inline-block;
    color: #fff;
    width: 100px;
    margin-top: 20px
}

.bottomPart .pin_no_link h1 {
    font-size: 16px;
}

.list_suburb{
    display: none;
}

.suburb{
    display: none;
}

.warning_input {
    border-left: 6px solid #ec2029 !important;
    padding-left: 9px !important;
}

.capitalize_input {
    text-transform: capitalize;
}

.uppercase_input {
    text-transform: uppercase;
}

.stepbystep {
    margin-top: 48px;
    margin-bottom: 48px;
}

.stepbystep li {
    margin-top: 20px;
}

.formbuttons {
    background-color: #ec2029;
    opacity: 1;
    border: none;
    width: 100%;
    color: white !important;
    font-size: 16px;
    cursor: pointer;
    padding: 20px 0;
    text-align: center;
    display: block !important;
    border-radius: 2px;
}

.formbuttons:hover {
    opacity: 0.8;
}

.formbuttons.grey {
    background-color: #eeeeee;
    color: #000 !important;
}

.formbuttongrey:hover {
    opacity: 0.8;
}

.boldtext {
    font-weight: 700;
}

/**********************************/
/*
/* RESPONSIVE CSS
/*
/**********************************/


/* Desktops and laptops ----------- */
@media only screen and (max-height : 1021px) {

    .mainImage .overlay .content .quoteForm .inner .header .freeQuote {
        height: 50px;
        margin-bottom: 10px;
    }
    .mainImage .overlay .content .inner .header .freeQuote span {
        display: none;
    }
    .mainImage .overlay .content .inner .header .freeQuote h1 {
        font-size: 18px;
        padding-top: 14px !important;;
    }

    .mainImage .overlay .content .quoteForm .inner textarea{
        height:32px;
        font-size: 13px;
        margin: 0px 4px 3px 0;
        padding:7px 14px;
    }

    .mainImage .overlay .content .quoteForm .inner input[type='text'], .mainImage .overlay .content .quoteForm .inner input[type='tel'], .mainImage .overlay .content .quoteForm .inner input[type='email']{
        font-size: 13px;
        padding: 7px 14px;
        margin: 0;
        margin-bottom: 8px;
    }
    .mainImage .overlay .content .quoteForm .inner .submitSection{
        height: 55px;
        margin-top: 9px;
    }
    .mainImage .overlay .content .quoteForm .inner button.submit{
        height: 55px;
        font-size: 18px;
        border-radius:2px;
    }
    .mainImage .overlay .content .quoteForm .inner span{
        font-size: 13px;
        margin: 8px 0;
    }
    .mainImage .overlay .content .quoteForm .inner .quoteColRight {
        padding-bottom: 0;
    }
    .mainImage .overlay .content .quoteForm .inner .quoteColLeft {
        padding: 0 10px;
    }

    input[type='tel'] {
        margin-right: 10px !important;
    }
}

@media only screen and (max-width : 1330px)
{
    header nav .logo {
        height: 90px;
        width: 200px;
        margin: 15px 0;
    }
}

@media only screen and (max-width : 1230px)
{
    #sticker {
        width: 100%;
        height: 90px;
    }

    header nav {
        width: 100%;
        height: 90px;
        position: relative;
        margin: 0 auto;
    }

    header nav .logoLink {
        display: block;
        width: auto;
        height: 90px;
        float: left;
        margin-left: 20px;
    }

    header nav .logo {
        height: 90px;
        width: 200px;
        margin: 0;
    }

    header nav .menu {
        display: none;
    }

    header nav .menu.open {
        display: block !important;
        position: absolute;
        top: 90px;
        z-index: 999999;
        width: 100%;
        background-color: #fff;
    }

    header nav .menu li {
        font: bold 12px sans-serif;
        display: block;
        margin: 0;
        padding: 0;
        height: calc(100% / 9);
        max-height: 65px;
    }

    header nav .menu li:last-child a {
        border: none;
    }

    header nav .menu li a {
        cursor: pointer;
        font-weight: 700;
        color: #333333;
        border-right: none;
        padding: 10px 0;
        padding-left: 20px;
        outline: none;
        line-height: inherit;
        font-family: 'Lato', sans-serif;
        display: block;
        font-size: 25px;
        position: relative;
        top: 50%;
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
    }

    .mobileMenu {
        display: block;
        float: right;
        border: none;
        outline: none;
        background-color: #fff;
        height: 90px;
        width: calc(100% - 230px);
        padding: 0;
        max-width: 120px;
        margin-left: 10px;
    }

    .map {
        width: 100%;
        height: 600px;
    }

    .quoteFormSideMap {
        width: 100%;
        height: auto;
    }

    .mainImage,
    .mainImages {
        height: calc(100% - 230px);
    }

    .productGallery li {
        width: 100%;
        height: calc(100% / 4);
    }

    .mainImages .overlay .content {
        top: 50%;
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
    }

    .overlay .content p {
        font-size: 14px;
    }

    .overlay .content .more {
        font-size: 18px;
    }

    .mainImages {
        min-height: 570px;
    }

    .mainImages li {
        width: 100%;
        height: calc(100% / 3);
        overflow: hidden;
    }

    /*
    ** Tolta per problemi mobile di hover (metodo js non perfetto)
    */

    .mainImages li:hover a h1 {
        opacity: 0;
    }

    .overlay .content .customer,.overlay .content .contact_note
    .overlay .content .more {
        padding: 5px;
    }
}

/* Smartphones (portrait and landscape) ----------- */
@media only screen and (min-device-width : 320px) and (max-device-width : 960px)
{
    .onlyMobile {
        display: block !important;
    }

    .onlyDesktop {
        display: none !important;
    }

    /***********************************************/
    /*
    /* HEADER
    /*
    /***********************************************/

    #banner {
        height: auto;
    }

    #banner a {
        height: auto;
        margin: 0 auto;
    }

    #banner a .phone {
        display: none;
    }

    #banner a .info {
        display: none;
    }

    #banner .graphic {
        width: 100%;
        line-height: 60px;
        background-color: #EC2029;
        height: 50px;
        -webkit-clip-path: none;
            -ms-clip-path: none;
             -o-clip-path: none;
        text-align: center;
    }

    #banner .graphic img {
        margin: 0;
        height: 50px;
        object-fit: cover;
    }

    /***********************************************/
    /*
    /* HOMEPAGE
    /*
    /***********************************************/

    .mainImages {
        width: 100%;
        height: calc(100% - 210px);
        min-height: 0px;
    }

    .mainImages li:hover a h1 {
        opacity: 1;
    }

    .mainImages li {
        width: 100%;
        height: calc(100% / 3);
    }

    .mainImages li a {
        width: 100%;
        height: 100%;
        position: relative;
        display: block;
    }

    .mainImages li a h1 {
        font-weight: 900;
        font-size: 30px;
        color: #ffffff;
        text-align: center;
        position: relative;
        max-width: 100%;
        z-index: 100;
        -webkit-transition: top 0.2s ease-in-out;
        -moz-transition: top 0.2s ease-in-out;
        -o-transition: top 0.2s ease-in-out;
        transition: top 0.2s ease-in-out;
        margin: 0 auto;
        padding: 0 20px;

        position: relative;
        top: 50%;
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
    }

    .mainImages .overlay .content {
        display: none;
    }

    .overlay .content p {
        font-size: 16px;
        margin: 0 30px 0 30px;
        display: block;
        color: white;
        font-weight: 400;
    }

    .overlay .content .customer {
        color: #ffffff;
        font-size: 12px;
        width: auto;
        padding: 8px;
        display: block;
    }

    .overlay .content .contact_note {
        color: #ffffff;
        font-size: 12px;
        width: auto;
        padding: 8px;
        display: block;
    }


    .overlay .content .more {
        color: #ffffff;
        font-size: 18px;
        font-size: 24px;
        width: auto;
        padding: 37px;
        display: block;
        padding-bottom: 0;
    }

    .overlay .content .moreinfoprod {
        color: #ffffff;
        font-size: 18px;
        font-size: 19px;
        font-weight: 400;
        width: auto;
        padding: 37px;
        display: block;
        cursor: pointer;
    }

    .freeQuote {
        height: 70px;
        width: 100%;
        position: fixed !important;
        bottom: 0px;
        z-index: 999 !important;
        background-color: #232323 !important;
        box-sizing: border-box;
    }

    .freeQuote h1 {
        display: none;
    }

    .freeQuote span {
        display: none;
    }

    .freeQuote .mobile {
        display: block;
        height: 100%;
    }

    .freeQuote .mobile .quote {
        height: calc(100% - 20px);
        color: white;
        float: left;
        margin: 10px;
        width: calc(50% - 15px);
        margin-right: 0;
        font-size: 14px;
        font-weight: 700;
        background-color: #EC2029;
        border: none;
        border-radius: 2px;
    }

    .freeQuote .mobile .call {
        height: calc(100% - 22px);
        color: white;
        float: right;
        margin: 10px;
        width: calc(50% - 15px);
        margin-left: 0;
        font-size: 14px;r
        font-weight: 700;
        border: 1px solid white;
        background-color: #232323;
        border-radius: 2px;
        line-height: 47px;
    }

    .quoteForm {
    }

    .quoteForm .zebra {
        display: none;
    }

    .quoteForm .inner {
        margin: 15px auto;
        width: calc(100% - 30px);
        padding: 0;
    }

    .quoteForm .inner .quoteColLeft {
        width: 100%;
        display: block;
        height: auto;
    }

    .quoteForm .inner .quoteColRight {
        width: 100%;
        display: block;
        height: auto;
    }

    textarea,
    input {
        outline: none;
        text-indent: 0px;
    }

    .quoteForm .inner input[type='text'],
    .quoteForm .inner input[type='tel'],
    .quoteForm .inner input[type='email'] {
        width: 100%;
        height: 55px;
        margin-bottom: 5px;
        font-size: 14px;
        box-sizing: border-box;
        border-radius: 2px;
        box-shadow: inset 0px 0px 0px 0px white;
        -webkit-box-shadow: inset 0px 0px 0px white;
        -moz-box-shadow: inset 0px 0px 0px white;
    }

    .quoteForm .inner textarea {
        width: 100%;
        position: relative;
        left: 0;
        font-size: 14px;
        top: 0;
        height: 130px;
        box-sizing: border-box;
        border-radius: 2px;
        box-shadow: inset 0px 0px 0px 0px white;
        -webkit-box-shadow: inset 0px 0px 0px white;
        -moz-box-shadow: inset 0px 0px 0px white;
    }

    .quoteForm .inner span {
        text-align: center;
        font-size: 13px;
        margin: 18px 0;
    }

    .quoteForm .inner label {
        height: auto;
        margin-bottom: 4px;
        width: calc((100% - 20px) / 3);
    }

    .quoteForm .inner label input[type="checkbox"] + span {
        text-align: center;
        height: 50px;
        line-height: 50px;
        border-radius: 2px;
    }

    .quoteForm .inner label input[type="checkbox"]:checked + span {
    }

    .quoteForm .inner label input[type="checkbox"] {
    }

    .quoteForm .inner label:nth-child(3n+0) {
    }

    .quoteForm .inner .submitSection {
        height: 90px;;
    }

    .quoteForm .inner .info {
        height: auto;
        line-height: 50px;
    }

    .quoteForm .inner button.submit {
        height: 80px;
        margin: 0;
        font-size: 18px;
        margin-top: 10px;
    }

    .quoteForm .inner button.submit i
    {

    }

    .quoteForm .inner button.submit:hover {
    }

    .warning_input {
        border-left: 10px solid #ec2029 !important;
        padding-left: 5px !important;
    }

    .textContent {
        min-height: 500px;
        background-color: #f9f9f9;
    }

    .textContent .inner {
        position: relative;
        width: calc(100% - 30px);
        height: auto;
        padding: 15px 0;
    }

    .textContent .inner .row {
        margin: 6px 0 10px 0;
        position: relative;
        display: inline-block;
        width: 100%;
        height: auto;
    }

    .textContent .inner h2 {
        font-size: 20px;
        margin: 20px 0 0 0;
        padding-bottom: 10px;
        text-align: left;
    }

    .textContent .inner p {
        margin: 0;
        font-size: 18px;
        text-align: left;
        margin-bottom: 15px;
    }

    .textContent .inner .column {
        width: 100%;
    }

    .textContent .inner .column.left {
        float: left;
    }

    .textContent .inner .column.right {
        float: right;
    }

    .textContent a{
        font-weight: 700;
        color: #000000;
        text-decoration: none;
        display: inline;
    }

    .textContent li{
        margin-top: auto;
    }

    .textContent a:hover{
        text-decoration: none;
        color: #ec2029;
        font-weight: 700;
        display: inline;
    }

    .logos {
        height: auto;
        width: 100%;
        background-color: #f9f9f9;
        margin: 0px auto;
        padding: 15px 0;
    }

    .logos .inner {
        margin: 0;
        padding: 0;
        width: 100%;
        height: 86px;
    }

    .logos .inner li {
        width: 50%;
        float: left;
        text-align: left;
        cursor: pointer;
        -webkit-transition: all 0.2s ease-in-out;
        -moz-transition: all 0.2s ease-in-out;
        -o-transition: all 0.2s ease-in-out;
        transition: all 0.2s ease-in-out;
        padding: 0px;
        height: auto;
        position: relative;
        margin: 7px 0;
        overflow: hidden;
    }

    .logos .inner li a {
        display: block;
    }

    .logos .inner li a img {
        height: 25px;
        object-fit: cover;
    }

    .logos_suppliers .inner{
        height: 250px;
        margin: 0 auto;
        width: 870px;;;;
    }

    .logos_suppliers .inner li img{
        width: auto;
        height:42px;
    }

    .logos_suppliers {
        height: auto;
        background-color: #f9f9f9;
        margin: 0;
        padding: 5px 0 0 0;
        width: 100%;
    }

    .logos_suppliers h2{
        text-align: center;
        margin: 10px 0;
    }

    .logos_suppliers .inner {
        width: 100%;
        margin: 0 auto;
        height: 185px;
        padding: 0px;
    }

    .logos_suppliers .inner li {
        width: 50%;
        text-align: center;
        height: auto;
        padding-top: 10px;
        float: left;
    }

    .deals {
        height: auto;
        background-color: #ec2029;
        margin: 0;
        padding: 0;
    }

    .deals .inner {
        width: 100%;
        margin: 0 auto;
        padding: 0;
        height: 240px;
    }

    .deals .inner li {
        width: 100%;
        float: left;
        height: 120px;
        text-align: center;
        margin: 0;
        -webkit-transition: all 0.2s ease-in-out;
        -moz-transition: all 0.2s ease-in-out;
        -o-transition: all 0.2s ease-in-out;
        transition: all 0.2s ease-in-out;
    }

    .deals .inner li a {
        height: 100%;
        padding: 0;
        text-align: center;
    }

    .deals .inner li img {
        position: relative;
        top: 0;
        height: 100px;
        margin: 10px auto;
        display: block;
        max-width: 100%;;
    }

    .deals .inner li:hover {
        opacity: 1;
    }

    footer {
    padding-bottom: 80px;
    }

    footer nav {
        display: none;
    }

    footer .links {
        margin: 0;;
        color: #ffffff;
        font-size: 15px;
        margin: 0;
        padding-bottom: 0;
    }

    footer .links .inner {
        padding: 0;
        width: 100%;
        margin: 0 auto;
        height: auto;
    }

    footer .links .inner li {
        width: 100%;
        text-align: center;
        display: block;
        margin-bottom: 20px;
    }

    footer .links .list {
        margin: 0;
        padding: 0;
        width: 100%;
        height: auto;
    }

    footer .links .list li {
        clear: both;
        width: 100%;
        padding: 2px 0;
        cursor: pointer;
        margin: 5px 0;
    }

    footer .links .list li a {
        color: #fff;
        text-decoration: none;
        font-size: 18px;
        margin: 35px 0;
    }

    footer .links .list li:hover a {
        color: #fff;
    }

    footer .links .list li:first-child {
        font-weight: 900;
        padding: 10px 0;
        font-size: 25px;
        pointer-events: none;
        display: block;
    }

    footer .copyright {
        width: 100%;;
        height: 60px;
        line-height: 20px;
        color: #ffffff;
        text-align: center;
        font-size: 9px;
        margin: 0 auto;
        padding: 15px;
        box-sizing: border-box;
    }

    footer .copyright a{
        text-decoration: none;
        color: #ffffff;
        display: inline;
    }

    footer .copyright a:hover{
        color: #ec2029;
    }

    .mainImage {
        height: calc(100% - 210px);
        min-height: 0;
    }

    .mainImage .mainImages {
        height: 60%;
    }

    .mainImage .mainImages li {
        height: 100%;
    }

    .mainImage .overlay.fullopacity {
        height: 40%;
        background-color: rgba(236, 32, 41, 1);
        overflow: hidden;
        min-height: 0;
    }

    .mainImage .overlay.fullopacity .content{
        display: none;
    }

    .mainImage .overlay.fullopacity h1 {
        margin: 0;
        font-weight: 900;
        font-size: 25px;
        position: relative;
        top: 50%;
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
        line-height: 200px;
    }

    .mainImage .overlay {
        height: auto;
        width: 100%;
        top: 60%;
    }

    .mainImage .overlay .content {
        width: 100%;
        height: 100%;
        margin: 0;
        padding: 10px;
        box-sizing: border-box;
        max-width: 100%;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }

    .mainImage .overlay .content h1 {
        font-size: 50px;
        text-align: left;
        margin: 30px;
    }

    .mainImage .overlay .content p {
        font-size: 30px;
        margin: 20px 30px;
        text-align: left;
    }

    .mainImage .overlay .content span {
        display: none;
    }

    .productGallery {
        display: none;
    }

    .stepbystep {
        margin-bottom: 15px;
        margin-top: 15px;
        padding: 0;
    }

    .stepbystep li {
        margin-top: 20px;
        font-size: 16px;
    }

    .formbuttons {
        background-color: #ec2029;
        border: none;
        border-radius: 2px;
        width: 100%;
        cursor: pointer;
        padding: 10px 0;
        text-align: center;
        color: white;
        line-height: 55px;
        height: 55px;
        display: block;
        font-size: 16px;
    }

    .desktopCenter {
        text-align: left;
    }

    #mapContainer {
        display: none;
    }

    .map {
        width: 100%;
        height: auto;
    }

    .map .overlay {
        height: auto;
        position: relative;
    }

    .map .overlay .content {
        position: relative;
        top: 0;
        -webkit-transform: translateY(0%);
        -ms-transform: translateY(0%);
        transform: translateY(0%);
        margin: 0;
        width: 100%;
        text-align: left;
        max-width: 100%;
        padding: 50px 30px;
        box-sizing: border-box;
    }

    .map .overlay .content p {
        margin: 0;
        font-size: 30px;
    }

    .topPart h1,
    .bottomPart h1 {
        font-size: 50px;
    }

    .bottomPart .pin_no_link {
        width: calc(50% - 60px);
        display: inline-block;
        text-align: center;
    }

    .bottomPart .pin_no_link img {
        width: 70px;
        height: auto;
    }

    .bottomPart .pin_no_link h1 {
        font-size: 50px;
    }

    .quoteFormSideMap {
        width: 100%;
        height: auto;
    }

    #swipebox-close {
        right: 0;
        -webkit-background-size: cover;
        -moz-background-size: cover;
        -o-background-size: cover;
        background-size: cover;
        bottom: 15px !important;
        top: auto !important;
        width: 100% !important;
    }

    .exitSwipebox {
        width: 20px;
        height: 20px;
        margin: 0 auto !important;
    }
}

@media only screen and (min-device-width : 320px) and (max-device-width : 960px) {
}

/* Smartphones (landscape) ----------- */
@media only screen and (min-width : 321px) {
/* Styles */
}
​
/* Smartphones (portrait) ----------- */
@media only screen and (max-width : 320px) {
/* Styles */
}
​
/* iPads (portrait and landscape) ----------- */
@media only screen and (min-device-width : 768px) and (max-device-width : 1024px) {
/* Styles */
}
​
/* iPads (landscape) ----------- */
@media only screen and (min-device-width : 768px) and (max-device-width : 1024px) and (orientation : landscape) {
/* Styles */
}
​
/* iPads (portrait) ----------- */
@media only screen and (min-device-width : 768px) and (max-device-width : 1024px) and (orientation : portrait) {
/* Styles */

}
​
/* Large screens ----------- */
@media only screen and (min-width : 1824px) {
/* Styles */
}
​
/* iPhone 4 ----------- */
@media only screen and (-webkit-min-device-pixel-ratio : 1.5), only screen and (min-device-pixel-ratio : 1.5) {
/* Styles */
}
