/* ------------------------------------------ */
/*             TABLE OF CONTENTS
/* ------------------------------------------ */
/*   01 - GENERAL SETTINGS SECTION  */
/*   02 - TYPOGRAPHY SECTION  */
/*   03 - HEADER SECTION  */
/*   04 - NAVIGATION SECTION */
/*   05 - ABOUT SECTION */
/*   06 - SKILLS SECTION */
/*   07 - SERVICES SECTION */
/*   08 - RESUME SECTION */
/*   09 - WORK SECTION */
/*   10 - TESTIMONIALS SECTION */
/*   11 - REVIEW SECTION */
/*   12 - PRICE SECTION */
/*   13 - CONTACT SECTION */
/*   14 - SOCIAL MEDIA SECTION */
/*   15 - FOOTER SECTION */
/*   16 - RESPONSIVE SECTION */



/******** GENERAL SETTINGS SECTION START ********/

html,
body {
    height: 100%;
}

#particles {
    width: 100%;
    height: 100%;
    padding: 0;
    z-index: 2;
    position: absolute;
} 

::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #1b1b1b;
    opacity: 1; /* Firefox */
    font-weight: 300;
    font-size: 8pt;
    letter-spacing: 2pt;
    font-family: 'Montserrat', sans-serif;
} 

.padding {
    padding: 0 50px;
}

.preloader-wrap {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: #0C0C0C;
    z-index: 9999;
    overflow: hidden;
}

.preloader {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80px;
    height: 60px;
    margin: -30px 0 0 -40px;
}

.preloader .lines {
    width: 80px;
    height: 40px;
    position: absolute;
}

.preloader .lines .line {
    width: 90px;
    height: 15px;
    background-color: #fff;
    position: absolute;
    clip: rect(0,0,20px,0);
}

.preloader .lines .line.line-1 {
    top: 0;
    animation: slide 2s ease 0.1s infinite;
}

.preloader .lines .line.line-2 {
    top: 15px;
    animation: slide 2s ease .25s infinite;
}

.preloader .lines .line.line-3 {
    top: 30px;
    animation: slide 2s ease .5s infinite;
}

.preloader .loading-text {
    position: absolute;
    top: 50px;
    text-align: center;
    width: 100%;
    color: #fff;
    font-size: 14px;
    font-family: "Montserrat",sans-serif;
    letter-spacing: 1px;
    line-height: 10px;
    height: 10px;
    text-transform: uppercase;
}

@keyframes slide {
    0% {
        clip: rect(0,0,20px,0);
    }

    30% {
        clip: rect(0,80px,20px,0);
    }

    50% {
        clip: rect(0,80px,20px,0);
    }

    80% {
        clip: rect(0,80px,20px,80px);
    }

    100% {
        clip: rect(0,80px,20px,80px);
    }
}

@keyframes fade {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

/******** TYPOGRAPHY SECTION START ********/

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
}


li, p {
    font-family: 'Roboto', sans-serif;
}

.title {
    margin: 0;
    font-size: 28pt;
    font-weight: 700;
    letter-spacing: 0.2pt;
    color: #1b1b1b;
     
}

/******** HEADER SECTION START ********/

.header {
	background: url('../img/ava.jpg') no-repeat center center;
	background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    width: 100%;
    height: 100%;
    position: relative;
    margin: 0;
}

.header-wrapper {  
    -webkit-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    position: absolute;
    top: 48%;
    left: 25%;
    max-width: 450px;
}

.header-wrapper h1 {
    font-size: 24pt;
    font-weight: 700;
    letter-spacing: 4pt;
    line-height: 30pt;
    color: #fff;
    text-transform: uppercase; 
}

.header-wrapper p {
    font-size: 10pt;
    font-weight: 300;
    letter-spacing: 2pt;
    color: #9e9e9e;
    margin-top: 10px;
}

/* scroll down */
.scrolldown {
    position: absolute;
    bottom: 0;
    right: 0;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    -webkit-transform-origin: right top 0;
    -ms-transform-origin: right top 0;
    transform-origin: right top 0;
    float: right;
    z-index: 5;
}

.scrolldown i {
    padding-left: 9px;
}

