﻿
@font-face {
    font-family: 'NimbusMonLEE';
    src: url('/fonts/NimbusMonLEE.eot');
    src: url('/fonts/NimbusMonLEE.eot') format('embedded-opentype'), 
         url('/fonts/NimbusMonLEE.woff') format('woff'), 
         url('/fonts/NimbusMonLEE.ttf') format('truetype'), 
         url('/fonts/NimbusMonLEE.svg') format('svg');
    font-weight: normal;
    font-style: normal;
    font-size-adjust: 0.5;
}

@font-face {font-family: "TradeGothicLTBold";
  src: url("/fonts/cb7d0b0968943ceca839712e38df14c1.eot"); 
  src: url("/fonts/cb7d0b0968943ceca839712e38df14c1.eot?#iefix") format("embedded-opentype"), 
       url("/fonts/cb7d0b0968943ceca839712e38df14c1.woff2") format("woff2"), 
       url("/fonts/cb7d0b0968943ceca839712e38df14c1.woff") format("woff"), 
       url("/fonts/cb7d0b0968943ceca839712e38df14c1.ttf") format("truetype"), 
       url("/fonts/cb7d0b0968943ceca839712e38df14c1.svg#Trade Gothic LT Bold") format("svg");                                                                                                  
    font-weight: normal;
    font-style: normal;
    font-size-adjust: 0.5;
}

html {
    overflow-x: hidden;
    overflow-y: hidden;
    -webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
}

body {
    width: 100%;
    height: 100%;
    font-family: Lora,'Times New Roman',"Helvetica Neue",Helvetica,Arial,sans-serif;
    color:rosybrown;
    background-color: #000;
    font-size: 1.3em;
    font-size-adjust: 0.5;
   
}

html {
    width: 100%;
    height: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "TradeGothicLTBold","Helvetica Neue",Helvetica,Arial,sans-serif;
    color: rosybrown;
    margin: 0 0 35px;
    text-transform: uppercase;
    letter-spacing: 3px;
    /*text-shadow: 0px 1px 1px rgba(0, 0, 0, 0.3);*/
}

p {
    color: rosybrown;
    margin: 0 0 40px;
    line-height: 1.6;
    font-style: italic;
    font-size: 1.5em;
}

@media(max-width:768px) {
    p {
        font-size: 1.3em;
    }
}


a {
    color: #e40044;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

    a:hover,
    a:focus {
        text-decoration: none;
        color: #e40044;
        opacity: 0.8;
    }



/*=================== intro ===================*/
.intro {
    width: 100%;
    height: 100%;
    padding: 100px 0;
    text-align: center;
    background: url(/img/intro-bg.jpg) no-repeat bottom center scroll;
    background-color: #000;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
    -o-background-size: cover;
    background-repeat: no-repeat;
}

    .intro .intro-body {
        position: absolute;
        top: 27%;
        left: 0;
        width: 100%;
        z-index: 1001;
    }

        .intro .intro-body .brand-heading {
            font-size:10em;
            letter-spacing:10px;
            color:#e40044
        }

        .intro .intro-body .intro-text {
        }

@media(max-width:768px) {

    .intro .intro-body .brand-heading {
        font-size: 5em;
    }
}

@media(max-width:480px) {

    .intro .intro-body .brand-heading {
        font-size: 3.2em;
    }
}




/*=================== circle button ===================*/
.btn-scroll {
    margin-top: 15%;
    font-size: 4em;
    -webkit-transition: background .3s ease-in-out;
    -moz-transition: background .3s ease-in-out;
    transition: background .3s ease-in-out;
    padding: 0px !important;
    display: inline-block;
}

    .btn-scroll:hover,
    .btn-scroll:focus {
        outline: 0;
    }

    .btn-scroll i.animated {
        float: left;
        display: inline-block;
        padding: 0;
        margin: 0;
        -webkit-transition-property: -webkit-transform;
        -webkit-transition-duration: 1s;
        -moz-transition-property: -moz-transform;
        -moz-transition-duration: 1s;
        -webkit-animation-name: pulse;
        -moz-animation-name: pulse;
        -webkit-animation-duration: 1.5s;
        -moz-animation-duration: 1.5s;
        -webkit-animation-iteration-count: infinite;
        -moz-animation-iteration-count: infinite;
        -webkit-animation-timing-function: linear;
        -moz-animation-timing-function: linear;
    }

        .btn-scroll i.animated:hover {
            -webkit-animation-play-state: paused;
            -moz-animation-play-state: paused;
            color: #e40044;
        }


@-webkit-keyframes pulse {
    0 {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    50% {
        -webkit-transform: scale(1.2);
        transform: scale(1.2);
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@-moz-keyframes pulse {
    0 {
        -moz-transform: scale(1);
        transform: scale(1);
    }

    50% {
        -moz-transform: scale(1.2);
        transform: scale(1.2);
    }

    100% {
        -moz-transform: scale(1);
        transform: scale(1);
    }
}





/*=================== sections ===================*/
#contentBody {
    background-repeat: no-repeat;
}

section {
    text-align: center;
    clear: both;
    display: block;
    margin-bottom: 10em;
}

    section:first-child {
        margin-top: 10em;
    }

    section h2 {
        font-size: 3.5em;
    }

    section#skills li {
        font-size: 1.3em;
        border-bottom: 1px solid rgba(188, 143, 143, 0.5);
        padding: 0 !important;
        margin: 10px;
        margin-top: 0px;
    }

    section#contact li {
        margin: 0 2em;
    }

@media(max-width:768px) {
    section {
        margin-bottom: 6em;
    }

        section:first-child {
            margin-top: 10em;
        }

        section h2 {
            font-size: 1.9em;
        }

        section#skills li {
            font-size: 1.3em;
        }

        section#contact li {
            margin: 0 0.3em;
        }
}




/*=================== footer ===================*/
footer {
    padding: 18px 0;
    background-color: #000;
}

    footer p {
        margin: 0;
    }

    footer .fa {
        color: #e40044;
        padding-left: 2px;
    }





/*=================== extra ===================*/
::-moz-selection {
    text-shadow: none;
    background: #fcfcfc;
    background: rgba(255,255,255,.2);
}

::selection {
    text-shadow: none;
    background: #fcfcfc;
    background: rgba(255,255,255,.2);
}

img::selection {
    background: 0 0;
}

img::-moz-selection {
    background: 0 0;
}

body {
    webkit-tap-highlight-color: rgba(255,255,255,.2);
}


/*canvas*/
.canvas {
    background-color: #000;
    position: absolute;
    overflow: hidden;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 1000;
}


/*pre loader */
.preLoad {
    background-color: #000;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    text-align: center;
    z-index: 10005;
}

    .preLoad img {
        display: inline-block;
        position: absolute;
        top: 50%;
        left: 50%;
        margin-top: -16px;
        margin-left: -17px;
        text-align:center;
          
        -webkit-animation:spin 1s linear infinite;
        -moz-animation:spin 1s linear infinite;
        animation:spin 1s linear infinite;
    }

@-moz-keyframes spin { 100% { -moz-transform: rotate(360deg); } }
@-webkit-keyframes spin { 100% { -webkit-transform: rotate(360deg); } }
@keyframes spin { 100% { -webkit-transform: rotate(360deg); transform:rotate(360deg); } }


#div_error{
    padding:15% 10%;
}
#div_error h1{
    font-size:3em;
    letter-spacing:3px;
    margin-bottom:10px;
}