/* -------------------------------------------



    Preloader



--------------------------------------------- */

.preloader {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(253, 203, 110, 1) 0%, rgba(253, 203, 110, 0) 70%), linear-gradient(135deg, rgba(225, 112, 85, 1) 10%, rgba(225, 112, 85, 0) 80%), linear-gradient(225deg, rgba(253, 203, 110, 1) 0%, rgba(253, 203, 110, 0) 80%), linear-gradient(315deg, rgba(214, 48, 49, 1) 100%, rgba(214, 48, 49, 0) 70%);
    z-index: 9999;
}

.preloader .waves {
    width: 250px;
    height: 100px;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -125px;
    margin-top: -50px;
    color: rgba(247, 250, 251, 1);
    font-size: 40px;
    text-align: center;
    line-height: 35px;
    animation: visible 2s;
}

.waves {
    position: relative;
    height: 60px;
    margin: auto;
}

.waves .circle {
    position: relative;
    top: -120px;
    margin: auto;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    padding: 10px;
    font-size: 29px;
    color: rgba(247, 250, 251, 1);
    -webkit-text-shadow: 0 0 35px rgba(0, 0, 0, .1);
    text-shadow: 0 0 35px rgba(0, 0, 0, .1);
}

.waves .circle:hover {
    cursor: pointer;
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
    -webkit-box-shadow: 0 0 35px rgba(0, 0, 0, .1);
    box-shadow: 0 0 35px rgba(0, 0, 0, .1);
}

.waves .circle-1 {
    position: relative;
    margin: auto;
    background-color: rgba(247, 250, 251, 1);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    -webkit-animation: wave 2s linear 0s infinite normal;
    animation: wave 2s linear 0s infinite normal;
}

.waves .circle-2 {
    position: relative;
    top: -60px;
    margin: auto;
    background-color: rgba(247, 250, 251, 1);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    -webkit-animation: wave 3s linear 0s infinite normal;
    animation: wave 3s linear 0s infinite normal;
}