.scrolldown a:hover, .scrolldown a:focus, .scrolldown a:active {
    color: #fff !important;
    text-decoration: none;
}

html[data-useragent*='MSIE 10.0'] .scrolldown,
.oldie .scrolldown {
    display: none;
}

.scroll-icon {
    display: inline-block;
    font-family: "montserrat", sans-serif;
    font-size: 10pt;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 3pt;
    color: #fff !important;
    background: transparent;
    position: relative;
    top: 20px;
    right: 42px;
    -webkit-animation: animate-it 3s ease infinite;
    animation: animate-it 3s ease infinite;
}

/* vertical animation */
@-webkit-keyframes animate-it {
  0%, 60%, 80%, 100% {
    -webkit-transform: translateX(0);
  }
  20% {
    -webkit-transform: translateX(-5px);
  }
  40% {
    -webkit-transform: translateX(20px);
  }
}
@keyframes animate-it {
  0%, 60%, 80%, 100% {
    -webkit-transform: translateX(0);
  }
  20% {
    -webkit-transform: translateX(-5px);
  }
  40% {
    -webkit-transform: translateX(20px);
  }
}

/******** NAVIGATION SECTION START ********/
 
@media (min-width:1000px){
    .navbar{
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 250px;
        min-height: 100%;
        border-right: 2px solid #1b1b1b; 
        background: #000000; 
        float: left;
        overflow: hidden;
        z-index: 1000;
    }

    .navbar .navbar-brand{
        font-family: 'Montserrat', sans-serif;
        font-size: 18pt;
        font-weight: 700;
        letter-spacing: 2pt;
        padding: 0 0 0 50px;
        color: #fff;
    }

    .navbar .navbar-nav{
        display: block;
        overflow: hidden;
        margin-top: 70px;
        list-style: none;
        padding: 90px 0 0 55px;
    }

    .margin-top {
        margin-top: 35px;
    }

    .navbar .navbar-nav>li>a {
        color: #fff;
        font-family: 'Roboto', sans-serif;
        font-size: 12pt;
        font-weight: 400;
        letter-spacing: 0.4pt;
    }
 
    .navbar .navbar-nav li.active > a {
        color: #dcdcdc;
    }

    .navbar .bottom{
        position: absolute;
        padding: 0 0 0 50px;
        bottom: 70px;
    }

    .navbar .bottom-info p{
        color: #969595;
        font-size: 12px;
        letter-spacing: 1px;
        line-height: 18px;
    }

    .navbar .bottom-info a{
        color: #dcdcdc;
        text-decoration: none;
    }

}


/*  Main  */
.main-wrap {
    width: 100%;
    height: 100%;
    padding-left: 250px;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    position: relative;
    z-index: 55;
    clear: both;
}

/******** ABOUT SECTION START ********/

.about {
    padding: 130px 0;
    border-bottom: 1px solid #dcdcdc;
}

.about-me-img {
    margin-top: 0px;
    position: relative;
    z-index: 1;
}
 
.about .text-wrapper {
    padding: 20px 30px 30px 0px;
}  

.about h3 {
    font-size: 16pt;
    font-weight: 700;
    letter-spacing: 0.4pt;
    color: #000000;
}

.about h5 {
    font-size: 9pt;
    font-weight: 700;
    letter-spacing: 1pt;
    margin-top: 20px;
}

.about p {
    font-size: 11pt;
    letter-spacing: 1pt;
    line-height: 19pt;
    margin: 0 auto;
    padding-top: 10px;
    color: #3B3B3B;
}

.social-icons {
    margin-top: 12px;
    margin-bottom: 20px;
}

.social-icons ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.social-icons ul li {
    display: inline;
}

.social-icons ul li a {
    display: inline-block;
    margin-left: 8px;
    margin-right: 8px;
    margin-bottom: 15px;
    border-radius: 180px;
    border: 1px solid #1b1b1b;
    color: #1b1b1b;
    line-height: 50px;
    width: 50px;
    height: 50px;
    text-align: center;
    font-size: 15pt;
}

.about ul {
    list-style: none;
    margin: 0;
    padding-left: 0px;
}

