/*
Theme Name: MTV Design
Theme URI: http//dobble.com.au
Description: MTV Design WP Theme
Author: Dobble Pty Ltd
Author URI: http://dobble.com.au
Version:1.0
*/
* {
    -webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
    outline: none;
}
html,
body {
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}
body {
    font-family: 'Urbanist', sans-serif;
    font-weight: 300;
    font-size: 20px;
    line-height: 185%;
    background-color: #000;
    color: #fff;
}
.content-area {
    width: 100%;
    max-width: 1200px;
    padding: 30px;
    position: relative;
    margin: 0 auto;
}
a {
    text-decoration: none;
    color: inherit;
	-webkit-transition: all 0.2s ease;
	-moz-transition: all 0.2s ease;    
    -o-transition: all 0.2s ease;
	transition: all 0.2s ease;
}
a:hover {
    color: #1c86e8;
}
.svg-icons {
    fill: #fff;
    width: 17px;
    height: 17px;
    -webkit-transition: fill 0.2s ease;
	-moz-transition: fill 0.2s ease;    
    -o-transition: fill 0.2s ease;
	transition: fill 0.2s ease;
}
.svg-social {
    width: 25px;
    height: 25px;
}
a:hover .svg-icons {
    fill: #1c86e8;
}
.btn-icons {
    fill: #fff;
    width: 22px;
    height: 22px;
    margin-right: 6px;
    -webkit-transition: fill 0.2s ease;
    -moz-transition: fill 0.2s ease;
    -o-transition: fill 0.2s ease;
	transition: fill 0.2s ease;
}
a:hover .btn-icons {
    fill: #000;
}
ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}
#mobile-nav-container {
    width: 100%;
    max-width: 260px;
    height: 100%;
    background-color: #000;
    display: block;
    position: fixed;
    right: -260px;
    top: 0;
    z-index: 9999;

    transition: all 0.5s ease-in-out;
}
#mobile-nav-container ul li {
    width: 100%;
    color: #fff;
    font-size: 14px;
    line-height: 22px;
    font-weight: 400;
    outline: none;
}
#mobile-nav-container ul li a {
    padding: 12px 18px;
    width: 100%;
    height: 100%;
    display: block;
}
#mobile-nav-container ul li a:hover {
    color: #fff;
    background-color: #1c86e8;
}
.menu-icon {
    width: 35px;
    height: 23px;
    position: absolute;
    top: 44px;
    right: 30px;
    display: none;
    cursor: pointer;
    z-index: 9999;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: 0.5s ease-in-out;
    -moz-transition: 0.5s ease-in-out;
    -o-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
}
.menu-icon:hover span {
    background-color: #1c86e8;
}
.menu-icon span {
    display: block;
    position: absolute;
    height: 5px;
    width: 100%;
    background: #fff;
    border-radius: 0px;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: 0.25s ease-in-out;
    -moz-transition: 0.25s ease-in-out;
    -o-transition: 0.25s ease-in-out;
    transition: 0.25s ease-in-out;
}
.menu-icon span:nth-child(1) {
    top: 0px;
}
.menu-icon span:nth-child(2) {
    top: 9px;
}
.menu-icon span:nth-child(3) {
    top: 18px;
}
.menu-icon.open span {
    border-radius: 5px;
}
.menu-icon.open span:nth-child(1) {
    top: 9px;
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    -o-transform: rotate(135deg);
    transform: rotate(135deg);
}
.menu-icon.open span:nth-child(2) {
    opacity: 0;
}
.menu-icon.open span:nth-child(3) {
    top: 9px;
    -webkit-transform: rotate(-135deg);
    -moz-transform: rotate(-135deg);
    -o-transform: rotate(-135deg);
    transform: rotate(-135deg);
}
#menuToggle {
    display: none;
}
#menuToggle:checked ~ #mobile-nav-container {
    right: 0;
}
#menuToggle:checked ~ #sticky-header .menu-icon {
    /*position:fixed;*/
    right: 270px;
}
#menuToggle:checked ~ #sticky-header .menu-icon span {
    background-color: #fff;
}
.dimmer {
    width: 100%;
    height: 100%;
    display: none;
    background-color: rgba(255, 255, 255, 1);
    position: fixed;
    z-index: 9998;
    top: 0;

    transition-delay: all 2s;
    transition: all 0.5s ease-in-out;
}
#site-details {
    background-color: #111111;
    color: #fff;
    font-size: 15px;
    text-align: center;
}
#quicklinks ul li {
    display: inline-block;
    padding: 0px 10px;
    height: 20px;
    vertical-align: middle;
    line-height: 20px;
}
#quicklinks ul li:after {
    margin-left: 15px;
    content: "|";
}
#quicklinks ul li:last-child:after {
    content: "";
}
#site-author {
    margin: 20px auto 0;
    line-height: 175%;
}
#site-author a:hover {
    color: #6abc9f;
}

