body{
    direction: ltr;
    font-family: 'Raleway', sans-serif;
    overflow-x: hidden;
    background-color: #080909;
}

a:hover, a:active, a:focus,a {
    outline: 0;
    text-decoration: none;
}
a:hover {
    text-decoration: none;
}
ul {
    padding: 0;
    margin: 0;
}
::-moz-placeholder {
    opacity: 1;
}
/*
 http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)


html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}
 HTML5 display-role reset for older browsers 
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section, main {
    display: block;
}
body {
    line-height: 1;
}
ol, ul {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}*/

/*
* Start Of Reset
*/

/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section, main {
    display: block;
}
body {
    line-height: 1;
}
ol, ul {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
/*
* End Of Reset
*/


/*
* Start Of Library
*/
/* -------------------------------- 

Primary style

-------------------------------- */
*, *::after, *::before {
    box-sizing: border-box;
}

html {
    font-size: 62.5%;
}

body {
    color: #83b0b9;
    background-color: #343943;
}

a {
    color: #d35657;
    text-decoration: none;
}

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

Navigation

-------------------------------- */
.cd-side-navigation {
    position: fixed;
    z-index: 3;
    top: 0;
    left: 0;
    height: 100vh;
    width: 74px;
    overflow: hidden;
}
.cd-side-navigation::before {
    /* background color of the side navigation */
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: -webkit-calc(100% - 4px);
    width: calc(100% - 4px);
    background-color: #131519;
}
.cd-side-navigation ul {
    height: 100%;
    /*overflow: auto;*/
    -webkit-overflow-scrolling: touch;
}
.cd-side-navigation li {
    width: -webkit-calc(100% - 4px);
    width: calc(100% - 4px);
}
.cd-side-navigation a {
    display: block;
    position: relative;
    padding: 4em 0 1.5em;
    font-size: 1.2rem;
    text-align: center;
    color: #4a5261;
    -webkit-transition: background-color 0.2s, color 0.2s;
    -moz-transition: background-color 0.2s, color 0.2s;
    transition: background-color 0.2s, color 0.2s;
}
.cd-side-navigation a svg {
    /* this is the icon */
    position: absolute;
    left: 50%;
    right: auto;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    top: 1.3em;
}
.cd-side-navigation a svg * {
    -webkit-transition: stroke 0.2s;
    -moz-transition: stroke 0.2s;
    transition: stroke 0.2s;
}
.cd-side-navigation a .Border {
    /* 4px line to the right of the item - visible on hover */
    content: '';
    position: absolute;
    top: 0;
    right: -4px;
    height: 100%;
    width: 4px;
    opacity: 0;
    -webkit-transition: opacity 0.2s;
    -moz-transition: opacity 0.2s;
    transition: opacity 0.2s;
    pointer-events: none;
}
.no-touch .cd-side-navigation a:hover {
    background-color: #08090b;
}
.no-touch .cd-side-navigation a:hover .Border {
    opacity: 1;
}
.cd-side-navigation a.selected, .no-touch .cd-side-navigation a.selected:hover {
    background-color: #ffffff;
    color: #131519;
}
.cd-side-navigation a.selected > svg *, .no-touch .cd-side-navigation a.selected:hover > svg * {
    stroke: #83b0b9;
}
.cd-side-navigation li:nth-of-type(2) .selected > svg *,
.cd-side-navigation li:nth-of-type(2) .selected:hover > svg * {
    stroke: #d35657;
}
.cd-side-navigation li:nth-of-type(3) .selected > svg *,
.cd-side-navigation li:nth-of-type(3) .selected:hover > svg * {
    stroke: #343943;
}
.cd-side-navigation li:nth-of-type(4) .selected > svg *,
.cd-side-navigation li:nth-of-type(4) .selected:hover > svg * {
    stroke: #e4b162;
}
.cd-side-navigation li:nth-of-type(2) a::after {
    background-color: #d35657;
}
.cd-side-navigation li:nth-of-type(3) a::after {
    background-color: #343943;
}
.cd-side-navigation li:nth-of-type(4) a::after {
    background-color: #e4b162;
}
@media only screen and (min-width: 480px) {
    .cd-side-navigation {
        width: 94px;
    }
    .cd-side-navigation a {
        padding: 4em 0 1.5em;
        font-size: 1.3rem;
    }
    .cd-side-navigation a svg {
        top: 1.6em;
    }
}

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

 Main Content

-------------------------------- */
.cd-main {
    height: 100vh;
    overflow: hidden;
}

.cd-section {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    overflow-y: auto;
    padding-left: 106px;
    /* Force Hardware Acceleration */
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    -ms-transform: translateZ(0);
    -o-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-transform: translateX(-100%);
    -moz-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    -o-transform: translateX(-100%);
    transform: translateX(-100%);
    -webkit-transition: -webkit-transform 0s 0.5s;
    -moz-transition: -moz-transform 0s 0.5s;
    transition: transform 0s 0.5s;
}
.cd-section.overflow-hidden {
    /* this class is used to hide the scrolling bar while a new section is entering the viewport */
    overflow: hidden;
}
.cd-section header {
    position: relative;
    height: 100vh;
    width: 100%;
    /*background: #83b0b9;*/
    overflow: hidden;
}
.cd-section header i {
    position: absolute;
    top: 20%;
    display: block;
    width: 105px;
    height: 105px;
    line-height: 95px;
    text-align: center;
    color: #FFF;
    margin: auto;
    left: 0;
    right: 0;
    border: 10px solid #000000;
    font-size: 40px;
}
.cd-section.services header {
    background-color: #d35657;
}
.cd-section.projects header {
    background-color: #343943;
}
.cd-section.contact header {
    background-color: #e4b162;
}

.cd-section .cd-scroll {
    /* this is the arrow at the bottom of the header */
    display: block;
    position: absolute;
    bottom: 60px;
    left: -webkit-calc(50vw - (106px - 4px)/2);
    left: calc(50vw - (106px - 4px)/2);
    width: 44px;
    height: 44px;
    /* image replacement */
    overflow: hidden;
    text-indent: 100%;
    white-space: nowrap;
    visibility: hidden;
    -webkit-transition: -webkit-transform 0s 0.5s, visibility 0s 0.5s;
    -moz-transition: -moz-transform 0s 0.5s, visibility 0s 0.5s;
    transition: transform 0s 0.5s, visibility 0s 0.5s;
    -webkit-transform: translateX(-50%) scale(0);
    -moz-transform: translateX(-50%) scale(0);
    -ms-transform: translateX(-50%) scale(0);
    -o-transform: translateX(-50%) scale(0);
    transform: translateX(-50%) scale(0);
    background: url("../images/AngleBottom.png") no-repeat center center;
}
.cd-section.visible {
    /* this is the visible/selected section */
    position: relative;
    z-index: 2;
    -webkit-overflow-scrolling: touch;
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
    -webkit-transition: -webkit-transform 0.5s 0s;
    -moz-transition: -moz-transform 0.5s 0s;
    transition: transform 0.5s 0s;
}
.cd-section.visible .cd-scroll {
    visibility: visible;
    -webkit-transform: translateX(-50%) scale(1);
    -moz-transform: translateX(-50%) scale(1);
    -ms-transform: translateX(-50%) scale(1);
    -o-transform: translateX(-50%) scale(1);
    transform: translateX(-50%) scale(1);
    -webkit-transition: -webkit-transform 0.3s 0.5s, visibility 0s 0s;
    -moz-transition: -moz-transform 0.3s 0.5s, visibility 0s 0s;
    transition: transform 0.3s 0.5s, visibility 0s 0s;
    -webkit-animation: cd-scroll-down 1.2s 0.9s;
    -moz-animation: cd-scroll-down 1.2s 0.9s;
    animation: cd-scroll-down 1.2s 0.9s;
    -webkit-animation-iteration-count: 2;
    -moz-animation-iteration-count: 2;
    animation-iteration-count: 2;
}
@media only screen and (min-width: 480px) {
    .cd-section {
        padding-left: 106px;
    }
    .cd-section .cd-scroll {
        left: -webkit-calc(50vw - (106px - 4px)/2);
        left: calc(50vw - (106px - 4px)/2);
    }
}

@-webkit-keyframes cd-scroll-down {
    0% {
        -webkit-transform: translateX(-50%) scale(1);
    }
    50% {
        -webkit-transform: translateY(10px) translateX(-50%) scale(1);
    }
    100% {
        -webkit-transform: translateX(-50%) scale(1);
    }
}
@-moz-keyframes cd-scroll-down {
    0% {
        -moz-transform: translateX(-50%) scale(1);
    }
    50% {
        -moz-transform: translateY(10px) translateX(-50%) scale(1);
    }
    100% {
        -moz-transform: translateX(-50%) scale(1);
    }
}
@keyframes cd-scroll-down {
    0% {
        -webkit-transform: translateX(-50%) scale(1);
        -moz-transform: translateX(-50%) scale(1);
        -ms-transform: translateX(-50%) scale(1);
        -o-transform: translateX(-50%) scale(1);
        transform: translateX(-50%) scale(1);
    }
    50% {
        -webkit-transform: translateY(10px) translateX(-50%) scale(1);
        -moz-transform: translateY(10px) translateX(-50%) scale(1);
        -ms-transform: translateY(10px) translateX(-50%) scale(1);
        -o-transform: translateY(10px) translateX(-50%) scale(1);
        transform: translateY(10px) translateX(-50%) scale(1);
    }
    100% {
        -webkit-transform: translateX(-50%) scale(1);
        -moz-transform: translateX(-50%) scale(1);
        -ms-transform: translateX(-50%) scale(1);
        -o-transform: translateX(-50%) scale(1);
        transform: translateX(-50%) scale(1);
    }
}
.cd-title {
    position: absolute;
    top: 50%;
    left: 0;
    /* this prevents title from jumping when the section scroll bar is visible */
    width: calc(100vw - 106px);
    padding: 1em;
    color: #ffffff;
    text-align: center;
    /* Force Hardware Acceleration */
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    -ms-transform: translateZ(0);
    -o-transform: translateZ(0);
    transform: translateZ(0);
    opacity: 0;
    -webkit-transform: translateY(-50%) translateX(-80px);
    -moz-transform: translateY(-50%) translateX(-80px);
    -ms-transform: translateY(-50%) translateX(-80px);
    -o-transform: translateY(-50%) translateX(-80px);
    transform: translateY(-50%) translateX(-80px);
    -webkit-transition: -webkit-transform 0s 0.5s, opacity 0s 0.5s;
    -moz-transition: -moz-transform 0s 0.5s, opacity 0s 0.5s;
    transition: transform 0s 0.5s, opacity 0s 0.5s;
}
.cd-section.Close .cd-title {
    width: calc(100vw - 56px);
}
.cd-section.Close .cd-scroll {
    left: -webkit-calc(50vw - (56px - 4px)/2);
    left: calc(50vw - (56px - 4px)/2);
}
.cd-title h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 20px;
}
.cd-title span {
    opacity: 1;
}
.visible .cd-title {
    opacity: 1;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: -webkit-transform 0.4s 0.3s, opacity 0.4s 0.3s;
    -moz-transition: -moz-transform 0.4s 0.3s, opacity 0.4s 0.3s;
    transition: transform 0.4s 0.3s, opacity 0.4s 0.3s;
}
@media only screen and (min-width: 768px) {
    .cd-title h2 {
        font-size: 5rem;
    }
}