.about ul li {
    font-family: 'Roboto', sans-serif;
    font-size: 12pt;
    letter-spacing: 0.4pt;
}

.table {
    margin-bottom: 0px;
}

.table > tbody > tr > td {
    color: #1b1b1b; 
    font-family: 'Montserrat', sans-serif;   
}

.table > tbody > tr > td > span {
    font-weight: 700;
    font-size: 10pt;
}

.table tr > td {
    padding: 11px 0px;
}

tr:nth-child(1) > td {
    border-top:0px;
}

tr > td:nth-child(1){
    background-color: none;
    font-weight: 500;
    font-size: 13px;
    color: #888888;
    width: 140px;
}

tr > td:nth-child(2) {
    font-weight: 500;
    color: #1b1b1b;
    background: none;
}

/******** SKILLS SECTION START ********/

.skill {
    padding: 130px 0;
    border-bottom: 1px solid #dcdcdc;
}

.single_progress_bar .progress {
    height: 2px;
    margin-bottom: 40px;
    overflow: hidden;
    background-color: #dcdcdc;
    border-radius: 0px;
    -webkit-box-shadow: inset 0 1px 2px rgba(0,0,0,.1);
    box-shadow: inset 0 1px 2px rgba(0,0,0,.1);
}

.single_progress_bar .progress-bar {
    background-color: #1b1b1b;
}

.single_progress_bar p{
    color: #898989;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 1pt;
    margin-bottom: 20px;
    margin-left: 0px;
    margin-top: 50px;
}

/******** SERVICES SECTION START ********/

.services {
    padding: 130px 0;
    border-bottom: 1px solid #dcdcdc;       
}

.services .services-detail {
    border-radius: 4px;
    transition: all 0.3s ease-in-out;
    position: relative;
    top: 0px;
    padding: 50px 0px;
}

.services .services-detail .fa {
    font-size: 30px;
    color: #1b1b1b;
}

.services-detail h5 {
    color: #1b1b1b;
    font-size: 14pt;
    font-weight: 700;
    letter-spacing: 1pt;
    margin-top: 17px;
}

.services hr {
    width: 25px;
    height: 1px;
}

.services-detail p {
    color: #888;
    font-size: 12pt;
    letter-spacing: 0.4pt;
}

/******** RESUME SECTION START ********/

.resume {
    padding: 130px 0;
    border-bottom: 1px solid #dcdcdc;
}

.padding-top {
    padding-top: 50px;
}
 
.resume .nav { 
    margin: 0;
    justify-content: right;
}

.resume .nav-tabs {
    margin-bottom: 50px;
    border: none;
}

.resume .nav-tabs .nav-link {
    background: none;
    border: 1px solid #dcdcdc;
    border-radius: 6px;
    color: #1b1b1b;
    font-family: 'Montserrat', sans-serif;
    font-size: 11pt;
    font-weight: 700;
    letter-spacing: 0.5pt;
    cursor: pointer;
    padding: 11px 17px;
    margin-right: 15px;
}

.resume .nav-tabs .nav-link:hover {
    border: 1px solid #1b1b1b;
}

.resume .resume .nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link:hover
.resume .resume .nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
   color: #969595;
}
 
.resume .year {
    font-size: 12pt;
    font-weight: 400;
    letter-spacing: 2pt;
    color: #1b1b1b;
}

.resume h5 {
    font-size: 14pt;
    font-weight: 700;
    letter-spacing: 0.4pt;
    line-height: 20pt;
    color: #1b1b1b;
    margin-bottom: 12px;
}

.resume p {
    font-size: 12pt;
    letter-spacing: 0.4pt;
    color: #969595;
}

.resume hr {
    margin: 42px 0px;
    width: auto;
    height: 1px;
    background-color: #969595;
} 

/******** WORK SECTION START ********/

.work {
    padding: 130px 0;
    border-bottom: 1px solid #dcdcdc;
}

.work ul {
    padding: 0px;
    margin: 0;
    text-align: right;
}
 
.work ul li {
    cursor: pointer;
    margin: 10px 20px;
    color: #1b1b1b;
    font-size: 10pt;
    letter-spacing: 1pt;
    font-weight: 300;
    display: inline-block;
}