#sticky-header {
    background-color: #000;
    color: #fff;
    z-index: 9998;
}
.sticky {
    position: fixed;
    top: 0;
    width: 100%;
}
.sticky + #main-area {
    margin-top: 112px;
}
#logo {
    padding: 0;
    margin-top: 8px;
    margin-bottom: -5px;
}
nav#primary-menu {
    position: absolute;
    right: 30px;
    top: 37px;
}
nav#primary-menu li {
    display: inline-block;
    font-weight: 600;
    margin: 0 5px;
    font-size: 18px;
}
nav#primary-menu li:last-child {
    margin-right: 0;
}
nav#primary-menu li a {
    padding: 7px;
    width: 100%;
    height: 100%;
    display: block;
}
nav#primary-menu li a:last-child {
    padding-right: 0px;
}
nav#primary-menu li a:hover {
    color: #1c86e8;
}
h1 {
    font-weight: 400;
    font-size: 40px;
    text-align: center;
    line-height: 120%;
}
p a,
ul.content-points li a {
    color: #1c86e8;
}
.center-align {
    text-align: center;
}
.slideshow {
    height: 850px;
    display: block;
}
.slideshow img {
    object-fit: cover;
}
.image-wrappers {
    text-align: center;
    margin: 60px 0 50px;
}
.btn {
    border: 1px solid #fff;
    background-color: transparent;
    font-weight: 300;
    padding: 15px 22px 11px;
    display: inline-block;
}
.btn:hover {
    background-color: #fff;
    color: #111;
}
.fa {
    margin-right: 10px;
}
#projects-section {
    padding: 30px 30px 60px;
    background-image: url(images/projects-section-bg.jpg);
    background-attachment: fixed;
    text-align: center;
}
#footer-widget-area {
    border-top: 4px solid #1c86e8;
    text-align: center;
    padding: 30px;
}
.footer-widget {
    display: inline-block;
    width: 100%;
    padding: 20px;
    margin: 0 auto;
    text-align: left;
    font-size: 16px;
    font-weight: 300;
    vertical-align: top;
}
.footer-widget span {
    display: block;
}
.footer-widget span .fa {
    margin-right: 5px;
}
#social-media-links-footer {
    font-size: 28px;
}
#social-media-links-footer .fa {
    margin-right: 0;
}
.size33 {
    max-width: 350px;
}
.size66 {
    max-width: 810px;
}

.fw-heading {
    font-size: 22px;
    font-weight: 400;
}
input,
textarea {
    width: 100%;
    display: block;
    font: inherit;
    border: none;
    border-bottom: 1px solid #fff;
    padding: 10px 0 0;
    background-color: transparent;
    -webkit-appearance: none;
    -moz-appearance: none;    
	appearance: none;
    margin-bottom: 8px;
    color: #fff;
}
textarea {
    overflow: hidden;
    resize: none;
    height: 100px;
}
input[type="submit"],
button[type="submit"] {
    font: inherit;
    color: #fff;
    cursor: pointer;
    padding: 5px 20px 3px;
}
button .far {
    margin-right: 8px;
}

#projects {
    width: 100%;
    max-width: 1200px;
    padding: 40px 20px;
    margin: 0 auto;
}
.project {
    width: 340px;
    height: 270px;
    display: inline-block;
    background-color: #000;
    vertical-align: top;
    margin: 15px;
    position: relative;
}
.project img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}
.project a {
    position: absolute;
    color: #fff;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    padding: 0;
    z-index: 9999;
}
.project .project-overlay {
    opacity: 0;
    position: absolute;
    color: #fff;
    background: rgba(0, 0, 0, 0.8);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    padding: 0;
    display: table-cell;
    vertical-align: middle;
    text-align: center;
    font-size: 40px;
    line-height: 200px;
    -webkit-transition: opacity 0.3s ease-in-out;
    -moz-transition: opacity 0.3s ease-in-out;
    -ms-transition: opacity 0.3s ease-in-out;
    -o-transition: opacity 0.3s ease-in-out;
    transition: opacity 0.3s ease-in-out;
    z-index: 1;
    font-size: 16px;
    line-height: 185%;
}
.project:hover .project-overlay {
    opacity: 1;
}
.project .project-overlay-details {
    width: 330px;
    height: 160px;
    position: absolute;
    top: 50%;
    margin-top: -80px;
    left: 5px;
    overflow: hidden;
}
.project .project-overlay span {
    display: block;
}
.project .project-overlay span.proj-name {
    font-size: 18px;
    font-weight: 600;
}
.project .project-overlay span.proj-address {
    font-size: 15px;
    font-weight: 300;
}
.project .project-overlay span.view-project {
    margin-top: 16px;
    border: 1px solid #fff;
    padding: 3px 7px 1px;
    text-transform: uppercase;
    width: auto;
    display: inline-block;
}