.cd-content {
    padding: 2em 0;
    background-color: #ebebeb;
}
.cd-content p {
    width: 90%;
    max-width: 800px;
    margin: 0 auto 2em;
    font-size: 1.4rem;
    line-height: 1.6;
    color: #999999;
}
@media only screen and (min-width: 768px) {
    .cd-content {
        padding: 4em 0;
    }
    .cd-content p {
        font-size: 1.6rem;
    }
}

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

 Loading Bar

-------------------------------- */
#cd-loading-bar {
    position: fixed;
    z-index: 2;
    left: 70px;
    width: 4px;
    visibility: hidden;
    /* Force Hardware Acceleration */
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    -ms-transform: translateZ(0);
    -o-transform: translateZ(0);
    transform: translateZ(0);
}
#cd-loading-bar.index {
    background-color: #83b0b9;
}
#cd-loading-bar.services {
    background-color: #d35657;
}
#cd-loading-bar.projects {
    background-color: #343943;
}
#cd-loading-bar.contact {
    background-color: #e4b162;
}
#cd-loading-bar.loading {
    visibility: visible;
}
@media only screen and (min-width: 480px) {
    #cd-loading-bar {
        left: 90px;
    }
}


/*
* End Of Library
*/

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

Main Components 

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

.TimeLine {
    /*max-width: 900px;*/
    margin: auto;
}
.cd-horizontal-timeline {
    opacity: 0;
    margin: 2em auto;
    -webkit-transition: opacity 0.2s;
    -moz-transition: opacity 0.2s;
    transition: opacity 0.2s;
}
.cd-horizontal-timeline::before {
    /* never visible - this is used in jQuery to check the current MQ */
    content: 'mobile';
    display: none;
}
.cd-horizontal-timeline.loaded {
    /* show the timeline after events position has been set (using JavaScript) */
    opacity: 1;
}
.cd-horizontal-timeline .timeline {
    position: relative;
    height: 100px;
    width: 90%;
    max-width: 800px;
    margin: 0 auto;
}
.cd-horizontal-timeline .events-wrapper {
    position: relative;
    height: 100%;
    margin: 0 40px;
    overflow: hidden;
}
.cd-horizontal-timeline .events-wrapper::after, .cd-horizontal-timeline .events-wrapper::before {
    /* these are used to create a shadow effect at the sides of the timeline */
    content: '';
    position: absolute;
    z-index: 2;
    top: 0;
    height: 100%;
    width: 20px;
}
.cd-horizontal-timeline .events-wrapper::before {
    left: 0;
    background-image: -webkit-linear-gradient( left , #f8f8f8, rgba(248, 248, 248, 0));
    background-image: linear-gradient(to right, #f8f8f8, rgba(248, 248, 248, 0));
}
.cd-horizontal-timeline .events-wrapper::after {
    right: 0;
    background-image: -webkit-linear-gradient( right , #f8f8f8, rgba(248, 248, 248, 0));
    background-image: linear-gradient(to left, #f8f8f8, rgba(248, 248, 248, 0));
}
.cd-horizontal-timeline .events {
    /* this is the grey line/timeline */
    position: absolute;
    z-index: 1;
    left: 0;
    top: 49px;
    height: 2px;
    /* width will be set using JavaScript */
    background: #dfdfdf;
    -webkit-transition: -webkit-transform 0.4s;
    -moz-transition: -moz-transform 0.4s;
    transition: transform 0.4s;
}
.cd-horizontal-timeline .filling-line {
    /* this is used to create the green line filling the timeline */
    position: absolute;
    z-index: 1;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: #82bbc2;
    -webkit-transform: scaleX(0);
    -moz-transform: scaleX(0);
    -ms-transform: scaleX(0);
    -o-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    -ms-transform-origin: left center;
    -o-transform-origin: left center;
    transform-origin: left center;
    -webkit-transition: -webkit-transform 0.3s;
    -moz-transition: -moz-transform 0.3s;
    transition: transform 0.3s;
}
.cd-horizontal-timeline .events a {
    position: absolute;
    bottom: 0;
    z-index: 2;
    text-align: center;
    font-size: 1.3rem;
    padding-bottom: 15px;
    color: #383838;
    /* fix bug on Safari - text flickering while timeline translates */
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    -ms-transform: translateZ(0);
    -o-transform: translateZ(0);
    transform: translateZ(0);
}
.cd-horizontal-timeline .events a::after {
    /* this is used to create the event spot */
    content: '';
    position: absolute;
    left: 50%;
    right: auto;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    bottom: -5px;
    height: 12px;
    width: 12px;
    border-radius: 50%;
    border: 2px solid #dfdfdf;
    background-color: #f8f8f8;
    -webkit-transition: background-color 0.3s, border-color 0.3s;
    -moz-transition: background-color 0.3s, border-color 0.3s;
    transition: background-color 0.3s, border-color 0.3s;
}
.no-touch .cd-horizontal-timeline .events a:hover::after {
    background-color: #82bbc2;
    border-color: #82bbc2;
}
.cd-horizontal-timeline .events a.selected {
    pointer-events: none;
}
.cd-horizontal-timeline .events a.selected::after {
    background-color: #82bbc2;
    border-color: #82bbc2;
}
.cd-horizontal-timeline .events a.older-event::after {
    border-color: #82bbc2;
}
@media only screen and (min-width: 1100px) {
    .cd-horizontal-timeline {
        margin: 6em auto;
    }
    .cd-horizontal-timeline::before {
        /* never visible - this is used in jQuery to check the current MQ */
        content: 'desktop';
    }
}

.cd-timeline-navigation a {
    /* these are the left/right arrows to navigate the timeline */
    position: absolute;
    z-index: 1;
    top: 50%;
    bottom: auto;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    height: 34px;
    width: 34px;
    border-radius: 50%;
    border: 2px solid #dfdfdf;
    /* replace text with an icon */
    overflow: hidden;
    color: transparent;
    text-indent: 100%;
    white-space: nowrap;
    -webkit-transition: border-color 0.3s;
    -moz-transition: border-color 0.3s;
    transition: border-color 0.3s;
}
.cd-timeline-navigation a::after{
    position: absolute;
    height: 16px;
    width: 16px;
    left: 50%;
    top: 50%;
    bottom: auto;
    right: auto;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    -o-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
}
.cd-timeline-navigation a:after{
    /* arrow icon */
    content: "\f105";
    font-family: FontAwesome; 
    color: #82bbc2;
    text-indent: initial;
    font-size: 20px;
    height: 34px;
    width: 34px;
    text-align: center;
    line-height: 32px;
}
.cd-timeline-navigation a.inactive:after{
    color: #dfdfdf;
}

.cd-timeline-navigation a.prev {
    left: 0;
    -webkit-transform: translateY(-50%) rotate(180deg);
    -moz-transform: translateY(-50%) rotate(180deg);
    -ms-transform: translateY(-50%) rotate(180deg);
    -o-transform: translateY(-50%) rotate(180deg);
    transform: translateY(-50%) rotate(180deg);
}
.cd-timeline-navigation a.next {
    right: 0;
}
.no-touch .cd-timeline-navigation a:hover {
    border-color: #82bbc2;
}
.cd-timeline-navigation a.inactive {
    cursor: not-allowed;
}
.cd-timeline-navigation a.inactive::after {
    background-position: 0 -16px;
}
.no-touch .cd-timeline-navigation a.inactive:hover {
    border-color: #dfdfdf;
}

.cd-horizontal-timeline .events-content {
    position: relative;
    width: 100%;
    margin: 2em 0;
    overflow: hidden;
    -webkit-transition: height 0.4s;
    -moz-transition: height 0.4s;
    transition: height 0.4s;
}
.cd-horizontal-timeline .events-content li {
    position: absolute;
    z-index: 1;
    width: 100%;
    left: 0;
    top: 0;
    -webkit-transform: translateX(-100%);
    -moz-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    -o-transform: translateX(-100%);
    transform: translateX(-100%);
    padding: 0 5%;
    opacity: 0;
    -webkit-animation-duration: 0.4s;
    -moz-animation-duration: 0.4s;
    animation-duration: 0.4s;
    -webkit-animation-timing-function: ease-in-out;
    -moz-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
}
.cd-horizontal-timeline .events-content li.selected {
    /* visible event content */
    position: relative;
    z-index: 2;
    opacity: 1;
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
}
.cd-horizontal-timeline .events-content li.enter-right, .cd-horizontal-timeline .events-content li.leave-right {
    -webkit-animation-name: cd-enter-right;
    -moz-animation-name: cd-enter-right;
    animation-name: cd-enter-right;
}
.cd-horizontal-timeline .events-content li.enter-left, .cd-horizontal-timeline .events-content li.leave-left {
    -webkit-animation-name: cd-enter-left;
    -moz-animation-name: cd-enter-left;
    animation-name: cd-enter-left;
}
.cd-horizontal-timeline .events-content li.leave-right, .cd-horizontal-timeline .events-content li.leave-left {
    -webkit-animation-direction: reverse;
    -moz-animation-direction: reverse;
    animation-direction: reverse;
}
.cd-horizontal-timeline .events-content li > * {
    max-width: 800px;
    margin: 0 auto;
}
.cd-horizontal-timeline .events-content h2 {
    font-weight: bold;
    font-size: 2.6rem;
    font-family: "Playfair Display", serif;
    font-weight: 700;
    line-height: 1.2;
}
.cd-horizontal-timeline .events-content em {
    display: block;
    font-style: italic;
    margin: 10px auto;
}
.cd-horizontal-timeline .events-content em::before {
    content: '- ';
}
.cd-horizontal-timeline .events-content p {
    font-size: 1.4rem;
    color: #959595;
}
.cd-horizontal-timeline .events-content em, .cd-horizontal-timeline .events-content p {
    line-height: 1.6;
}
@media only screen and (min-width: 768px) {
    .cd-horizontal-timeline .events-content h2 {
        font-size: 7rem;
    }
    .cd-horizontal-timeline .events-content em {
        font-size: 2rem;
    }
    .cd-horizontal-timeline .events-content p {
        font-size: 1.8rem;
    }
}

@-webkit-keyframes cd-enter-right {
    0% {
        opacity: 0;
        -webkit-transform: translateX(100%);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateX(0%);
    }
}
@-moz-keyframes cd-enter-right {
    0% {
        opacity: 0;
        -moz-transform: translateX(100%);
    }
    100% {
        opacity: 1;
        -moz-transform: translateX(0%);
    }
}
@keyframes cd-enter-right {
    0% {
        opacity: 0;
        -webkit-transform: translateX(100%);
        -moz-transform: translateX(100%);
        -ms-transform: translateX(100%);
        -o-transform: translateX(100%);
        transform: translateX(100%);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateX(0%);
        -moz-transform: translateX(0%);
        -ms-transform: translateX(0%);
        -o-transform: translateX(0%);
        transform: translateX(0%);
    }
}
@-webkit-keyframes cd-enter-left {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-100%);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateX(0%);
    }
}
@-moz-keyframes cd-enter-left {
    0% {
        opacity: 0;
        -moz-transform: translateX(-100%);
    }
    100% {
        opacity: 1;
        -moz-transform: translateX(0%);
    }
}
@keyframes cd-enter-left {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-100%);
        -moz-transform: translateX(-100%);
        -ms-transform: translateX(-100%);
        -o-transform: translateX(-100%);
        transform: translateX(-100%);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateX(0%);
        -moz-transform: translateX(0%);
        -ms-transform: translateX(0%);
        -o-transform: translateX(0%);
        transform: translateX(0%);
    }
}


