/*----------General styles----------*/
*{
    margin: 0;
    padding: 0;
}
body {
    font-family:'Open Sans', sans-serif;
    font-size:100%;
    height: 100%;
}
.nav-anchor{
    display: block;
    padding-bottom: 50px;
    margin-top: -50px;
}
/*----------Typography----------*/
h1, h2, h3, h4{
    font-weight:200;
    letter-spacing: 1px;
    margin-bottom: 15px;
    padding-top: 10px;
    
}
.title, h1 {
    text-align: center;
    font-size:1.8em;
    margin-bottom:25px;
}
.caps{
    text-transform:uppercase;
}
h2{
    font-size:1.5em;
}
h3{
    font-size:1.2em;
}
p{
    line-height:1.5em;
    margin-bottom:15px;
}
ul{
    margin-left:20px;
    margin-bottom:15px;
}
/*----------Header----------*/
header {
    width:100%;
    background:#353535;
    position:sticky;
    top:0;
    z-index: 1;
}
.header-content {
    width:100%;
    padding:5px 0;
    max-width:980px;
    margin:0 auto;
    display:flex;
    align-items:center;
    justify-content: space-between;
}
.header-logo{
    display:block;
    width:57px;
    padding-left: 20px;
}

/*---Navigation---*/
nav {
    width:40%;
    display:flex;
    justify-content: flex-end;
    font-weight: 200;
        
}
nav ul  {
    width:100%;
    display:flex;
    align-items: center;
    justify-content: space-around;
    margin-bottom:0;
}
nav ul li {
    width:33.33%;
    list-style: none;
}
nav ul li a {
    display:block;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    color:white;
}
nav ul li a:hover {
    border-right: 2px solid white;
    border-left: 2px solid white;
}

#menu-icon {
    display: none;
    position:absolute;
    font-size: 3em;
    color:white;
    text-decoration: none;
    padding:0 3%;
    top:-12px;
    right:0;
}


