@import url('http://fonts.googleapis.com/css?family=Lato:100,300,400,700,900,100italic,300italic,400italic,700italic,900italic|Montserrat:700|Merriweather:400italic');
body,
html {
    height: 100%;
    margin: 0;
    font-family: 'Lato', sans-serif;
    color: black;
    margin: 0;
    padding: 0;
    
}

::-webkit-scrollbar {
    width: 0px;
    /* remove scrollbar space */
}

.hide {
    display: none;
}


/*
section {
  background: linear-gradient(135deg, #4567b2 20%, #8ab9ff 80%);
  height: 2500px;
}
*/


/* Navbar */

.aa-nav {
    width: 100%;
    box-sizing: border-box;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 90px;
    overflow: hidden;
    font-size: 0;
    /*background: rgba(255, 255, 255, .9);
  box-shadow: 0px 1px 8px rgba(0, 0, 0, .15);*/
    padding-left: 40px;
    padding-right: 40px;
    transition: 0.2s linear all;
    z-index: 9998;
}

.aa-small-nav {
    height: 65px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0px 1px 8px rgba(0, 0, 0, 0.15);
}


/* ./Navbar */


/* Logo image */

.aa-nav-icon-container {
    position: relative;
    float: left;
    height: 100%;
    padding-top: 10px;
}

.aa-nav-icon {
    height: 50px;
    cursor: pointer;
    float: left;
    transition: 0.2s linear all;
    /*  filter: invert(100%);*/
}

.aa-small-nav-icon {
    height: 45px;
    /* filter: invert(0%);*/
}


/* ./Logo image */


/* Nav items */

.aa-nav-items {
    float: right;
    margin-right: 20%;
    color: black;
    line-height: 90px;
    list-style: none;
    transition: 0.2s linear all;
}

.aa-small-nav-items {
    line-height: 65px;
}

.aa-nav-items>span {
    border-style: none;
    display: inline-block;
    font-weight: 500;
}

.aa-nav-item>a {
    text-decoration: none;
    font-size: 14px;
    color: black;
    transition: 0.2s linear all;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.4);
}

.aa-nav-item>a:hover {
    color: #3e78b2 !important;
}

.black {
    color: black;
}

.white {
    color: white;
}


/* ./Nav items */


/* Hamburger */

.aa-icon-bar {
    background-color: #474747;
    display: block;
    width: 22px;
    height: 2px;
    border-radius: 1px;
    margin-bottom: 4px;
    transition: opacity, transform;
    transition-duration: 300ms;
    transition-timing-function: cubic-bezier(0.7, 0, 0, 0.7);
}

.aa-hamburger-menu {
    cursor: pointer;
    position: fixed;
    top: 38px;
    right: 40px;
    z-index: 9998;
    display: none;
    transition: 0.2s linear all;
}

.aa-small-hamburger-menu {
    top: 25.5px;
}

.aa-hamburger-menu:hover>.aa-icon-bar {
    background-color: #ff707a;
}

.aa-hamburger-menu:not(.collapsed) .aa-icon-bar:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.aa-hamburger-menu:not(.collapsed) .aa-icon-bar:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.aa-hamburger-menu:not(.collapsed) .aa-icon-bar:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}


/* ./Hamburger */


/* Mobile Overlay */

.aa-mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(72, 133, 187, 0.9);
    overflow: auto;
    z-index: 9997;
    display: none;
}

.aa-mobile-nav-items {
    padding: 0;
    margin: 65px 0px;
    text-align: center;
    list-style: none;
}

.aa-mobile-nav-items>li {
    display: block;
    padding-top: 30px;
}

.aa-mobile-nav-items>li>a {
    text-decoration: none;
    font-size: 25px;
    color: black;
}

.aa-mobile-nav-items>li>a:hover {
    color: #ff7070;
}


/* ./Mobile Overlay */


/* Media queries */

@media screen and (max-width: 768px) {
    .aa-hamburger-menu {
        display: block;
    }
    .aa-nav-items {
        display: none;
    }
}


/* ./Media queries */

.parallax {
    /* The image used */
    background-image: url("wallpaper.jpg");
    /* Full height */
    height: 90%;
    /* Center and scale the image nicely */
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}


/*loader*/

#pre-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
}

#pre-loader .loader-section {
    position: fixed;
    top: 0;
    width: 51%;
    height: 100%;
    z-index: 1000;
    background: #3e78b2;;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
}

#pre-loader .loader-section.section-left {
    left: 0;
}

#pre-loader .loader-section.section-right {
    right: 0;
}

#loader-logo {
    display: block;
    position: relative;
    left: calc(50% - 20em/2);
    top: 15%;
    width: 20em;
    height: 9.375em;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 1001;
}