/*
* When Page Load
*/
.demo-3 { color: #fff; background: #242527; }
.demo-3 a { color: #34343c; }
.demo-3 a:hover, .demo-3 a:focus, .demo-3 .codrops-demos a.current-demo { color: #B73030; }
.demo-3 .button { background: #D23232; }
.demo-3 .button:hover { background: #B73030; }
/*
* Mouse Background
*/
#demo-canvas {
    position: absolute;
    opacity: 0.6;
    /*display: none;*/
    /*    top: 0;
        width: 100%;
        height: 100%;*/
    z-index: 99999999999;
}
body > canvas {
    z-index: 9999999;
}
.grid {
    position: relative;
    clear: both;
    margin: 0 auto;
    padding: 1em 0 4em;
    list-style: none;
    text-align: center;
}

/* Common style */
.grid figure {
    position: relative;
    overflow: hidden;
    margin: 10px 1%;
    min-width: 320px;
    max-width: 480px;
    max-height: 360px;
    width: 48%;
    height: auto;
    background: #3085a3;
    text-align: center;
    cursor: pointer;
    display: inline-block;
}

.grid figure img {
    position: relative;
    display: block;
    min-height: 100%;
    max-width: 100%;
    opacity: 0.8;
}

.grid figure figcaption {
    padding: 2em;
    color: #fff;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.grid figure figcaption::before,
.grid figure figcaption::after {
    pointer-events: none;
}

.grid figure figcaption,
.grid figure figcaption > a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Anchor will cover the whole item by default */
/* For some effects it will show as a button */
.grid figure figcaption > a {
    z-index: 1000;
    text-indent: 200%;
    white-space: nowrap;
    font-size: 0;
    opacity: 0;
}

.grid figure h2 {
    font-weight: 800;
    color: #ffffff;
    font-size: 25px;
    margin-bottom: 15px;
}

.grid figure h2 span {
    font-weight: 800;
}

.grid figure h2,
.grid figure p {
    margin: 0;
}

.grid figure p {
    letter-spacing: 1px;
    font-size: 68.5%;
}

/* Individual effects */

/*---------------*/
/***** Julia Blogger Design *****/
/*---------------*/

figure.effect-julia {
    background: #2f3238;
}

figure.effect-julia img {
    max-width: none;
    height: 400px;
    -webkit-transition: opacity 1s, -webkit-transform 1s;
    transition: opacity 1s, transform 1s;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

figure.effect-julia figcaption {
    text-align: left;
}

figure.effect-julia h2 {
    position: relative;
    padding: 0.5em 0;
}

figure.effect-julia p {
    display: inline-block;
    margin: 0 0 0.25em;
    padding: 0.4em 0.8em;
    background: rgba(255,255,255,0.9);
    color: #000000;
    text-transform: none;
    font-weight: 500;
    font-size: 14px;
    -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
    transition: opacity 0.35s, transform 0.35s;
    -webkit-transform: translate3d(-420px,0,0);
    transform: translate3d(-420px,0,0);
}

figure.effect-julia p:first-child {
    -webkit-transition-delay: 0.15s;
    transition-delay: 0.15s;
}

figure.effect-julia p:nth-of-type(2) {
    -webkit-transition-delay: 0.1s;
    transition-delay: 0.1s;
}

figure.effect-julia p:nth-of-type(3) {
    -webkit-transition-delay: 0.05s;
    transition-delay: 0.05s;
}

figure.effect-julia:hover p:first-child {
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
}

figure.effect-julia:hover p:nth-of-type(2) {
    -webkit-transition-delay: 0.05s;
    transition-delay: 0.05s;
}

figure.effect-julia:hover p:nth-of-type(3) {
    -webkit-transition-delay: 0.1s;
    transition-delay: 0.1s;
}

figure.effect-julia:hover img {
    opacity: 0.4;
    -webkit-transform: scale3d(1.1,1.1,1);
    transform: scale3d(1.1,1.1,1);
}

figure.effect-julia:hover p {
    opacity: 1;
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
}


/* ContactUs Button Rayen */
.button--rayen {
    overflow: hidden;
    padding: 0;
    width: 160px;
    text-align: center;
}
.button--rayen.button--inverted {
    color: #fff;
}
.button--rayen::before {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #e4b162;
    color: #FFF;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
}
.button--rayen.button--inverted::before {
    background: #fff;
    color: #37474f;
}
.button--rayen > span {
    display: block;
}
.button--rayen::before,
.button--rayen > span {
    height: 65px;
    line-height: 65px;
    text-transform: uppercase;
    -webkit-transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    -webkit-transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
    transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
}
.button--rayen:hover::before {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}
.button--rayen:hover > span {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
}


/* Grid */
.grid__item {
    height: calc(100vh - 40px);
    min-height: 460px;
    max-width: calc(100vw - 40px);
    background: #DDD;
    margin: 20px;
    padding: 100px 0;
    z-index: 1;
    position: relative;
    text-align: center;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-transform: translate3d(0,0,0); /* Solves Safari bug because of SVG clipping mask */
}

.color-7 { background: #cde7d3; }
.grid__item p {
    font-size: 1.5em;
    font-weight: bold;
    color: #777;
}
/* General link styles Big Title */
.link {
    outline: none;
    text-decoration: none;
    position: relative;
    display: inline-block;
}

/* Mallki */
.link--mallki {
    font-weight: 800;
    /*color: #81a689;*/
    -webkit-transition: color 0.5s 0.25s;
    transition: color 0.5s 0.25s;
    overflow: hidden;
}

.link--mallki:hover {
    -webkit-transition: none;
    transition: none;
    color: transparent;
}

.link--mallki::before {
    content: '';
    width: 100%;
    height: 6px;
    margin: -3px 0 0 0;
    background: #fff;
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translate3d(-100%,0,0);
    transform: translate3d(-100%,0,0);
    -webkit-transition: -webkit-transform 0.4s;
    transition: transform 0.4s;
    -webkit-transition-timing-function: cubic-bezier(0.7,0,0.3,1);
    transition-timing-function: cubic-bezier(0.7,0,0.3,1);
}

.link--mallki:hover::before {
    -webkit-transform: translate3d(100%,0,0);
    transform: translate3d(100%,0,0);
}

.link--mallki span {
    position: absolute;
    height: 50%;
    width: 100%;
    left: 0;
    top: 0;
    overflow: hidden;
}

.link--mallki span::before {
    content: attr(data-letters);
    /*color: red;*/
    position: absolute;
    left: 0;
    width: 100%;
    /*color: #fff;*/
    -webkit-transition: -webkit-transform 0.5s;
    transition: transform 0.5s;
}

.link--mallki span:nth-child(2) {
    top: 50%;
}

.link--mallki span:first-child::before {
    top: 0;
    -webkit-transform: translate3d(0,100%,0);
    transform: translate3d(0,100%,0);
}

.link--mallki span:nth-child(2)::before {
    bottom: 0;
    -webkit-transform: translate3d(0,-100%,0);
    transform: translate3d(0,-100%,0);
}

.link--mallki:hover span::before {
    -webkit-transition-delay: 0.3s;
    transition-delay: 0.3s;
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
    -webkit-transition-timing-function: cubic-bezier(0.2,1,0.3,1);
    transition-timing-function: cubic-bezier(0.2,1,0.3,1);
}
/**************************************************
******************* Menu *************************
**************************************************/
.Menu a i{
    position: absolute;
    left: 0;
    right: 0;
    top: 35px;
    color: #4a5261;
    font-size: 30px;
    -moz-transition: 0.4s all ease-in-out;
    -o-transition: 0.4s all ease-in-out;
    -webkit-transition: 0.4s all ease-in-out;
    transition: 0.4s all ease-in-out;
}
.Menu a{
    text-align: center;
    font-size: 12px;
    font-weight: 500;
    padding-left: 0;
    line-height: 20px;
    min-height: 120px;
    padding-bottom: 25px;
    padding-top: 80px;
    -moz-transition: 0.4s all ease-in-out;
    -o-transition: 0.4s all ease-in-out;
    -webkit-transition: 0.4s all ease-in-out;
    transition: 0.4s all ease-in-out;
}
.cd-side-navigation {
    width: 110px;
}

/**************************************************
***************** SiteContainer *******************
**************************************************/
.SiteContainer {
    position: relative;
    z-index: 999999999;
    background-color: transparent;
}
.RightContainer {
    padding-left: 110px;
}
.SiteContainer .Menu {
    position: absolute;
    left: 0;
    top: 0;
    width: 110px;
    height: 100%;
}
.SiteContainer .Menu li a {
    display: block;
    width: 100%;
    height: 120px;
    color: #4a5261;
    font-size: 12px;
    font-weight: 500;
    text-align: left !important;
    line-height: 20px;
    padding: 10px 0 20px 10px;
    text-align: center;
    background-color: #131519;
}
.SiteContainer .Menu li a i {
    font-size: 30px;
    margin-bottom: 20px;
}

/**************************************************
******************* AboutUs  **********************
**************************************************/

.AboutMe header{
    background-color: #25282f;
    background-image: url("../images/AboutUsPhoto.png");
    background-repeat:  no-repeat;
    background-position: bottom center;
    background-size: auto 100%;
}

.BigTitle {
    color: #FFF;
    border: 13px solid #FFF;
    font-size: 70px;
    font-weight: 800;
    margin: auto;
    display: block;
    max-width: 900px;
    width: 100%;
    text-align: center;
}

.BigTitle span:before {
    color: #FFF !important;
}

.SmallDes {
    color: #FFF;
    font-size: 30px;
    font-weight: 300;
    max-width: 70%;
    margin: auto;
    text-align: left;
    margin-top: 30px;
    line-height: 35px;
}
.AboutMe .Details {
    margin-left: 55px;
    margin-bottom: 50px;

}
.AboutMe .cd-content {
    background-color: #fafafa;
    padding: 100px 0;
}
.AboutMe h1 {
    color: #1d1e22;
    font-size: 50px;
    font-weight: 900;
    border: 10px solid #1d1e22;
    margin-bottom: 30px;
    display: inline-block;
    padding: 10px 15px;
    position: relative;
    margin-left: 0;
    margin-top: 10px;
}
.AboutMe h1:after {
    content: " ";
    display: block;
    width: 16px;
    height: 10px;
    border: 2px solid #1d1e22;
    border-left: 0;
    border-top: 0;
    position: absolute;
    bottom: -20px;
    right: -20px;
}
.AboutMe h1:before {
    content: " ";
    display: block;
    width: 16px;
    height: 10px;
    border: 2px solid #1d1e22;
    border-right: 0;
    border-bottom: 0;
    position: absolute;
    top: -20px;
    left: -20px;
}
.AboutMe .Details .Photo {
    display: inline-block;
    float: left;
    margin-right: 25px;
    position: relative;
    border: 10px solid #1f2022;
    padding: 15px;
}
.AboutMe .Details .Photo:after {
    content: " ";
    display: block;
    width: 16px;
    height: 175px;
    border: 2px solid #1d1e22;
    border-left: 0;
    border-top: 0;
    position: absolute;
    bottom: -20px;
    right: -20px;
    display: none;
}
.AboutMe .Details .Photo:before {
    content: " ";
    display: block;
    width: 16px;
    height: 175px;
    border: 2px solid #1d1e22;
    border-right: 0;
    border-bottom: 0;
    position: absolute;
    top: -20px;
    left: -20px;
    display: none;
}
.AboutMe .Details .Des {
    float: left;
    color: #666666;
    font-size: 18px;
    font-weight: 400;
    line-height: 29px;
    max-width: 72%;
    text-align: justify;
}
.AboutMe .Details .Des ul {
    margin-top: 20px;
}
.AboutMe .Details .Des ul li a {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 32px;
    text-align: center;
    color: #080909;
    border: 4px solid #080909;
    font-size: 20px;
    -moz-transition: 0.4s all ease-in-out;
    -o-transition: 0.4s all ease-in-out;
    -webkit-transition: 0.4s all ease-in-out;
    transition: 0.4s all ease-in-out;
}
.AboutMe .Details .Des ul li:nth-child(1):hover a {
    color: #55acee;
    border-color: #55acee;
}
.AboutMe .Details .Des ul li:nth-child(2):hover a {
    color: #007bb5;
    border-color: #007bb5;
}
.AboutMe .Details .Des ul li:nth-child(3):hover a {
    color: #fffc00;
    border-color: #fffc00;
}
.AboutMe .SmallSizeOnly {
    display: none;
}
.AboutMe .BigTitle .Nickname{
    display: inline-block;
}
.AboutMe .Details .Photo img {
    max-width: 100%;
}
.AboutMe .NewTitle {
    color: #ffffff;
    font-size: 49px;
    font-weight: 900;
    text-align: center;
    margin-top: 35%;
    margin-bottom: 15px;
}
.AboutMe .NewTitle span {
    color: #4bb7a4;
}
.AboutMe .NewDes {
    color: #ffffff;
    font-size: 18.3px;
    font-weight: 700;
    text-align: center; 
}
/**************************************************
***************** Responsive *********************
**************************************************/
@media screen and (min-width:0px) and (max-width:1100px) {
    .AboutMe .SmallSizeOnly {
        display: block;
        margin: auto;
        margin-bottom: 20px;
    }
    .AboutMe .LargeSizeOnly {
        display: none;
    }
    .AboutMe .BigTitle {
        border: 6px solid #FFF;
        font-size: 40px;
        max-width: 80%;
    }
    .AboutMe h1 {
        font-size: 70px;
        margin-left: 50px;
        margin: auto;
        float: none;
        display: block;
        text-align: center;
        max-width: 90%;
        margin-bottom: 20px;
    }
    .AboutMe .Details {
        margin: auto !important;
    }
    .AboutMe .Details .Des{
        max-width: 90%;
        float: none;
        margin: auto;
    }
    .AboutMe .Details .Photo {
        display: block;
        float: none !important;
        text-align: center;
        max-width: 235px;
        margin: 10px auto !important;
    }

}
@media screen and (min-width:0px) and (max-width:760px) {
    .AboutMe .BigTitle {
        border: 3px solid #FFF;
        font-size: 25px;
        max-width: 100%;
    }
    .AboutMe h1 {
        font-size: 35px;

    }
    .AboutMe .Details {
        margin: auto;
        display: block;
        max-width: 86%;
    }
    .AboutMe .Details .Photo {
        float: none;
        display: block;
        margin: auto;
        text-align: center;
        margin-bottom: 30px;
    }
    .AboutMe .Details .Des{
        max-width: 100%;
        text-align: justify;
    }
    .AboutMe .NewTitle {
        font-size: 19px;
        margin-top: 50%;
    }
    .AboutMe .NewDes {
        font-size: 16px;
    }
}
@media screen and (min-width:0px) and (max-width:440px) {
    .AboutMe .cd-title {
        top: 10%;
    }
    .AboutMe header {
        background-size: 100%;
    }
    .AboutMe h1 {
        font-size: 13px;
    }
    .AboutMe .Details {
        max-width: 79%;
    }
    .AboutMe .Details .Des {
        font-size: 16px;
        line-height: 25px;
    }
}

/**************************************************
*********** PersonalInformation   ****************
**************************************************/

.PersonalInformation .BigTitle {
    color: #1f2022;
    border: 11px solid #1f2022;
    font-size: 80px;
    max-width: 97%;
    position: relative;
}

.PersonalInformation .BigTitle span:before {
    color: #FFF;
}
.PersonalInformation .cd-content {
    background-color: #fafafa;
    padding: 200px 0;
}
.Paragraphes p {
    border: 4px solid #000000;
    color: #000;
    font-size: 30px;
    padding-left: 35px;
    position: relative;
    margin-bottom: 13px;
    font-weight: 400;
    -moz-transition: 0.4s all ease-in-out;
    -o-transition: 0.4s all ease-in-out;
    -webkit-transition: 0.4s all ease-in-out;
    transition: 0.4s all ease-in-out;
}
.Paragraphes p:before{
    content: " ";
    display: block;
    width: 2px;
    height: 30px;
    background-color: #000;
    border-left: 1px solid #d0d0d0;
    position: absolute;
    left: 20px;
    top: 9px;
    -moz-transition: 0.4s all ease-in-out;
    -o-transition: 0.4s all ease-in-out;
    -webkit-transition: 0.4s all ease-in-out;
    transition: 0.4s all ease-in-out;
}
.Paragraphes p span  {
    font-size: 20px;
    font-weight: 400;
}
.Paragraphes p:hover {
    color: #FFF;
}
.Paragraphes p:hover:before {
    background-color: #FFF;
}


/**************************************************
***************** Responsive *********************
**************************************************/
@media screen and (min-width:780px) and (max-width:1200px) {
    .PersonalInformation .BigTitle {
        border: 6px solid;
        font-size: 50px;
        max-width: 100%;
    }
}
@media screen and (min-width:0px) and (max-width:780px) {
    .PersonalInformation .BigTitle {
        border: 3px solid;
        font-size: 25px;
        max-width: 100%;
    }
    .Paragraphes p {
        font-size: 18px;
        padding-left: 20px;
    }

    .Paragraphes p span {
        font-size: 14px;
    }
    .Paragraphes p::before {
        height: 20px;
        left: 10px;
        top: 5px;

    }
}
@media screen and (min-width:0px) and (max-width:480px) {
    .Paragraphes p {
        padding-left: 0;
        text-align: center;
        padding: 5px 0;
    }
    .Paragraphes p span{
        display: block;
        text-align: center;
        margin-top: 15px;
    }

    .Paragraphes p::before{
        top: 35px;
        width: 10%;
        height: 2px;
        left: 0;
        right: 0;
        margin: auto;
    }
    .PersonalInformation .cd-content {
        padding: 50px 0;
    }
}


/**************************************************
************* ContactInformation   ****************
**************************************************/

.ContactInformation .BigTitle {
    color: #1f2022;
    border: 11px solid #1f2022;
    font-size: 80px;
    max-width: 97%;
    position: relative;
}

.ContactInformation .BigTitle span:before {
    color: #FFF;
}
.ContactInformation .cd-content {
    background-color: #fafafa;
    padding: 200px 0;
}




/**************************************************
***************** Responsive *********************
**************************************************/
@media screen and (min-width:780px) and (max-width:1200px) {
    .ContactInformation .BigTitle {
        border: 6px solid;
        font-size: 50px;
        max-width: 100%;
    }
}
@media screen and (min-width:0px) and (max-width:780px) {
    .ContactInformation .BigTitle {
        border: 3px solid;
        font-size: 25px;
        max-width: 100%;
    }
}
@media screen and (min-width:0px) and (max-width:480px) {
    .ContactInformation .cd-content {
        padding: 50px 0;
    }
}



/**************************************************
************* Education   ****************
**************************************************/

.Education .BigTitle {
    color: #1f2022;
    border: 11px solid #1f2022;
    font-size: 80px;
    max-width: 97%;
    position: relative;
}

.Education .BigTitle span:before {
    color: #FFF;
}
.Education .cd-content {
    background-color: #fafafa;
    padding: 50px 0;
    padding-bottom: 100px;
}

.EducationPage .Title {
    display: block;
    width: 260px;
    height: 260px;
    border-radius: 100%;
    background-color: #4bb7a4;
    color: #FFF;
    font-size: 25px;
    font-weight: 900;
    text-align: center;
    position: relative;
    line-height: 40px;
    padding: 70px 55px;
    margin: auto;
    margin-bottom: 35px;
    margin-top: 45px;
}

.EducationPage .Title span {
    position: absolute;
    width: 105px;
    height: 105px;
    line-height: 105px;
    top: -35px;
    right: 5px;
    border-radius: 100%;
    background-color: #ffe57c;
    color: #FFF;
    font-size: 25px;
    font-weight: 900;
    text-align: center;
}
.EducationPage ul {
    max-width: 410px;
    margin: auto;
}
.EducationPage ul li {
    color: #4bb7a4;
    font-size: 25px;
    font-weight: 900;
    margin-bottom: 45px;
    position: relative;
    padding-left: 15px;
    z-index: 66;
}
.EducationPage .SecondUL li{
    margin-bottom: 24px;
}
.EducationPage ul li:before {
    content: " ";
    display: block;
    background-color: #000000;
    width: 5px;
    height: 5px;
    border-radius: 100%;
    position: absolute;
    left: 0;
    top: 10px;
}
.EducationPage ul li p {
    color: #000000;
    font-size: 15px;
    font-weight: 500;
    margin-left: 0;
    margin-top: 15px;
    margin-bottom: 0;
    z-index: 666;
    position: relative;
}
.EducationPage .col-md-4:first-child ul li:nth-child(2):after {
    content: " ";
    position: absolute;
    display: block;
    width: 150px;
    height: 150px;
    background-color: #f9dd6c;
    border-radius: 100%;
    right: 20px;
    top: -50px;
    z-index: -2;
}
.EducationPage .col-md-4:nth-child(2) ul li:nth-child(3):after {
    content: " ";
    position: absolute;
    display: block;
    width: 210px;
    height: 210px;
    background-color: #f9dd6c;
    border-radius: 100%;
    left: -90px;
    top: -40px;
    z-index: -2;
}
.EducationPage .col-md-4:last-child ul li:nth-child(4):after {
    content: " ";
    position: absolute;
    display: block;
    width: 190px;
    height: 190px;
    background-color: #f9dd6c;
    border-radius: 100%;
    right: -40px;
    top: -40px;
    z-index: -2;
}
.EducationPage .col-md-4:last-child ul li:nth-child(5):after {
    content: " ";
    position: absolute;
    display: block;
    width: 80px;
    height: 80px;
    background-color: #f9dd6c;
    border-radius: 100%;
    left: 10px;
    top: 30px;
    z-index: -2;
}
.EducationPage .col-md-4:first-child ul li:nth-child(4) {
    z-index: 999;
}
.EducationPage .col-md-4:last-child ul li:nth-child(3) {
    z-index: 999;
}
/**************************************************
***************** Responsive *********************
**************************************************/
@media screen and (min-width:780px) and (max-width:1200px) {
    .Education .BigTitle {
        border: 6px solid;
        font-size: 50px;
        max-width: 100%;
    }

}
@media screen and (min-width:0px) and (max-width:780px) {
    .Education .BigTitle {
        border: 3px solid;
        font-size: 25px;
        max-width: 100%;
    }
    .cd-section header i {
        width: 65px;
        height: 65px;
        line-height: 55px;
        border: 5px solid #000000;
        font-size: 30px;
    }
}
@media screen and (min-width:0px) and (max-width:480px) {
    .Education .cd-content {
        padding: 50px 0;
    }
}
@media screen and (min-width:0px) and (max-width:390px) {
    .EducationPage .Title {
        width: 180px;
        height: 180px;
        padding: 30px 15px;
        font-size: 24px;
        line-height: 35px;
    }
    .EducationPage .Title span {
        width: 75px;
        height: 75px;
        line-height: 75px;
        top: -45px;
        right: 15px;
    }
    .EducationPage ul {
        max-width: 100%;
    }
}


/**************************************************
**************** WorkExperience   ****************
**************************************************/

.WorkExperience .BigTitle {
    color: #000;
    border: 11px solid #000;
    font-size: 80px;
    max-width: 70%;
    position: relative;
}

.WorkExperience .Paragraphes p span {
    font-size: 18px;
}
.WorkExperience .Paragraphes p span:not(:first-child){
    padding-left: 80px;
}
.WorkExperience .Paragraphes > a {
    display: block;
    margin: auto;
    font-size: 40px;
    text-align: center;
    margin-bottom: 20px;
    color: #000;
}
.WorkExperience .BigTitle span:before {
    color: #FFF;
}
.WorkExperience .cd-content {
    background-color: #e9f0f5;
    padding: 50px 0;
}

.WorkExperienceTimeline {
    max-width: 990px;
    padding: 0 15px;
    margin: auto;
}
.WorkExperienceTimeline .OneExperinece {
    padding: 50px 0;
    padding-left: 220px;
    position: relative;
}
.WorkExperienceTimeline .OneExperinece:before {
    content: ".............................................................................";
    color: #c6c6c6;
    font-size: 20px;
    position: absolute;
    top: 0;
}
.WorkExperienceTimeline .OneExperinece .RightSide {
    position: absolute;
    left: 40px;
    height: 100%;
    width: 220px;
    top: -15px;
}
.WorkExperienceTimeline .OneExperinece .RightSide:before {
    content: " ";
    width: 3px;
    background-color: #000;
    height: 100%;
    display: block;
    position: absolute;
    margin: auto;
    left: 0;
    right: 0;
}
.WorkExperienceTimeline .OneExperinece .RightSide:after {
    content: " ";
    position: absolute;
    display: block;
    width: 15px;
    height: 15px;
    background-color: #FFF;
    border: 4px solid #909090;
    border-radius: 100%;
    top: 24px;
    left: 0;
    right: 0;
    margin: auto;
}
.WorkExperienceTimeline .OneExperinece .RightSide .Photo {
    border: 10px solid #000;
    border-radius: 100%;
    z-index: 2;
    position: relative;
    width: 85px;
    height: 85px;
    overflow: hidden;
    margin: auto;
    margin-top: 50px;
    background-color: #FFF;
}
.WorkExperienceTimeline .OneExperinece .RightSide .Photo img {
    width: 100%;
    max-width: 100%;
    height: auto;
    position:absolute;
    top:0;
    bottom:0;
    margin:auto;
    z-index: 1;
}
.WorkExperienceTimeline .OneExperinece .RightSide .Date {
    color: #747474;
    font-size: 15px;
    font-weight: 500;
    position: absolute;
    top: 24px;
    text-align: right;
    width: 100%;
    right: 140px;
}
.WorkExperienceTimeline .OneExperinece .Title {
    color: #000000;
    font-size: 30px;
    padding: 12px;
    display: block;
    margin-bottom: 20px;
    margin-left: -12px;
    max-width: 520px;
    position: relative;
    -moz-transition: 0.4s all ease-in-out;
    -o-transition: 0.4s all ease-in-out;
    -webkit-transition: 0.4s all ease-in-out;
    transition: 0.4s all ease-in-out;
}
.WorkExperienceTimeline .OneExperinece .Title:before {
    content: "\f0d9";
    font-family: FontAwesome;
    position: absolute;
    left: -10px;
    top: 8px;
    color: #fafafa;
    font-size: 40px;
    -moz-transition: 0.4s all ease-in-out;
    -o-transition: 0.4s all ease-in-out;
    -webkit-transition: 0.4s all ease-in-out;
    transition: 0.4s all ease-in-out;
}
.WorkExperienceTimeline .OneExperinece .Title:hover {
    background-color: #000;
    color: #FFF;
}
.WorkExperienceTimeline .OneExperinece .Title:hover:before {
    color: #000;
}
.WorkExperienceTimeline .OneExperinece .Des p {
    width: 100%;
    color: #000000;
    font-size: 20px;
    margin-bottom: 15px;
}
.WorkExperienceTimeline .OneExperinece .Des p:last-child {
    margin-bottom: 0;
}
.WorkExperienceTimeline .OneExperinece .Des p:before {
    content: "|";
    margin-right: 7px;
}
.WorkExperienceTimeline .OneExperinece .Des p span {
    margin-left: 10px;
}
.WorkSlider {
    text-align: center;
}
.WorkSlider .bx-wrapper .bx-pager {
    display: none;
}
.WorkSlider .bx-wrapper .bx-controls-direction a {
    color: #000;
    font-size: 50px;
    top: 30px;
    text-align: center;
    line-height: 50px;
    width: 50px;
    height: 50px;
}
.WorkSlider .bx-wrapper .bx-prev {
    left: 30%;
}
.WorkSlider .bx-wrapper .bx-next {
    right: 30%;
}
.WorkSlider img {
    margin: auto;
    margin-bottom: 20px;
}
.WorkSlider .Title {
    color: #4bb7a4;
    font-size: 25px;
    font-weight: 700;
    margin-bottom: 10px;
}
.WorkSlider .Date {
    color: #4bb7a4;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 55px;
    position: relative;
}
.WorkSlider .Date:after {
    content: " ";
    background-image: url(../images/Work_Dotted.png);
    display: block;
    position: absolute;
    bottom: -68px;
    right: 0;
    left: 0;
    margin: auto;
    width: 50px;
    height: 50px;
}
.WorkSlider .Details {
    background-image: url(../images/Work_Bg.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: auto 100%;
    max-width: 552px;
    margin: auto;
    padding-top: 40px;
}
.WorkSlider .Details li{
    max-width: 250px;
    float: left;
    clear: both;
    width: 100%;
    text-align: right;
}
.WorkSlider .Details li .Number {
    color: #48a899;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: right;
}
.WorkSlider .Details li p {
    color: #000000;
    font-size: 15px;
    font-weight: 500;
    padding-bottom: 15px;
    position: relative;
    text-align: right;
    direction: rtl;
    display: inline-block;
    width: auto;
    text-align: right;
}
.WorkSlider .Details li p:before{
    content: " ";
    background-image: url(../images/Work_P_Dotted.png);
    display: block;
    position: absolute;
    bottom: 10px;
    right: -40px;
    margin: auto;
    width: 28px;
    height: 28px;
}
.WorkSlider .Details li:nth-child(2n) {
    float: right;
    width: 100%;
    text-align: left;
}
.WorkSlider .Details li:nth-child(2n) p:before{
    right: initial;
    left: -40px;;
}

.WorkSlider .Details li:nth-child(2n) .Number,
.WorkSlider .Details li:nth-child(2n) p{
    text-align: left;
}
.WorkSlider .Details li p:after {
    content: " ";
    display: block;
    position: absolute;
    bottom: 0;
    left:0;
    width: 0;
    height: 2px;
    max-width: 110px;
    background-color: #48a899;
    -moz-transition: 0.4s all ease-in-out;
    -o-transition: 0.4s all ease-in-out;
    -webkit-transition: 0.4s all ease-in-out;
    transition: 0.4s all ease-in-out;
}
.WorkSlider .Details li:hover p:after {
    width: 100%;
}

/**************************************************
***************** Responsive *********************
**************************************************/
@media screen and (min-width:780px) and (max-width:1200px) {
    .WorkExperience .BigTitle {
        border: 6px solid;
        font-size: 50px;
        max-width: 100%;
    }
}

@media screen and (min-width:0px) and (max-width:780px) {
    .WorkExperience .BigTitle {
        border: 3px solid;
        font-size: 25px;
        max-width: 100%;
    }
    .SmallDes {
        max-width: 100%;
    }
    .WorkExperienceTimeline .OneExperinece {
        padding: 50px 0;
        padding-left: 180px;
    }
    .WorkExperienceTimeline .OneExperinece .RightSide .Date {
        right: 120px;
    }
    .WorkExperienceTimeline .OneExperinece .RightSide{
        left: 0px;
    }
    .WorkExperienceTimeline .OneExperinece .Title {
        font-size: 20px;
    }
    .WorkExperienceTimeline .OneExperinece .Des p {
        font-size: 15px;
    }
    .WorkExperienceTimeline .OneExperinece .RightSide .Date {
        font-size: 12px;
    }
}

@media screen and (min-width:0px) and (max-width:480px) {
    .WorkExperience .cd-content {
        padding: 50px 0;
    }
    .SmallDes {
        font-size: 20px;
    }
}
@media screen and (min-width:0px) and (max-width:530px) {
    .WorkExperienceTimeline .OneExperinece {
        padding-left: 0;
    }
    .WorkExperienceTimeline .OneExperinece .RightSide:before {
        display: none;
    }
    .WorkExperienceTimeline .OneExperinece .RightSide {
        position: relative;
        left: 0;
        height: 100%;
        width: 100%;
        top: 0;
    }
    .WorkExperienceTimeline .OneExperinece::before {
        left: 0;
        right: 0;
        text-align: center;
    }
    .WorkExperienceTimeline .OneExperinece .RightSide .Photo {
        margin-top: 0;
    }
    .WorkExperienceTimeline .OneExperinece .RightSide .Date {
        position: relative;
        left: 0;
        right: 0;
        text-align: center;
        top: 0;
        margin-top: 10px;
        margin-bottom: 20px;
    }

    .WorkExperienceTimeline .OneExperinece .Title::before {
        right: 0;
        display: block;
        margin: auto;
        text-align: center;
        left: 0;
        top: -26px;
        content: "\f0d8";
    }
}

@media screen and (min-width:0px) and (max-width:660px) {
    .WorkSlider .Details li {
        max-width: 100%;
        float: none;
        text-align: left;
        padding-left: 40px;
    }
    .WorkSlider .Details li p {
        text-align: left;
    }
    .WorkSlider .Details li p::before {
        right: initial;
        left: -40px;
    }
    .WorkSlider .Details li .Number {
        text-align: left;
    }
    .WorkSlider .Details {
        background-image: none;
        padding: 0 15px;
    }
    .WorkSlider .Date::after {
        display: none;
    }
    .WorkSlider .Date{
        margin-bottom: 30px;
    }
    .WorkSlider .bx-wrapper .bx-next {
        right: 0;
    }
    .WorkSlider .bx-wrapper .bx-prev {
        left: 0;
    }
}

/**************************************************
**************** Qualifications   ****************
**************************************************/

.Qualifications .BigTitle {
    color: #1f2022;
    border: 11px solid #1f2022;
    font-size: 80px;
    max-width: 70%;
    position: relative;
}

.Qualifications .BigTitle span:before {
    color: #FFF;
}
.Qualifications .cd-content {
    background-color: #fafafa;
    padding: 50px 0;
}



/**************************************************
****************** Responsive *********************
**************************************************/
@media screen and (min-width:780px) and (max-width:1200px) {
    .Qualifications .BigTitle {
        border: 6px solid;
        font-size: 50px;
        max-width: 100%;
    }
}
@media screen and (min-width:0px) and (max-width:780px) {
    .Qualifications .BigTitle {
        border: 3px solid;
        font-size: 25px;
        max-width: 100%;
    }

}
@media screen and (min-width:0px) and (max-width:480px) {
    .Qualifications .cd-content {
        padding: 50px 0;
    }

}

/**************************************************
******************** Blogger  *********************
**************************************************/

.Blogger .BigTitle {
    color: #1f2022;
    border: 11px solid #1f2022;
    font-size: 80px;
    max-width: 70%;
    position: relative;
    padding-bottom: 10px;
}
.Blogger .BigTitle  {
    padding-bottom: 10px;
}
.Blogger .BigTitle span:before {
    color: #FFF;
}
.Blogger .cd-content {
    background-color: #eaeaea;
    padding: 50px 0;
}

.Blogger .link--mallki span:first-child::before {
    top: 0px;
}

.Blogger .link--mallki span:nth-child(2)::before {
    bottom: 10px;
}
.ViewTopic {
    max-width: 930px;
    margin: auto;
    padding: 0 15px;
}
.ViewTopic .Details {
    margin-bottom: 25px;
}
.ViewTopic .Details li{
    color: #707070;
    font-size: 13px;
}
.ViewTopic .Details li i {
    margin-right: 10px;
}
.ViewTopic .Details li:last-child a{
    color: #707070;
}
.ViewTopic .Details li:last-child {
    float: right;
    font-size: 30px;
}
.ViewTopic .Title {
    color: #000000;
    font-size: 25px;
    font-weight: 700;
    margin-bottom: 25px;
}
.ViewTopic .Des {
    color: #000000;
    font-size: 14px;
    line-height: 30px;
    margin-bottom: 35px;
}
.ViewTopic .Des p {
    width: 100%;
    max-width: 100%;
}
.ViewTopic .ShareTopic li a {
    display: inline-block;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    border-radius: 100%;
    background-color: #818181;
    color: #eaeaea;
    font-size: 15px;
    -moz-transition: 0.4s all ease-in-out;
    -o-transition: 0.4s all ease-in-out;
    -webkit-transition: 0.4s all ease-in-out;
    transition: 0.4s all ease-in-out;
}
.ViewTopic .ShareTopic li:nth-child(1):hover a {
    background-color: #3b5998;
}
.ViewTopic .ShareTopic li:nth-child(2):hover a {
    background-color: #55acee;
}
.ViewTopic .ShareTopic li:nth-child(3):hover a {
    background-color: #dd4b39;
}
.ViewTopic .ShareTopic li:last-child i {
    color: #818181;   
    font-size: 16px;
}

/**************************************************
****************** Responsive *********************
**************************************************/
@media screen and (min-width:780px) and (max-width:1200px) {
    .Blogger .BigTitle {
        border: 6px solid;
        font-size: 50px;
        max-width: 100%;
    }
}
@media screen and (min-width:0px) and (max-width:780px) {
    .Blogger .BigTitle {
        border: 3px solid;
        font-size: 25px;
        max-width: 100%;
        padding-bottom: 5px;
    }
    .Blogger .link--mallki span:first-child::before {
        top: 0px;
    }

    .Blogger .link--mallki span:nth-child(2)::before {
        bottom: 5px;
    }


}
@media screen and (min-width:0px) and (max-width:480px) {
    .Blogger .cd-content {
        padding: 50px 0;
    }

}

@media screen and (min-width:0px) and (max-width:430px) {
    .Blogger .grid figure {
        min-width: 100%;
        max-width: 100%;
    }

}



/**************************************************
******************** Contact   ********************
**************************************************/

.Contact .BigTitle {
    color: #1f2022;
    border: 11px solid #1f2022;
    font-size: 80px;
    max-width: 70%;
    position: relative;
}

.Contact .BigTitle span:before {
    color: #FFF;
}
.Contact .cd-content {
    background-color: #fafafa;
    padding: 20px 0;
}

.Contact .ContactUs {
    max-width: 975px;
    padding: 0 15px;
    margin: auto;
}

.Contact .ContactUs .SmallTitle {
    color: #000000;
    font-size: 30px;
    margin-bottom: 35px;
    font-weight: 900;
    margin-top: 20px;
}
.Contact .ContactUs input,
.Contact .ContactUs textarea{
    border: 1px solid #000;
    color: #000000;
    font-size: 16px;
    display: block;
    width: 100%;
    margin-bottom: 15px;
    padding: 0 15px 0px 15px;
    height: 50px;
}

.Contact .ContactUs textarea  {
    resize: none;
    height: 300px;
    padding-top: 15px;
}

.Contact .ContactUs button {
    border: 1px solid #000;
    color: #000000;
    background-color: transparent;
    font-size: 16px;
    font-weight: 500;
}


/**************************************************
****************** Responsive *********************
**************************************************/
@media screen and (min-width:780px) and (max-width:1200px) {
    .Contact .BigTitle {
        border: 6px solid;
        font-size: 50px;
        max-width: 100%;
    }
}
@media screen and (min-width:0px) and (max-width:780px) {
    .Contact .BigTitle {
        border: 3px solid;
        font-size: 25px;
        max-width: 100%;
    }

}
@media screen and (min-width:0px) and (max-width:480px) {
    .Contact .cd-content {
        padding: 50px 0;
    }

}
#toast-container {
    font-size: 18px;
    font-family: 'Raleway', sans-serif;
}


/**************************************************
******************** Skills   ********************
**************************************************/
.Skills .BigTitle {
    color: #000000;
    border: 13px solid #000000;
}
.SkillsPage {
    padding: 50px 180px;
}
.SkillsPage .OneSkills {
    background-color: rgb( 255, 255, 255 );
    box-shadow: 0px 0px 27px 0px rgba( 168, 177, 194 , 0.1);
    margin-bottom: 20px;
    text-align: center;
    padding-top: 25px;
    min-height: 210px;
    -moz-transition: 0.4s all ease-in-out;
    -o-transition: 0.4s all ease-in-out;
    -webkit-transition: 0.4s all ease-in-out;
    transition: 0.4s all ease-in-out;
}
.SkillsPage .OneSkills:hover {
    box-shadow: 0px 0px 18px 0px rgba( 172, 172, 172 , 1);
}
.SkillsPage .OneSkills .Photo {
    margin-bottom: 15px;
}
.SkillsPage .OneSkills .Title {
    color: #000000;
    font-size: 17px;
    font-weight: 400;
    padding: 0 15px;
    line-height: 25px;
}
@media screen and (min-width:0px) and (max-width:1000px) {
    .SkillsPage {
        padding: 50px 0px;
    }
}
#Languages {
    font-family: "JF Flat Regular";
}

.ResponsiveMenu {
    position: absolute;
    background-color: #FFF;
    display: block;
    z-index: 999;
    color: #111316;
    width: 30px;
    text-align: center;
    height: 30px;
    line-height: 30px;
    border-radius: 1px;
    font-size: 17px;
    margin-left: 20px;
    margin-top: 20px;
    cursor: pointer;
}
.ResponsiveMenu:hover,
.ResponsiveMenu:focus,
.ResponsiveMenu:active{
    color: #111316;
}
.Menu.Close {
    width: 60px;
}
.Menu.Close a{
    color: transparent !important;
    padding-bottom: 0;
    padding-top: 30px;
    min-height: 60px;
}
.Menu.Close a i{
    top: 15px;
}

.cd-section.Close {
    padding-left: 56px;
    -moz-transition: 0.4s all ease-in-out;
    -o-transition: 0.4s all ease-in-out;
    -webkit-transition: 0.4s all ease-in-out;
    transition: 0.4s all ease-in-out;
}


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

Modules - reusable parts of our design

-------------------------------- */
.cd-container {
    /* this class is used to give a max-width to the element it is applied to, and center it horizontally when it reaches that max-width */
    width: 90%;
    max-width: 1170px;
    margin: 0 auto;
}
.cd-container::after {
    /* clearfix */
    content: '';
    display: table;
    clear: both;
}


#cd-timeline {
    position: relative;
    padding: 2em 0;
    margin-top: 2em;
    margin-bottom: 2em;
}
#cd-timeline::before {
    /* this is the vertical line */
    content: '';
    position: absolute;
    top: 0;
    left: 18px;
    height: 100%;
    width: 4px;
    background: #d7e4ed;
}
@media only screen and (min-width: 1170px) {
    #cd-timeline {
        margin-top: 3em;
        margin-bottom: 3em;
    }
    #cd-timeline::before {
        left: 50%;
        margin-left: -2px;
    }
}

.cd-timeline-block {
    position: relative;
    margin: 2em 0;
}
.cd-timeline-block:after {
    content: "";
    display: table;
    clear: both;
}
.cd-timeline-block:first-child {
    margin-top: 0;
}
.cd-timeline-block:last-child {
    margin-bottom: 0;
}
@media only screen and (min-width: 1170px) {
    .cd-timeline-block {
        margin: 4em 0;
    }
    .cd-timeline-block:first-child {
        margin-top: 0;
    }
    .cd-timeline-block:last-child {
        margin-bottom: 0;
    }
}

.cd-timeline-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: 0 0 0 4px white, inset 0 2px 0 rgba(0, 0, 0, 0.08), 0 3px 0 4px rgba(0, 0, 0, 0.05);
}
.cd-timeline-img img {
    display: block;
    width: 24px;
    height: 24px;
    position: relative;
    left: 50%;
    top: 50%;
    margin-left: -12px;
    margin-top: -12px;
}
.cd-timeline-img img.CategoryPhoto {
    max-width: 100%;
    width: auto;
    height: auto;
    margin: auto;
    left: initial;
    top: initial;
}
.cd-timeline-img.cd-picture {
    background: #75ce66;
}
.cd-timeline-img.cd-movie {
    background: #c03b44;
}
.cd-timeline-img.cd-location {
    background: #f0ca45;
}
@media only screen and (min-width: 1170px) {
    .cd-timeline-img {
        width: 60px;
        height: 60px;
        left: 50%;
        margin-left: -30px;
        /* Force Hardware Acceleration in WebKit */
        -webkit-transform: translateZ(0);
        /*-webkit-backface-visibility: hidden;*/
    }
    /*  .cssanimations .cd-timeline-img.is-hidden {
        visibility: hidden;
      }*/
    .cssanimations .cd-timeline-img.bounce-in {
        visibility: visible;
        -webkit-animation: cd-bounce-1 0.6s;
        -moz-animation: cd-bounce-1 0.6s;
        animation: cd-bounce-1 0.6s;
    }
}

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

    60% {
        opacity: 1;
        -webkit-transform: scale(1.2);
    }

    100% {
        -webkit-transform: scale(1);
    }
}
@-moz-keyframes cd-bounce-1 {
    0% {
        opacity: 0;
        -moz-transform: scale(0.5);
    }

    60% {
        opacity: 1;
        -moz-transform: scale(1.2);
    }

    100% {
        -moz-transform: scale(1);
    }
}
@keyframes cd-bounce-1 {
    0% {
        opacity: 0;
        -webkit-transform: scale(0.5);
        -moz-transform: scale(0.5);
        -ms-transform: scale(0.5);
        -o-transform: scale(0.5);
        transform: scale(0.5);
    }

    60% {
        opacity: 1;
        -webkit-transform: scale(1.2);
        -moz-transform: scale(1.2);
        -ms-transform: scale(1.2);
        -o-transform: scale(1.2);
        transform: scale(1.2);
    }

    100% {
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1);
    }
}

