/* Extra small devices (phones, less than 768px) */

html, body, h1, h2, h3, h4, ul, li, strong, p, figure, q {
    margin: 0;
    padding: 0;
}

body {
    color: white;
    background: rgba(0, 0, 0, 0.93);
}

* {
    box-sizing: border-box;
}

html {
    font-family: sans-serif;
}

.container {
    position: relative;
    padding: 10px;
    margin: 0 auto;
}

ul {
    list-style-type: none;
}

a {
    color: white;
    text-decoration: none;
}

img {
    width: 100%;
}

.t-center {
    text-align: center;
}

.text-left {
    text-align: left;
}


/*Flex*/
.d-flex {
    display: flex;
}

.flex-row {
    flex-flow: row;
}

.flex-row-reverse {
    flex-flow: row-reverse;
}

.flex-column {
    flex-flow: column;
}

.flex-column-reverse {
    flex-flow: column-reverse;
}

.flex-wrap {
    flex-flow: wrap;
}

.align-items-baseline {
    align-items: baseline;
}

.justify-content-center {
    justify-content: center;
}

.justify-content-between {
    justify-content: space-between;
}

.align-items-center {
    align-items: center;
}

.justify-content-around {
    justify-content: space-around;
}

.aca {
    align-content: space-around;
}

.ais {
    align-content: flex-start;
}

/*End Flex*/


/*Keyframes*/
@keyframes glitch1 {
    0% {
        transform: none;
        opacity: 1;
    }
    7% {
        transform: skew(-0.5deg, -0.9deg);
        opacity: 0.75;
    }
    10% {
        transform: none;
        opacity: 1;
    }
    27% {
        transform: none;
        opacity: 1;
    }
    30% {
        transform: skew(0.8deg, -0.1deg);
        opacity: 0.75;
    }
    35% {
        transform: none;
        opacity: 1;
    }
    52% {
        transform: none;
        opacity: 1;
    }
    55% {
        transform: skew(-1deg, 0.2deg);
        opacity: 0.75;
    }
    50% {
        transform: none;
        opacity: 1;
    }
    72% {
        transform: none;
        opacity: 1;
    }
    75% {
        transform: skew(0.4deg, 1deg);
        opacity: 0.75;
    }
    80% {
        transform: none;
        opacity: 1;
    }
    100% {
        transform: none;
        opacity: 1;
    }
}

@keyframes glitch2 {
    0% {
        transform: none;
        opacity: 0.25;
    }
    7% {
        transform: translate(-2px, -3px);
        opacity: 0.5;
    }
    10% {
        transform: none;
        opacity: 0.25;
    }
    27% {
        transform: none;
        opacity: 0.25;
    }
    30% {
        transform: translate(-5px, -2px);
        opacity: 0.5;
    }
    35% {
        transform: none;
        opacity: 0.25;
    }
    52% {
        transform: none;
        opacity: 0.25;
    }
    55% {
        transform: translate(-5px, -1px);
        opacity: 0.5;
    }
    50% {
        transform: none;
        opacity: 0.25;
    }
    72% {
        transform: none;
        opacity: 0.25;
    }
    75% {
        transform: translate(-2px, -6px);
        opacity: 0.5;
    }
    80% {
        transform: none;
        opacity: 0.25;
    }
    100% {
        transform: none;
        opacity: 0.25;
    }
}

@keyframes glitch3 {
    0% {
        transform: none;
        opacity: 0.25;
    }
    7% {
        transform: translate(2px, 3px);
        opacity: 0.5;
    }
    10% {
        transform: none;
        opacity: 0.25;
    }
    27% {
        transform: none;
        opacity: 0.25;
    }
    30% {
        transform: translate(5px, 2px);
        opacity: 0.5;
    }
    35% {
        transform: none;
        opacity: 0.25;
    }
    52% {
        transform: none;
        opacity: 0.25;
    }
    55% {
        transform: translate(5px, 1px);
        opacity: 0.5;
    }
    50% {
        transform: none;
        opacity: 0.25;
    }
    72% {
        transform: none;
        opacity: 0.25;
    }
    75% {
        transform: translate(2px, 6px);
        opacity: 0.5;
    }
    80% {
        transform: none;
        opacity: 0.25;
    }
    100% {
        transform: none;
        opacity: 0.25;
    }
}