#loader-circle {
    display: block;
    position: relative;
    left: 50%;
    top: 35%;
    width: 150px;
    height: 150px;
    margin: -75px 0 0 -75px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #fff;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
    z-index: 1001;
}

#loader-circle:before {
    content: "";
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #fff;
    -webkit-animation: spin 3s linear infinite;
    animation: spin 3s linear infinite;
}

#loader-circle:after {
    content: "";
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #fff;
    -webkit-animation: spin 1.5s linear infinite;
    animation: spin 1.5s linear infinite;
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

.loaded #pre-loader .loader-section.section-left {
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
    -webkit-transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.loaded #pre-loader .loader-section.section-right {
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
    -webkit-transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.loaded #loader-logo,
.loaded #loader-circle {
    opacity: 0;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.loaded #pre-loader {
    visibility: hidden;
    -webkit-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    transform: translateY(-100%);
    -webkit-transition: all 0.3s 1s ease-out;
    transition: all 0.3s 1s ease-out;
}

.no-js #pre-loader {
    display: none;
}


/*loader*/




/* Header styles */

header {
    position: relative;
    text-align: center;
    margin: 0;
    color: #fff;
}

.title h1 {
    padding-top: 100px;
    padding-top: -webkit-calc(50vh - 113px);
    padding-top: expression(50vh - 113px);
    padding-top: -moz-calc(50vh - 113px);
    padding-top: -o-calc(50vh - 113px);
    padding-top: calc(50vh - 113px);
    font-size: 7em;
    font-weight: 100;
}

.title h2 {
    font-size: 2em;
}

header span.animated {
    position: absolute;
    margin: auto;
    right: 0;
    left: 0;
    bottom: 50px;
    height: 4px;
    width: 4px;
    border-radius: 2px;
    background: #fff;
    animation-duration: 2.5s;
    animation-iteration-count: infinite;
    -webkit-animation-name: bounceInDown;
    -moz-animation-name: bounceInDown;
    -o-animation-name: bounceInDown;
    animation-name: bounceInDown;
}

header span::before,
header span::after {
    position: absolute;
    top: -23px;
    content: "";
    height: 30px;
    width: 4px;
    border-radius: 2px;
    background: #fff;
}

header span::before {
    left: -10px;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

header span::after {
    right: -10px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}


/* Scroll animations styles */

.scroll-animations {
    display: flex;
}

.scroll-animations div {
    flex-grow: 1;
    padding: 30px;
    text-align: center;
    opacity: 0;
    color: #333;
}

.scroll-animations div span {
    font-size: 4em;
    color: #5AA9E0;
}

.scroll-animations div h3 {
    font-size: 1.9em;
    font-weight: 400;
    margin-bottom: 10px;
}


/* Media queries */

@media (max-width: 759px) {
    header h1 {
        font-size: 5em;
    }
   
    .scroll-animations {
        display: block;
    }
    .scroll-animations div {
        padding: 20px 80px;
    }
    .click-animations input,
    .click-animations textarea,
    .click-animations button {
        width: 80%;
    }
}

@media (max-width: 475px) {
    
    header h1 {
        font-size: 3.2em;
    }
    header h2,
    .funky-animations h3 {
        font-size: 1.5em;
    }
    .center-div{
        visibility:visible;
    }
}


.center-div {
    margin: 5% auto;
    padding: 25px;
    width: 75%;
    background-color: rgba(61, 133, 220, 0.15);
    border-radius: 3px;
   
   
}

.animated1 {
    -webkit-animation-duration: 1s;
    -webkit-animation-fill-mode: both;
}

@-webkit-keyframes bounceInDown1 {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-2000px);
    }
    60% {
        opacity: 1;
        -webkit-transform: translateY(30px);
    }
    80% {
        -webkit-transform: translateY(-10px);
    }
    100% {
        -webkit-transform: translateY(0);
    }
}

.bounceInDown1 {
    -webkit-animation-name: bounceInDown;
    -moz-animation-name: bounceInDown;
    -o-animation-name: bounceInDown;
    animation-name: bounceInDown;
}
.fadeInLeft{
    -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
  transform: translateZ(0);

  -moz-transition: all 1s;
  -webkit-transition: all 1s;
  -o-transition: all 1s;
  transition: all 1s ;
}