.cd-timeline-content {
    position: relative;
    margin-left: 60px;
    background: white;
    border-radius: 0.25em;
    padding: 1em;
    box-shadow: 0 3px 0 #d7e4ed;
}
.cd-timeline-content:after {
    content: "";
    display: table;
    clear: both;
}
.cd-timeline-content h2 {
    color: #303e49;
    font-size: 16px;
}
.cd-timeline-content p, .cd-timeline-content .cd-read-more, .cd-timeline-content .cd-date {
    font-size: 13px;
}
.cd-timeline-content .cd-read-more, .cd-timeline-content .cd-date {
    display: inline-block;
}
.cd-timeline-content p {
    margin: 1em 0;
    line-height: 1.6;
}
.cd-timeline-content .cd-read-more {
    float: right;
    padding: .8em 1em;
    background: #acb7c0;
    color: white;
    border-radius: 0.25em;
}
.no-touch .cd-timeline-content .cd-read-more:hover {
    background-color: #bac4cb;
}
.cd-timeline-content .cd-date {
    float: left;
    padding: .8em 0;
    opacity: .7;
    font-size: 14px;
}
.cd-timeline-content::before {
    content: '';
    position: absolute;
    top: 16px;
    right: 100%;
    height: 0;
    width: 0;
    border: 7px solid transparent;
    border-right: 7px solid white;
}
@media only screen and (min-width: 768px) {
    .cd-timeline-content h2 {
        font-size: 16px;
    }
    .cd-timeline-content p {
        font-size: 16px;
    }
    .cd-timeline-content .cd-read-more, .cd-timeline-content .cd-date {
        font-size: 14px;
    }
}
@media only screen and (min-width: 1170px) {
    .cd-timeline-content {
        margin-left: 0;
        padding: 1.6em;
        width: 45%;
    }
    .cd-timeline-content::before {
        top: 24px;
        left: 100%;
        border-color: transparent;
        border-left-color: white;
    }
    .cd-timeline-content .cd-read-more {
        float: left;
    }
    .cd-timeline-content .cd-date {
        position: absolute;
        width: 100%;
        left: 122%;
        top: 6px;
        font-size: 16px;
    }
    .cd-timeline-block:nth-child(even) .cd-timeline-content {
        float: right;
    }
    .cd-timeline-block:nth-child(even) .cd-timeline-content::before {
        top: 24px;
        left: auto;
        right: 100%;
        border-color: transparent;
        border-right-color: white;
    }
    .cd-timeline-block:nth-child(even) .cd-timeline-content .cd-read-more {
        float: right;
    }
    .cd-timeline-block:nth-child(even) .cd-timeline-content .cd-date {
        left: auto;
        right: 122%;
        text-align: right;
    }
    /*  .cssanimations .cd-timeline-content.is-hidden {
        visibility: hidden;
      }*/
    .cssanimations .cd-timeline-content.bounce-in {
        visibility: visible;
        -webkit-animation: cd-bounce-2 0.6s;
        -moz-animation: cd-bounce-2 0.6s;
        animation: cd-bounce-2 0.6s;
    }
}