.borderFade {
    padding-bottom: 10px;
    color: #1b1b1b;
    position: relative;
}

.borderFade::after {
    content: '';
    position: absolute;
    height: 2px;
    width: 100%;
    left: 0;
    bottom: 0;
    opacity: 0;
    transform: translateY(3px);
    background: #1b1b1b;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.borderFade:hover::after {
    opacity: 1;
    transform: translateY(0);
}

.work .filtr-container {
    margin-top: 50px;
}

.work .filtr-container img {
    width: 100%;
    height: 100%;
}

.work .filtr-container img:hover {
    cursor: pointer;
}

.margin {
    margin-bottom: 150px;
}

.work .portfolio-thumb {
    position: relative;
    padding: 0;
}

.work .portfolio-thumb .portfolio-overlay {
    position: absolute;
    background: #1b1b1b;
    color: #ffffff;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    text-align: center;
    vertical-align: top;
    opacity: 0;
    transition: all 0.4s ease-in-out;
}

.work .portfolio-item {
    position: absolute;
    top:50%;
    left: 50%;
    -webkit-transform:translate(-50%,-50%);
      -ms-transform:translate(-50%,-50%);
          transform:translate(-50%,-50%);
}

.work .portfolio-thumb:hover .portfolio-overlay {
    opacity: 0.7;
}

.work .portfolio-item h3 {
    font-size: 12pt;
    font-weight: 700;
    letter-spacing: 1pt;
}

/* overlay at start */
.mfp-fade.mfp-bg {
    opacity: 0;
    -webkit-transition: all 0.5s ease-out;
    -moz-transition: all 0.5s ease-out;
    transition: all 0.5s ease-out;
}
/* overlay animate in */
.mfp-fade.mfp-bg.mfp-ready {
    opacity: 0.8;
}
/* overlay animate out */
.mfp-fade.mfp-bg.mfp-removing {
    opacity: 0;
}

/* content at start */
.mfp-fade.mfp-wrap .mfp-content {
    opacity: 0;
    -webkit-transition: all 0.15s ease-out;
    -moz-transition: all 0.15s ease-out;
    transition: all 0.15s ease-out;
}
/* content animate it */
.mfp-fade.mfp-wrap.mfp-ready .mfp-content {
    opacity: 1;
}
/* content animate out */
.mfp-fade.mfp-wrap.mfp-removing .mfp-content {
    opacity: 0;
}

/******** TESTIMONIALS SECTION START ********/

.clients {
    padding: 130px 0;
    border-bottom: 1px solid #dcdcdc;
}

.logos {
    background-color: #fafbfc;
    padding: 50px 0px;
}

.logos .client-wrap {
    padding: 60px 0px;
}

.logos img {
    width: 50%;
}

/******** REVIEW SECTION START ********/
 
.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    padding: 50px 20px;
    font-size: 18px;
    background: #fff;

    /* Center slide text vertically */
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}

.swiper-wrapper img {
    width: 100px;
    border-radius: 180px;
    margin-left: 20px;
}

.swiper-wrapper .review-wrap {
    filter: grayscale(100%);
    -webkit-filter: grayscale(100%);
    transition: filter 600ms ease;
    -webkit-transition: -webkit-filter 600ms ease
}

.swiper-wrapper .review-wrap:hover {
    cursor: pointer;
    filter: grayscale(0);
    -webkit-filter: grayscale(0);
}

.swiper-wrapper .review-text {
    margin-top: -18px; 
    padding: 30px 19px 25px 19px;
    font-size: 11pt;
    font-weight: 300;
    letter-spacing: 1pt;
    border-radius: 8px;
    border: 1px solid #dcdcdc;
    color: #1b1b1b;
    line-height: 19pt;
}

.swiper-wrapper h4 {
    margin-top: 18px;
    font-size: 12pt;
    font-weight: 700;
    color: #1b1b1b;
}

/******** PRICE SECTION START ********/

.price {
    padding: 130px 0;
    border-bottom: 1px solid #dcdcdc;
}

