/*
=====================================================================
*   Ceevee v1.0 Layout Stylesheet
*   url: styleshout.com
*   03-18-2014
=====================================================================

   TOC:
   a. General Styles
   b. Header Styles
   c. About Section
   d. Resume Section
   e. Portfolio Section
   f. Call To Action Section
   g. Testimonials Section
   h. Contact Section
   i. Footer

===================================================================== */

/* ------------------------------------------------------------------ */
/* a. General Styles
/* ------------------------------------------------------------------ */

body { background: #0f0f0f; }

/* ------------------------------------------------------------------ */
/* b. Header Styles
/* ------------------------------------------------------------------ */
:root {
   --primary-color: #1e3c72;
   --secondary-color: #2a5298;
   --accent-color: #f06000;
   --text-color: #fff;
   --text-secondary-color: #d3d3d3;
   --hover-color: #11abb0;
   --background-blur: rgba(0, 0, 0, 0.8);
 }
 
 header {
   background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
   color: var(--text-color);
   text-align: center;
   padding: 6rem 0;
   position: relative;
 }
 
 .header-content {
   transition: filter 0.3s ease;
 }
 
 header.menu-open .header-content {
   filter: blur(5px);
 }
 
 #nav-wrap {
   display: flex;
   justify-content: center;
   align-items: center;
   position: fixed;
   width: 100%;
   top: 0;
   left: 0;
   z-index: 100;
   background: var(--background-blur);
   backdrop-filter: blur(10px);
 }
 
 #nav {
   display: flex;
   gap: 2rem;
   list-style: none;
 }
 
 #nav li a {
   color: var(--text-color);
   text-transform: uppercase;
   text-decoration: none;
   padding: 1rem 1.5rem;
   transition: color 0.3s ease, background-color 0.3s ease;
 }
 
 #nav li a:hover,
 #nav li.current a {
   color: var(--accent-color);
 }
 
 .banner-text {
   margin-top: 15vh;
   max-width: 800px;
   margin-left: auto;
   margin-right: auto;
 }
 
 .responsive-headline {
   font-size: 3rem;
   line-height: 1.2;
   margin-bottom: 1rem;
   color: var(--text-color);
   text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
   animation: fadeInDown 1s ease-out;
 }
 
 .banner-text h3 {
   font-size: 1.5rem;
   font-weight: 300;
   color: var(--text-secondary-color);
   margin-bottom: 2rem;
   animation: fadeInUp 1s ease-out;
 }
 
 @keyframes fadeInDown {
   from {
     opacity: 0;
     transform: translateY(-20px);
   }
   to {
     opacity: 1;
     transform: translateY(0);
   }
 }
 
 @keyframes fadeInUp {
   from {
     opacity: 0;
     transform: translateY(20px);
   }
   to {
     opacity: 1;
     transform: translateY(0);
   }
 }
 
 header:before {
   content: '';
   display: inline-block;
   vertical-align: middle;
   height: 100%;
 }
 
 header .banner {
   display: inline-block;
   vertical-align: middle;
   margin: 0 auto;
   width: 85%;
   padding-bottom: 30px;
   text-align: center;
 }
 
 header .social {
   margin: 24px 0;
   padding: 0;
   font-size: 30px;
   text-shadow: 0px 1px 2px rgba(0, 0, 0, 0.8);
   animation: fadeIn 1.5s ease-out;
 }
 
 @keyframes fadeIn {
   from {
     opacity: 0;
   }
   to {
     opacity: 1;
   }
 }
 
 header .social li {
   display: inline-block;
   margin: 0 15px;
   padding: 0;
 }
 
 header .social li a {
   color: var(--text-color);
   transition: color 0.3s ease;
 }
 
 header .social li a:hover {
   color: var(--hover-color);
 }
 
 .scrolldown a {
   position: absolute;
   bottom: 30px;
   left: 50%;
   margin-left: -21px;
   color: var(--text-color);
   display: block;
   height: 42px;
   width: 42px;
   font-size: 42px;
   line-height: 42px;
   border-radius: 50%;
   transition: color 0.3s ease, transform 0.3s ease;
 }
 
 .scrolldown a:hover {
   color: var(--hover-color);
   transform: translateY(-5px);
 }
 
 /* Mobile Menu */
 .mobile-btn {
   display: none;
   color: var(--text-color);
   text-transform: uppercase;
   text-decoration: none;
   padding: 1rem 1.5rem;
   background: var(--accent-color);
   cursor: pointer;
   border: none;
   outline: none;
   position: absolute;
   top: 10px;
   right: 20px;
   z-index: 200;
 }
 
 #nav-wrap.open .mobile-btn {
   background: var(--text-color);
   color: var(--accent-color);
 }
 
 #nav-wrap.open #nav {
   display: flex;
   flex-direction: column;
   position: absolute;
   top: 60px;
   right: 20px;
   background: var(--background-blur);
   border-radius: 8px;
   padding: 1rem;
   z-index: 200; /* Higher than header content */
 }
 
 @media (max-width: 768px) {
   .responsive-headline {
     font-size: 2rem;
   }
 
   .banner-text h3 {
     font-size: 1.2rem;
   }
 
   #nav {
     display: none;
     flex-direction: column;
     gap: 1rem;
   }
 
   #nav-wrap.open #nav {
     display: flex;
   }
 
   #nav-wrap {
     flex-direction: column;
     padding: 1rem;
   }
 
   .mobile-btn {
     display: block;
   }
 
   .scrolldown a {
     bottom: 20px;
   }
 }
 
 