@media only screen and (min-width: 1170px) {
    /* inverse bounce effect on even content blocks */
    .cssanimations .cd-timeline-block:nth-child(even) .cd-timeline-content.bounce-in {
        -webkit-animation: cd-bounce-2-inverse 0.6s;
        -moz-animation: cd-bounce-2-inverse 0.6s;
        animation: cd-bounce-2-inverse 0.6s;
    }
}
@-webkit-keyframes cd-bounce-2 {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-100px);
    }

    60% {
        opacity: 1;
        -webkit-transform: translateX(20px);
    }

    100% {
        -webkit-transform: translateX(0);
    }
}
@-moz-keyframes cd-bounce-2 {
    0% {
        opacity: 0;
        -moz-transform: translateX(-100px);
    }

    60% {
        opacity: 1;
        -moz-transform: translateX(20px);
    }

    100% {
        -moz-transform: translateX(0);
    }
}
@keyframes cd-bounce-2 {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-100px);
        -moz-transform: translateX(-100px);
        -ms-transform: translateX(-100px);
        -o-transform: translateX(-100px);
        transform: translateX(-100px);
    }

    60% {
        opacity: 1;
        -webkit-transform: translateX(20px);
        -moz-transform: translateX(20px);
        -ms-transform: translateX(20px);
        -o-transform: translateX(20px);
        transform: translateX(20px);
    }

    100% {
        -webkit-transform: translateX(0);
        -moz-transform: translateX(0);
        -ms-transform: translateX(0);
        -o-transform: translateX(0);
        transform: translateX(0);
    }
}
@-webkit-keyframes cd-bounce-2-inverse {
    0% {
        opacity: 0;
        -webkit-transform: translateX(100px);
    }

    60% {
        opacity: 1;
        -webkit-transform: translateX(-20px);
    }

    100% {
        -webkit-transform: translateX(0);
    }
}
@-moz-keyframes cd-bounce-2-inverse {
    0% {
        opacity: 0;
        -moz-transform: translateX(100px);
    }

    60% {
        opacity: 1;
        -moz-transform: translateX(-20px);
    }

    100% {
        -moz-transform: translateX(0);
    }
}
@keyframes cd-bounce-2-inverse {
    0% {
        opacity: 0;
        -webkit-transform: translateX(100px);
        -moz-transform: translateX(100px);
        -ms-transform: translateX(100px);
        -o-transform: translateX(100px);
        transform: translateX(100px);
    }

    60% {
        opacity: 1;
        -webkit-transform: translateX(-20px);
        -moz-transform: translateX(-20px);
        -ms-transform: translateX(-20px);
        -o-transform: translateX(-20px);
        transform: translateX(-20px);
    }

    100% {
        -webkit-transform: translateX(0);
        -moz-transform: translateX(0);
        -ms-transform: translateX(0);
        -o-transform: translateX(0);
        transform: translateX(0);
    }
}

