/*/////////MAIN SETTINGS/////////*/
/*Im selecting the body and applying the values inside the brackets*/
body {
    background-color: #252839;      /*This will set the background color to dark blue*/
    -webkit- zoom: 100%;            /*This is zoom setting for chrome browser*/
    -moz- zoom: 50%;                /*This is a zoom setting for mozilla browser*/
}
/*Im selecting the wrapper where all my main content is*/
.wrapper {
    background-color: #252839;      /*This will set the background color to dark blue*/
    position: relative;             /*Relative position means that it will take into account other block sections*/
}
/*Im selecting the navigation links and my logo here*/
.main {
    position: relative;             /*Relative position means that it will take into account other block sections*/
    background-color: #b5b5b7;      /*This will set the background color to grey*/
    border-style: groove;           /*This is the border style*/
    border-width: 0px 0px 0px 15px; /*The border will be on the left of the whole div*/
    border-color: #677077;          /*The color of the border*/
    margin-top: 50px;
}

/*Links styling*/
#nav:link {
    text-decoration: none;          /*This gets rid of the links decoration so that they dont have bulletpoints*/
    color: #677077;                 /*This is the color of the navigation links*/
}

/*When the cursor is hovering on the link*/
#nav:hover {
    text-decoration: none;          /*This gets rid of the links decoration so that they dont have bulletpoints*/  
    color: white;                   /*When the mouse hovers on the text it will turn white*/
}

/*When clicked on the link*/
#nav:active {                       /*This is when the user is clicking on the link*/
    text-decoration: none;          /*This gets rid of the links decoration so that they dont have bulletpoints*/  
}
/*When the link was already visited*/
#nav:visited {                      /*This is when the user already visited the link*/
    text-decoration: none;          /*This gets rid of the links decoration so that they dont have bulletpoints*/  
    color: #677077;                 /*This sets the color to greyish blue which is the original color*/
}
/*Selecting all the link elements*/
a:link {
    text-decoration: none;          /*Gets rid of all the bulletpoints for all links*/
}
.clear {
    clear: both;                    /*property specifies on which sides the elements can't float*/
}

/*Jump Link*/

#jump_link {
    color: white;
    font-size: 18pt;
    font-family: 'Lato', sans-serif;
    margin-left: 445px;
    margin-top: 150px;
    position: absolute;
    font-weight: 900;
}
.clear {
    clear: both;
}

/*/////////MAIN BODY/////////*/

.logo {
    position: relative;
    float: right;
    padding: 20px;
    margin-left: 700px;
    margin-right: 30px;
    margin-top: -120px;
}
.main_content {
    margin-left: -250px;
}
#register_text {
    font-family: 'Oswald', sans-serif;
    color: #252839;
    padding: 20px;
    font-size: 28pt;
    text-align: center;
    font-weight: 800;
}
.register2 {
    margin-left: 100px;
}

/*Creating space divs to control space used*/
.space {
    width: 200px;
    height: 50px;
}
.space2 {
    width: 200px;
    height: 250px;
}
.space3 {
    width: 200px;
    height: 120px;
}

/*/////////JAVASCRIPT STYLING//////////*/
/*Selecting the time in the footer*/
#clock {
    font-size: 24pt;                   /*The size of the last text*/
    color: white;                      /*The color of the text*/
    font-family: 'Aldrich', sans-serif;/*The font of the text*/
    padding: 10px 0px 0px 0px;         /*The space from bottom*/
    position: relative;                /*Relative position means that it will take into account other block sections*/
    float: left;                        /*This will make the content float left*/ 
    font-weight: 900;                   /*How thick the text will be*/
    margin-left: -199px;                /*How far from the left*/
    margin-top: 150px;                  /*How far from the top*/
    padding: 0px 40px 0px 0px;          /*Space from right*/
}
/*Selecting the data JS*/
h3 {
    font-family: 'Aldrich', sans-serif; /*The font of the date*/
    color: #677077;                     /*The color of the text*/
    font-size: 20pt;                    /*The text size*/
    text-align: right;                  /*This will make the content float right*/ 
}