/* About Section */
#about {
   background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
   padding-top: 96px;
   padding-bottom: 66px;
   color: var(--text-color);
   text-align: center;
   overflow: hidden;
 }
 
 #about a,
 #about a:visited {
   color: var(--text-color);
   transition: color 0.3s ease;
 }
 
 #about a:hover,
 #about a:focus {
   color: var(--hover-color);
 }
 
 #about h2 {
   font-size: 2rem;
   margin-bottom: 1rem;
   color: var(--text-color);
   text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
 }
 
 #about p {
   line-height: 1.6;
   color: var(--text-secondary-color);
   max-width: 800px;
   margin: 0 auto 2rem auto;
 }
 
 #about .profile-pic {
   width: 120px;
   height: 120px;
   border-radius: 100%;
   margin-bottom: 2rem;
 }
 
 #about .contact-details {
   margin-bottom: 2rem;
 }
 
 #about .address {
   line-height: 1.6;
   font-size: 1.1rem;
   color: var(--text-secondary-color);
 }
 
 #about .download .button {
   margin-top: 1rem;
   background: var(--accent-color);
   color: var(--text-color);
   padding: 0.75rem 1.5rem;
   border-radius: 5px;
   text-transform: uppercase;
   font-size: 1rem;
   transition: background 0.3s ease, color 0.3s ease;
 }
 
 #about .download .button:hover {
   background: var(--text-color);
   color: var(--accent-color);
 }
 
 #about .download .button i {
   margin-right: 10px;
   font-size: 1.2rem;
 }
 

/* Resume Section */
#resume {
   background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
   padding-top: 90px;
   padding-bottom: 72px;
   color: var(--text-color);
   text-align: center;
   overflow: hidden;
 }
 
 #resume a,
 #resume a:visited {
   color: var(--text-color);
   transition: color 0.3s ease;
 }
 
 #resume a:hover,
 #resume a:focus {
   color: var(--hover-color);
 }
 
 #resume h1 {
   font-size: 2rem;
   text-transform: uppercase;
   letter-spacing: 1px;
   color: var(--text-color);
   margin-bottom: 1rem;
 }
 
 #resume h1 span {
   border-bottom: 3px solid var(--accent-color);
   padding-bottom: 6px;
 }
 
 #resume h3 {
   font-size: 1.5rem;
   margin-bottom: 0.5rem;
   color: var(--text-color);
   text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
 }
 
 #resume .header-col {
   padding-top: 9px;
 }
 
 #resume .main-col {
   padding-right: 10%;
 }
 
 .education, .work {
   margin-bottom: 48px;
   padding-bottom: 24px;
   border-bottom: 1px solid rgba(255, 255, 255, 0.3);
 }
 
 #resume .info {
   font-size: 1rem;
   color: var(--text-secondary-color);
   margin-bottom: 18px;
   margin-top: 9px;
 }
 
 #resume .info span {
   margin-right: 5px;
   margin-left: 5px;
 }
 
 #resume .date {
   font-size: 0.9rem;
   color: var(--text-secondary-color);
 }
 
 .bars {
   width: 95%;
   margin: 0 auto;
   padding: 0;
   text-align: left;
 }
 
 .bars .skills {
   margin-top: 36px;
   list-style: none;
   padding: 0;
 }
 
 .bars li {
   position: relative;
   margin-bottom: 60px;
   background: rgba(255, 255, 255, 0.1);
   height: 42px;
   border-radius: 3px;
 }
 
 .bars li em {
   font-size: 0.9rem;
   color: var(--text-color);
   text-transform: uppercase;
   letter-spacing: 2px;
   font-weight: normal;
   position: relative;
   top: -36px;
 }
 
 .bar-expand {
   position: absolute;
   left: 0;
   top: 0;
   margin: 0;
   padding-right: 24px;
   background: var(--accent-color);
   display: inline-block;
   height: 42px;
   line-height: 42px;
   border-radius: 3px 0 0 3px;
 }
 
 @media (max-width: 768px) {
   #resume .main-col {
     padding-right: 5%;
   }
 
   #resume h1 {
     font-size: 1.5rem;
   }
 
   #resume h3 {
     font-size: 1.2rem;
   }
 
   #resume .info {
     font-size: 0.9rem;
   }
 
   #resume .date {
     font-size: 0.8rem;
   }
 }