@media screen and (min-width:0px) and (max-width:500px) {

    .cd-timeline-content h2 {
        font-size: 17px;
    }
    .cd-timeline-content .cd-date {
        font-size: 12px;
    }
}
.CalendarDiv {
    position: relative;
}
.CalendarDiv .gldp-default {
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    margin: auto;
}
#mydate {
    visibility: hidden;
    height: 320px;
}
.gldp-default .core{
    background: none;
    background-color: #e6e6e6;
    border-color: #e6e6e6;
}
.gldp-default .thu:hover,
.gldp-default .sun:hover{
    background: none;
    background-color: #ff6861;
    color: #FFF;
    text-shadow:none;
}
.gldp-default .selected {
    background: none;
    background-color: #ff6861;
}
.gldp-default .dow {
    background: none;
    background-color: #f24a42;
}
#Consulting .button--rayen:before {
    background-color: #ff6861;
}
.gldp-default .monyear, .gldp-default .monyear select {
    background: none;
    background-color: #ff6861;
    color: #FFF;
    text-shadow: none;
    border: 0;
}
.gldp-default .prev-arrow, .gldp-default .next-arrow {
    color: #FFF;
    text-shadow:none;
}
.gldp-default .dow {
    background-color: #f7f7f7;
    color: #000;
    border: 0;
}
.gldp-default .noday {
    background: #FFF;
    border-color: #f7f7f7;
}