@-webkit-keyframes wave {
    0% {
        opacity: 0;
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    5% {
        opacity: .2;
    }

    70% {
        opacity: .3;
    }

    100% {
        opacity: 0;
        -webkit-transform: scale(2.5);
        transform: scale(2.5);
    }
}

@keyframes wave {
    0% {
        opacity: 0;
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    5% {
        opacity: .2;
    }

    70% {
        opacity: .3;
    }

    100% {
        opacity: 0;
        -webkit-transform: scale(2.5);
        transform: scale(2.5);
    }
}


/* All */

body {
    color: #2c2c2c;
    font-size: 14px;
    font-family: Montserrat, Helvetica Neue, Arial, sans-serif;
    font-weight: 400;
}


/* Clear */

.about:before,
.about:after,
.about-social-wrapper:before,
.about-social-wrapper:after {
    clear: both;
    display: table;
    content: "";
}


/* Navigation */

.navbar {
    border-radius: 0;
}

.menuDiv {
    display: block;
    height: 24px;
}

.navbar-toggle:hover .menu-line:before,
.navbar-toggle:hover .menu-line:after {
    width: 25px;
}

.menu-line {
    width: 25px;
    height: 1px;
    background: #fff;
    display: block;
    position: relative;
    transition: all .5s;
    top: 10px;
    transform: rotate(45deg);
}

.menu-line:before {
    content: "";
    width: 15px;
    height: 1px;
    background: #fff;
    display: block;
    position: absolute;
    top: -7px;
    transition: all .5s;
    opacity: 0;
}

.menu-line:after {
    content: "";
    height: 1px;
    background: #fff;
    display: block;
    position: absolute;
    transition: all .5s;
    transform: rotate(90deg);
    width: 25px;
    top: 0px;
}

.collapsed .menu-line {
    transform: rotate(0deg);
}

.collapsed .menu-line:before {
    opacity: 1;
}

.collapsed .menu-line:after {
    width: 20px;
    top: 7px;
    transform: rotate(0deg);
}

.navbar-toggle {
    border: 0;
    padding: 5px 8px;
    margin-right: 10px;
}

.navbar-default {
    background-color: transparent;
    border-bottom: 0;
    transition: padding .35s ease-in-out;
    min-height: auto;
    padding: 30px 0;
}

.navbar-default .navbar-header {
    position: relative;
}

.navbar-default .navbar-brand {
    color: #fff;
    text-transform: uppercase;
    height: auto;
    padding: 8px 15px;
}

.navbar-default .navbar-brand:hover,
.navbar-default .navbar-brand:focus {
    color: #f1f1f1;
}

.navbar-default .navbar-nav>li .dropdown-toggle {
    padding-right: 30px;
    position: relative;
}

.navbar-default .navbar-nav>li .dropdown-toggle:after {
    content: "\f0d7";
    font-family: "FontAwesome";
    font-size: 13px;
    position: absolute;
    right: 15px;
    transition: all .3s;
}

.navbar-default .navbar-nav>li.open .dropdown-toggle:after {
    transform: rotate(180deg);
}

.navbar-default .navbar-nav>li {
    margin: 0 5px;
}

.navbar-default .navbar-nav>li>a {
    color: #fff;
    padding: 8px 15px;
    border-radius: 50px;
}

.navbar-default .navbar-nav>li>a:hover,
.navbar-default .navbar-nav>li>a:focus {
    color: #f1f1f1;
    background-color: rgba(255, 255, 255, .2);
}

.navbar-default .navbar-toggle:hover,
.navbar-default .navbar-toggle:focus {
    background-color: transparent;
}

.navbar-default .navbar-nav>.open>a,
.navbar-default .navbar-nav>.open>a:hover,
.navbar-default .navbar-nav>.open>a:focus {
    color: #fff;
    background: rgba(255, 255, 255, .2);
}

.navbar-default .navbar-nav>.open>li {
    margin: 0;
}


/* Navbar Affix */

.affix .menu-line {
    background: #333;
}

.affix .menu-line:before {
    background: #333;
}

.affix .menu-line:after {
    background: #333;
}

.navbar-default.affix {
    background-color: #fff;
    padding: 15px 0;
    box-shadow: 0 0 10px rgba(0, 0, 0, .3);
}

.navbar-default.affix .navbar-brand {
    color: #333;
}

.navbar-default.affix .navbar-brand:hover,
.navbar-default.affix .navbar-brand:focus {
    color: #252525;
}

.navbar-default.affix .navbar-nav>li>a {
    color: #333;
}

.navbar-default.affix .navbar-nav>li>a:hover,
.navbar-default.affix .navbar-nav>li>a:focus {
    color: #252525;
    background-color: rgba(0, 0, 0, .2);
}

.navbar-default .navbar-nav>li>a.menu-special {
    background-color: #ff3636;
    color: #fff;
    box-shadow: 2px 2px 10px #6b0f0f;
    transition: all .3s;
}

.navbar-default .navbar-nav>li>a.menu-special.bg-blue {
    background-color: #348dd9;
    box-shadow: 2px 2px 10px #164771;
}

.navbar-default .navbar-nav>li>a.menu-special.bg-blue:hover,
.navbar-default .navbar-nav>li>a.menu-special.bg-blue:focus {
    background-color: #2c76b6;
    box-shadow: 2px 2px 10px #164771;
}

.navbar-default .navbar-nav>li>a.menu-special:hover,
.navbar-default .navbar-nav>li>a.menu-special:focus {
    background-color: #e43333;
    box-shadow: 2px 4px 10px #6b0f0f;
}

.navbar-default.affix .navbar-nav>li>a.menu-special:hover,
.navbar-default.affix .navbar-nav>li>a.menu-special:focus {
    color: #fff;
    background-color: #ff3636;
}

.navbar-default .navbar-nav>li>a.menu-special i {
    margin-right: 10px;
    font-size: 18px;
    vertical-align: middle;
}

@media (min-width: 960px) {
    .navbar-default.affix .navbar-nav>li>a.menu-special {
        padding: 8px 10px
    }
    
    .navbar-default.affix .navbar-nav>li>a.menu-special i {
        margin-right: 5px;
    }
}



/* Page Header */

.banner {
    color: #fff;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.banner::after {
    background: url("../assets/images/overlay.png");
    position: absolute;
    content: "";
    z-index: 1;
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
}

.banner-bg {
    position: absolute;
    z-index: 0;
    width: 105%;
    height: 105%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    transform: translate3d(-2.5%, -2.5%, 0) !important;
}

.banner-bg .bg-img {
    width: 100%;
    height: 100%;
    background: url(../assets/images/bg.jpg) no-repeat;
    background-size: cover;
}

.banner .home-banner {
    z-index: 3;
    position: relative;
    text-align: center;
}

.home-banner h1 {
    font-family: "Museo", sans-serif;
    text-transform: uppercase;
    font-size: 50px;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    border-top: 2px solid rgba(255, 255, 255, .5);
    border-bottom: 2px solid rgba(255, 255, 255, .5);
    padding: 5px 30px;
}

.home-banner h1:before {
    content: "";
    width: 2px;
    height: 130%;
    position: absolute;
    top: -15%;
    left: 15px;
    background-color: #ff3636;
}

.home-banner h1:after {
    content: "";
    width: 2px;
    height: 130%;
    position: absolute;
    top: -15%;
    right: 15px;
    background-color: #ff3636;
}

.home-banner h3 {
    font-family: "Work Sans", sans-serif;
    font-weight: 300;
    font-size: 20px;
    margin-top: 0;
}

.home-banner .logo-banner {
    height: 150px;
    display: block;
}

.logo-banner img {
    max-width: 100%;
    height: 100%;
}

.line {
    display: inline-block;
    width: 85px;
    height: 2px;
    background-color: #ff3636;
}

.mouse {
    display: block;
    margin: 0 auto;
    width: 26px;
    height: 46px;
    -webkit-border-radius: 13px;
    border-radius: 13px;
    border: 2px solid #fff;
    position: absolute;
    bottom: 20px;
    left: 50%;
    -webkit-transform: translate(-50%);
    transform: translate(-50%);
    z-index: 4;
}

.mouse span {
    display: block;
    margin: 4px auto;
    width: 4px;
    height: 4px;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    background: #fff;
    border: 1px solid transparent;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-name: scroll;
    animation-name: scroll;
}

@keyframes scroll {
    0% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateY(20px);
        -ms-transform: translateY(20px);
        transform: translateY(20px);
    }
}


/* Section */

.section {
    position: relative;
    padding: 50px 0;
    background-color: #fff;
}

.section.section-gray-light {
    background-color: #f3f3f3;
}

.section .title {
    text-align: center;
    margin-bottom: 36px;
}

.title .sub-title p {
    max-width: 600px;
    display: inline-block;
    color: #777;
}

.title h2 {
    margin-top: 0;
    margin-bottom: 20px;
}

.section h1,
.section h2,
.section h3,
.section h4,
.section h5,
.section h6 {
    font-family: "Montserrat", sans-serif;
    font-weight: 800;
    text-transform: uppercase;
}


/* Info ME */

.profile {
    text-align: center;
    margin-bottom: 20px;
}

.profile .photo {
    position: relative;
    display: inline-block;
    margin: 20px;
    margin-left: 40px;
}

.profile .photo:after {
    position: absolute;
    bottom: 0;
    left: 0;
    opacity: 0;
    width: 100%;
    height: 45px;
    background: linear-gradient(to top, rgba(0, 0, 0, .75), transparent);
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
    content: "";
    transition: all .3s;
    z-index: 2;
}

.profile .photo:hover:after {
    opacity: 1;
}

.profile .photo img {
    position: relative;
    border-radius: 4px;
    box-shadow: -4px -4px 10px rgba(0, 0, 0, .5);
    z-index: 1;
}

.profile .photo:before {
    width: 100%;
    height: 100%;
    border: 3px solid #ddd;
    border-radius: 4px;
    position: absolute;
    top: -20px;
    left: -20px;
    content: "";
}

.about {
    margin-bottom: 34px;
}

.about:last-child {
    margin-bottom: 0;
}

.about .sub-about {
    margin-bottom: 20px;
}

.sub-about h5 {
    padding-left: 25px;
    position: relative;
}

.sub-about h5:before {
    font-family: "FontAwesome";
    display: inline-block;
    width: 20px;
    text-align: center;
    position: absolute;
    left: 0;
    content: "";
}

.sub-about h5.graduation:before {
    content: "\f19d";
}

.sub-about h5.user:before {
    content: "\f007";
}

.sub-about h5.work:before {
    content: "\f0b1";
}

.about ul {
    margin: 10px 0;
    margin-left: 20px;
    position: relative;
    list-style: none;
    padding: 0;
}

.about ul li {
    padding-left: 25px;
    margin-bottom: 15px;
    position: relative;
}

.about ul:before {
    height: calc(100% - 5px);
    width: 1px;
    background-color: #ff3636;
    position: absolute;
    top: 5px;
    left: 0;
    display: block;
    content: "";
}

.about ul li:last-child {
    margin-bottom: 0;
}

.about ul li:before {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background-color: #ff3636;
    display: inline-block;
    position: absolute;
    top: 4px;
    left: -7px;
    content: "";
}

.about ul li .top-desc {
    background-color: #ff3636;
    padding: 3px 15px;
    margin-bottom: 10px;
    color: #fff;
    display: inline-block;
    border-radius: 50px;
}

.about ul li .head-desc {
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 5px;
    margin-left: 5px;
}

.about ul li .body-desc {
    font-weight: 300;
    margin-left: 5px;
}


/* About Social */

.photo .about-social-wrapper {
    position: absolute;
    padding: 15px 0;
    bottom: 0;
    width: 100%;
    z-index: 3;
}

.about-social-wrapper .social {
    display: inline-block;
    margin: 0 5px;
    width: 34px;
    height: 34px;
    color: #fff;
    opacity: 0;
    border-radius: 50%;
    transition: all .3s;
}

.about-social-wrapper .social:hover,
.about-social-wrapper .social:focus {
    text-decoration: none;
}

.photo:hover .about-social-wrapper .social {
    opacity: 1;
    transform: translateY(-5px);
}

.photo .about-social-wrapper .social:hover {
    transform: scale(1.2) translateY(-5px);
}

.social-fb {
    background-color: #0077c0;
    transition: all .3s;
}

.social-twitter {
    background-color: #19B5FE;
    transition: all .5s;
}

.social-ig {
    background: linear-gradient(135deg, rgb(0, 87, 160), rgb(199, 44, 28), rgb(249, 191, 59));
    transition: all .7s;
}

.social-wa {
    background-color: #0eac51;
    transition: all .9s;
}

.about-social-wrapper .social::after {
    content: "";
    font-family: "FontAwesome";
    font-size: 18px;
    display: inline-block;
    margin: 5px 0;
}

.about-social-wrapper .social-fb::after {
    content: "\f09a";
}

.about-social-wrapper .social-twitter::after {
    content: "\f099";
}

.about-social-wrapper .social-ig::after {
    content: "\f16d";
}

.about-social-wrapper .social-wa::after {
    content: "\f232";
}


/* Back to Top */

.back-to-top {
    position: fixed;
    display: none;
    bottom: 25px;
    right: 25px;
    font-size: 26px;
    color: #fff;
    background-color: #ff3636;
    padding: 0 10px;
    border-radius: 3px;
    box-shadow: 1px 3px 7px rgba(0, 0, 0, .5);
    transform: all .3s;
    z-index: 999;
}

.back-to-top:hover,
.back-to-top:focus {
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 2px 6px 10px rgba(0, 0, 0, .5);
}

.back-to-top:after {
    font-family: "FontAwesome";
    display: inline-block;
    content: "\f106";
}


/* Particles */

#particles_js {
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
    z-index: 3;
}