.price-wrapper {
    margin-top: 65px;
    background-color: #fff;
    padding-top: 20px;
    padding-bottom: 60px;
    border: 1px solid #1b1b1b;
    border-radius: 8px;
}

.price-wrapper .tariff {
    margin-top: 15px;
    font-weight: 300;
    font-size: 8pt;
    letter-spacing: 1pt;
    color: #1b1b1b;
    text-transform: uppercase;
}

.price-wrapper h2 {
    font-size: 32pt;
    font-weight: 400;
    letter-spacing: 0.2pt;
    margin-bottom: 5px;
    color: #1b1b1b;
}

.price-wrapper .small {
    font-size: 12pt;
}

.price-wrapper ul {
    padding: 0;
    margin-top: 10px;
}

.price-wrapper li {
    font-size: 11pt;
    font-weight: 300;
    letter-spacing: 1pt;
    line-height: 31px;
    color: #1b1b1b;
    list-style: none;
}

.price-wrapper .btn-default {
    border-radius: 8px;
    border: 1px solid #dcdcdc;
    background: none; 
    text-transform: uppercase;
    margin-top: 12px;
    padding: 20px 35px;
}

.btn-default h4 {
    font-size: 12pt;
    font-weight: 700;
    color: #1b1b1b;
    letter-spacing: 0.4pt;
    margin: 0;
}

.price-wrapper .btn-default:hover {
    border: 1px solid #1b1b1b;
    transition: all 0.3s ease-in-out;
}

/******** CONTACT SECTION START ********/

.contact {
    padding: 130px 0;
    border-bottom: 1px solid #dcdcdc;
}

.contact h4 {
    margin-top: 20px;
    color: #1b1b1b;
    font-size: 10pt;
    font-weight: 700;
    letter-spacing: 1pt;
}

.contact h3 {
    margin-top: 12px;
    font-size: 12pt;
    letter-spacing: 1pt;
}

#form {
    padding: 40px 0 40px 0;
}

.form-bg .name {
    width: 100%;
    height: 52px;
    padding: 15px 15px;
    font-size: 10pt;
    background-color: transparent;
    border: 0;
    border-bottom: 1px solid #dcdcdc;
    color: #1b1b1b;
}

.form-bg .name:focus {
    transition: border .6s;
    -webkit-transition: border .6s;
    outline: none;
    border-bottom: 1px solid #1b1b1b;
}

.form-bg .email {
    margin-top: 30px;
    width: 100%;
    height: 52px;
    padding: 15px 15px;
    font-size: 10pt;
    background-color: transparent;
    border: 0;
    border-bottom: 1px solid #dcdcdc;
    color: #1b1b1b;
}

.form-bg .email:focus {
    transition: border .6s;
    -webkit-transition: border .6s;
    outline: none;
    border-bottom: 1px solid #1b1b1b;
}

.form-bg .msg {
    margin-top: 30px;
    width: 100%;
    height: 130px;
    padding: 15px 15px;
    font-size: 10pt;
    background-color: transparent;
    border: 0;
    border-bottom: 1px solid #dcdcdc;
    color: #1b1b1b;
}

.form-bg .msg:focus {
    transition: border .6s;
    -webkit-transition: border .6s;
    outline: none;
    border-bottom: 1px solid #1b1b1b;
}

.form-bg .btn {
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    font-size: 10pt;
    letter-spacing: 2pt;
    color: #1b1b1b;
    background-color: transparent;
    border-radius: 12px;
    border: 1px solid #dcdcdc;
    padding: 15px 40px;
    margin-top: 50px;
}

.form-bg .btn:hover {
    border: 1px solid #1b1b1b;
    transition: all 0.1s ease-out;
}

/******** SOCIAL MEDIA SECTION START ********/

.footer-social {
    margin-top: 50px;
}

/******** FOOTER SECTION START ********/

footer h4 {
    font-size: 8pt;
    letter-spacing: 1pt;
    margin: 80px auto;
    color: #1b1b1b;

}

/******** RESPONSIVE SECTION START ********/

@media (max-width:1300px) {
    .header-wrapper {
        -webkit-transform: translate(-50%,-50%);
        transform: translate(-50%,-50%);
        position: absolute;
        top: 48%;
        left: 37%;
    }
}