/*////////ANIMATION/////////
EXAMPLE FROM https://www.youtube.com/watch?v=wrnQiOY6khQ */
.runner {
    width: 266.666px; /*The width of each frame*/
    height: 200px;
    background: url(http://stephino.com/runner.png); /*Loads the image from this site*/
    animation: run 1s steps(24) infinite, slide 2s steps(100) infinite;
    margin-left: -25px;
}
@keyframes run {
    100% {
        background-position: -6400px;
    }
}

/*/////////FOOTER RELATED/////////*/
/*Footer Links styling*/
#footer_nav:link {
    text-decoration: none;          /*Gets rid of the bulletpoints for links*/
    color: #252839;                 /*The color*/
    font-weight: 400;               /*How thick the letters are*/
    font-size: 16pt;                /*The size of the text*/
    font-family: 'Lato', sans-serif;/*The font of the text*/
    line-height: 2;                 /*How far each line is away from each other*/
}

/*When the cursor is hovering on the link*/
#footer_nav:hover {
    text-decoration: none;          /*Gets rid of the bulletpoints for links*/
    color: white;                   /*The color will turn to white when user hovers over the link*/
}

/*When clicked on the link*/
#footer_nav:active {
    text-decoration: none;          /*Gets rid of the bulletpoints for links*/
    color: white;                   /*The color will turn to white when user clicks on the link*/
}
#footer_nav:visited {
    text-decoration: none;          /*Gets rid of the bulletpoints for links*/
    color: #252839;                 /*When the user already clicked the link the color will remain as originally it was*/
}
/*Selecting the main footer div*/
.footer {
    positon: relative;              /*Relative position means that it will take into account other block sections*/
    float: right;                   /*This will make the content float right*/
    margin-right: 0px;              /*This will position the footer to be fully on the right*/
    width: 100%;                    /*The width of this div will always be 100% of the page*/
    height: 230px;                  /*The height of the footer*/
    background-color: #f2b632;      /*The color of the border*/
    border-style: dashed;           /*The style of the border*/
    border-width: 10px 0px 0px 0px; /*The border will only be at the top of the footer*/
    border-color: #252839;          /*The color of the border*/
}
/*Selecting the footer logo div*/
#footer_logo {
    padding: 0px 0px 0px 55px;     /*The space from the right*/
    position: relative;            /*Relative position means that it will take into account other block sections*/
    margin-top: 40px;              /*Moving the logo from the top*/
    margin-left: -25px;            /*Trying to position the logo */
    float: left;                   /*This will make the content float left*/
    color: #252839;                /*The color of the text*/
}
/*Selecting the footer logo2 div which is 'IT'*/
#footer_logo2 {
    padding: 0px 0px 0px 55px;     /*The space from the right*/
    position: relative;            /*Relative position means that it will take into account other block sections*/
    float: left;                   /*This will make the content float left*/
    margin-left: -255px;           /*Trying to position the logo */
    color: #252839;                /*The color of the text*/
    margin-top: 90px;              /*Moving the logo from the top*/
}
/*Selecting the last text*/
#copyright {
    position: relative;             /*Relative position means that it will take into account other block sections*/
    float: right;                   /*This will make the content float right*/
    font-size: 10pt;                /*The size of the last text*/
    color: #b5b5b7;                 /*The color of the text*/
    margin-top: 20px;               /*How far from the top it is*/
    font-family: 'Lato', sans-serif;/*The font of the text*/
    padding: 0px 50px 0px 0px;      /*The space from the right*/
}
.footer_text {
    position: relative;             /*Relative position means that it will take into account other block sections*/
    padding: 0px 30px 0px 0px;      /*The space from the right*/
    line-height: 30px;              /*How far lines are away from each other*/
    border-style: solid;            /*The style of the border*/
    border-width: 0px 0px 0px 10px; /*The border will be on the right*/
    border-color: #252839;          /*The color of the border*/
    float: right;                   /*This will make the content float right*/                  
    margin-top: 50px;               /*How far from the top it is*/
}
/*Selecting the social media icons*/
.media {
    position: relative;             /*Relative position means that it will take into account other block sections*/
    float: right;                   /*This will make the content float right*/   
    margin-top: 80px;               /*How far from the top it is*/
    margin-right: 10px;             /*Moving it from right by 10px*/
}
/*Selecting the follow text id*/
#follow {
    font-size: 26pt;                /*The size of the last text*/
    color: #252839;                 /*The color of the text*/
    position: relative;             /*Relative position means that it will take into account other block sections*/
    float: right;                   /*This will make the content float right*/  
    margin-right: 60px;             /*How far from right*/
    margin-top: 90px;               /*How far from left*/
}

