/*
This WireHouse.com Homepage Stylesheet
Initial Release Date : 01/12/2018
Current Revision Date :
Update notes:

Author: Tsvetan Hristov - http://wirehouse.co.uk


--- How to read this code: ---

The code is written in sections each of which
addresses specific part of the webpage as follows:

* Code for each section is written
in ascending screen size order:
--- Mobile
--- Tablet (landscape) & laptops 
--- Standard 1920x1080 Desktops
--- 2K+ and wide format screens

- CONTENT -
0 - Current Page Layout Options
1 - Introduction | Hero image (VR image if screen >= 1024px)
2 - Projects Info | Featured Projects
3 - Blog | Recent Blog Posts
4 - Contact | Contact Form and Follow me Links

*/

/* =========================  MAIN CONTENT =========================*/

/* ====================== MAIN CONTENT LAYOUT (GRID ) ======================*/
/* === Laptop and Tablet (landscape) ===*/
@media only screen and (min-width: 1200px) {
    #main-content{
        grid-template-areas: 
            "sidebar-button intro"
            "sidebar-button projects"
            "sidebar-button blog"
            "sidebar-button contact";   
    }
}  

/* ==================== 1. SECTION ONE ====================*/
/* ==================== 1.1 INTRO ====================*/
/* === Mobile preview === */
#mobile-banner{
    height: 100vw;
	background: url('http://www.wirehouse.co.uk/wp-content/uploads/2018/12/front-external-1024x720.jpg');
    background-size: auto 100%;
    background-position: 75% 50%;
    background-repeat: no-repeat;
    margin: 40px 0 10%;
}    

#intro-info h2, #projects-info h2{
    border: 1px solid #B3811A;
    max-height: 30px;
    padding: 0 0 5px;
}

#intro-info .button-read-more{
    margin: 0 5%;
}

/* === Laptop and Tablet (landscape) ===*/
@media only screen and (min-width: 1200px) {
    #intro-info h2, #projects-info h2{
        display: block;
        max-height: none;
        padding: 0;
        margin: 10px 0 0;
        background-color: rgba(17,30,43,0.5);
    }  
    
    #intro-info .button-read-more{
        margin: 0;
    }
}

/* === Desktop === */
@media only screen and (min-width: 1600px){
    #intro-info h2, #projects-info h2{
        margin: 2vh 0 0; 
    }   
}

/* ==================== 1.2 BANNER ====================*/
/* === Mobile preview === */
#VRscene{
    display:block;
    opacity: 0;
}

#buttonVR{
    display: none;
}

/* === Laptop and Tablet (landscape) ===*/
@media only screen and (min-width: 1200px) {
    #banner{
		background: url('../../projects/design/1806-paleo/front-external.jpg');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat; 
		
        position: absolute;
        top: 0;
        right: 0;
        width: 100vw;  
        height: 100vh;
        border-bottom: 1px solid #B3811A;
    }
    
    #links{
        display: flex;
        position: absolute;
        bottom: 0;
        width: 100%;
        height: 100px;
        align-content: center;
        justify-content: center;
    }
    
    .setVRimg{
        display: block;
        width: 75px;
        height: 75px;
        box-sizing: border-box;
        margin: 0 1vw;
        background: black;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        border: 2px solid #111E2B;
        z-index: 1;
        opacity: 0.75;
        filter: grayscale(50%);
    }
    
    .setVRimg:focus{
        border: 4px solid #B3811A;
        outline-width: 0;
        opacity: 1;
        filter: grayscale(0%);
    }
    
    .setVRimg:nth-child(1) {
        background-image: url('../../projects/design/1806-paleo/preparation.jpg')}
    .setVRimg:nth-child(2) {
        background-image: url('../../projects/design/1806-paleo/collection.jpg')} 
}