@media (max-width:1000px){

    .header-wrapper {
        -webkit-transform: translate(-50%,-50%);
        transform: translate(-50%,-50%);
        position: absolute;
        top: 48%;
        left: 35%;
    }

    .navbar-toggler-icon {
        background: none;
    }

    .fa.fa-navicon {
        font-size: 17pt;
        color: white;
    }

    .navbar{
        background: #000000; 
        z-index: 1000;
    }
    
    .navbar .navbar-brand{
        font-size: 18pt;
        font-weight: 700;
        letter-spacing: 2pt;
        letter-spacing: 1pt;
        margin: 20px 20px;
        color: #fff;
    }

    .navbar .navbar-nav{
        display: block;
        overflow: hidden;
        margin-top: 50px;
        margin-bottom: 50px;
        list-style: none;
    }

    .navbar .navbar-nav .nav-item{
        display: block;
        margin-bottom: 5px;
    }

    .navbar .navbar-nav>li>a{
        color: #fff;
        font-family: 'Roboto', sans-serif; 
        font-size: 9pt;
        text-decoration: none;
        text-transform: uppercase;
        letter-spacing: 2pt;
        text-align: center;
    }

    .navbar .navbar-nav li.active > a {
        color: #dcdcdc;
    }

    .navbar .bottom{
        display: none;
    }

    .main-wrap{
        width: 100%;
        position: relative;
        padding-left: 0;
    }

}    

/* Small Devices, Tablets */ 
    @media only screen and (max-width : 768px) {
        .header-wrapper {  
          -webkit-transform: translate(-50%,-50%);
          transform: translate(-50%,-50%);
          position: absolute;
          top: 50%;
          left: 50%;
          text-align: center;
        }
    }

/* Extra Small Devices, Phones */ 
    @media only screen and (max-width : 480px) {
        .header-wrapper {  
          -webkit-transform: translate(-50%,-50%);
          transform: translate(-50%,-50%);
          position: absolute;
          top: 50%;
          left: 50%;
          text-align: center;
        }
        .header-wrapper h1 {
          font-size: 12pt;
          letter-spacing: 10pt;
        }
        .header-wrapper h2 {
          font-size: 10pt;
          letter-spacing: 1pt;
        }
        .scrolldown {
          display: none;
        }
        .resume .nav { 
          justify-content: left;
        }
        .resume .nav-tabs {
          margin-top: 22px;
        }
        .padding-top {
          padding-top: 0;
        }
        .work ul  {
          text-align: left;  
        }
        .work ul li {
          margin: 15px 3px;
        }
        .contact .contact-wrap {
          margin-left: 30px;
          margin-right: 30px;
        }
    }

    @media only screen and (max-width : 375px) {
        .preloader {
            margin: -30px 0 0 -25px;
        }
        .header-wrapper {  
          -webkit-transform: translate(-50%,-50%);
          transform: translate(-50%,-50%);
          position: absolute;
          top: 50%;
          left: 50%;
          text-align: center;
        }
        .header-wrapper h1 {
          font-size: 12pt;
          letter-spacing: 10pt;
        }
        .header-wrapper h2 {
          font-size: 10pt;
          letter-spacing: 1pt;
        }
        .scrolldown {
          display: none;
        }
        .contact .contact-wrap {
          margin-left: 30px;
          margin-right: 30px;
        }
    }

/* Custom, iPhone Retina */ 
    @media only screen and (max-width : 320px) {
        .preloader {
            margin: -30px 0 0 -30px;
        }
        .header-wrapper {  
          -webkit-transform: translate(-50%,-50%);
          transform: translate(-50%,-50%);
          position: absolute;
          top: 50%;
          left: 50%;
          text-align: center;
        }
        .header-wrapper h1 {
          font-size: 12pt;
          letter-spacing: 10pt;
        }
        .header-wrapper h2 {
          font-size: 10pt;
          letter-spacing: 1pt;
        }
        .scrolldown {
          display: none;
        }
        .contact .contact-wrap {
          margin-left: 30px;
          margin-right: 30px;
        }
    }