/* Overlay */

.overlay-animated {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    opacity: .7;
    z-index: 1;
    background: -webkit-gradient(linear, right top, left top, from(#fd8574), color-stop(#cc2e63), color-stop(#fd8574), to(#cc2e63));
    background: -webkit-linear-gradient(right, #fd8574, #cc2e63, #fd8574, #cc2e63);
    background: -o-linear-gradient(right, #fd8574, #cc2e63, #fd8574, #cc2e63);
    background: linear-gradient(270deg, #fd8574, #cc2e63, #fd8574, #cc2e63);
    background-size: 800% 800%;
    -webkit-animation: AnimationName 24s ease infinite;
    animation: AnimationName 24s ease infinite
}

.navbar .overlay-animated {
    display: none;
    z-index: 0;
}

.navbar.affix .overlay-animated {
    display: block;
}

@-webkit-keyframes AnimationName {
    0% {
        background-position: 0 50%
    }

    50% {
        background-position: 100% 50%
    }

    to {
        background-position: 0 50%
    }
}

@keyframes AnimationName {
    0% {
        background-position: 0 50%
    }

    50% {
        background-position: 100% 50%
    }

    to {
        background-position: 0 50%
    }
}

@media (max-width: 480px) {
    .photo .about-social-wrapper .social {
        opacity: 1;
        transform: translateY(-5px);
    }
}

@media (min-width: 960px) {
    .navbar-default .navbar-nav>li>a.menu-special {
        margin: 0 5px;
    }
    .navbar-default .navbar-nav>li:last-child>a.menu-special {
        margin-right: 0
    }
}

.banner-page {
    position: relative;
    z-index: 3;
    margin-top: 30px;
}

.banner-page h1.title {
    margin-bottom: 0;
    margin-top: 15px;
}