@media only screen and (min-width: 1600px){
	#VRscene{
		display:block;
		opacity: 0;
	}
	
    #buttonVR{
		display:none;
        width: 75px;
        height: 75px;
        box-sizing: border-box;
        padding: 0;
        margin: 1vw;
        align-items: center;
        justify-content: center;
        background-color: rgba(17,30,43,0.6);
        border: 1px solid #B3811A;
        cursor: pointer;
        
        z-index: 5;
        
        position: absolute;
        bottom: 0;
        right: 0;
        
        -webkit-transition: .25s ease-in-out; /* Chrome, Safari */
        -moz-transition: .25s ease-in-out; /*  Firefox */
        -o-transition: .25s ease-in-out; /*  Opera */
        transition: .25s ease-in-out;
    }
    
    #buttonVR.ON{
       background-color: #B3811A; 
    }
    
    #buttonVR .info { 
        cursor: pointer;
    }
    
    #buttonVR:hover{
        background-color: #B3811A;
    }
}

/* === 2K+ Wide Desktop  ===*/ 
@media only screen and (min-width: 2600px){
	#banner{
		background: url('../../projects/design/1806-paleo/front-external.jpg');
    }
	
    #links{
        height: 200px;
    }
    
    .setVRimg{
        transform: scale(2);
        margin: 0 2vw;
    }
}

/* ==================== 2. SECTION TWO ====================*/
/* ==================== 2.1 PROJECTS ====================*/
/* === Mobile preview === */
#projects .tab h2:after{
    display: inline-block;
    width: 18px;
    height: 18px;
    margin: 0 10px;
    background-size: contain;
    background-repeat: no-repeat;
    content: " ";    
}

#projects .tab:nth-child(1) h2:after{
    background-image: url('../../assets/images/ArchIcon.png');}
#projects .tab:nth-child(2) h2:after{
    background-image: url('../../assets/images/RenderIcon.png');}
#projects .tab:nth-child(3) h2:after{
    background-image: url('../../assets/images/DigitalIcon.png');
}


/* === Laptop and Tablet (landscape) ===*/
@media only screen and (min-width: 1200px) {
    #projects .tab h2:after{
        width: 10px;
        height: 10px;
        margin: 0 .5vw;  
    }
}

/* === Desktop === */
@media only screen and (min-width: 1600px){
    #projects .tab h2:after{
        width: .85vw;
        height: .85vw;  
    }
}

/* ==================== 2.2 PROJECTS GALLERY ====================*/
/* === Mobile preview === */
#gallery{
    display: grid;
    grid-template-rows: repeat(4, 30vh);
    grid-gap: 10px;
    position: relative;
    margin: 5%;
}

.project-thumbnail{
    display:flex;
    align-items: center;
    justify-content: center;
    overflow:hidden;
    position: relative;
    content: '';
    background-size: cover; 
    background-repeat: no-repeat;
    background-position: center;
    box-shadow: inset 0 0 125px rgba(17,30,43,0.85);
    z-index: 1;
}

.thumbnail-img{
    flex: 1;
    height: 100%;
}

.project-thumbnail .invisible-link{
    position:absolute;
    width:100%;
    bottom:0;
    text-decoration: none;
    z-index: 2;
    color: #F5F9FC;
    opacity: 1;
    background-color: rgba(179,129,26,0.8);
}

.project-thumbnail:nth-child(1)  {background-image: url('http://www.wirehouse.co.uk/wp-content/uploads/2018/12/pompilio-768x384.png');}
.project-thumbnail:nth-child(2)  {background-image: url('http://www.wirehouse.co.uk/wp-content/uploads/2018/12/tiny-kitchen-768x925.jpg');}
.project-thumbnail:nth-child(3)  {background-image: url('http://www.wirehouse.co.uk/wp-content/uploads/2018/12/extrude-proximity-768x553.jpg');}
.project-thumbnail:nth-child(4)  {background-image: url('http://www.wirehouse.co.uk/wp-content/uploads/2018/12/preparation-768x540.jpg');}