/* 2. Add the animation. */
@keyframes fadeInLeft {
    0% {
        opacity: 0;
        transform: translate3d(-25%, 0, 0);
    }
    100% {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

/*End Keyframes*/


.simple-link {
    color: #737373;
    text-decoration: underline #737373;
    font-size: 20px !important;
}

.logo-social {
    font-size: 30px;
    padding: 5px;
}

.logo-social i {
    color: #838383;
    padding: 0 20px;
}


/*Nav*/
nav {
    z-index: 100;
    text-transform: capitalize;
    background: rgba(21, 21, 21, 0.69);
    width: 100%;
    position: fixed;
}

#logo {
    width: 85px;
}


/* Hamburger button styles. */
.hamburger-button {
    position: absolute;
    transition: .3s ease-in-out;
    width: 45px;
    height: 34px;
    display: block;
    right: 1rem;
    z-index: 100;
}

.hamburger-button span {
    position: absolute;
    height: 8px;
    border-radius: 4px;
    width: 100%;
    background-color: #3D4146;
    top: 0;
    transition: transform .2s ease-in-out, opacity .2s ease-in-out;
}

.hamburger-button span:nth-child(1) {
    top: 0;
}

.hamburger-button span:nth-child(2),
.hamburger-button span:nth-child(3) {
    top: 13px;
}

.hamburger-button span:nth-child(4) {
    top: 26px;
}

.hamburger-button.active span {
    background-color: #FFF;
}

.hamburger-button.active span:nth-child(1),
.hamburger-button.active span:nth-child(4) {
    opacity: 0;
}

.hamburger-button.active span:nth-child(2) {
    transform: rotate(45deg);
}

.hamburger-button.active span:nth-child(3) {
    transform: rotate(-45deg);
}


/* 1. Style the overlay & navigation. */
.overlay {
    position: fixed;
    background: rgb(0, 0, 0);
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s, visibility .3s, height .3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu {
    font-size: 2rem;
    font-family: 'Roboto', Arial, Helvetica, sans-serif;
    text-align: center;
}

.menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.menu ul li {
    opacity: 0;
    margin: 1rem 0;
}

.menu ul li a {
    color: #FFF;
    text-decoration: none;
    transition: opacity .2s ease;
    opacity: .75;
}

.menu ul li a:hover {
    opacity: 1;
}


/* 3. Style the visible overlay. */
.overlay.visible {
    opacity: .85;
    visibility: visible;
    height: 100%;
}

.overlay.visible li {
    animation: fadeInLeft .3s ease forwards;
}

.overlay.visible li:nth-of-type(1) {
    animation-delay: 0.23s;
}

.overlay.visible li:nth-of-type(2) {
    animation-delay: 0.26s;
}

.overlay.visible li:nth-of-type(3) {
    animation-delay: 0.29s;
}

.overlay.visible li:nth-of-type(4) {
    animation-delay: 0.32s;
}

.overlay.visible li:nth-of-type(5) {
    animation-delay: 0.35s;
}

nav li a {
    color: white;
    display: block;
    padding: 20px 0;
    font-size: 22px;
}

nav li a:after {
    content: "";
    position: relative;
    right: 0;
    left: 50%;
    top: 2px;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    color: #fff;
    display: block;
    width: 0;
    height: 1px;
    background-color: currentColor;
    transition: 0.3s width ease;
}

nav li:hover a:after {
    width: 100%;
}

/*End Nav*/


/*Nav About*/
/*End Nav About*/


/*All Header*/
h1 {
    padding: 100px 0 40px;
    font-size: 70px;
}

h2 {
    padding: 30px 0;
    border-top: 1px solid black;
    font-size: 45px;
    letter-spacing: 1px;
}

/*End All Header*/


/*Header adifian */
#header-edifian {
    padding-top: 100px;
}

#header-edifian figure {
    margin: 30px auto;
}

#header-edifian #h2-glitch {
    padding: 30px 0;
}

#header-edifian h2 {
    font-size: 20px;
    padding: 0;
    border: none;
    margin: 0;
    color: #fff;
    font-weight: 400;
    line-height: 0;
    animation: glitch1 2.5s infinite;
}

