/**
 * # Default Styles
 * # Header Section
 * # Hello Section
 * # Form
 * # Footer
 * # Mobile Device Styles Changes (lower 850px)
 */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "ITC Franklin Gothic", sans-serif !important;
}

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

a {
    display: inline-block;
}

input, select {
    font-size: 17px;
}

p {
    font-size: 17px;
}

.row {
    display: grid;
    align-items: baseline;
    grid-template-columns: repeat(12, 1fr);
}

.col-1 {
    grid-column: span 1;
}

.col-3 {
    grid-column: span 3;
}

.col-4 {
    grid-column: span 4;
}

@media (max-width: 576px) {
    .col-4 {
        grid-column: span 12;
    }
}

.col-9 {
    grid-column: span 9;
}

.col-11 {
    grid-column: span 11;
}

.col-12 {
    grid-column: span 12;
}

.mt-25 {
    margin-top: 25px;
}

.mt-50 {
    margin-top: 50px;
}

.mb-25 {
    margin-bottom: 25px;
}

@media (min-width: 850px) {
    .hidden-mobile {
        display: block !important;
    }

    .visible-mobile {
        display: none !important;
    }
}

.micropageLink {
    color: #e1001b;
}

.error {
    border: 1px solid #E30613 !important;
}
.default-error-information {
    background-color: #F08302;
    padding: 1rem;
    color: #fff;
    display: inline-block;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}
.error-message {
    font-size: 0.8rem;
    font-weight: bold;
    color: #E30613;
}
.success {
    background-color: #28a745;
    padding: 1rem;
    color: #fff;
}

.text-bold {
    font-weight: bold;
}
/**
    # Header
 **/
.header {
    position: relative;
    min-height: 100vh;
    color: #fff;
    text-align: center;
    margin-bottom: 20px;
}

.header .red-line {
    position: absolute;
    height: 100%;
    width: 100%;
    max-height: 1vh;
    background-color: #E30613;
    top: 0;
}

.header .background-image {
    width: 100%;
    height: 100%;
    z-index: -1;
}

.header .background-image.desktop {
    display: block;
}

.header .background-image.mobile {
    display: none;
}

.header .background-image img {
    object-fit: cover;
    height: 100%;
}

@media (min-width: 480px) {
    .header .background-image img {
        width: 100%;
    }
}

.header .logo {
    position: absolute;
    z-index: 1;
    top: 2rem;
    left: 2rem;
    margin-bottom: auto;
    max-width: 300px;
}

.header .logo > img {
    width: 100%;
}

.header .title {
    margin-left: auto;
    margin-bottom: auto;
    padding-top: 4vh;
    padding-right: 4vh;
    max-width: 535px;

    /** Using Image from Design File */
    /*background-color: #fff;*/
    /*color: #000;*/

    /*text-align: left;*/
    /*font-size: 4rem;*/
    /*font-family: Arial, sans-serif;*/
    /*font-weight: bolder;*/
    /*line-height: 4rem;*/
}

.header .title:hover {
    cursor: pointer;
}

.header .title .orange {
    color: #F18401;
}