/*
.git {
  	-moz-animation: git 2s ease;
  	-webkit-animation: git 2s ease;
}
.illustrator {
  	-moz-animation: illustrator 2s ease;
  	-webkit-animation: illustrator 2s ease;
}
.reactjs {
  	-moz-animation: reactjs 2s ease;
  	-webkit-animation: reactjs 2s ease;
}
.css {
  	-moz-animation: css 2s ease;
  	-webkit-animation: css 2s ease;
}
.html5 {
  	-moz-animation: html5 2s ease;
  	-webkit-animation: html5 2s ease;
}
.vuejs {
  	-moz-animation: vuejs 2s ease;
  	-webkit-animation: vuejs 2s ease;
}
.mongodb {
  	-moz-animation: mongodb 2s ease;
  	-webkit-animation: mongodb 2s ease;
}

@-moz-keyframes git {
  0%   { width: 0px;  }
  100% { width: 60%;  }
}
@-moz-keyframes illustrator {
  0%   { width: 0px;  }
  100% { width: 55%;  }
}
@-moz-keyframes reactjs {
  0%   { width: 0px;  }
  100% { width: 50%;  }
}
@-moz-keyframes css {
  0%   { width: 0px;  }
  100% { width: 90%;  }
}
@-moz-keyframes html5 {
  0%   { width: 0px;  }
  100% { width: 80%;  }
}
@-moz-keyframes vuejs {
  0%   { width: 0px;  }
  100% { width: 50%;  }
}
@-moz-keyframes mongodb {
  0%   { width: 0px;  }
  100% { width: 80%;  }
}

@-webkit-keyframes photoshop {
  0%   { width: 0px;  }
  100% { width: 60%;  }
}
@-webkit-keyframes illustrator {
  0%   { width: 0px;  }
  100% { width: 55%;  }
}
@-webkit-keyframes reactjs {
  0%   { width: 0px;  }
  100% { width: 50%;  }
}
@-webkit-keyframes css {
  0%   { width: 0px;  }
  100% { width: 90%;  }
}
@-webkit-keyframes html5 {
  0%   { width: 0px;  }
  100% { width: 80%;  }
}
@-webkit-keyframes vuejs {
  0%   { width: 0px;  }
  100% { width: 50%;  }
}
@-webkit-keyframes mongodb {
  0%   { width: 0px;  }
  100% { width: 80%;  }
}  */

/* ------------------------------------------------------------------ */
/* e. Portfolio Section
/* ------------------------------------------------------------------ */

#portfolio {
   background: #ebeeee;
   padding-top: 90px;
   padding-bottom: 60px;
}
#portfolio h1 {
   font: 15px/24px 'opensans-semibold', sans-serif;
   text-transform: uppercase;
   letter-spacing: 1px;
   text-align: center;
   margin-bottom: 48px;
   color: #95A3A3;
}