/* === Laptop and Tablet (landscape) ===*/
@media only screen and (min-width: 1200px) {
    #gallery{
        grid-template-rows: repeat(2, 1fr);
        grid-template-columns: repeat(3, 1fr);
        grid-gap: 10px;
        margin: 50px 10px 10px 10px;
    } 
    
    #gallery .project-thumbnail{
        border: 1px solid #B3811A;
    }
    
    .project-thumbnail:nth-child(1), .project-thumbnail:nth-child(4){
        grid-row: span 1;
        grid-column: span 2; 
    }
    
    .project-thumbnail:nth-child(2), .project-thumbnail:nth-child(3){
        grid-row: span 1;
        grid-column: span 1; 
    } 
}
/* === Desktop === */
@media only screen and (min-width: 1600px){
    #gallery{
        grid-gap: 1vw;
        margin: 5vw 2vw 2.5vw;
        
    }

    .project-thumbnail:hover{
        background-color: rgba(179,129,26,1.0);
        background-blend-mode: soft-light;
    }
    
    .project-thumbnail .thumbnail-img{
        -webkit-transition: 0.35s ease-in-out; /* Chrome, Safari */
        -moz-transition: 0.35s ease-in-out; /* Firefox */
        -o-transition: 0.35s ease-in-out; /* Opera */
        transition: 0.35s ease-in-out;
    }

    .project-thumbnail:hover .thumbnail-img{
        filter: blur(3px);
        -webkit-transform: scale(1.05); /* Chrome, Safari */
        -moz-transform: scale(1.05); /* Firefox */
        -o-transform: scale(1.05); /* Opera */
        transform: scale(1.05);
    }

    .project-thumbnail .invisible-link{
        bottom: inherit;
        text-decoration: none;
        z-index: 2;
        opacity: 0;
        background-color: transparent;
        -webkit-transition: 0.35s ease-in-out; /* Chrome, Safari */
        -moz-transition: 0.35s ease-in-out; /* Firefox */
        -o-transition: 0.35s ease-in-out; /* Opera */
        transition: 0.35s ease-in-out;
    }

    .project-thumbnail:hover .invisible-link{
        opacity: 1;
    }
			
	.project-thumbnail:nth-child(1)  {background-image: url('http://www.wirehouse.co.uk/wp-content/uploads/2018/12/pompilio-1024x512.png');}
	.project-thumbnail:nth-child(2)  {background-image: url('http://www.wirehouse.co.uk/wp-content/uploads/2018/12/tiny-kitchen-850x1024.jpg');}
	.project-thumbnail:nth-child(3)  {background-image: url('http://www.wirehouse.co.uk/wp-content/uploads/2018/12/extrude-proximity-1024x737.jpg');}
	.project-thumbnail:nth-child(4)  {background-image: url('http://www.wirehouse.co.uk/wp-content/uploads/2018/12/preparation-1024x720.jpg');}
}

/* === Wide Screen === */
@media only screen and (min-width: 2400px){
	.project-thumbnail:nth-child(1)  {background-image: url('http://www.wirehouse.co.uk/wp-content/uploads/2018/12/pompilio.png');}
	.project-thumbnail:nth-child(2)  {background-image: url('http://www.wirehouse.co.uk/wp-content/uploads/2018/12/tiny-kitchen.jpg');}
	.project-thumbnail:nth-child(3)  {background-image: url('http://www.wirehouse.co.uk/wp-content/uploads/2018/12/extrude-proximity.jpg');}
	.project-thumbnail:nth-child(4)  {background-image: url('http://www.wirehouse.co.uk/wp-content/uploads/2018/12/preparation.jpg');}
}

/* ==================== 3. SECTION THREE ====================*/
/* ==================== 3.1 BLOG ====================*/
/* === Mobile preview === */
#blog{
    position: relative;
}

/* === Desktop === */

/* ==================== 3.2 BLOG POSTS ====================*/
/* === Mobile preview === */
#blog-posts{
    position: relative;
}

#blog-posts{
    display: flex;
    flex-wrap: wrap;
    margin: 5%;
}

.post{
    background-color: #F5F9FC;
    margin: 5px 0; 
}


.blog-img-container{
    height: 30vh;
    max-height: 225px;
    content: '';
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border: 10px solid #F5F9FC;
    border-bottom: 1px solid #F5F9FC;
}

#post01 .blog-img-container {background-image: url('../../projects/visuals/1412-pompilio/pompilio.png');}

#post02 .blog-img-container {background-image: url('../../projects/design/1601-tiny-homes/th-kitchen.jpg');}

#post03 .blog-img-container {background-image: url('../../projects/coding/1505-kartal/extrude-proximity.jpg');}

#post04 .blog-img-container {background-image: url('../../projects/design/1806-paleo/preparation.jpg');}

#blog-posts .sub-title, #blog-posts h2{
    color: #111E2B;
    line-height: 1.25em;
    text-align: center;
    margin: 2vh 10%;
    border: none;
}