h1.page-title {
    border-top: 1px solid #fff;
    border-bottom: 1px solid #fff;
    padding: 30px 0 25px;
    margin: 0 auto;
}
section.enquire-section {
    border-top: 1px solid #fff;
    text-align: center;
}
.banner {
    padding: 300px 30px;
    text-align: center;
    background-attachment: fixed;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}
.banner .heading {
    font-size: 50px;
    font-weight: 600;
    margin: 0 auto;
}
.banner .location {
    font-size: 18px;
}
.mb-0-auto {
    margin: 0 auto;
}
.mt-20 {
    margin-top: 20px;
}

.hs-container {
    position: relative;
    height: 800px;
}
.home-slider {
    width: 100%;
    height: 100%;
    background-color: #000;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
}
.home-slider img {
    width: 100%;
    height: 800px;
    object-fit: cover;
}
.hs-container .overlay {
    width: 273px;
    height: 153px;
    position: absolute;
    top: 50%;
    margin-top: -76.5px;
    left: 50%;
    margin-left: -136.5px;
}
.hs-container .overlay img {
    width: 100%;
}
.at-symbol {
	display:inline-block !important;
	color:#fff;
	
	-webkit-transition: all 0.2s ease;
	-moz-transition: all 0.2s ease;    
    -o-transition: all 0.2s ease;
	transition: all 0.2s ease;
}
.at-symbol:after {
	content:"@";
}
a:hover .at-symbol {
	color:#1c86e8;
}
@media all and (max-width: 1160px) {
    #primary-menu {
        display: none;
    }
    .menu-icon {
        display: block;
    }
    #mobile-nav-container {
        display: block;
    }
    #menuToggle:checked ~ .dimmer {
        display: block;
        background-color: rgba(0, 0, 0, 0.7);
    }
    .size66 {
        max-width: 350px;
    }
}
@media all and (max-width: 960px) {
    .hs-container,
    .home-slider img {
        height: 550px;
    }
    .hs-container .overlay {
        width: 191.1px;
        height: 107.1px;
        position: absolute;
        top: 50%;
        margin-top: -53.55px;
        left: 50%;
        margin-left: -95.55px;
    }
}
@media all and (max-width: 800px) {
    .size33,
    .size66 {
        max-width: none;
    }
    nav#quicklinks li {
        display: block;
        margin: 5px auto;
    }
    nav#quicklinks li:after {
        content: "";
        margin: 0;
    }
}
@media all and (max-width: 720px) {
    .banner {
        padding: 150px 30px;
    }
    .banner .heading {
        font-size: 36px;
    }
    .banner .location {
        font-size: 16px;
    }
    body {
        font-size: 16px;
    }
    #projects-section {
        padding: 30px 15px 60px;
    }
    #projects {
        padding: 40px 0;
    }
    .hs-container,
    .home-slider img {
        height: 400px;
    }
    .hs-container .overlay {
        width: 163.8px;
        height: 91.8px;
        position: absolute;
        top: 50%;
        margin-top: -45.9px;
        left: 50%;
        margin-left: -81.9px;
    }
}
@media all and (max-width: 480px) {
    #site-details {
        line-height: 150%;
    }
    #legal-links ul {
        margin-bottom: 20px;
    }
    #legal-links ul li {
        display: block;
        margin: 10px auto;
        height: auto;
        border: none;
    }
    .hs-container,
    .home-slider img {
        height: 250px;
    }
    .hs-container .overlay {
        width: 136.5px;
        height: 76.5px;
        position: absolute;
        top: 50%;
        margin-top: -38.25px;
        left: 50%;
        margin-left: -68.25px;
    }
}