/* AIRCONDITONING */


/* Airco header */
#airco-header {
    width: 100vw;
    height: 500px;
    background-image: url("../images/airco-header.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

#airco-header-section {
    padding-left: 8%;
    padding-top: 4%;
    padding-bottom: 4%;
    width: 60%;
    height: 100%;
    background-image: linear-gradient(to left, rgba(255,0,0,0), rgb(0, 0, 0));
}

#airco-header-h1 {
    color: white;
    font-size: 2.8em;
    padding-bottom: 6%
}

#airco-header-p {
    font-size: 20px;
    color: rgb(214, 214, 214);
    padding-bottom: 2%;
    width: 60%;
}





/* Section with text and table */
.airco-info-content {
    display: flex;
    justify-content: space-between;
    padding-left: 8%;
    padding-right: 8%;
    padding-top: 4%;
    padding-bottom: 4%;
}

.airco-info-text {
    width: 60%;
}

.airco-info-text-h2 {
    font-size: 2em;
    padding-bottom: 2%;
    color: #3f3f3f;
}

.airco-info-text-p {
    font-size: 18px;
    padding-bottom: 2%;
    color: #646464;
}

#airco-info-table {
    padding-left: 10%;
    padding-bottom: 10%;
}

#airco-info-table li {
    font-size: 18px;
    color: #646464;
    padding: 10px;
}

.airco-offerte-button {
    border: 0;
    text-decoration: none;
    text-transform: uppercase;
    background-color: red;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 8px;
    padding-bottom: 10px;
    color: white;
    margin-top: 20px;
    width: 150px;
    font-size: 18px;
    cursor: pointer;
    border-radius: 10px;
    transition: 0.3s;
}

.airco-offerte-button:hover {
    background-color: darkred;
}




/* Comparison tables */
.airco-contracten {
    padding-left: 8%;
    padding-right: 8%;
    padding-top: 4%;
    padding-bottom: 4%;
    justify-content: space-between; 
    width: 92vw;
}

.airco-contracten-div {
   width: 20%;
}

.airco-contracten-div:first-child {
    width: 40%;
}

#airco-contracten-extra-h2 {
    font-size: 2em;
    color: #3f3f3f;
    padding-bottom: 2%;
}

.airco-contracten-extra-p {
    font-size: 18px;
    padding-bottom: 8%;
    color: #646464;
}






/* Airco contracten: vergelijking */
.airco-pakket-section {
    width: 300px;
    margin: 10px;
    border-radius: 25px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.airco-pakket-header {
    background-color: #8294a1;
    padding: 10px;
}

.airco-pakket-header-title {
    color: white;
    text-align: center;
    font-size: 2em;
}

.airco-pakket-header-subtitle {
    color: white;
    text-align: center;
}

.airco-pakket-main {
    padding: 10px;
}

.airco-pakket-table td {
    padding: 7px;
    color: #767676;
}

.airco-pakket-footer {
    padding: 10px;
    background-color: #F9F9F9;
    display: flex;
    flex-direction: column;
}

.airco-pakket-footer-price {
    text-align: center;
    font-size: 2em;
    font-weight: bold;
}

.airco-pakket-footer-text {
    text-align: center;
    margin: 0 0 10px 0;
    color: #767676;
}

.airco-pakket-footer-button {
    display: inline-block;
    margin: 15px auto;
    padding: 10px 25px;
    text-decoration: none;
    color: #F9F9F9;
    background-color: red;
    border-radius: 10px;
    border: none;
    
    letter-spacing: 0.02em;
    font-weight: bold;
    transition: 0.3s;
}
.airco-pakket-footer-button:hover {
    background: rgb(167, 4, 4);
    color: white;
}



/* background color */

#airco-color {
    background-color: #f4f5f6;
}





@media only screen and (max-width: 1024px) {
    #airco-header {
        width: 100vw;
        height: 300px;
    }
    
    #airco-header-section {
        padding-left: 10%;
        padding-top: 5%;
        padding-bottom: 5%;
        width: 80%;
    }
    
    #airco-header-h1 {
        font-size: 2em;
        padding-bottom: 6%
    }
    
    #airco-header-p {
        font-size: 18px;
        padding-bottom: 2%;
        width: 60%;
    }

    /* info */
    .airco-info-content {
        padding-left: 10%;
        padding-right: 8%;
        padding-top: 5%;
        padding-bottom: 5%;
    }
    
    .airco-info-text {
        width: 55%;
    }
    
    .airco-info-text-h2 {
        font-size: 1.5em;
        padding-bottom: 2%;
    }
    
    .airco-info-text-p {
        font-size: 16px;
        padding-bottom: 5%;
    }
    
   #airco-info-table {
    	padding-left: 8%;
    	padding-top: 2%;
    	padding-bottom: 20%;
	}

	#airco-info-table li {
    	font-size: 16px;
	}

	




    /* contract */
    .airco-contracten {
        padding-left: 10%;
        padding-right: 8%;
        padding-top: 5%;
        padding-bottom: 5%;
        width: 100%;
        
    }
    
    .airco-contracten-div {
       width: 50%;
    }
    
    .airco-contracten-div:first-child {
        width: 50%;
        padding-right: 5%;
    }

    .airco-pakket-section {
        float: right;
    }
    
    #airco-contracten-extra-h2 {
        font-size: 1.5em;
        padding-bottom: 2%;
    }
    
    .airco-contracten-extra-p {
        font-size: 16px;
        padding-bottom: 5%;
    }
    
    /* contract */
    .airco-pakket-header-title {
        font-size: 1.5em;
    }
    
    .airco-pakket-footer-price {
        font-size: 1.5em;
    }

    
   
}












@media only screen and (max-width: 500px) {
    #airco-header {
        width: 100vw;
        height: 300px;
    }
    
    #airco-header-section {
        padding-left: 10%;
        padding-top: 5%;
        padding-bottom: 5%;
        width: 100%;
    }
    
    #airco-header-h1 {
        font-size: 2em;
        padding-bottom: 6%
    }
    
    #airco-header-p {
        font-size: 18px;
        padding-bottom: 2%;
        width: 70%;
    }

    /* info */
    .airco-info-content {
        display: flex;
        flex-direction: column;
        padding-left: 10%;
        padding-right: 8%;
        padding-top: 5%;
        padding-bottom: 5%;
    }
    
    .airco-info-text {
        width: 100%;
    }
    
    .airco-info-text-h2 {
        font-size: 1.5em;
        padding-bottom: 2%;
    }
    
    .airco-info-text-p {
        font-size: 16px;
        padding-bottom: 5%;
    }
    
#airco-info-table {
    padding-left: 6%;
    padding-top: 4%;
    padding-bottom: 10%;
    width: 100%;
}

#airco-info-table li {
    font-size: 16px;
    padding: 5px;
} 

    /* contract info */
    .airco-contracten {
        padding-left: 10%;
        padding-right: 8%;
        padding-top: 5%;
        padding-bottom: 5%;
        width: 100%;
        flex-direction: column;
    }
    
    .airco-contracten-div {
       width: 100%;
    }
    
    .airco-contracten-div:first-child {
        width: 100%;
    }
    
    #airco-contracten-extra-h2 {
        font-size: 1.5em;
        padding-bottom: 2%;
    }
    
    .airco-contracten-extra-p {
        font-size: 16px;
        padding-bottom: 5%;
    }
    
    /* contract */
    .airco-pakket-header-title {
        font-size: 1.5em;
    }
    
    .airco-pakket-footer-price {
        font-size: 1.5em;
    }
	
	#stek-logo {
		display: none;
	}
    
}