#header-edifian h2:nth-child(2) {
    color: #67f3da;
    animation: glitch2 2.5s infinite;
}

#header-edifian h2:nth-child(3) {
    color: #f16f6f;
    animation: glitch3 2.5s infinite;
}

#header-edifian p {
    color: white;
    display: block;
    margin: 80px auto 40px;
    font-size: 25px;
}


/*Button*/
.btn {
    border: 1px solid white;
    display: inline-block;
    margin: 30px auto;
    background: #000000;
    width: 350px;
    padding: 20px;
    color: white;
    letter-spacing: 2px;
    border-radius: 3px;
    font-weight: bolder;
    transition: all 0.5s ease;
}

.btn:hover {
    letter-spacing: 6px;
    color: #3a3a3a;
    background: #ffffff;
    text-shadow: 5px 5px 3px #b6b6b6;
}

/*End Button*/
/*End Header adifian*/


/*Header About*/
#header_about {
    padding: 0;
}

#header_about p {
    color: #868686;
    line-height: 25px;
    letter-spacing: 1px;
}

/*End Header About*/


/*Header Services*/
/*header-hover*/
#header-services article:hover .circle-three {
    box-shadow: 0 0 40px #ffffff;
    transform: scale(0.2);
}

#header-services article:hover img {
    margin-left: 30px;
}

#header-services article:hover h2:after {
    width: 100%;
}

/*end-header-hover*/

.circle-one {
    position: absolute;
    width: 20px;
    height: 20px;
    left: 9px;
    top: 9px;
    border: 1px solid #FFFFFF;
    box-sizing: border-box;
    border-radius: 16px;
}

.circle-two {
    width: 40px;
    height: 40px;
    border: 1px solid #B9B9B9;
    box-sizing: border-box;
    border-radius: 31px;
    position: absolute;
    top: 11px;
    left: 11px;
}

.circle-three {
    position: relative;
    margin: 20px 0;
    transition: 0.3s ease-in-out;
    width: 62px;
    height: 62px;
    border: 1px solid #747474;
    box-sizing: border-box;
    border-radius: 48px;
}

#header-services h1 {
    font-size: 50px;
}

#header-services {
    padding: 100px 0;
}

#header-services h2 {
    transition: 0.1s ease-in-out;
    padding: 5px 0;
    border: none;
    font-size: 30px;
}

#header-services div > p {
    font-size: 27px;
}

#header-services p {
    padding: 20px 0;
    font-size: 19px;
    color: #9f9f9f;
    letter-spacing: 1px;
}

#header-services article {
    position: relative;
}

#header-services tr:nth-child(2), tr:nth-child(4) {
    color: #707070;
}

#header-services table td {
    padding: 0 10px 10px;
}


/*Arrow*/
#header-services img {
    transition: 0.6s ease-in-out;
}

.arrow {
    display: block;
    padding: 20px 0;
    width: 60px;
}

/*End Arrow*/
/*End Header Services*/


/*Header Contact*/
#header-contact {
    padding: 50px 0;
}

#header-contact h1 {
    padding: 50px 0;
    font-size: 60px;
}

#header-contact h3 {
    padding: 20px 0 10px;
    font-size: 22px;
}

#header-contact ul li a {
    font-size: 20px;
}

#header-contact a {
    color: #888888;
    padding: 13px 0;
    display: block;
}

#header-contact ul li a i {
    padding-right: 8px;
}

#header-contact p {
    padding: 10px 0;
    color: #bbbbbb;
}

#header-contact .input {
    width: 100%;
    padding: 10px 0;
    border: none;
    border-bottom: 1px solid #868686;
    margin: 10px 0;
    color: #868686;
    background: transparent;
    outline: none;
}

#header-contact form {
    padding: 30px 0;
}

#header-contact .submit:hover {
    letter-spacing: 6px;
    color: #3a3a3a;
    background: #ffffff;
    text-shadow: 5px 5px 3px #b6b6b6;
}

/*End Header Contact*/


/*Features-Work*/
.card {
}

.card article a {
    display: block;
    overflow: hidden;
    width: 360px;
    height: 239px;
}

.card figure img {
    transition: all 0.5s ease;
}