/* Portfolio Content */
#portfolio-wrapper .columns { margin-bottom: 36px; }
.portfolio-item .item-wrap {
   background: #fff;
   overflow: hidden;
   position: relative;

   -webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.portfolio-item .item-wrap a {
   display: block;
   cursor: pointer;
}

/* overlay */
.portfolio-item .item-wrap .overlay {
   position: absolute;
   left: 0;
   top: 0;
   width: 100%;
   height: 100%;

	opacity: 0;
	-moz-opacity: 0;
	filter:alpha(opacity=0);

   -webkit-transition: opacity 0.3s ease-in-out;
	-moz-transition: opacity 0.3s ease-in-out;
	-o-transition: opacity 0.3s ease-in-out;
	transition: opacity 0.3s ease-in-out;

   background: url(../images/overlay-bg.png) repeat;
}
.portfolio-item .item-wrap .link-icon {
   display: block;
   color: #fff;
   height: 30px;
   width: 30px;
   font-size: 18px;
   line-height: 30px;
   text-align: center;

   opacity: 0;
	-moz-opacity: 0;
	filter:alpha(opacity=0);

   -webkit-transition: opacity 0.3s ease-in-out;
	-moz-transition: opacity 0.3s ease-in-out;
	-o-transition: opacity 0.3s ease-in-out;
	transition: opacity 0.3s ease-in-out;

   position: absolute;
   top: 50%;
   left: 50%;
   margin-left: -15px;
   margin-top: -15px;
}
.portfolio-item .item-wrap img {
   vertical-align: bottom;
}
.portfolio-item .portfolio-item-meta { padding: 18px }
.portfolio-item .portfolio-item-meta h5 {
   font: 14px/21px 'opensans-bold', sans-serif;
   color: #fff;
}
.portfolio-item .portfolio-item-meta p {
   font: 12px/18px 'opensans-light', sans-serif;
   color: #c6c7c7;
   margin-bottom: 0;
}

/* on hover */
.portfolio-item:hover .overlay {
	opacity: 1;
	-moz-opacity: 1;
	filter:alpha(opacity=100);
}
.portfolio-item:hover .link-icon {
   opacity: 1;
	-moz-opacity: 1;
	filter:alpha(opacity=100);
}

/* popup modal */
.popup-modal {
	max-width: 550px;
	background: #fff;
	position: relative;
	margin: 0 auto;
}
.popup-modal .description-box { padding: 12px 36px 18px 36px; }
.popup-modal .description-box h4 {
   font: 15px/24px 'opensans-bold', sans-serif;
	margin-bottom: 12px;
   color: #111;
}
.popup-modal .description-box p {
	font: 14px/24px 'opensans-regular', sans-serif;
   color: #A1A1A1;
   margin-bottom: 12px;
}
.popup-modal .description-box .categories {
   font: 11px/21px 'opensans-light', sans-serif;
   color: #A1A1A1;
   text-transform: uppercase;
   letter-spacing: 2px;
   display: block;
   text-align: left;
}
.popup-modal .description-box .categories i {
   margin-right: 8px;
}
.popup-modal .link-box {
   padding: 18px 36px;
   background: #111;
   text-align: left;
}
.popup-modal .link-box a {
   color: #fff;
	font: 11px/21px 'opensans-bold', sans-serif;
	text-transform: uppercase;
   letter-spacing: 3px;
   cursor: pointer;
}
.popup-modal a:hover {	color: #00CCCC; }
.popup-modal a.popup-modal-dismiss { margin-left: 24px; }


/* fadein/fadeout effect for modal popup
/* ------------------------------------------------------------------ */

/* content at start */
.mfp-fade.mfp-wrap .mfp-content .popup-modal {
   opacity: 0;
   -webkit-transition: all 200ms ease-in-out;
	-moz-transition: all 200ms ease-in-out;
	-o-transition: all 200ms ease-in-out;
	-ms-transition: all 200ms ease-in-out;
   transition: all 200ms ease-in-out;
}
/* content fadein */
.mfp-fade.mfp-wrap.mfp-ready .mfp-content .popup-modal {
   opacity: 1;
}
/* content fadeout */
.mfp-fade.mfp-wrap.mfp-removing .mfp-content .popup-modal {
   opacity: 0;
}

/* ------------------------------------------------------------------ */
/* f. Call To Action Section
/* ------------------------------------------------------------------ */

#call-to-action {
   background: #212121;
   padding-top: 66px;
   padding-bottom: 48px;
}
#call-to-action h1 {
   font: 18px/24px 'opensans-bold', sans-serif;
   text-transform: uppercase;
   letter-spacing: 3px;
   color: #fff;
}
#call-to-action h1 span { display: none; }
#call-to-action .header-col h1:before {
   font-family: 'FontAwesome';
   content: "\f0ac";
	padding-right: 10px;
	font-size: 72px;
   line-height: 72px;
   text-align: left;
   float: left;
   color: #fff;
}
#call-to-action .action {
   margin-top: 12px;
}
#call-to-action h2 {
   font: 28px/36px 'opensans-bold', sans-serif;
   color: #EBEEEE;
   margin-bottom: 6px;
}
#call-to-action h2 a {
   color: inherit;
}
#call-to-action p {
   color: #636363;
   font-size: 17px;
}
/*#
call-to-action .button {
	color:#fff;
   background: #0D0D0D;
}
*/
#call-to-action .button:hover,
#call-to-action .button:active {
   background: #FFFFFF;
   color: #0D0D0D;
}
#call-to-action p span {
	font-family: 'opensans-semibold', sans-serif;
	color: #D8D8D8;
}