#blog-posts .today{
    margin: 0 25%;
}

#blog-posts .body-text {
    color: #111E2B;
    margin: 1vh 0;
}

.cite{
    display: none;
}

#blog-posts .button-read-more{
    width: 100%;
}

.post .button-read-more{
    background-color: #B3811A;
}

/* === Tablet (Portrait) ===*/
@media only screen and (min-width: 550px) and (max-width: 1199px) { 
    #blog-posts{
        justify-content: space-between;
    }
    
    .post{
        flex-basis: calc(50% - 5px);
        padding: 0 0 50px;
        position: relative;
    }
    
    .post .button-read-more{
        position: absolute;
        bottom: 0;
    }
    
    #blog-posts .button-read-more{
        margin: 5px 0 0;
    }
    
}

/* === Laptop and Tablet (landscape) ===*/
@media only screen and (min-width: 1200px) {
    #blog-posts{
        margin: 10vh 10px;
        height: 80vh;
        min-height: 375px;
        max-height: 650px;
        background-color: inherit;
        overflow: hidden;
        padding: 0;
		justify-content: space-between;
    }
    
    .post{
        flex-basis: 22vw;
        height: 100%;
        box-sizing: border-box;
        background-color: rgba(244,248,253,0.25);
        position: relative;
        border: 1px solid #B3811A;    
    }
    
    .post:hover .post-cs {
        display: flex;
        position: absolute;
        z-index: 1;
        width: 100%;
        height: 100%;
        align-items: center;
        justify-content: center;
        background: rgba(245,249,252,0.9);
    }
    
    .post .post-cs .name{
        display: none;
        color: #B3811A;
        text-shadow: inherit;
    }
    
    .post:hover .post-cs .name{
        display: block;
    }
    
    
    .blog-img-container{
        height: 25vh;
        border: none;
        border-bottom: 1px solid #B3811A;
        box-shadow: inset 0 0 50px rgba(17,30,43,0.4);
    }
 
    #blog-posts .sub-title {
        margin: 2.5vh 5%;
    }
    
    #blog-posts .body-text {
        margin: 2.5vh 1vw 0;
    } 
    
}

/* === Desktop === */
@media only screen and (min-width: 1600px){
    #blog-posts{
        margin: calc((100vh - 70vh) / 2) 2vw;
        max-height: 70vh;
    }
    
    .post{
        flex-basis: 20vw;
        overflow: hidden; 
        -webkit-transition: 0.5s ease-in-out; /* Chrome, Safari */
        -moz-transition: 0.5s ease-in-out; /* Firefox */
        -o-transition: 0.5s ease-in-out; /* Opera */
        transition: 0.5s ease-in-out;
    }
    
    .post:hover{
        transition: .35s ease-in-out;
        background-color: rgba(244,248,253,1);  
    }
     
    .blog-img-container{
        height: 25vh;
        max-height: none;
        box-shadow: inset 0 0 75px rgba(17,30,43,0.75);
        -webkit-transition: 0.2s ease-in-out; /* Chrome, Safari */
        -moz-transition: 0.2s ease-in-out; /* Firefox */
        -o-transition: 0.2s ease-in-out; /* Opera */
        transition: 0.2s ease-in-out;
        -webkit-filter: grayscale(50%);
        filter: grayscale(50%);
    }
    
    .post:hover .blog-img-container{
        -webkit-filter: grayscale(0%); /* Chrome, Safari */
        filter: grayscale(0%);
    }
    
    #blog-posts .body-text {
        margin: 5% ;
    }
    
    .cite{
        display: block;
    }
    
    .post .button-read-more{
        background-color: rgba(179,129,26,0.75);
    }

    .post .button-read-more:hover{
        background-color:  #B3811A;
    }
}

/* ==================== 4. SECTION FOUR ====================*/
/* ==================== 4.1 CONTACT ME ====================*/
/* === Mobile preview === */
/* === Tablet === */
/* === Desktop === */


/* ==================== 4.2 CONTENT - GENERAL & CONTACT FORM ====================*/
/* === Mobile preview === */
#contact-details{
    position: relative;
    padding: 5% 0 0 0;
/*    margin: 5%;*/
}

#contact-details div.wpforms-container-full .wpforms-form .wpforms-field-container{
    height: 75%;
}