.card:hover img {
    transform: scale(1.1);
    opacity: 0.5;
}

.text-card {
    font-size: 15px;
    letter-spacing: 1px;
    padding-left: 10px;
    margin-top: 2px;
    margin-bottom: 30px;
}

/*End Features-Work*/


/*Features-Work*/
/*End Features-Work*/


/*Work*/
.work-img {
    padding: 5px 0 20px;
}

.features-work {
    position: relative;
    padding: 50px 0;
}

.features-work article a {
    display: block;
    overflow: hidden;
    width: 250px;
    height: 100%;
}

.features-work figure img {
    transition: all 0.5s ease;
}

.features-work a:hover img {
    transform: scale(1.1);
    opacity: 0.3;
}

.features-work small {
    color: #868686;
    letter-spacing: 1px;
}

/*End Work*/


/*Section-Quote*/
#quote q {
    font-size: 20px;
    letter-spacing: 1px;
    line-height: 34px;
}

#quote p {
    margin: 20px 0;
    color: #868686;
    letter-spacing: 1px;
}

/*End Section-Quote*/


/*About-services*/
#about-services h2 {
    letter-spacing: 1px;
}

#about-services a {
    margin: 45px 0;
    display: block;
    font-size: 25px;
    color: #868686;
    letter-spacing: 1px;
    width: 350px;
}

#about-services a img {
    width: 30px;
    transition: all 0.5s ease;
}

#about-services a:hover img {
    width: 35px;
    margin-left: 20px;

}

/*End About-services*/


/*About Section*/
/*End About Section*/


/*Recent Posts*/
#posts figure {
    margin-top: 50px;
    width: 300px;
}

#posts h3 {
    width: 200px;
    margin: 10px 0;
}

#posts a {
    display: block;
    color: #868686;
}

/*End Recent Posts*/


/*Form*/
#form p {
    color: #e1e1e1;
}

.input {
    width: 100%;
    padding: 10px 0;
    border: none;
    border-bottom: 1px solid #868686;
    margin: 10px 0;
    color: #868686;
    background: transparent;
    outline: none;
}

.submit {
    font-size: 15px;
    letter-spacing: 2px;
    border: 1px solid white;
    margin: 30px auto;
    background: #000000;
    width: 350px;
    padding: 20px;
    color: white;
    border-radius: 4px;
    transition: all 0.5s ease;
}

.submit:hover {

    letter-spacing: 6px;
    color: #3a3a3a;
    background: #ffffff;
    text-shadow: 5px 5px 3px #b6b6b6;
}

.slider_title {
    margin: 15px 0 8px;
    word-spacing: 3px;
    letter-spacing: 2px;
}

.slidecontainer h4 {
    margin: 30px 0 10px;
    word-spacing: -1px;
    font-size: 23px;
    text-shadow: 5px 5px 4px #5e5e5e;
}

/*Slider-Style*/
input[type=range] {
    -webkit-appearance: none;
    margin: 10px 0;
    width: 190px;
}

input[type=range]:focus {
    outline: none;
}

input[type=range]::-webkit-slider-runnable-track {
    width: 100%;
    height: 6px;
    cursor: pointer;
    animate: 0.2s;
    box-shadow: 1px 1px 3px #CFCFCF;
    background: #FFFFFF;
    border-radius: 4px;
    border: 0 solid #000000;
}

input[type=range]::-webkit-slider-thumb {
    box-shadow: 1px 1px 10px #BABABA;
    border: 0 solid #FFFFFF;
    height: 25px;
    width: 25px;
    border-radius: 50px;
    background: #F7F7F7;
    cursor: pointer;
    -webkit-appearance: none;
    margin-top: -9.5px;
}

input[type=range]:focus::-webkit-slider-runnable-track {
    background: #FFFFFF;
}

input[type=range]::-moz-range-track {
    width: 100%;
    height: 6px;
    cursor: pointer;
    animate: 0.2s;
    box-shadow: 1px 1px 3px #CFCFCF;
    background: #FFFFFF;
    border-radius: 4px;
    border: 0 solid #000000;
}

input[type=range]::-moz-range-thumb {
    box-shadow: 1px 1px 10px #BABABA;
    border: 0 solid #FFFFFF;
    height: 25px;
    width: 25px;
    border-radius: 50px;
    background: #F7F7F7;
    cursor: pointer;
}