.parallax1 {
    /* The image used */
    background-image: url('wallpaper3.jpg');
    /* Full height */
    height: 75%;
    /* Create the parallax scrolling effect */
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.parallax2 {
    /* The image used */
    background-image: url('wallpaper2.jpg');
    margin-top: 5%;
    /* Full height */
    height: 75%;
    /* Create the parallax scrolling effect */
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.parallax3 {
    /* The image used */
    background-image: url('wallpaper.jpg');
    /* Full height */
    height: 75%;
    /* Create the parallax scrolling effect */
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

@import url(https://fonts.googleapis.com/css?family=Lato:300,400,700);
.container1 {
    max-width: 480px;
    position: relative;
    margin: 0 auto;
    padding: 0 10px;
}

.container1:before,
.container1:after {
    content: "";
    display: table;
}

.container1:after {
    clear: both;
}

.header1 {
    background: #3e78b2;
    position: relative;
    overflow: hidden;
}

.header1:after {
    content: "";
    background: #f4f4f4;
    width: 120%;
    height: 20%;
    position: absolute;
    bottom: -10%;
    left: -10%;
    transform: rotate(-2deg);
}

.spacer {
    min-height: 20rem;
}

dt:after {
    width: 100%;
    background-color: #e0e0e0;
    height: 0.5rem;
    content: "";
    display: block;
}

dd {
    background: red;
    width: 0;
    height: 0.5rem;
    position: relative;
    top: -0.5rem;
}

dd.html {
    background: #F44336;
}

dd.css {
    background: #2196F3;
}

dd.jquery {
    background: #FFCA28;
}

dd.scss {
    background: #F06292;
}

dd.javascript {
    background: #FFA000;
}

dd.php {
    background: #303F9F;
}

#map {
    width: 100%;
    height: 60%;
}

.fa {
    padding: 40px;
    font-size: 50px;
    width: 100px;
    text-align: center;
    text-decoration: none;
    margin: 10px 4px;
    border-style: solid;
    border-width: 1px;
    border-color: white;
}

.fa:hover {
    opacity: 0.7;
}

.fa-linkedin {
    background: #007bb5;
    color: white;
}

.fa-youtube {
    background: #bb0000;
    color: white;
}

.fa-android {
    background: #a4c639;
    color: white;
}

.fa-dribbble {
    background: #ea4c89;
    color: white;
}

.fa-rss {
    background: #ff6600;
    color: white;
}

.card {
   
    padding: 50px;
    display: inline-block;
    background-color: #004777 ;
    border-radius: 5px;
    box-shadow: 0px 10px 20px -10px rgba(0, 0, 0, 0.75);
    color: white;
    margin: 25px auto;
  
    text-align: center;
    
}

.card:hover {
    box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
}

.container2 {
    padding: 2px 16px;
}

.round {
    border: 1px solid #03BFCB;
    border-radius: 50%;
    padding: 7px;
}

button.primary {
    background-color: #03BFCB;
    border: 1px solid #03BFCB;
    border-radius: 3px;
    color: #231E39;
    font-family: Montserrat, sans-serif;
    font-weight: 500;
    padding: 10px 25px;
}

button.primary.ghost {
    background-color: transparent;
    color: #02899C;
}

}@-webkit-keyframes fadeInLeft2 {
    from {
        opacity:0;
        -webkit-transform: translatex(-10px);
        -moz-transform: translatex(-10px);
        -o-transform: translatex(-10px);
        transform: translatex(-10px);
    }
    to {
        opacity:1;
        -webkit-transform: translatex(0);
        -moz-transform: translatex(0);
        -o-transform: translatex(0);
        transform: translatex(0);
    }
}
@-moz-keyframes fadeInLeft2 {
    from {
        opacity:0;
        -webkit-transform: translatex(-10px);
        -moz-transform: translatex(-10px);
        -o-transform: translatex(-10px);
        transform: translatex(-10px);
    }
    to {
        opacity:1;
        -webkit-transform: translatex(0);
        -moz-transform: translatex(0);
        -o-transform: translatex(0);
        transform: translatex(0);
    }
}
@keyframes fadeInLeft2 {
    from {
        opacity:0;
        -webkit-transform: translatex(-200px);
        -moz-transform: translatex(-200px);
        -o-transform: translatex(-200px);
        transform: translatex(-200px);
    }
    to {
        opacity:1;
        -webkit-transform: translatex(0);
        -moz-transform: translatex(0);
        -o-transform: translatex(0);
        transform: translatex(0);
    }
}
.in-left2 {
    -webkit-animation-name: fadeInLeft2;
    -moz-animation-name: fadeInLeft2;
    -o-animation-name: fadeInLeft2;
    animation-name: fadeInLeft2;
    -webkit-animation-fill-mode: both;
    -moz-animation-fill-mode: both;
    -o-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-duration: 0.5s;
    -moz-animation-duration: 0.5s;
    -o-animation-duration: 0.5s;
    animation-duration: 0.5s;
    -webkit-animation-delay: 0s;
    -moz-animation-delay: 0s;
    -o-animation-duration:0s;
    animation-delay: 0s;
    margin: auto;
}