/*/////////DECORATION/////////*/

.triangle {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 380px 1000px 0px 0;
    border-color: #252839 transparent transparent transparent;
    position: relative;
    float: left;
    margin-left: -30px;
}
.hand {
    margin-top: -380px;
    position: relative;
    margin-left: 230px;
    /*Rotates the image*/
    -webkit-transform: rotate(349deg);
    -moz-transform: rotate(349deg);
    -ms-transform: rotate(349deg);
    -o-transform: rotate(349deg);
    transform: rotate(-22deg);
}
.small_rectangle {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 40px 30.5px 0 30.5px;
    border-color: #f2b632 transparent transparent transparent;
    position: absolute;
    float: right;
    margin-left: 842px;
    margin-top: 470px;
}
hr {
    border-style: solid;
    border-width: 4px;
    border-color: #677077;
    width: 85%;
    margin-left: auto;
    margin-right: auto;
}
.small_rectangle2 {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 40px 30.5px 0 30.5px;
    border-color: #677077 transparent transparent transparent;
    margin-right: auto;
    margin-left: auto;
    margin-top: -20px;
}
.small_rectangle3 {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 40px 30.5px 0 30.5px;
    border-color: #677077 transparent transparent transparent;
    margin-right: auto;
    margin-left: auto;
    margin-top: -20px;
}
.big_rectangle {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 100px 100px 100px;
    border-color: transparent transparent #f2b632 transparent;
    margin-right: auto;
    margin-left: auto;
    margin-top: 100px;
}
.circle {
    width: 200px;
    height: 200px;
    background: white;
    -moz-border-radius: 100px;
    -webkit-border-radius: 100px;
    border-radius: 200px;
    margin-left: auto;
    margin-right: auto;
    margin-top: -226px;
}
.circle2 {
    width: 250px;
    height: 250px;
    background: #f2b632;
    -moz-border-radius: 150px;
    -webkit-border-radius: 150px;
    border-radius: 200px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 150px;
}

/*/////////TYPOGRAPHY/////////*/

#about {
    color: #f2b632;
    text-shadow: 5px 5px #000026;
    font-family: 'Oswald', sans-serif;
    font-weight: 900;
    font-size: 50pt;
    padding: 20px;
    margin-top: -160px;
    margin-left: 50px;
    /*Rotates the word*/
    -webkit-transform: rotate(349deg);
    -moz-transform: rotate(349deg);
    -ms-transform: rotate(349deg);
    -o-transform: rotate(349deg);
    transform: rotate(338deg);
}

/*Styling the li element*/

#home {
    display: block;
    font-size: 26pt;
    font-family: 'Lato', sans-serif;
    margin-top: -260px;
    margin-left: 450px;
    border-style: solid;
    border-width: 0px 0px 0px 8px;
    border-color: #f2b632;
    padding: 0px 0px 0px 10px;
    /*Rotates the word*/
    -webkit-transform: rotate(339deg);
    -moz-transform: rotate(339deg);
    -ms-transform: rotate(339deg);
    -o-transform: rotate(339deg);
    transform: rotate(339deg);
}
#tutorials {
    display: block;
    font-size: 26pt;
    font-family: 'Lato', sans-serif;
    margin-top: -115px;
    margin-left: 610px;
    border-style: solid;
    border-width: 0px 0px 0px 8px;
    border-color: #f2b632;
    padding: 0px 0px 0px 10px;
    /*Rotates the word*/
    -webkit-transform: rotate(349deg);
    -moz-transform: rotate(349deg);
    -ms-transform: rotate(349deg);
    -o-transform: rotate(349deg);
    transform: rotate(339deg);
}
#users {
    display: block;
    font-size: 26pt;
    font-family: 'Lato', sans-serif;
    margin-top: -135px;
    margin-left: 820px;
    border-style: solid;
    border-width: 0px 0px 0px 8px;
    border-color: #f2b632;
    padding: 0px 0px 0px 10px;
    /*Rotates the word*/
    -webkit-transform: rotate(349deg);
    -moz-transform: rotate(349deg);
    -ms-transform: rotate(349deg);
    -o-transform: rotate(349deg);
    transform: rotate(338deg);
}
h1 {
    font-family: 'Merriweather', serif;
    color: #252839;
    font-size: 35pt;
    margin-left: 20px;
}
h2 {
    margin-top: -25px;
    font-family: 'Merriweather', serif;
    color: #f2b632;
    font-size: 35pt;
    text-align: right;
}
h4 {
    color: #252839;
    font-weight: 400;
    font-size: 16pt;
    font-family: 'Lato', sans-serif;
}
h5 {
    font-family: 'Oswald', sans-serif;
    color: #f2b632;
    font-size: 40pt;
    text-align: right;
}