/*----------Home banner----------*/
.top {
    width:100%;
/*    background-image: url(images/seth-main2.jpg);*/
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size:100%;
    background:#353535;
    height:500px;
}
.top-content {
    width:100%;
    height:100%;
    max-width: 980px;
    margin:0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.banner-logo{
    width:12%;
}

.banner-heading{
    color:#fff;
    font-weight:200;
    font-size:50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top:10px
}
.banner-paragraph{
    color:#fff;
    font-weight:200;
    font-size:16.1px;
    text-transform: uppercase;
    letter-spacing: 3.2px
}
.banner-buttons{
    width:100%;
    max-width:316px;
    margin-top:20px;
    display: flex;
    flex-direction:row;
    align-items: center;
    justify-content: space-between;
}
.banner-button{
    width:46%;
    min-width: 147px;
    padding:8px 0;
    text-align: center;
    color:#fff;
    font-family:'Open Sans', sans-serif;
    font-size:16px;
    font-weight: 200;
    text-decoration: none;
    border-radius:5px;
    border:1px solid #fff;
    background:none;
    display: block;
}
.banner-button:hover,
.banner-button:active,
.banner-buttton:focus{
    border:1px solid #353535;
    background:#fff;
    color:#353535;
}
.banner-button-inverse{
    width:46%;
    min-width: 147px;
    padding:8px 0;
    text-align: center;
    color:#555;
    font-family:'Open Sans', sans-serif;
    font-size:16px;
    font-weight: 200;
    text-decoration: none;
    border-radius:5px;
    border:1px solid #555;
    background:none;
    margin-top:20px;
    display: block;
}

/*----------Work----------*/
.work {
    width:100%;
    padding-top:5%;
    background: white;
}
.content {
    width:100%;
    max-width:980px;
    margin: 0 auto;
    color:#434344;
    padding:0 20px;
    box-sizing: border-box;
}
.work-thumbnails{
    display:flex;
    flex-wrap:wrap;
    justify-content: center;
    align-items:center;
}

.thumbnail {
    width:31.3%;
    margin:1%;
    height:250px;
    transition:linear .3s;
    display:flex;
    flex-direction: column;
    justify-content: flex-end;
    text-decoration: none;
    box-shadow: 0px 5px 15px rgba(0,0,0,.2);
    border-radius:5px;
}
.thumbnail:nth-child(1) {
    background:url("./images/Accenture.png") center top 45px no-repeat;
    background-size: 60% auto;
}
.thumbnail:nth-child(2) {
    background:url("./images/ec-logo.png") center top 60px no-repeat;
    background-size: 60% auto;
}
.thumbnail:nth-child(3) {
    background:url("./images/ably-logo.png") center top 35px no-repeat;
    background-size: 40% auto;
    
}
.thumbnail:nth-child(4) {
    background:url("./images/outward-logo.svg") center top 40px no-repeat;
    background-size: 50% auto;
    
}
.thumbnail:nth-child(5) {
    background:url("./images/genisys-logo.png") center top 55px no-repeat;
    background-size: 60% auto;
    
}
.thumbnail:nth-child(6) {
    background:url("./images/wdc-logo.png") center top 20px no-repeat;
    background-size: 50% auto;
    
}
.creative.thumbnail:nth-child(1) {
    background:url("./images/sound-logo-blue.png") center center  no-repeat;
    background-size: 75% auto;
}
.creative.thumbnail:nth-child(2) {
    background:url("./images/outward-logo.svg") center center no-repeat;
    background-size: 50% auto;
}
.creative.thumbnail:nth-child(3) {
    background:none;
    background-size: ;
}
.thumbnail-image{
    width:100%;
}
.thumbnail:hover,
.thumbnail:focus {
    transform: scale(1.03);
    
}
.thumbnail-details{
    min-height:103px;
    background:#505050;
    color:#fff;
    text-align: center;
    padding:0 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 0 0 5px 5px;
}
.thumbnail-details h2{
    text-transform: none;
    font-weight:200;
    font-size: 22px;
    margin:0;
    padding-bottom:5px;
    
}
.thumbnail-details p{
    font-weight:200;
    margin-bottom: 0;
}

/*----------Skills----------*/
.skills {
    width:100%;
    padding:5% 0;
}
.skills-list {
    display:flex;
    flex-wrap:wrap;
    justify-content: center;
    align-items:center;
    padding-top:4%;
}

.skill {
    width:16%;
    box-sizing: border-box;
    padding:15px 5px;
    font-size:65px;
    text-align: center;
    color:#4c4c4c;
    display: flex;
    justify-content:center;
    align-items: center;
}

/*----------About/Contact----------*/
.contact{
    width:100%;
    padding-top:5%;
    background:#353535;

}
.contact .content{
    display: flex;
    flex-direction:row;
    justify-content: center;
    align-items:center;
}
.contact-container{
    display:flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content:center;
    height:450px;
    width:80%;
    background:url("./images/seth-main2-cut-out-transparent7.png") left  center no-repeat;
    background-size: auto 85%;
    position:relative;
}
.contact-text{
    width:56%;
}
.contact-text p {
    width:100%;
    color:#fff;
    font-weight:200;
}
.contact-heading {
    color:#fff;
    text-transform: none;
    font-size: 2.2em;
    font-weight:200;
    margin-bottom:20px;
}
.contact-form{
    width:30%;
    color:#fff;
    display:flex;
    flex-direction:column;
}
.contact-form .title{
    text-align: left;
}
label{
    margin:20px 0 5px;
    font-weight:200;
/*    text-transform: uppercase;*/
}
input{
    box-sizing: border-box;
    width:100%;
    height:40px;
    padding:0 15px;
    border-radius:5px;
    border:none;
    font-style:normal;
}
textarea{
    box-sizing: border-box;
    width:100%;
    min-height:150px;
    border-radius:5px;
    padding:12px 15px;
    margin-bottom:20px;
}

[placeholder]{
    font-family:'Open Sans', sans-serif;
    font-size:14px;
    font-weight: 200;
    font-style: italic;
}
.form-button{
    align-self: flex-end;
}

/*----------Utility footer----------*/
footer{
    background:#353535;
    padding:30px 0 20px;
}
.utility-footer {
    max-width: 980px;
    margin:0 auto;
    text-align: center;
    color:white;
    font-weight:200;
    font-size:12px;
}

/*----------Case Studies----------*/
.cs-banner-inner{
    display:flex;
    justify-content: space-between;
    align-items: center;
    padding:5% 0;
}
.cs-banner-content{
    display:flex;
    justify-content: space-between;
    align-items: center;
}
.cs-banner-img{
    width:35%;
    padding-right:20px;
}
.cs-banner-text{
    padding-left:20px;
}
.cs-banner-arrow{
    font-weight: 700;
    font-size: 28px;
    color:#ccc;
}
.cs-banner-arrow .fa-angle-right{
    padding: 50px 0px 50px 35px;
    
}
.cs-banner-arrow .fa-angle-left{
    padding: 50px 35px 50px 0px;
}
.cs-title{
    text-align:left;
    margin-bottom:15px;
    padding-top:10px;
}
h2.cs-title, h3.cs-title{
    text-transform:uppercase;
}
.case-study-menu{
    width:100%;
    margin:40px 0 0;
    background:#fff;
    position:sticky;
    top:48px;
}

.case-study-menu ul{
    height:49.78px;
    list-style: none;
    display:flex;
    flex-direction:row;
    flex-wrap:nowrap;
    align-items: center;
    justify-content: flex-start;
    border-top:1px solid #ccc;
    margin:0;
}
.case-study-menu ul li a{
    display:block;
    text-decoration: none;
    color:#555;
    padding:10px 80px 10px 0;
    font-weight: 200;
    text-transform: uppercase;
    font-size:14px;
}
.cs-section{
    padding:50px 20px;
    display: flex;
    justify-content:space-between;
    align-items: flex-start;
}
.cs-section-l{
    width:40%;
}
.cs-section-r{
    width:60%;
    display: flex;
    justify-content: flex-end;
}
.cs-section .banner-button-inverse{
    width:55%;
}
.cs-section-image{
    width:90%;
}
.cs-section-image-small{
    width:70%;
}
.cs-section-lg{
    padding:50px 10px;
    display: flex;
    flex-direction:column;
}
.cs-section-full{
    width:100%;
}
.cs-section-full .cs-section-image{
    width:100%;
    padding-top:40px;
}
.cs-section-full .cs-section-image-creative{
    width:100%;
    padding-top:0;
}
/**********Thank you**********/
.thankyou{
    min-height:500px;
    text-align: center;
    padding-top:100px;
}
.thankyou .banner-button-inverse{
    margin:20px auto 0;
    width:65%;
    max-width:233px;
}
/***********RESPONSIVE***********/

@media(max-width:940px){
    
    nav ul  {
        width:100%;
        margin:0;
        display:none;
        position: absolute;
        background: #353535;
        top:50px;
    }
    
    nav ul li {
        width:100%;
    }
    
    nav ul li a {
        text-align:left;
        padding:1% 20px;
        font-size:1em;
        color:white;
        border-top:white solid 1px;
    }
    nav ul li:last-child a{
        border-bottom:white solid 1px;
    }
    nav ul li a:hover {
        border-right: none;
        border-left: none;
    }
    #menu-icon {
        display: block;
    }
    
    .cs-banner-inner{
        align-items:flex-end;
    }
    .cs-banner-content{
        flex-direction:column;
    }
    .cs-banner-img{
        width:55%;
        margin-bottom:40px;
        padding-right:0;
    }
    .cs-banner-text{
        padding-left:0;
    }
    .case-study-menu{
        display:none;
    }
    .cs-section{
        flex-direction:column;
    }
    .cs-section-l, .cs-section-r{
        width:100%;
        align-items: center;
        align-content:center;
        justify-content: center;
    }
    .cs-section-image{
        width:100%;
        padding-top:40px;
    }
    .cs-section-image-small{
        padding-top:40px;
    }
    .cs-section .banner-button-inverse{
        width:35%;
        margin:0 auto;
    }
    .contact .content{
        display: flex;
        flex-direction:column;
        justify-content: space-between;
        align-items: center;
    }
    .contact-container{
        width:100%;
        background:url("./images/seth-main2-cut-out-transparent7.png") left  center no-repeat;
        background-size: auto 80%;
    }
    .contact-text, .contact-form{
        width:56%;
    }
}
@media(max-width:768px){
    .thumbnail {
        width:48%;

    }
}
@media(max-width:480px){
    .cs-banner-img{
        width:95%;
    }
    .cs-banner-arrow .fa-angle-right{
        padding: 50px 0px 50px 20px;

    }
    .cs-banner-arrow .fa-angle-left{
        padding: 50px 20px 50px 0px;
    }
    .cs-section .banner-button-inverse{
        width:65%;
    }
    .contact-container{
        justify-content:flex-end;
        height:auto;
        min-height:250px;
        width:100%;
        background:none;
    }
    .contact-text, .contact-form{
        width:100%;
    }
    .banner-logo{
    width:20%;
    }
    .work-thumbnails{
        justify-content: center;
    }
    .thumbnail {
        width:90%;
        margin:5%;
    }
    .skill{
        width:25%;
    }
}





