/* --------------------------------------------------------------
/* =SUPER GLOBAL
-------------------------------------------------------------- */
*, *:before, *:after {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    text-rendering: optimizeLegibility;
}

body {
    text-align: justify;
    background: #f3f3f3;
    color: #222222;
    margin: 0;
    font-family: 'Roboto', sans-serif;
}

.page {
    max-width: 1600px;
    margin: 0 auto;
    background: #ffffff;
}

/* --------------------------------------------------------------
/* =ELEMENTS & TYPO / Kind of Branding basic definition area
-------------------------------------------------------------- */
a {
    color: #f89406;
    text-decoration: none;
}

a:hover {
    color: #f89406;
}

h1 {
    font-size: 4em;
    line-height: 1.15;
    font-weight: bold;
}

p {
    font-size: 1.5em;
    line-height: 1.6;
    position: relative;
    letter-spacing: 0.01em
}

ul {
    margin: 0;
    padding: 0;
}

input, select, textarea, button {
    outline: none;
    -webkit-appearance: none;
}

/* --------------------------------------------------------------
/* =HEADER
-------------------------------------------------------------- */
header {
    padding: 20px;
    background: #ffffff;
    z-index: 99;
    position: relative;
}

header .wrapper::after {
    content: '';
    clear: both;
    display: block;
}

.branding {
    float: left;
    display: flex;
}

.nav {
    float: right;
    display: flex;
}

.menu {
    margin-right: 10px;
}

.menu .menu-item {
    margin-right: 15px;
    line-height: 30px;
    color: #999999;
    font-size: 14px;
}

.menu .menu-item.active {
    color: #f89406;
}

.branding .logo {
    margin: 5px 0;
}

.bt-new-search {
    color: #ffffff;
    background: #f89406;
    font-size: 16px;
    padding: 0 10px;
    line-height: 40px;
    height: 40px;
    display: inline-block;
    margin: 0 0 0 10px;
    border-radius: 3px;
    cursor: pointer;
    transition: all ease 0.3s;
}

.bt-new-search:hover {
    background: #d88106;
}

.bt-new-search i {
    color: #ffffff;
    margin: 0 0 0 5px;
    display: inline-block;
}

.branding span {
    color: #666666;
    margin: 0 10px;
    line-height: 30px;
}


.dropdown {
    background: #f0f0f0;
    padding: 0 20px 0 10px;
    position: relative;
    border-radius: 3px;
    height: 30px;
    line-height: 30px;
    font-size: 12px;
    width: auto;
    cursor: pointer;
}

.dropdown.big {
    height: 40px;
    line-height: 40px;
    font-size: 15px;
    padding: 0 25px 0 10px;
}

.dropdown::after {
    content: "\f107";
    font: normal normal normal 12px/1 FontAwesome;
    position: absolute;
    top: 9px;
    color: #999999;
    right: 7px;
}

.dropdown.big::after {
    content: "\f107";
    font: normal normal normal 12px/1 FontAwesome;
    position: absolute;
    top: 13px;
    color: #999999;
    right: 10px;
}

.dropdown .active, .dropdown .one-option {
    padding: 0 0 0 20px;
    color: #666666;
    position: relative;
    display: block;
}

.dropdown .active img, .dropdown .one-option img {
    position: absolute;
    top: 10px;
    left: 0px;
    width: 15px;
}

.dropdown.big .active img, .dropdown.big .one-option img {
    position: absolute;
    top: 10px;
    left: 0px;
    width: 30px;
}

.dropdown.big .active, .dropdown.big .one-option {
    padding: 0 0 0 40px;
}

.dropdown .one-option:hover {
    opacity: 0.6;
}