#contact-details div.wpforms-container-full .wpforms-form .wpforms-submit-container{
    position: inherit;
}


/* Hide Field Names */
.wpforms-label-hide, .wpforms-field-hp{
    display: none;
}

/* Reset WPForms Styles */
div.wpforms-container-full .wpforms-form .wpforms-field,
#wpforms-60-field_1-container, #wpforms-60-field_2-container,
#wpforms-60-field_3-container, #wpforms-60-field_4-container{
    padding: 0;
}

div.wpforms-container-full .wpforms-form input[type=date], div.wpforms-container-full .wpforms-form input[type=datetime], div.wpforms-container-full .wpforms-form input[type=datetime-local], div.wpforms-container-full .wpforms-form input[type=email], div.wpforms-container-full .wpforms-form input[type=month], div.wpforms-container-full .wpforms-form input[type=number], div.wpforms-container-full .wpforms-form input[type=password], div.wpforms-container-full .wpforms-form input[type=tel], div.wpforms-container-full .wpforms-form input[type=text], div.wpforms-container-full .wpforms-form input[type=time], div.wpforms-container-full .wpforms-form input[type=url], div.wpforms-container-full .wpforms-form input[type=week], div.wpforms-container-full .wpforms-form select, div.wpforms-container-full .wpforms-form textarea {
    background-color: transparent;
    box-sizing: border-box;
    border-radius: 0;
    color: transparent;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    display: block;
    float: none;
    border: 0;
}
/* End of resetting */

#contact-details div.wpforms-container-full .wpforms-form{
    margin: 0 5%;
}

#contact-form form{
    height: 100%;
}

/* Contact Form Title */
#contact-details div.wpforms-container-full .wpforms-form .wpforms-title{
    display: text;
    font-family: 'Raleway', sans-serif; 
    font-weight: 600;
    font-size: 12pt;
    color: #F5F9FC;
    text-align: center;
    padding: 2px; 
    text-shadow: 0 0 10px #111E2B;
}


#contact-details .name,#contact-details div.wpforms-container-full .wpforms-form .wpforms-title {
    font-size: 150%;
    padding: 60px 0 10px;
}

input, textarea, 
div.wpforms-container-full .wpforms-form .wpforms-field.wpforms-field-text input, 
div.wpforms-container-full .wpforms-form .wpforms-field.wpforms-field-email input,
div.wpforms-container-full .wpforms-form  .wpforms-field.wpforms-field-textarea textarea{
    display: block;
    width: 100%;
    max-width: 100%;
    font-size: 10pt;
    line-height: 14pt;
    padding: 10px 40px;
    margin: 20px auto ;
    border-bottom: 1px solid #F5F9FC;
    text-align: center;
    color: #F5F9FC;
    background-color: transparent;
    -webkit-transition: 0.5s; /* Chrome, Safari */
    -moz-transition: 0.5s; /* Firefox */
    -o-transition: 0.5s; /* Opera */
    transition: 0.5s;
}

input:focus, textarea:focus, 
div.wpforms-container-full .wpforms-form .wpforms-field.wpforms-field-text input:focus, 
div.wpforms-container-full .wpforms-form .wpforms-field.wpforms-field-email input:focus,
div.wpforms-container-full .wpforms-form .wpforms-field.wpforms-field-textarea textarea:focus{
    border-bottom: 3px solid #F5F9FC;
    background-color: rgba(245,249,252,0.05);        
}
   
textarea, div.wpforms-container-full .wpforms-form .wpforms-field.wpforms-field-textarea textarea{
    resize: none;
    text-align: left;
    height: 250px;
    min-height: 50px;  
}

#contact-details .button-read-more{
    border: none;
    text-transform: uppercase;
    width: 100%;
    padding: 15px 0;
    background-color: #B3811A;
    color: #F5F9FC;   
}

/* Confirmation text */
#contact-details div.wpforms-confirmation-container-full{
    background-color: rgba(17,30,43,0.9);
    border: 0;
}

#contact-details div.wpforms-confirmation-container-full p{
    font-size: 90%;
    color: #F5F9FC;
    text-align: center; 
}