/*Styling the li element*/

li {
    display: block;
    /*this will get rid of the points near lists*/
    font-size: 30pt;
    font-family: 'Merriweather', serif;
    padding: 0px 0px 0px 30px;
}

/*//////SPEECHBUBBLE DECORATION///////
CODE GOTEN FROM: http://www.sitepoint.com/pure-css3-speech-bubbles/
AND EDITED TO SUIT MY SITE*/

p.speech {
    position: relative;
    margin-right: 70px;
    margin-top: -350px;
    float: right;
    width: 250px;
    height: 80px;
    line-height: 80px;
    text-align: center;
    background-color: #fff;
    border: 8px solid #666;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border-radius: 30px;
    -webkit-box-shadow: 2px 2px 4px #888;
    -moz-box-shadow: 2px 2px 4px #888;
    box-shadow: 2px 2px 4px #888;
    /* Font styles */
    font-family: 'Roboto', sans-serif;
    color: #252839;
    font-size: 15pt;
}
p.speech:before {
    content: ' ';
    position: absolute;
    width: 0;
    height: 0;
    left: 30px;
    top: 80px;
    border: 25px solid;
    border-color: #666 transparent transparent #666;
}
p.speech:after {
    content: ' ';
    position: absolute;
    width: 0;
    height: 0;
    left: 38px;
    top: 80px;
    border: 15px solid;
    border-color: #fff transparent transparent #fff;
}

/*Speech bubble 2 */

p.speech2 {
    position: relative;
    margin-right: 620px;
    margin-top: -350px;
    float: right;
    width: 250px;
    height: 80px;
    line-height: 80px;
    text-align: center;
    background-color: #fff;
    border: 8px solid #666;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border-radius: 30px;
    -webkit-box-shadow: 2px 2px 4px #888;
    -moz-box-shadow: 2px 2px 4px #888;
    box-shadow: 2px 2px 4px #888;
    /* Font styles */
    font-family: 'Roboto', sans-serif;
    color: #252839;
    font-size: 15pt;
}
p.speech2:before {
    content: ' ';
    position: absolute;
    width: 0;
    height: 0;
    left: 160px;
    top: 80px;
    border: 25px solid;
    border-color: #666 #666 transparent transparent;
}
p.speech2:after {
    content: ' ';
    position: absolute;
    width: 0;
    height: 0;
    left: 172px;
    top: 80px;
    border: 15px solid;
    border-color: #fff #fff transparent transparent;
}

/*///////LOGIN AND PASSWORD STYLING///////
CODE GOTTEN FROM: http://tympanus.net/codrops/2012/10/16/custom-login-form-styling/
AND EDITED TO SUIT MY SITE*/


/*form and the title*/

.form-4 {
    /* Size and position */
    width: 300px;
    margin: 60px auto 30px;
    padding: 10px;
    position: relative;
    margin-left: 340px;
    /* Font styles */
    font-family: 'Roboto', sans-serif;
    color: white;
    text-shadow: 0 2px 1px rgba(0, 0, 0, 0.3);
}
.form-4 h6 {
    font-size: 26px;
    padding-bottom: 10px;
    color: #252839;
    font-family: 'Roboto', sans-serif;
}

/*Inputs*/

.form-4 input[type=text],
.form-4 input[type=password] {
    /* Size and position */
    width: 100%;
    padding: 8px 4px 8px 10px;
    margin-bottom: 15px;
    /* Styles */
    border: 1px solid #252839;
    /* Fallback */
    border: 1px solid rgba( 37, 40, 57, 0.8);
    background: rgba(0, 0, 0, 0.15);
    border-radius: 2px;
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.2), inset 0 1px 1px rgba(0, 0, 0, 0.1);
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    /* Font styles */
    font-family: 'Roboto', sans-serif;
    color: #fff;
    font-size: 14pt;
}