/* Testimonials Section */
#testimonials {
   background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
   padding: 96px 0 66px;
   color: var(--text-color);
   text-align: center;
   position: relative;
 }
 
 #testimonials::before {
   content: "“";
   font-size: 10rem;
   color: rgba(255, 255, 255, 0.1);
   position: absolute;
   top: 20px;
   left: 20px;
   z-index: 1;
 }
 
 #testimonials .text-container {
   max-width: 800px;
   margin: 0 auto;
   position: relative;
   z-index: 2;
 }
 
 #testimonials h1 {
   font-size: 2rem;
   text-transform: uppercase;
   letter-spacing: 1px;
   margin-bottom: 1rem;
   color: var(--text-color);
 }
 
 #testimonials h1 span {
   border-bottom: 3px solid var(--accent-color);
   padding-bottom: 6px;
 }
 
 #testimonials blockquote {
   margin: 0 0 30px 0;
   padding-left: 0;
   position: relative;
   text-shadow: 0px 1px 3px rgba(0, 0, 0, 1);
   color: var(--text-secondary-color);
 }
 
 #testimonials blockquote p {
   font-family: 'librebaskerville-italic', serif;
   font-size: 1.5rem;
   line-height: 1.8;
   color: var(--text-color);
   margin: 0;
 }
 
 #testimonials blockquote cite {
   display: block;
   font-size: 1rem;
   font-style: normal;
   color: var(--text-secondary-color);
   margin-top: 10px;
 }
 
 #testimonials .flex-container {
   display: flex;
   justify-content: center;
   align-items: center;
 }
 
 #testimonials .slides {
   list-style: none;
   padding: 0;
   margin: 0;
   width: 100%;
 }
 
 #testimonials .slides li {
   display: none;
 }
 
 #testimonials .slides li:first-child {
   display: block;
 }
 
 /* Flex Slider Navigation */
 .flex-control-nav {
   text-align: center;
   margin-top: 20px;
 }
 
 .flex-control-nav li {
   display: inline-block;
   margin: 0 5px;
 }
 
 .flex-control-paging li a {
   display: block;
   width: 12px;
   height: 12px;
   background: rgba(255, 255, 255, 0.3);
   border-radius: 50%;
   cursor: pointer;
   transition: background 0.3s ease;
 }
 
 .flex-control-paging li a:hover {
   background: rgba(255, 255, 255, 0.7);
 }
 
 .flex-control-paging li a.flex-active {
   background: rgba(255, 255, 255, 0.9);
 }
 
 @media (max-width: 768px) {
   #testimonials h1 {
     font-size: 1.5rem;
   }
 
   #testimonials blockquote p {
     font-size: 1.2rem;
   }
 
   #testimonials blockquote cite {
     font-size: 0.9rem;
   }
 }
 