input[type=range]::-ms-track {
    width: 100%;
    height: 6px;
    cursor: pointer;
    animate: 0.2s;
    background: transparent;
    border-color: transparent;
    color: transparent;
}

input[type=range]::-ms-fill-lower {
    background: #FFFFFF;
    border: 0 solid #000000;
    border-radius: 8px;
    box-shadow: 1px 1px 3px #CFCFCF;
}

input[type=range]::-ms-fill-upper {
    background: #FFFFFF;
    border: 0 solid #000000;
    border-radius: 8px;
    box-shadow: 1px 1px 3px #CFCFCF;
}

input[type=range]::-ms-thumb {
    margin-top: 1px;
    box-shadow: 1px 1px 10px #BABABA;
    border: 0 solid #FFFFFF;
    height: 25px;
    width: 25px;
    border-radius: 50px;
    background: #F7F7F7;
    cursor: pointer;
}

input[type=range]:focus::-ms-fill-lower {
    background: #FFFFFF;
}

input[type=range]:focus::-ms-fill-upper {
    background: #FFFFFF;
}

/*End Slider-Style*/
/*End Form*/


/*Form About*/
/*End Form About*/


/*Footer*/
footer {
    padding: 80px 0;
    background: white;
}

footer small {
    color: black;
    margin: 30px 0;
    display: block;
    line-height: 20px;

}

footer h3 {
    color: black;
    margin: 25px 0 0;
}

footer .footer-link li {
    margin: 5px 0;
}

footer .footer-link a {
    font-size: 15px;
    color: #737373;
}

footer form {
    text-align: center;
}

footer form a:hover {
    border: solid 1px black;
}

footer label input {
    letter-spacing: 1px;
    padding: 15px 0 15px 10px !important;
    color: black;
}

footer p {
    text-align: center;
    color: #363636;
}

/*End Footer*/


/*Prelouder*/
#preloader {
    z-index: 10000;
    background-color: #000;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
#loader {
    display: block;
    position: relative;
    left: 50%;
    top: 50%;
    width: 150px;
    height: 150px;
    margin: -75px 0 0 -75px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #ffffff;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
}
#loader:before {
    content: "";
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #c9c9c9;
    -webkit-animation: spin 3s linear infinite;
    animation: spin 3s linear infinite;
}
#loader:after {
    content: "";
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #707070;
    -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);
    }
}

/*End Prelouder*/


/* Small devices (tablets, 768px and up) */
@media (min-width: 768px) {
}

/* Medium devices (desktops, 992px and up) */
@media (min-width: 1000px) {
}