/**************************************************
***************** Responsive *********************
**************************************************/
@media screen and (min-width:780px) and (max-width:1200px) {
    .Consulting .BigTitle,
    .Skills .BigTitle{
        border: 6px solid;
        font-size: 50px;
        max-width: 100%;
    }

}
@media screen and (min-width:0px) and (max-width:780px) {
    .Consulting .BigTitle,
    .Skills .BigTitle{
        border: 3px solid;
        font-size: 25px;
        max-width: 100%;
    }
}
.datetimepicker12 {
    text-align: center;
    width: 100%;
}
.datepicker-inline {
    display: inline-block;
}
.datepicker .table-condensed thead tr:nth-child(2){
    background-color: #ff6861;
    color: #FFF;
    height: 38px;
    line-height: 38px;
}
.datepicker .table-condensed thead tr:nth-child(2) th:hover {
    background: none;
    background-color: #ff6861;
    color: #FFF;
}
.datepicker .table-condensed thead tr:nth-child(3) {
    background-color: #f7f7f7;
    color: #444;
    height: 38px;
    line-height: 38px;
}
.datepicker table tr td.disabled {
    height: 38px;
    line-height: 38px;
    background: #FFF;
    border-color: #f7f7f7;
    border-radius: 0;
    border-right: 1px solid #f7f7f7;
    border-bottom: 1px solid #f7f7f7;
}
.datepicker table tr td.active.active,
.datepicker table tr td.active.active:hover{
    border-radius: 0;
    background: none;
    background-color: #ff6861;
    color: #FFF;
}
.datepicker td {
    background: none;
    background-color: #e6e6e6;
    border-color: #e6e6e6;
}
.datepicker,
.table-condensed {
    width: 400px;
    font-size: 20px;
}
.datepicker table tr td span {
    background-color: #f7f7f7;
    color: #000;
    border-radius: 0;
}
.datepicker table tr td span.focused,
.datepicker table tr td span:hover{
    background-color: #ff6861;
    color: #FFF;
}
@media screen and (min-width:0px) and (max-width:780px) {
    .datepicker,
    .table-condensed {
        width: auto;
        font-size: 12px;
    }
    
    .Menu.Close .datepicker,
    .Menu.Close .table-condensed {
        width: auto;
        font-size: 18px;
    }


}