/* === Laptop and Tablet (landscape) ===*/
@media only screen and (min-width: 1200px) {
    #contact-details{
        display: flex;
        margin: 10vh 10px;
        height: 80vh;
        min-height: 375px;
        max-height: 650px;
        justify-content: space-between;
        background-color: inherit;
        flex-wrap: wrap;
        overflow: hidden;
        padding: 0;
    }

    #contact-details .contactTab{
        height: 100%;
        box-sizing: border-box;
        background-color: rgba(17,30,43,0.9);
        position: relative;
        border: 1px solid #B3811A;
    }
    
    #contact-form, #contact-details .contactTab{
        /* Double tab */
        flex-basis: calc((100% + 220px) / 2); /* 220px as per default value above */
    }
    
    input, textarea, 
    div.wpforms-container-full .wpforms-form .wpforms-field.wpforms-field-text input, 
    div.wpforms-container-full .wpforms-form .wpforms-field.wpforms-field-email input,
    div.wpforms-container-full .wpforms-form  .wpforms-field.wpforms-field-textarea textarea{
        font-size: 70%;
        line-height: 125%;
    }
    
    textarea, div.wpforms-container-full .wpforms-form  .wpforms-field.wpforms-field-textarea textarea{
        height: 30vh;
    }
    
    input:focus, div.wpforms-container-full .wpforms-form .wpforms-field.wpforms-field-text input:focus, div.wpforms-container-full .wpforms-form .wpforms-field.wpforms-field-email input:focus{
        width: calc(75% - 1vw);       
    }
    
    textarea:focus, div.wpforms-container-full .wpforms-form .wpforms-field.wpforms-field-textarea textarea:focus{
        width: calc(100% - 1vw);       
    }
    
    #contact-details .body-text {
        margin: 5% 5% 0 5% ;
    }
    
    #contact-details .button-read-more{
        position: absolute;
        padding: 1vh 0;
        margin: 0;
        background-color: rgba(179,129,26,0.75);
    }
    
    /* Confirmation text */
    #contact-details div.wpforms-confirmation-container-full{
        flex-basis: calc((100% + 220px) / 2); /* 220px as per default value above */
        border: 1px solid #B3811A;
    }
    
    #contact-details div.wpforms-confirmation-container-full p{
        font-size: 110%;
    }
}

/* === Desktop === */
@media only screen and (min-width: 1600px){
    #contact-details{
        margin: calc((100vh - 75vh) / 2) 2vw;
        max-height: 75vh;
    }
     
    #contact-details .contactTab{ 
        overflow: hidden; 
        position: relative;
        background-color: rgba(17,30,43,0.6);
        -webkit-transition: 0.75s ; /* Chrome, Safari */
        -moz-transition: 0.75s ; /* Firefox */
        -o-transition: 0.75s ; /* Opera */
        transition: 0.75s ;
    }
    
    #contact-form, #contact-details .contactTab{
        /* Double tab */
    flex-basis: calc((100% + 20vw) / 2); /* 20vw as per default value above */
    }
    
    #contact-details .contactTab:hover, .contactTab:hover{
        background-color: rgba(17,30,43,0.9);  
    }

    #contact-details .name,#contact-details div.wpforms-container-full .wpforms-form .wpforms-title {
        font-size: 250%;
        padding: 4vh 0;
    }
    
    input, textarea, div.wpforms-container-full .wpforms-form .wpforms-field.wpforms-field-text input, 
    div.wpforms-container-full .wpforms-form .wpforms-field.wpforms-field-email input,
    div.wpforms-container-full .wpforms-form  .wpforms-field.wpforms-field-textarea textarea{
        width: 60%;
        font-size: 90%;
        line-height: 125%;
        margin: 1vw auto ;
    }    
    
    textarea, div.wpforms-container-full .wpforms-form  .wpforms-field.wpforms-field-textarea textarea{
        height: 35vh;;
        max-height: 35vh;
    }
    
    #contact-details .button-read-more{
        /*font-size: 120%;*/
        padding: 1.5vh 0;
    }
    
    #contact-details .button-read-more:hover{
        background-color:  #B3811A;
    }
    
    /* Confirmation text */
    #contact-details div.wpforms-confirmation-container-full{
        display: flex;
        align-items: center;
        justify-content: center;
        height: 80vh;
        background-color: rgba(17,30,43,0.6);
    }
    
    #contact-details div.wpforms-confirmation-container-full p{
        max-width: 75%;
        font-size: 125%;
    }
     
}