/* Large devices (large desktops, 1200px and up) */
@media (min-width: 1000px) {

    .container {
        width: 998px;
    }

    .md-d-none {
        display: none;
    }

    .md-text-center {
        text-align: center;
    }

    .md-text-left {
        text-align: left;
    }

    h2 {
        text-transform: capitalize;
        font-size: 50px;
        border: unset;
    }

    /*Flex*/
    .d-md-flex {
        display: flex;
    }

    .flex-md-row {
        flex-flow: row;
    }

    .flex-md-row-reverse {
        flex-flow: row-reverse;
    }

    .flex-md-column {
        flex-flow: column;
    }

    .flex-md-column-reverse {
        flex-flow: column-reverse;
    }

    .flex-md-wrap {
        flex-flow: wrap;
    }

    .align-items-md-center {
        align-items: center;
    }

    .align-items-md-start {
        align-items: start;
    }

    .justify-content-md-start {
        justify-content: start;
    }

    .justify-content-md-center {
        justify-content: center;
    }

    .justify-content-md-between {
        justify-content: space-between;
    }

    .justify-content-md-around {
        justify-content: space-around;
    }

    /*End Flex*/
    /*Nav*/
    nav {

    }


    nav li:hover a:after {
        width: 100%;
    }

    nav ul li a {
        padding: 0 0 0 100px;
    }

    #logo {
        width: 150px;
    }


    .hamburger-button {
        display: none;
    }

    .menu ul li {
        opacity: unset;
    }

    .overlay {
        position: unset;
        background: unset;
        top: unset;
        left: unset;
        width: unset;
        height: unset;
        opacity: unset;
        visibility: unset;
    }


    /*End Nav*/
    /*Nav About*/
    /*End Nav About*/
    /*Header edifian*/
    #header-edifian {
        padding-top: 150px;
    }

    #header-edifian img {
        width: 550px;
    }

    #header-edifian h2 {
        font-size: 50px;
    }

    #header-edifian p {
        line-height: 60px;
        letter-spacing: 2px;
        font-size: 40px;
    }

    /*End Header edifian*/
    /*Header Services*/
    #header-services .d-md-flex article {
        width: 450px;
    }

    #header-services h1 {
        font-size: 60px;
    }

    #header-services article {
        padding: 40px 0;
        width: 550px;
    }

    /*End Header Services*/
    /*Header About*/
    header img {
        width: 100%;
    }

    #header_about p {
        line-height: 40px;
        font-size: 25px;
        letter-spacing: 1px;
        width: 550px;
    }

    /*End Header About*/
    /*Header Contact*/
    #header-contact #form {
        margin-top: 100px;
    }

    #header-contact {
        padding: 100px 0;
    }

    #header-contact form {
        width: 500px;
    }

    /*End Header Contact*/















    /*Work Page*/
    .work-img {
        z-index: -1;
        position: absolute;
    }

    .header-work article > div {
        margin-bottom: 30px;
    }

    .header-work article a {

        width: 460px;
        height: 100%;
    }

    /*End Work Page*/

    /*Work Section*/
    .card {
        overflow: hidden;
        position: relative;
        font-family: sans-serif;
    }

    .card a {
        transition: all 0.5s ease;
        width: 100%;
    }

    .card a figure {
    }

    .card .text-card {
        position: absolute;
        bottom: 30%;
        z-index: 4;
        text-align: center;
        width: 100%;
        opacity: 0;
        transition: 0.3s;
    }

    .card::after {
        content: "";
        display: block;
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        background: rgba(0, 0, 0, 0.5);
        transition: 0.3s;
        opacity: 0;
        z-index: 3;
    }

    .card:hover .text-card {
        opacity: 1;
        transform: scale(1.2);
    }

    .card:hover::after {
        background: rgba(0, 0, 0, 0.49);
        opacity: 1;
    }

    .card:hover a {

        transform: scale(1.1);
    }

    .card figure img {
        transition: all 0.5s ease;
    }

    .features-work article > div {
        margin-bottom: 30px;
    }

    /*End Work Section*/











    /*Quote*/
    #quote q {

        border-top: 1px solid black;
        display: block;
        padding-top: 100px;
        font-size: 30px;
        line-height: 50px;
    }

    #quote p {
        margin-bottom: 100px;
    }

    /*End Quote*/
    /*About Services*/
    #about-services a {
        margin: 45px 0;
        display: block;
        font-size: 30px;
        color: #868686;
        letter-spacing: 1px;
        width: 500px;

        transition: all 0.8s ease;
    }

    #about-services a img {
        width: 30px;
        transition: all 0.8s ease;
    }

    #about-services article div > a:hover {
        padding-left: 20px;
    }

    #about-services a:hover img {
        width: 35px;
        margin-left: 20px;
    }

    #about-services figure a {
        width: 200px;
    }

    /*End About Services*/
    /*About Section*/
    /*End About Section*/
    /*Posts*/
    #posts {
        padding: 100px 0;
    }

    #posts figure img {
        transition: all 0.5s ease;
        height: 100%;
    }

    #posts figure {
        height: 320px;
        margin: 0;
        width: 470px;
    }

    #posts a {
        overflow: hidden;
    }

    #posts a:hover img {
        transform: scale(1.1);
        opacity: 0.5;
    }

    #posts h3 {
        margin: 40px 0;
        font-size: 25px;
        width: 480px;
    }

    /*End Posts*/
    /*Form*/
    #form {
        padding: 100px 0;
    }

    #form form {
        width: 500px;
    }

    input[type=range] {
        width: 250px;
    }

    /*End Form*/
    /*Footer*/
    #footer-left {
        width: 300px;
    }

    footer form {
        width: 350px;
    }

    footer figure img {
        width: 200px;
    }

    /*End Footer*/
}