/*Style for the placeholders*/

.form-4 input::-webkit-input-placeholder {
    color: rgba(37, 40, 57, 0.5);
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.15);
}
.form-4 input:-moz-placeholder {
    color: rgba(37, 40, 57, 0.5);
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.15);
}
.form-4 input:-ms-input-placeholder {
    color: rgba(37, 40, 57, 0.5);
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.15);
}

/*Hover and Focus styles*/

.form-4 input[type=text]:hover,
.form-4 input[type=password]:hover {
    border-color: #333;
}
.form-4 input[type=text]:focus,
.form-4 input[type=password]:focus,
.form-4 input[type=submit]:focus {
    box-shadow: 0 1px 0 rgba( 255, 255, 255, 0.5), inset 0 1px 1px rgba(0, 0, 0, 0.1), 0 0 0 3px rgba( 255, 255, 255, 0.5);
    outline: none;
}

/* Fallback */

.no-boxshadow .form-4 input[type=text]:focus,
.no-boxshadow .form-4 input[type=password]:focus {
    outline: 1px solid white;
}

/*Submit Button*/

.form-4 input[type=submit] {
    /* Size and position */
    width: 105%;
    padding: 8px 5px;
    /* Styles */
    background: #252839;
    border-radius: 5px;
    border: 1px solid #252839;
    box-shadow: inset 0 1px rgba(255, 255, 255, 0.4), 0 2px 1px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.3s ease-out;
    /* Font styles */
    color: white;
    text-shadow: 0 1px 0 rgba(0, 0, 0, 0.3);
    font-size: 16pt;
    font-weight: bold;
    font-family: 'Raleway', 'Lato', Arial, sans-serif;
}
.form-4 input[type=submit]:hover {
    box-shadow: inset 0 1px rgba(255, 255, 255, 0.2), inset 0 20px 30px rgba(103, 112, 119, 0.4);
}

/* Fallback */

.no-boxshadow .form-4 input[type=submit]:hover {
    background: #677077;
}
.form-4 label {
    display: none;
    padding: 0 0 5px 2px;
    cursor: pointer;
}
.form-4 label:hover ~ input {
    border-color: #333;
}
.no-placeholder .form-4 label {
    display: block;
}

/*////////FORM STYLING////
CODE GOTEN FROM: http://tympanus.net/codrops/2012/03/27/login-and-registration-form-with-html5-and-css3/ 
AND EDITED TO SUIT MY SITE*/


/* all the input except submit and checkbox */

.register2 input:not([type="checkbox"]) {
    width: 92%;
    margin-top: 4px;
    padding: 10px 5px 10px 32px;
    /* Styles */
    border: 1px solid #252839;
    /* Fallback */
    border: 1px solid rgba( 37, 40, 57, 0.8);
    background: rgba(0, 0, 0, 0.15);
    border-radius: 2px;
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.2), inset 0 1px 1px rgba(0, 0, 0, 0.1);
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    /* Font styles */
    font-family: 'Roboto', sans-serif;
    color: white;
    font-size: 14pt;
}
.register2 input:not([type="checkbox"]):active,
.register2 input:not([type="checkbox"]):focus {
    box-shadow: 0 1px 0 rgba( 255, 255, 255, 0.5), inset 0 1px 1px rgba(0, 0, 0, 0.1), 0 0 0 3px rgba( 255, 255, 255, 0.5);
    outline: none;
}
.register2 input[type=text],
.register2 input[type=password],
.register2 input[type=email] {
    /* Styles */
    border: 1px solid #252839;
    /* Fallback */
    border: 1px solid rgba( 37, 40, 57, 0.8);
    background: rgba(0, 0, 0, 0.15);
    border-radius: 2px;
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.2), inset 0 1px 1px rgba(0, 0, 0, 0.1);
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    /* Font styles */
    font-family: 'Roboto', sans-serif;
    color: #fff;
    font-size: 16pt;
}

/*styling both submit buttons */