.header .title > img {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.header .contact {
    position: absolute;
    margin-left: auto;
    margin-right: auto;
    left: 0;
    right: 0;
    bottom: 0;
    text-align: center;
    margin-bottom: 3vh;
}

.header .contact > img {
    max-width: 400px;
}

.header .contact > img:hover {
    cursor: pointer;
}


/**
    # Hello
 */

.hello {
    padding: 25px 10px;
}

.hello h1 {
    margin-bottom: 25px;
    width: 100%;
    max-width: 850px;
    text-align: center;
    font-size: 26px;
    font-weight: bold;
}

.hello p {
    width: 100%;
    max-width: 850px;
    margin-bottom: 25px;
    text-align: center;
}

/**
    # Contact
 */
.contact {
    padding: 25px 10px;
}

.contact h1 {
    margin-bottom: 25px;
    width: 100%;
    max-width: 750px;
    text-align: left;
    font-size: 26px;
    font-weight: bold;
}

.contact p {
    width: 100%;
    max-width: 750px;
    margin-bottom: 25px;
}

.contact p a {
    color: #000;
}

.contact form {
    width: 100%;
    max-width: 750px;
}

.contact form input {
    width: 100%;
    padding: 12px 10px;
    margin: 3px 0;
    box-sizing: border-box;
    border: 1px solid #DADADA;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    outline: none;
    font-family: "ITC Franklin Gothic", sans-serif;
}
.contact form .country-select {
    margin: 3px 0;
}

.contact form input::placeholder {
    font-weight: 300;
}

.contact form .label {
    margin-top: 5px;
    font-weight: bold;
}

.contact form .select {
    position: relative;
    display: inline-block;
    width: 100%;
}

.contact form .select select {
    display: inline-block;
    width: 100%;
    height: 100%;
    cursor: pointer;
    padding: 12px 10px;
    outline: 0;
    border: 0px solid #000000;
    background: #e6e6e6;
    color: #000;
    border-radius: 5px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-position: right;
    background-repeat: no-repeat;
    background-image: url("../../thermografieMicropageAssets/images/selectBackground.jpg");
}

.contact form .select select option {
    font-weight: bolder;
    margin: 10px 0;
    line-height: 18px;
}

.contact form textarea {
    width: 100%;
    max-width: 750px;
    height: auto;
    min-height: 250px;
    font-size: 17px;
    font-family: "ITC Franklin Gothic", sans-serif;
}

textarea::-webkit-input-placeholder {
    font-weight: 400;
    font-size: 17px;
    color: #6d6d6d;
    padding: 12px 10px;
}

textarea::-moz-input-placeholder {
    font-weight: 400;
    font-size: 17px;
    color: #6d6d6d;
    padding: 12px 10px;
}

textarea:-moz-input-placeholder {
    font-weight: 400;
    font-size: 17px;
    color: #6d6d6d;
    padding: 12px 10px;
}

textarea:-ms-input-placeholder {
    font-weight: 400;
    font-size: 17px;
    color: #6d6d6d;
    padding: 12px 10px;
}

.contact form .checkbox {
    transform: scale(2);
    width: initial;
    margin-top: 7px;
    margin-left: 7px;
}

.contact form .submit {
    padding: 5px 5px;
    background-color: #E30613;
    color: #fff;
    border: none;
    font-weight: bold;
    font-size: 17px;
}

/**
    # Footer
 */
.footer {
    background: #9a9a9a;
    padding: 25px 10px;
    color: #fff;
}
@media (max-width: 576px) {
    .footer {
        text-align: center;
    }
}

.footer .row {
    width: 100%;
    max-width: 850px;
}
.footer ul,
.footer-link-2 ul
{
    padding: 0;
    margin-top: 0;
    margin-bottom: 1rem;
    list-style-type: none;
}
.footer-link-2 ul {
    list-style: none;
}
.footer-link ul li {
    margin-bottom: 2px;
    font-size: 14px;
    font-weight: 400;
}
.footer-link ul li a,
.footer-link-2 ul li a {
    font-size: 15px;
    color: #fff;
    line-height: 25px;
    transition: .3s;
    text-decoration: none;
}
.foorter-widget h4 {
    font-size: 17px;
    color: #fff;
    font-weight: 500;
    line-height: 25px;
    margin: 0;
}
.footer-right-text p {
    font-size: 0.7rem;
    line-height: 1rem;
}

/**
    # Mobile Device Styles
 */
@media (max-width: 850px) {

    .hidden-mobile {
        display: none !important;
    }

    .visible-mobile {
        display: block !important;
        width: 80%;
    }

    .header {
        flex-direction: column-reverse;
    }

    .header .logo {
        margin-top: auto;
        margin-bottom: initial;
        margin-left: auto;
        width: 50vw;
        max-width: 225px;
    }

    .header .title {
        width: 80vw;
        max-width: 500px;
        font-size: 2rem;
        line-height: 2rem;
        margin-left: unset;
    }

    .header .title.micropage-procuct-header-info {
        max-width: 400px;
    }

    .header .micropage_title {
        top: 1vh;
        right: 0 !important;
        padding-right: 0 !important;
        padding-top: 0 !important;
    }
}

.redirectsContainer {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

.micropageListContainer {
    margin-top: 30px;
    margin-left: 30px;
}

@media (max-width: 850px) {
    .micropageListContainer {
        margin-left: 0;
    }
}

.micropagePictureAndListContainer {
    display: grid;
    grid-template-columns: 60% 40%;
    grid-template-rows: 10% auto auto;
    row-gap: 10px;
    grid-template-areas:
    "infoHeadline ."
    "infoPicture infoList"
    "infoListMobile .";
    column-gap: 3px;

}

.micropagePictureAndListContainer.noHeadline {
    margin-top: 30px;
    grid-template-rows: auto auto;
    grid-template-areas:
    "infoPicture infoList"
    "infoListMobile .";
}

.infoHeadline {
    grid-area: infoHeadline;
}

.micropageInfoList {
    grid-area: infoList;
}

.micropageInfoPicture {
    grid-area: infoPicture;
}

.micropage-video {
    text-align: center;
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 35px;
    height: 0;
    overflow: hidden;
}

.micropage-video iframe{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.ft-img {
    width: 100%;
    display: block;
    margin: 0 auto;
    margin-bottom: 10px;
}

.ft-img > img {
    max-width: 90%;
}

.img-small > img {
    max-width: 70%;
}

.listImageMedium {
    max-width: 500px;
}

.micropage-texts p{
    font-size: 20px;
}

.header .micropage_title {
    margin-left: auto;
    margin-bottom: auto;
    padding-top: 4vh;
    padding-right: 4vh;
    max-width: 540px;
    position: absolute;
    right: 4vh;
}

.redirection-row {
    display: grid;
    align-items: baseline;
    grid-template-columns: 10% 39% 2% 39% 10%;
}

.col-lg-6.col-md-6.baumit-row{
    grid-column: 2;
}

.col-lg-6.col-md-6.hornbach-row{
    grid-column: 4;
}

.redirect-label h3 {
    font-size: 30px;
    color: #A7A7A7;
    font-weight: 700;
    margin: 0;
}

.redirect-logo img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.micropage-hero-area {
    width: auto;
    flex-grow: 2;
    align-self: flex-end;
    margin-bottom: 120px;
}

.micropage-hero-buttons {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 1rem;
    z-index: 1;
}

.red-info-button {
    background-color: #E30613;
    width: 320px;
    height: 100px;
    color: white;
    font-size: 35pt;
    border: none;
    margin-bottom: 10px;
    cursor: pointer;
}

.red-info-button.solo {
    width: max-content;
    height: initial;
    padding: 20px;
    font-size: 160%;
}

@media (min-width: 560px) {
    .red-info-button.solo {
        font-size: 220%;
    }
}

.orange-purchase-button {
    background-color: #F18401;
    width: 320px;
    height: 100px;
    color: white;
    font-size: 35pt;
    border: none;
    cursor: pointer;
}

.header .title.micropage-procuct-header-info {
    position: absolute;
    right: 1rem;
    top: 1rem;
    padding-top: 0;
    max-width: 535px;
}

.rt-text-blk h3 {
    font-family: "ITC Franklin Gothic", sans-serif !important;
}

.blog-text h3 {
    font-family: "ITC Franklin Gothic", sans-serif !important;
}

.micopage-slider {
    height: auto !important;
}

.article-content.micopage-article-content {
    height: 350px;
}

.micropage-card {
    width: 100% !important;
}

.micropage-card-icon {
    left: 4px;
    top: 4px;
    bottom: 4px;
    background-color: #fff;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.micropage-light-bulb {
    height: calc(2rem - 8px);
}

.micropage-card-headline {
    margin-left: 1.2rem;
    flex: 1 1 auto;
    font-weight: bold;
    font-size: 1.2rem;
}

.card-content.micopage-card-content {
    display: block !important;
}

.micropage-paragraph-content.micropage-paragraphType-standard.micropage-as-hint {
    display: flex;
    justify-content: space-between;
}

.micropage-paragraph-text {
    padding-left: 2rem;
}

.micropage-paragraph-text p {
    font-size: 20px ;
}

.micropageDisclaimerLabel {
    text-align: center;
}

.micropageDisclaimerInput {
    width: 25px;
    height: 25px;
}

.card.article-width.micropage-card.micropage-diclaimer {

}

.card.article-width.micropage-card.micropage-diclaimer .card-header{
    cursor: default;
}

.micropage-disclaimer-content {
    border-radius: 3px;
    box-shadow: 0 1px 3px 0 #999999;
    padding: 0.5rem 1rem;
}

.micropage-disclaimer-header {
    background-color: #f2f2f2;
    border-radius: 3px;
    box-shadow: 0 1px 3px 0 #999999;
    padding: 0.5rem;
    display: flex;
    align-items: center;
}

.micropage-disclaimer-btn {
    margin-top: 10px !important;
}

#additional-disclaimer-text {
    display: none;
}

@media (max-width: 770px) {

    .header .title.micropage-procuct-header-info {
        max-width: 400px;
    }

    .redirect-area.hight {
        height: auto;
    }

    .redirect-logo img {
        max-width: 80px;
        height: auto;
        display: block;
        margin: 0 auto;
    }

    .redirect-label h3 {
        font-size: 14px;
        color: #A7A7A7;
        font-weight: 700;
        margin: 0;
    }

    .ft-img {
        width: auto;
    }

    .teaser.slider-item.with-description.micropage-slider {
        height: auto !important;
    }

    .content.page-width {
        margin-top: 0;
        margin-bottom: 20px;
    }

    .micropage-card {
        margin-top: 1rem;
        margin-bottom: 2rem;
    }

    .micropage-paragraph-content.micropage-paragraphType-standard.micropage-as-hint {
        display: block;
    }

    .micropage-paragraph-text {
        padding-top: 1rem;
        padding-left: 0;
    }
}

@media (max-width: 1000px) {

    .redirection-row {
        display: grid;
        align-items: baseline;
        grid-template-columns: 5% 90% 5%;
        grid-template-rows: auto auto;
    }

    .col-lg-6.col-md-6.baumit-row {
        grid-column: 2;
        grid-row: 1;
    }

    .col-lg-6.col-md-6.hornbach-row {
        grid-column: 2;
        grid-row: 2;
    }

    .red-info-button.solo {
    }

    .header .background-image.mobile {
        display: block;
    }

    .header .background-image.desktop {
        display: none;
    }

    .micropage-hero-buttons {
        bottom: 20rem;
    }

    .header .logo {
        bottom: 1rem;
        right: 1rem;
        top: initial;
        left: initial;
    }
}

@media (max-width: 920px) {
    .micropage-hero-buttons {
        bottom: 25%;
    }
}

@media (max-width: 850px) {

    .micropagePictureAndListContainer {
        display: grid;
        grid-template-columns: 100%;
    }

    .micropagePictureAndListContainer.noHeadline {
        margin-top: 15px;
    }

    .blog-text-appeal-box-orange a {
        font-size: 30px !important;
    }

    .micropageInfoList {
        grid-area: infoListMobile;
    }
}

/*Tablet in Portrait mode*/
@media (min-width: 768px) and (max-width: 1024px) {
    .allin-logo {
        display: none;
    }
}

@media (max-width: 400px) {

    .blog-text-appeal-box-orange a {
        font-size: 25px !important;
    }

    .header .title.micropage-procuct-header-info {
        max-width: 230px;
    }

}

.regularFontSize {
    font-size: 17px !important;
}

.rt-text-blk.listWithoutBullets li:after {
    display: none;
}

.micropage_list li{
    font-size: 20px !important;
}

.micropageDisclaimerNotice .disclaimer-warning {
    text-align: right;
    line-height: normal;
    color: #e1001b;
    margin-bottom: 1rem;
}