.dropdown .option-list {
    position: absolute;
    top: 80%;
    visibility: hidden;
    opacity: 0;
    left: 0;
    border-radius: 3px;
    min-width: 100%;
    padding: 5px 10px;
    z-index: 9;
    background: #ffffff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.dropdown.open .option-list,
.dropdown.hoverable:hover .option-list {
    top: 100%;
    opacity: 1;
    visibility: visible;
    transition: all ease 0.3s;
}

/* Responsive menu */
.bt-menu {
    color: #999;
    font-size: 16px;
    text-transform: uppercase;
    line-height: 30px;
    display: none;
    margin-left: 10px;
    cursor: pointer;
}

.bt-menu i {
    color: #22a7f0;
    margin-left: 10px;
    display: inline-block;
}

.sub-header-responsive {
    background: #d2d2d2;
    z-index: 99;
    padding: 15px 10px;
    font-size: 13px;
    color: #999999;
    display: none;
    justify-content: space-between;
    line-height: 30px;
    min-height: 60px;
    width: 100%;
    flex-wrap: wrap;
}

.sub-header-responsive i {
    line-height: 30px;
    cursor: pointer;
}

.sub-header-responsive .dropdown .option-list {
    z-index: 99;
}

/* --------------------------------------------------------------
/* =NEW SEARCH BOX
-------------------------------------------------------------- */
.new-search {
    background: rgba(28, 133, 232, 0.8);
    position: fixed;
    z-index: 999;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.new-search .close-new-search-box {
    color: #666666;
    position: absolute;
    top: 15px;
    right: 15px;
    opacity: 0.5;
    cursor: pointer;
}

.new-search .close-new-search-box:hover {
    opacity: 1;
}

.new-search-box {
    width: 320px;
    padding: 40px;
    position: relative;
    border-radius: 4px;
    margin: 100px auto 0 auto;
    background: #ffffff;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
}

.new-search-box p {
    display: block;
    font-size: 14px;
    color: #999999;
    margin: 15px 0 5px 0;
}

.new-search-box h3 {
    margin: 0 0 20px 0;
}

a.button.submit-new-search {
    display: block;
    width: 100%;
    margin: 15px 0 0 0;
}

/* --------------------------------------------------------------
/* =DETAILS OFFRE
-------------------------------------------------------------- */
.hero-offer {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    background: #000;
}

.hero-offer h1 {
    font-size: 32px;
    color: #ffffff;
    text-shadow: 0 3px 8px rgba(0, 0, 0, 0.5);
    margin: 0 0 20px 0;
}

.hero-offer h2 {
    font-size: 24px;
    color: #ffffff;
    text-shadow: 0 3px 8px rgba(0, 0, 0, 0.5);
    margin: 20px 0 0 0;
}

.tags ul li {
    display: inline-block;
    margin: 0 5px;
    font-size: 18px;
    color: #f89406;
    font-weight: bold;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
}

.hero-offer p {
    color: #d6d6d6;
    font-size: 1em;
}

.hero-banner {
    position: absolute;
    top: -10%;
    left: -10%;
    width: 120%;
    height: 120%;
    /*opacity: 0.7;
    filter: blur(15px);*/
    background-position: center;
    background-size: cover;
}

.no-object-fit .hero-banner img {
    display: none;
}

/* ENTRY CONTENT */
.internal-nav {
    border-bottom: 1px solid #e8e8e8;
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
}

.internal-nav ul li {
    list-style: none;
    display: inline;
    margin: 0 10px 0 0;
}

.internal-nav ul li {
    list-style: none;
    display: inline;
    margin: 0 10px 0 0;
}

.internal-nav ul li a {
    color: #999999;
    text-transform: uppercase;
    font-size: 13px;
    line-height: 30px;
}

.see-all-bt {
    background: #22a7f0;
    color: #ffffff;
    font-weight: bold;
    text-transform: uppercase;
    padding: 0 5px 0 10px;
    border-radius: 2px;
    height: 30px;
    min-width: 130px;
    line-height: 30px;
    font-size: 12px;
    transition: all ease 0.3s;
}

.see-all-bt:hover {
    background: #0b6190;
    color: #ffffff;
}

.see-all-bt i {
    display: inline-block;
    font-size: 12px;
    margin-right: 5px;
}

.see-all-bt span {
    float: right;
    padding: 3px 5px;
    height: 20px;
    line-height: 16px;
    margin: 5px 0 5px 15px;
    border-radius: 6px;
    background: #0b6190;
    font-size: 10px;
}

/* CONTENT MASTER CLASS */
.entry-content p {
    line-height: 1.6;
    color: #666666;
    font-size: 16px;
    margin: 20px 0;
    text-align: justify;
}

.entry-content .centered {
    text-align: center;
}

.entry-content h2 {
    font-size: 20px;
    color: #333333;
    font-family: 'Roboto', sans-serif;
}

h3,
h4,
h5,
h6 {
    color: #333333;
    font-family: 'Roboto', sans-serif;
}

.entry-content blockquote {
    color: #666666;
    border-left: 5px solid #e1e1e1;
    background: #f0f0f0;
    padding: 10px 15px;
    font-style: italic;
    margin: 20px 0;
}

.entry-content ul {
    margin: 10px 0 20px 0;
}

.entry-content ul li {
    margin: 10px 0 0 0;
    color: #666666;
    display: block;
}

.entry-content ul li:before {
    content: "— ";
}

.entry-content hr {
    border: 0;
    height: 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.entry-content table {
    empty-cells: show;
    border-collapse: collapse;
    color: #666666;
    border-spacing: 0;
}

.entry-content tr {
    display: table-row;
    border-bottom: 1px solid #e8e8e8;
    vertical-align: inherit;
    border-color: inherit;
}

.entry-content thead {
    background-color: #f0f0f0;
    color: #333333;
    text-align: left;
    vertical-align: bottom;
}

.entry-content td, .entry-content th {
    font-size: inherit;
    border-bottom: 1px solid #e8e8e8;
    margin: 0;
    overflow: visible;
    padding: .5em 1em;
}

.entry-content img {
    width: 100%;
    height: auto;
}

.entry-content table {
    width: 100%;
}

.entry-content {
    display: block;
    width: 100%;
    height: auto;
}

/* sidebar */
.sidebar {
    background: #f0f0f0;
    padding: 20px;
    border-top: 0;
    border-left: 1px solid #e8e8e8;
    border-right: 1px solid #e8e8e8;
    border-bottom: 1px solid #e8e8e8;
}

.sidebar .header {
    color: #333333;
    font-size: 20px;
    padding: 5px 0 20px 0;
    margin-bottom: 10px;
    border-bottom: 1px solid #e8e8e8;
    font-weight: bold;
}

.sidebar .header i {
    display: inline-block;
    margin-left: 5px;
    color: #f89406;
}

.full-with-input {
    width: 100%;
    display: inline-block;
    margin-bottom: 20px;
}

.two-small-fields {
    width: 100%;
    display: inline-block;
    margin-bottom: 20px;
}

.two-small-fields .fields {
    display: flex;
    justify-content: space-between;
}

.full-with-input label,
.two-small-fields label {
    width: 100%;
    display: inline-block;
    text-transform: uppercase;
    color: #999999;
    font-size: 10px;
    letter-spacing: 1px;
}

.two-small-fields span {
    display: block;
    width: 12%;
    font-size: 13px;
    line-height: 33px;
    text-align: center;
    color: #999999;
}

.two-small-fields input[type=text],
.two-small-fields input[type=email],
.two-small-fields input[type=date] {
    display: inline-block;
    width: 44%;
    padding: 5px 0 10px 0;
    font-family: 'Roboto', sans-serif;
    color: #333333;
    font-size: 14px;
    border-left: 0;
    border-right: 0;
    border-top: 0;
    border-bottom: 1px solid #d1d1d1;
    background: transparent;
}

.full-with-input input[type=text],
.full-with-input input[type=email],
.full-with-input input[type=date],
.full-with-input textarea{
    width: 100%;
    display: inline-block;
    font-family: 'Roboto', sans-serif;
    padding: 10px 0 7px 0;
    color: #666666;
    font-size: 14px;
    border-left: 0;
    border-right: 0;
    border-top: 0;
    border-bottom: 1px solid #d1d1d1;
    background: transparent;
}

.full-with-input textarea {
    resize: vertical;
    min-height: 100px;
}

.form-help {
    font-size: 0.8em !important;
    color: red !important;
    margin: 0;
}

.has-error label {
    color: red;
}

.full-with-input.has-error input[type=text],
.full-with-input.has-error input[type=email],
.two-small-fields input[type=date].has-error,
.full-with-input.has-error textarea {
    border-bottom-color: red;
}

.sidebar input::-webkit-input-placeholder,
.sidebar textarea::-webkit-input-placeholder{
    color: #a3a3a3;
}

input[type=date]::-webkit-clear-button,
input[type=date]::-webkit-inner-spin-button {
    display: none;
}

.sidebar input[type=submit],
.sidebar .button{
    width: 100%;
    display: inline-block;
    font-family: 'Roboto', sans-serif;
    padding: 10px 0;
    text-align: center;
    color: #ffffff;
    background: #f89406;
    font-weight: bold;
    font-size: 16px;
    border: 0;
    border-radius: 3px;
}

.terms {
    display: inline-block;
    margin: 10px 0 0 0;
    font-size: 12px;
    color: #999999;
}

.terms a {
    color: #999999;
    text-decoration: underline;
}

.select-style {
    padding: 0;
    margin: 0;
    border-bottom: 1px solid #d1d1d1;
    width: 100%;
    overflow: hidden;
    position: relative;
    background-color: #f0f0f0;
}

.select-style select {
    padding: 10px 0;
    width: 99%;
    border: none;
    box-shadow: none;
    background-color: transparent;
    background-image: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.select-style::after {
    content: "\f107";
    font: normal normal normal 12px/1 FontAwesome;
    position: absolute;
    top: 9px;
    color: #999999;
    right: 7px;
}

/* Bottom CTAs */
.bottom-ctas {
    padding: 30px 0 15px 0;
}

.bottom-ctas p {
    color: #666666;
    font-size: 18px;
}

.bottom-ctas p a {
    font-weight: bold;
}

a.back-to-list {
    color: #22a7f0;
}

/*
  Homepage Catalogs
 */
div.catalog {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 5px 5px 5px #aaa;
}
.catalog p {
    font-size: 18px;
    font-weight: bold;
}

/* --------------------------------------------------------------
/* =OFFER LIST PAGE
-------------------------------------------------------------- */
.hero-offer-list {
    padding: 80px 0;
    background: #337ab7;
}

.hero-offer-list h1 {
    color: #ffffff;
    font-size: 36px;
    margin: 0;
}

.hero-offer-list p {
    color: #ffffff;
    font-size: 17px;
    margin: 30px 0;
}

h2.success {
    padding: 10px 15px;
    border-radius: 2px;
    display: inline-block;
    margin: 0 5px;
    position: relative;
    text-align: left;
    color: #ffffff;
    background: green;
}

a.button {
    padding: 10px 15px;
    color: #ffffff;
    width: 150px;
    border-radius: 2px;
    display: inline-block;
    margin: 0 5px;
    position: relative;
    text-align: left;
    transition: all ease 0.3s;
}

a.button::after {
    content: "\f105";
    font: normal normal normal 16px/1 FontAwesome;
    color: #ffffff;
    position: absolute;
    top: 12px;
    right: 15px;
}

a.button.down::after {
    content: "\f107";
}

.button.secondary {
    background: #22a7f0;
    transition: all ease 0.3s;
}

.button.primary {
    background: #f89406;
}

.button.secondary:hover {
    background: #1887c4;
}

.button.primary:hover {
    background: #d88106;
}

.value-props {
    padding: 60px 0 30px 0;
}

.value-props .col-1-2 {
    display: flex;
}

.value-props .col-1-2 img {
    height: 80px;
    width: 80px;
    margin-right: 20px;
}

.value-props .col-1-2 p {
    font-size: 14px;
    line-height: 1.6;
    color: #666666;
}

.offers {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.one-offer-box {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    display: block;
    margin-bottom: 30px;
    display: flex;
    width: 100%;
}

.one-offer-box .offer-visual {
    max-width: 50%;
    flex-basis: 50%;
    position: relative;
}

.one-offer-box .offer-detail {
    max-width: 50%;
    flex-basis: 50%;
    padding: 40px;
}

.one-offer-box .offer-visual .partner-label {
    position: absolute;
    top: 0;
    width: 100px;
    left: 20px;
    text-align: center;
    color: #ffffff;
    font-size: 10px;
    text-transform: uppercase;
    padding: 15px;
    background: #22a7f0;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
}

.one-offer-box .offer-visual .partner-label img {
    margin: 10px 0 0 0;
    display: block;
    width: 100%;
    height: auto;
}

.one-offer-box .offer-visual > img {
    display: block;
    width: 100%;
    height: 100%;
}

.one-offer-box .offer-detail ul.tags {
    margin: 20px 0 30px 0;
    padding: 0;
}

.one-offer-box .offer-detail ul.tags li {
    display: inline-block;
    margin: 0 5px 0 0;
    font-size: 13px;
    color: #f89406;
    font-weight: bold;
}

.one-offer-box .offer-detail p {
    color: #666666;
    font-size: 16px;
    line-height: 1.6;
}

.offer-cta {
    background: #f89406;
    color: #ffffff;
    text-transform: uppercase;
    font-size: 14px;
    padding: 10px 15px;
    border-radius: 3px;
    margin-top: 10px;
    display: inline-block;
    transition: all ease 0.3s;
}

.offer-cta i {
    margin: 0 0 0 5px;
    font-size: 16px;
    padding: 0 0 0 10px;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.offer-cta:hover {
    background: #cb7700;
    color: #ffffff;
}

/* --------------------------------------------------------------
/* =SEARCH
-------------------------------------------------------------- */
.hero-search {
    padding: 80px 0;
    background: url('../img/bg-hero-search.jpg') center no-repeat;
    background-size: cover;
    position: relative;
    z-index: 98;
}

.hero-search h1 {
    color: #ffffff;
    font-weight: 300;
    font-size: 36px;
    margin: 0;
}

.search-module {
    white-space: nowrap;
    display: flex;
    color: #ffffff;
    margin: 40px 0 0 0;
    justify-content: center;
}

.search-module span {
    padding: 0 10px;
    font-size: 17px;
    height: 40px;
    line-height: 40px;
}

.submit-search {
    margin: 0 0 0 10px;
}

/* --------------------------------------------------------------
/* =CAROUSEL AND SLIDER
-------------------------------------------------------------- */
h2.line-bg {
    background: url('../img/line-bg.svg') center left repeat-x;
    margin-left: 2%;
    margin-right: 2%;
    font-family: 'Roboto', sans-serif;
}

h2.line-bg span {
    padding: 0 20px;
    background: #ffffff;
}

.offer-carousel {
    position: relative;
    margin-top: 50px;
}

.slider-home {
    position: relative;
    padding: 50px 0;
    background: url('../img/dotted-map-bg.png') top center no-repeat;
    background-size: 100% auto;
}

.slide h5 {
    letter-spacing: 2px;
    font-size: 12px;
    text-transform: uppercase;
}

.slide img {
    display: inline-block;
}

.slide p {
    color: #666666;
    font-size: 17px;
    max-width: 600px;
    margin: 20px auto;
}

.carousel-nav .next-slide {
    top: 50%;
    position: absolute;
    z-index: 99;
    right: -50px;
    width: 40px;
    height: 40px;
    font-size: 32px;
    cursor: pointer;
    line-height: 40px;
    text-align: center;
    color: #d2d2d2;
}

.carousel-nav .prev-slide {
    top: 50%;
    position: absolute;
    z-index: 99;
    left: -50px;
    width: 40px;
    height: 40px;
    font-size: 32px;
    cursor: pointer;
    line-height: 40px;
    text-align: center;
    color: #d2d2d2;
}

.small-offer-box {
    overflow: hidden;
    margin: 10px 0;
    min-height: 300px;
    box-shadow: 0 5px 10px #f0f0f0;
    border-radius: 3px;
}

.small-offer-box__details {
    padding: 20px;
}

.small-article-box {
    padding: 25px;
    overflow: hidden;
    margin: 10px 0;
    min-height: 300px;
    box-shadow: 0 5px 10px #f0f0f0;
    border-radius: 3px;
}

.small-article-box h3 {
    margin: 0 0 15px 0;
    color: #333333;
    font-size: 16px;
}

.small-offer-box h3 {
    margin: 0 0 15px 0;
    color: #333333;
    font-size: 16px;
}

.small-article-box p.meta {
    margin: 0;
    color: #999999;
    font-size: 12px;
}

.small-article-box p.excerpt {
    margin: 10px 0 28px 0;
    height: 120px;
    overflow: hidden;
    color: #666666;
    font-size: 13px;
}

.small-offer-box img {
    display: block;
    width: 100%;
    height: auto;
}

.small-offer-box a,
.small-article-box a {
    text-transform: uppercase;
    font-size: 12px;
    font-weight: bold;
}

.slick-slide {
    outline: none;
}

/* --------------------------------------------------------------
/* =FOOTER SEARCH MODULE
-------------------------------------------------------------- */
.footer-search {
    white-space: nowrap;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.pre-footer {
    position: relative;
    z-index: 9;
}

.pre-footer .row {
    padding: 30px 0;
    border-top: 1px solid #e8e8e8;
}

.footer-search span {
    height: 30px;
    line-height: 30px;
    color: #666666;
    margin: 0 15px;
}

.footer-search i {
    color: #f0f0f0;
    font-size: 28px;
    height: 30px;
    line-height: 30px;
}

.footer-search span img {
    margin: 0 5px;
    display: inline;
}

/* --------------------------------------------------------------
/* =FOOTER
-------------------------------------------------------------- */
footer h4 {
    font-size: 22px;
    margin: 0;
    position: relative;
}

footer ul {
    padding: 0;
    margin: 20px 0;
}

footer p {
    font-size: 14px;
    color: #666666;
}

footer ul li {
    list-style: none;
    display: block;
    margin: 10px 0;
}

footer ul li a {
    color: #666666;
}

footer .row.footer-top {
    padding: 60px 0 40px 0;
    border-top: 1px solid #e8e8e8;
}

footer .row.footer-bottom {
    padding: 20px 0;
    border-top: 1px solid #e8e8e8;
}

footer .row.footer-bottom .legal {
    text-align: right;
}

footer .row.footer-bottom .legal a {
    margin: 0 0 0 20px;
    color: #999999;
}

footer .row.footer-bottom .legal a:hover {
    opacity: 0.5;
}

footer .row .col-1-4:nth-child(1),
footer .row .col-1-4:nth-child(2),
footer .row .col-1-4:nth-child(3) {
    flex-basis: 20%;
    max-width: 20%;
}

footer .row .col-1-4.col-newsletter {
    flex-basis: 40%;
    max-width: 40%;
}

footer .row .col-1-4.col-newsletter h4::before {
    content: "";
    background: url('../img/newsletter-stamp.png') center no-repeat;
    background-size: 100% auto;
    height: 60px;
    width: 60px;
    position: absolute;
    top: -16px;
    left: -20px;
}

.col-newsletter p {
    margin: 40px 0 25px 0;
}

form.newsletter {
    padding: 10px 15px 10px 40px;
    position: relative;
    border: 1px solid #f0f0f0;
    border-radius: 3px;
    display: block;
    display: flex;
}

form.newsletter::before {
    content: "\f003";
    font: normal normal normal 16px/1 FontAwesome;
    position: absolute;
    top: 16px;
    color: #d2d2d2;
    left: 13px;
}

form.newsletter input[type=email] {
    border: 0;
    padding: 0;
    height: 30px;
    line-height: 30px;
    color: #666666;
    width: 80%;
    font-size: 14px;
}

form.newsletter input[type=submit] {
    border: 0;
    color: #22a7f0;
    height: 30px;
    line-height: 30px;
    cursor: pointer;
    width: 20%;
    padding: 0;
    font-size: 13px;
    text-transform: uppercase;
    font-weight: bold;
    background: transparent;
}

/* --------------------------------------------------------------
/* ADS
-------------------------------------------------------------- */

.text-center {
    text-align: center;
}
.img-responsive {
    max-width: 100%;
}
.text-ad p {
    font-size: 1.3em;
    margin-top: -15px;
    margin-bottom: 15px;
    text-align: center;
    display: inline-block;
}

.text-ad a {
    color: #0000FF;
    text-decoration: underline;
}

.text-ad a:hover {
    color: #0000FF;
}

.lateral-ad {
    margin: 1.5em 0;
}

/* --------------------------------------------------------------
/* =SMALL SCREENs AND TABLET
-------------------------------------------------------------- */
@media screen and (max-width: 1024px) {
    .sidebar {
        margin-top: 60px;
        border-top: 1px solid #e8e8e8;
    }

    .errors {
        display: flex;
        justify-content: space-between;
    }

    .errors .form-help {
        width: 44%;
    }

    header {
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    }

    footer .row .col-1-4:nth-child(1),
    footer .row .col-1-4:nth-child(2),
    footer .row .col-1-4:nth-child(3) {
        flex-basis: 33.33%;
        max-width: 33.33%;
    }

    footer .row .col-1-4.col-newsletter {
        flex-basis: 100%;
        max-width: 100%;
        margin-top: 40px;
    }

    footer .row.footer-top {
        padding: 30px 0 40px 0;
        margin-top: 40px;
    }

    .carousel-nav .next-slide {
        right: -30px;
    }

    .carousel-nav .prev-slide {
        left: -30px;
    }

    .one-offer-box {
        flex-wrap: wrap;
        max-width: 460px;
    }

    .slide {
        padding: 0 20px;
    }

    .one-offer-box .offer-visual {
        max-width: 100%;
        flex-basis: 100%;
        position: relative;
    }

    .one-offer-box .offer-detail {
        max-width: 100%;
        flex-basis: 100%;
        padding: 40px;
    }

    .concept-illustration {
        margin-bottom: 50px;
    }

    .submit-search {
        margin-top: 20px;
    }

    .search-module {
        display: block;
        max-width: 320px;
        margin: 30px auto 0 auto;
    }
}

/* --------------------------------------------------------------
/* =SMARTPHONE
-------------------------------------------------------------- */
@media screen and (max-width: 600px) {
    footer .row .col-1-2, footer .row.footer-bottom .legal {
        text-align: center;
    }

    header .wrapper {
        width: 100%;
        margin: 0;
    }

    .cross-selling h2 {
        font-size: 20px;
    }

    footer .row .col-1-4:nth-child(1),
    footer .row .col-1-4:nth-child(2) {
        flex-basis: 50%;
        max-width: 50%;
    }

    .carousel-nav .next-slide {
        right: -20px;
    }

    .carousel-nav .prev-slide {
        left: -20px;
    }

    .bt-menu {
        display: block;
    }

    .menu-mobile {
        padding: 20px;
        text-align: center;
        background: #f0f0f0;
    }

    .menu-mobile .menu-item {
        display: block;
        margin: 5px 0;
        color: #999999;
    }

    h2.line-bg {
        background: transparent;
    }

    .sub-header-responsive {
        display: flex;
    }
}

.custom-element-field select {
    width: 100% !important;
    padding: 5px 0 !important;
    -webkit-appearance: auto !important;
}

.select-element.custom-element {
    width: 100% !important;
}

.buttons-container {
    margin-top: 10px !important;
}