.register2 p.button input {
    /* Size and position */
    width: 39%;
    padding: 8px;
    float: right;
    margin-right: 24px;
    margin-top: 25px;
    /* Styles */
    background: #252839;
    border-radius: 5px;
    border: 1px solid #252839;
    box-shadow: inset 0 1px rgba(255, 255, 255, 0.4), 0 2px 1px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.3s ease-out;
    /* Font styles */
    color: white;
    text-shadow: 0 1px 0 rgba(0, 0, 0, 0.3);
    font-size: 16pt;
    font-weight: bold;
    font-family: 'Raleway', 'Lato', Arial, sans-serif;
}
.register2 p.button input:hover {
    box-shadow: inset 0 1px rgba(255, 255, 255, 0.2), inset 0 20px 30px rgba(103, 112, 119, 0.4);
}
.uname,
.youmail,
.youpasswd {
    font-size: 26px;
    padding-bottom: 10px;
    color: #252839;
    font-family: 'Roboto', sans-serif;
    /* Font styles */
    font-family: 'Roboto', sans-serif;
    color: #252839;
    text-shadow: 0 2px 1px rgba(0, 0, 0, 0.3);
}

/*Style for the placeholders*/

.register2 input::-webkit-input-placeholder {
    color: rgba(37, 40, 57, 0.5);
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.15);
}
.register2 input:-moz-placeholder {
    color: rgba(37, 40, 57, 0.5);
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.15);
}
.register2 input:-ms-input-placeholder {
    color: rgba(37, 40, 57, 0.5);
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.15);
}
.register2 input[type=submit]:hover {
    box-shadow: inset 0 1px rgba(255, 255, 255, 0.2), inset 0 20px 30px rgba(103, 112, 119, 0.4);
}