/* === 2K+ Wide Desktop === */
@media only screen and (min-width: 2600px){
    input, textarea, div.wpforms-container-full .wpforms-form .wpforms-field.wpforms-field-text input, 
    div.wpforms-container-full .wpforms-form .wpforms-field.wpforms-field-email input,
    div.wpforms-container-full .wpforms-form  .wpforms-field.wpforms-field-textarea textarea{
        font-size: 125%;
        line-height: 150%;
    }
    
    input:focus, div.wpforms-container-full .wpforms-form .wpforms-field.wpforms-field-text input:focus, div.wpforms-container-full .wpforms-form .wpforms-field.wpforms-field-email input:focus{
        width: calc(75% - 5vw);       
    }
    
    textarea:focus , div.wpforms-container-full .wpforms-form  .wpforms-field.wpforms-field-textarea textarea:focus{
        width: calc(100% - 5vw);
    }
    
    #contact-details .name,#contact-details div.wpforms-container-full .wpforms-form .wpforms-title  {
        font-size: 350%;
    }
    
    #contact-details .button-read-more{
        font-size: 140%;
    }
}

/* ==================== 4.2.2 CONTENT - FOLLOW ME ====================*/
/* === Mobile ===*/
    #follow-me-tab-wrapper {
        display: flex;
        flex-wrap: wrap;
        margin: 25px 5%; 
        height: 450px;
    }
    
    #follow-me-tab-wrapper a{
        display: flex;
        width: 100%;
        height: 50px;
        position: relative;
        align-items: center;
        justify-content: center;
        border: 1px solid #B3811A;
        -webkit-transition: .25s ease-in-out; /* Chrome, Safari */
        -moz-transition: .25s ease-in-out; /*  Firefox */
        -o-transition: .25s ease-in-out; /*  Opera */
        transition: .25s ease-in-out;
        overflow: hidden;
    }
    
    #follow-me-tab-wrapper a:hover{
        background-color: #B3811A;
    }
    
    #follow-me-tab-wrapper a .icon-large{
        position: absolute;
        left: 0;
    }  
    
    #follow-me-tab-wrapper a:nth-child(1) .icon-large{
        background-image: url('../../assets/images/FacebookIcon.png')}
    #follow-me-tab-wrapper a:nth-child(2) .icon-large{
        background-image: url('../../assets/images/LinkedinIcon.png')}
    #follow-me-tab-wrapper a:nth-child(3) .icon-large{
        background-image: url('../../assets/images/WordpressIcon.png')}
    #follow-me-tab-wrapper a:nth-child(4) .icon-large{
        background-image: url('../../assets/images/PinterestIcon.png')}
    #follow-me-tab-wrapper a:nth-child(5) .icon-large{
        background-image: url('../../assets/images/GitHubIcon.png')}
    #follow-me-tab-wrapper a:nth-child(6) .icon-large{
        background-image: url('../../assets/images/GrasshopperIcon.png')}

/* === Laptop and Tablet (landscape) ===*/
@media only screen and (min-width: 1200px) {
    #contact-details #contactTab2{
        flex-basis: 220px;
    }
    
    #follow-me-tab-wrapper {
        height: 60vh;
        max-height: 65%;
        margin: 1vh 5%;
    }
    
    #follow-me-tab-wrapper a{
        height: 5vh;
        background-color: rgba(17,30,43,0.6);
    }
}

/* === Desktop === */
@media only screen and (min-width: 1600px){
    #contact-details #contactTab2{
        flex-basis: 20vw;
    }
    
    #follow-me-tab-wrapper {
        max-height: inherit;
        margin: 2.5vh 5% 5vh;
    }
    
    #follow-me-tab-wrapper a .icon-large{
        left: 0.5vw; 
    } 
}
    
/* === 2K+ Wide Desktop === */
/*
@media only screen and (min-width: 2600px){
    #contactTab2{
        max-height: 75%;  override the default 100%
    }
    
    #follow-me-tab-wrapper {
        height: 75vh;
        max-height: 75%;
        margin: 25px 5% 50px;
    }
    
    #follow-me-tab-wrapper a{
        max-height: 100px;
    }
}
*/