//* Contact Section */
/* Contact Section */
#contact {
   background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
   padding-top: 96px;
   padding-bottom: 102px;
   color: var(--text-color);
   text-align: center;
 }
 
 #contact .section-head {
   margin-bottom: 42px;
   text-align: center;
 }
 
 #contact a,
 #contact a:visited {
   color: var(--text-color);
   transition: color 0.3s ease;
 }
 
 #contact a:hover,
 #contact a:focus {
   color: var(--hover-color);
 }
 
 #contact h1 {
   font-size: 2rem;
   text-transform: uppercase;
   letter-spacing: 1px;
   margin-bottom: 1rem;
   color: var(--text-color);
 }
 
 #contact h1 span {
   border-bottom: 3px solid var(--accent-color);
   padding-bottom: 6px;
 }
 
 #contact p.lead {
   font-size: 1.2rem;
   max-width: 800px;
   margin: 0 auto 2rem auto;
 }
 
 #contact .header-col {
   padding-top: 6px;
 }
 
 #contact form {
   margin-bottom: 30px;
   text-align: left;
 }
 
 #contact label {
   font-size: 1rem;
   margin: 12px 0;
   color: var(--text-color);
   display: block;
   text-align: left;
 }
 
 #contact input,
 #contact textarea,
 #contact select {
   padding: 18px 20px;
   color: #eee;
   background: rgba(255, 255, 255, 0.1);
   margin-bottom: 42px;
   border: 1px solid rgba(255, 255, 255, 0.2);
   outline: none;
   font-size: 1rem;
   width: 100%;
   border-radius: 5px;
   transition: background 0.3s ease, border 0.3s ease;
 }
 
 #contact input:focus,
 #contact textarea:focus,
 #contact select:focus {
   color: #fff;
   background-color: rgba(255, 255, 255, 0.2);
   border: 1px solid var(--accent-color);
 }
 
 #contact button.submit {
   text-transform: uppercase;
   letter-spacing: 1px;
   color: var(--text-color);
   background: var(--accent-color);
   border: none;
   cursor: pointer;
   padding: 15px 30px;
   display: inline-block;
   border-radius: 5px;
   transition: background 0.3s ease, color 0.3s ease;
 }
 
 #contact button.submit:hover {
   color: var(--accent-color);
   background: var(--text-color);
 }
 
 #contact span.required {
   color: var(--accent-color);
   font-size: 13px;
 }
 
 #message-warning,
 #message-success {
   display: none;
   background: rgba(255, 255, 255, 0.1);
   padding: 24px;
   margin-bottom: 36px;
   width: 100%;
   border-radius: 5px;
   color: var(--text-color);
 }
 
 #message-warning {
   color: #d72828;
 }
 
 #message-success {
   color: var(--accent-color);
 }
 
 #message-warning i,
 #message-success i {
   margin-right: 10px;
 }
 
 #contact .footer-widgets {
   text-align: left;
 }
 
 #contact .footer-widgets .widget {
   margin-bottom: 42px;
 }
 
 #contact .address {
   font-size: 1rem;
   line-height: 1.8;
 }
 
 @media (max-width: 768px) {
   #contact .eight.columns,
   #contact .four.columns {
     width: 100%;
     padding: 0;
   }
 
   #contact h1 {
     font-size: 1.5rem;
   }
 
   #contact p.lead {
     font-size: 1rem;
   }
 
   #contact label,
   #contact input,
   #contact textarea {
     width: 100%;
   }
 
   #contact form div {
     width: 100%;
     margin-bottom: 20px;
   }
 
   #contact .footer-widgets {
     text-align: center;
   }
 }
 


/* Twitter Feed */
#twitter {
   margin-top: 12px;
   padding: 0;
}
#twitter li {
   margin: 6px 0px 12px 0;
   line-height: 30px;
}
#twitter li span {
   display: block;
}
#twitter li b a {
   font: 13px/36px 'opensans-regular', Sans-serif;
   color: #474747 !important;
   border: none;
}


/* ------------------------------------------------------------------ */
/* i. Footer
/* ------------------------------------------------------------------ */

footer {
   padding-top: 48px;
   margin-bottom: 48px;
   color: #303030;
   font-size: 14px;
   text-align: center;
   position: relative;
}

footer a, footer a:visited { color: #525252; }
footer a:hover, footer a:focus { color: #fff; }

/* copyright */
footer .copyright {
    margin: 0;
    padding: 0;
 }
footer .copyright li {
    display: inline-block;
    margin: 0;
    padding: 0;
    line-height: 24px;
}
.ie footer .copyright li {
   display: inline;
}
footer .copyright li:before {
    content: "\2022";
    padding-left: 10px;
    padding-right: 10px;
    color: #095153;
}
footer .copyright  li:first-child:before {
    display: none;
}

/* social links */
footer .social-links {
   margin: 18px 0 30px 0;
   padding: 0;
   font-size: 30px;
}
footer .social-links li {
    display: inline-block;
    margin: 0;
    padding: 0;
    margin-left: 42px;
    color: #F06000;
}

footer .social-links li:first-child { margin-left: 0; }

/* Go To Top Button */
#go-top {
	position: absolute;
	top: -24px;
   left: 50%;
   margin-left: -30px;
}
#go-top a {
	text-decoration: none;
	border: 0 none;
	display: block;
	width: 60px;
	height: 60px;
	background-color: #525252;

	-webkit-transition: all 0.2s ease-in-out;
   -moz-transition: all 0.2s ease-in-out;
   -o-transition: all 0.2s ease-in-out;
   -ms-transition: all 0.2s ease-in-out;
   transition: all 0.2s ease-in-out;

   color: #fff;
   font-size: 21px;
   line-height: 60px;
 	border-radius: 100%;
}
#go-top a:hover { background-color: #0F9095; }