/*///////LOGO DESIGN/////////*/
/*This is the vector design movement
each of the elements inside the logo animation. The code was taken from:
http://codepen.io/Bidji/pen/dPEzwq */
.svg {
    display: block;
    position: absolute;
    float: right;
    margin-left: 580px;
    margin-top: 670px;
    text-align: center;
    /*this aligns the logo inside*/
}
#svg {
    display: inline-block;
    vertical-align: middle;
    fill: #b5b5b7;
}
#svg path:nth-child(1) {
    -webkit-animation: pweek 1.8s linear infinite;
    animation: pweek 1.8s linear infinite;
    -webkit-animation-delay: 0.5s;
    animation-delay: 0.1s;
}
#svg path:nth-child(1):hover {
    -webkit-animation-play-state: paused;
    animation-play-state: paused;
}
#svg path:nth-child(2) {
    -webkit-animation: pweek 1.8s linear infinite;
    animation: pweek 1.8s linear infinite;
    -webkit-animation-delay: 0.2s;
    animation-delay: 0.2s;
}
#svg path:nth-child(2):hover {
    -webkit-animation-play-state: paused;
    animation-play-state: paused;
}
#svg path:nth-child(3) {
    -webkit-animation: pweek 1.8s linear infinite;
    animation: pweek 1.8s linear infinite;
    -webkit-animation-delay: 0.3s;
    animation-delay: 0.3s;
}
#svg path:nth-child(3):hover {
    -webkit-animation-play-state: paused;
    animation-play-state: paused;
}
#svg path:nth-child(4) {
    -webkit-animation: pweek 1.8s linear infinite;
    animation: pweek 1.8s linear infinite;
    -webkit-animation-delay: 0.4s;
    animation-delay: 0.4s;
}
#svg path:nth-child(4):hover {
    -webkit-animation-play-state: paused;
    animation-play-state: paused;
}
#svg path:nth-child(5) {
    -webkit-animation: pweek 1.8s linear infinite;
    animation: pweek 1.8s linear infinite;
    -webkit-animation-delay: 0.5s;
    animation-delay: 0.5s;
}
#svg path:nth-child(5):hover {
    -webkit-animation-play-state: paused;
    animation-play-state: paused;
}
#svg path:nth-child(6) {
    -webkit-animation: pweek 1.8s linear infinite;
    animation: pweek 1.8s linear infinite;
    -webkit-animation-delay: 0.6s;
    animation-delay: 0.6s;
}
#svg path:nth-child(6):hover {
    -webkit-animation-play-state: paused;
    animation-play-state: paused;
}
#svg path:nth-child(7) {
    -webkit-animation: pweek 1.8s linear infinite;
    animation: pweek 1.8s linear infinite;
    -webkit-animation-delay: 0.7s;
    animation-delay: 0.7s;
}
#svg path:nth-child(7):hover {
    -webkit-animation-play-state: paused;
    animation-play-state: paused;
}
#svg path:nth-child(8) {
    -webkit-animation: pweek 1.8s linear infinite;
    animation: pweek 1.8s linear infinite;
    -webkit-animation-delay: 0.8s;
    animation-delay: 0.8s;
}
#svg path:nth-child(8):hover {
    -webkit-animation-play-state: paused;
    animation-play-state: paused;
}
#svg path:nth-child(9) {
    -webkit-animation: pweek 1.8s linear infinite;
    animation: pweek 1.8s linear infinite;
    -webkit-animation-delay: 0.9s;
    animation-delay: 0.9s;
}
#svg path:nth-child(9):hover {
    -webkit-animation-play-state: paused;
    animation-play-state: paused;
}
#svg path:nth-child(10) {
    -webkit-animation: pweek 1.8s linear infinite;
    animation: pweek 1.8s linear infinite;
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
}
#svg path:nth-child(10):hover {
    -webkit-animation-play-state: paused;
    animation-play-state: paused;
}
#svg path:nth-child(11) {
    -webkit-animation: pweek 1.8s linear infinite;
    animation: pweek 1.8s linear infinite;
    -webkit-animation-delay: 1.1s;
    animation-delay: 1.1s;
}
#svg path:nth-child(11):hover {
    -webkit-animation-play-state: paused;
    animation-play-state: paused;
}
#svg path:nth-child(12) {
    -webkit-animation: pweek 1.8s linear infinite;
    animation: pweek 1.8s linear infinite;
    -webkit-animation-delay: 1.2s;
    animation-delay: 1.2s;
}
#svg path:nth-child(12):hover {
    -webkit-animation-play-state: paused;
    animation-play-state: paused;
}
#svg path:nth-child(13) {
    -webkit-animation: pweek 1.8s linear infinite;
    animation: pweek 1.8s linear infinite;
    -webkit-animation-delay: 1.3s;
    animation-delay: 1.3s;
}
#svg path:nth-child(13):hover {
    -webkit-animation-play-state: paused;
    animation-play-state: paused;
}
#svg path:nth-child(14) {
    -webkit-animation: pweek 1.8s linear infinite;
    animation: pweek 1.8s linear infinite;
    -webkit-animation-delay: 1.4s;
    animation-delay: 1.4s;
}
#svg path:nth-child(14):hover {
    -webkit-animation-play-state: paused;
    animation-play-state: paused;
}
#svg path:nth-child(15) {
    -webkit-animation: pweek 1.8s linear infinite;
    animation: pweek 1.8s linear infinite;
    -webkit-animation-delay: 1.5s;
    animation-delay: 1.5s;
}
#svg path:nth-child(15):hover {
    -webkit-animation-play-state: paused;
    animation-play-state: paused;
}
#svg path:nth-child(16) {
    -webkit-animation: pweek 1.8s linear infinite;
    animation: pweek 1.8s linear infinite;
    -webkit-animation-delay: 1.6s;
    animation-delay: 1.6s;
}
#svg path:nth-child(16):hover {
    -webkit-animation-play-state: paused;
    animation-play-state: paused;
}
#svg path:nth-child(17) {
    -webkit-animation: pweek 1.8s linear infinite;
    animation: pweek 1.8s linear infinite;
    -webkit-animation-delay: 1.7s;
    animation-delay: 1.7s;
}
#svg path:nth-child(17):hover {
    -webkit-animation-play-state: paused;
    animation-play-state: paused;
}
#svg path:nth-child(18) {
    -webkit-animation: pweek 1.8s linear infinite;
    animation: pweek 1.8s linear infinite;
    -webkit-animation-delay: 1.8s;
    animation-delay: 1.8s;
}
#svg path:nth-child(18):hover {
    -webkit-animation-play-state: paused;
    animation-play-state: paused;
}
@-webkit-keyframes pweek {
    0% {
        fill: white;    /*At 0% the color is white*/
    }
    50% {
        fill: white;    /*At 50% the color is white*/
    }
    100% {
        fill: #252839;    /*At 100% the color is dark blue*/
    }
}
@keyframes pweek {
    0% {
        fill: white;    /*At 0% the color is white*/
    }
    50% {
        fill: white;    /*At 50% the color is white*/
    }
    100% {
        fill: #252839;    /*At 100% the color is dark blue */
    }
}
