/*------------------------------------------------------------------
    Main Style Stylesheet
    Project:        Solo Portfolio One Page Responsive
    Version:        1.0
    Author:         othmanDes
    Primary use:    Portfolio, Personal
-------------------------------------------------------------------*/


/*------------------------------------------------------------------
body 
 + Page Loader
 + BOTTON SCROLL TO TOP
 + NAVIGATION
 + HEADER
 + ABOUT
 + SERVICES
 + PORTFOLOI
 + CONTACT
-------------------------------------------------------------------*/


/*===== Import Raleway Font =====*/

@import url('https://fonts.googleapis.com/css?family=Raleway:400,700');

/*===== Headinge font =====*/

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: bold;
}


/*===== My Classes =====*/


/*===== Color font and background =====*/

.color {
    color: #329BD4;
}

.background {
    background-color: #329BD4;
    color: #fff;
}

.background_invers {
    background-color: #103250;
    color: #fff;
}

button:hover,
button:focus {
    color: #fff !important;
}


/*===== padding betwen section =====*/

.section {
    padding: 120px 0;
    overflow: hidden;
    height: auto;
}


/*===== Font Size =====*/

.lead {
    font-size: 19px;
}


/*=====  margin top =====*/

.mrg_top20 {
    margin-top: 20px;
}

.mrg_top40 {
    margin-top: 40px;
}

.mrg_buttom40 {
    margin-bottom: 40px;
}

/*=====  active class link  =====*/

.active > a {
    background-color: #329BD4 !important;
    color: #fff !important;
}


/*===== My Custom Css =====*/

body {
    font-family: 'Raleway', sans-serif;
    font-size: 1.6em;
    font-weight: 400;
    color: #333;
    line-height: 1.5;
    letter-spacing: 1px;
    background-color: #eee;
    padding-top: 70px;
}


/*===== Loading =====*/

#loader {
    position: fixed;
    z-index: 1050;
    background-color: #329BD4;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
}

#loading {
    position: absolute;
    top: 50%;
    left: 50%;
    padding: 20px;
    background-color: #103250;
    border-radius: 50%;
    -webkit-animation: load 1s infinite;
    animation: load 1s infinite;
}


/*===== Animation Loading Page =====*/

@-webkit-keyframes load {
    0% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }
    20% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }
    25% {
        -webkit-transform: scale(0.5);
        transform: scale(0.5);
    }
    45% {
        -webkit-transform: scale(1.2);
        transform: scale(1.2);
    }
    75% {
        -webkit-transform: scale(1.2);
        transform: scale(1.2);
    }
    95% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }
    100% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }
}

@keyframes load {
    0% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }
    20% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }
    25% {
        -webkit-transform: scale(0.5);
        transform: scale(0.5);
    }
    45% {
        -webkit-transform: scale(1.2);
        transform: scale(1.2);
    }
    75% {
        -webkit-transform: scale(1.2);
        transform: scale(1.2);
    }
    95% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }
    100% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }
}


/*===== Button Scroll To Top =====*/

.btn_top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    display: none;
    font-size: 25px;
    cursor: pointer;
    z-index: 9;
    background-color: #329BD4;
    color: #fff;
    padding: 20px;
}


/*===== Navbar Section =====*/

.navbar-default {
    border: 0;
    border-radius: 0;
    background-color: #103250;
    padding: 10px 0;
}

.navbar-default .navbar-brand {
    color: #fff;
    font-size: 28px;
    font-weight: 700
}

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

.navbar-default .navbar-nav > li > a:focus,
.navbar-default .navbar-nav > li > a:hover {
    background-color: #329BD4;
    color: #fff;
}


/*===== Header Section =====*/

#header {
    background-color: #329BD4;
    min-height: 500px;
    margin-top: -20px;
    color: #fff;
    position: relative;
}

#header #header_info {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 100%;
}

#header #header_info .see_services {
    background-color: #103250;
    color: #fff;
    padding: 10px 30px;
    font-size: 16px;
    border-radius: 0px;
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
}

#header #header_info .see_services:hover {
    background-color: #00466C;
}

#header #header_info #social_media i {
    padding: 10px 0;
    background-color: #fff;
    color: #329BD4;
    min-width: 50px;
    text-align: center;
    cursor: pointer;
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
}

#header #header_info #social_media i:hover {
    color: #00466C;
}


/*===== About Section =====*/

#about img {
    
    min-height: 350px;
}

#about #my_story {
    background-color: #fff;
    overflow: hidden;
    padding: 15px 0;
}

#about #my_story button {
    padding: 10px 30px;
    border-radius: 0;
    font-size: 17px;
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
}

#about #my_story button:hover {
    background-color: #00466C;
}


/*===== Transaction Section =====*/

#transaction {
    background-color: #103250;
    color: #fff;
}


/*===== Services Section =====*/

#services .single_services {
    padding: 40px 5px;
    overflow: hidden;
}

#portfolio #recent_works img {
    width: 100%;
    
    margin: 15px 0;
    cursor: pointer;
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
}


/*===== Portfolio Section =====*/

#portfolio #recent_works img:hover {
    -webkit-transform: scale(1.02);
    transform: scale(1.02);
}


/*===== Hire Me Section =====*/

#hire_me {
    background-color: #103250;
    color: #fff;
}

#hire_me button {
    padding: 10px 30px;
    border-radius: 0;
    font-size: 17px;
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
}

#hire_me button:hover {
    background-color: #00466C;
}

#hire_me i {
    font-size: 22px;
}


/*===== Contact Section =====*/

#contact {
    background-color: #103250;
    color: #fff;
}

#form_contact input,
#form_contact textarea {
    border: 0px;
    border-radius: 0;
    background-color: rgba(18, 14, 40, .4);
    color: #fff;
}

#form_contact textarea {
    resize: none;
}

#form_contact button {
    border-radius: 0;
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
    height: 40px;
    font-size: 16px;
}

#form_contact button:hover {
    background-color: #00466C;
}

.contact_info {
    overflow: hidden;
    text-align: left;
}

.contact_info .icon {
    background-color: #329BD4;
    padding: 15px 0;
    font-size: 20px;
    text-align: center;
}