/*
Theme Name: Screech
Theme URI: http://themexpro.com/
Author: ThemeXpro
Author URI: http://themexpro.com/
Version: 1.0
License: GNU General Public License
License URI: license.txt
Text Domain: screech
Domain Path: /languages/
Description: Multipurpose & One Page Portfolio
*/

/*--------------------------------------------------------------
1.0 - Reset
--------------------------------------------------------------*/

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, font, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
    border: 0;
    font-family: inherit;
    font-size: 100%;
    font-style: inherit;
    font-weight: inherit;
    margin: 0;
    outline: 0;
    padding: 0;
    vertical-align: baseline;
}
html {
    font-size: 62.5%; /* Corrects text resizing oddly in IE6/7 when body font-size is set using em units http://clagnut.com/blog/348/#c790 */
    overflow-y: scroll; /* Keeps page centered in all browsers regardless of content height */
    -webkit-text-size-adjust: 100%; /* Prevents iOS text size adjust after orientation change, without disabling user zoom */
    -ms-text-size-adjust:     100%; /* www.456bereastreet.com/archive/201012/controlling_text_size_in_safari_for_ios_without_disabling_user_zoom/ */
}
::-moz-selection {
    background: #27BEBE;
    text-shadow: none;
    color: #fff;
}

::selection {
    background: #27BEBE;
    text-shadow: none;
    color: #fff;
}

body {
    background: #fff;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
nav,
section {
    display: block;
}
ol, ul {
    list-style: none;
}
table { /* tables still need 'cellspacing="0"' in the markup */
    border-collapse: separate;
    border-spacing: 0;
}
caption, th, td {
    font-weight: normal;
    text-align: left;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content: "";
}
blockquote, q {
    quotes: "" "";
}
a,
a:hover,
a:focus,
a:active {
    outline: 0;
}
a img {
    border: 0;
}

/*--------------------------------------------------------------
2.0 Typography
--------------------------------------------------------------*/
body,
button,
input,
select,
textarea {
    color: #404040;
    font-family: calibri, sans-serif;
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 1.3;
}
h1, h2, h3, h4, h5, h6 {
    clear: both;
}
h1, h2 {
    margin-bottom: 15px;
}
h1 {
    font-size: 30px;
}
h2 {
    font-size: 20px;
}
p {
    margin-bottom: 1.5em;
}
b, strong {
    font-weight: bold;
}
dfn, cite, em, i {
    font-style: italic;
}
blockquote {
    margin: 0 1.5em;
}
address {
    margin: 0 0 1.5em;
}
pre {
    background: #eee;
    font-family: "Courier 10 Pitch", Courier, monospace;
    font-size: 15px;
    font-size: 1.5rem;
    line-height: 1.6;
    margin-bottom: 1.6em;
    max-width: 100%;
    overflow: auto;
    padding: 1.6em;
}
code, kbd, tt, var {
    font: 15px Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
}
abbr, acronym {
    border-bottom: 1px dotted #666;
    cursor: help;
}
mark, ins {
    background: #fff9c0;
    text-decoration: none;
}
sup,
sub {
    font-size: 75%;
    height: 0;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}
sup {
    bottom: 1ex;
}
sub {
    top: .5ex;
}
small {
    font-size: 75%;
}
big {
    font-size: 125%;
}

/*--------------------------------------------------------------
3.0 Elements
--------------------------------------------------------------*/
hr {
    background-color: #ccc;
    border: 0;
    height: 1px;
    margin-bottom: 1.5em;
}
ul, ol {
    margin: 0 0 1.5em 3em;
}
ul {
    list-style: disc;
}
ol {
    list-style: decimal;
}
li > ul,
li > ol {
    margin-bottom: 0;
    margin-left: 1.5em;
}
dt {
    font-weight: bold;
}
dd {
    margin: 0 1.5em 1.5em;
}
figure {
    margin: 0;
}
table {
    margin: 0 0 1.5em;
    width: 100%;
}
th {
    font-weight: bold;
}


/*--------------------------------------------------------------
4.0 Necessary Class
--------------------------------------------------------------*/

/*--------------------------------------------------------------
5.0 Links
--------------------------------------------------------------*/
a {
    color: 
}
a:visited {
    color: 
}
a:hover,
a:focus,
a:active {
    color: 
}
a:hover,
a:focus,
a:active,
a:visited {
    text-decoration: none;
}

/*--------------------------------------------------------------
5.0 Header Section
--------------------------------------------------------------*/

.header-area {
    background-color: #27BEBE;
    padding: 15px 0;
}
.logo h1 {
    margin: 0;
}
.logo h1 a {
    border: 1.5px dotted #fff;
    color: #fff;
    font-size: 25px;
    font-weight: lighter;
    padding: 2px 5px;
    text-transform: uppercase;
    letter-spacing: 3px;
}
#sticky-wrapper {
    z-index: 99999999;
    position: relative;
}
.primary-menu {
    padding: 4px 0;
}
.primary-menu ul {
    list-style: none;
}
.primary-menu ul li {
    float: left;
}
.primary-menu ul li a {
    color: #fff;
    text-transform: uppercase;
    padding: 5px 10px;
    position: relative;
    margin-left: 2px;
}
/************** Menu Hover Brace Style **************/
.primary-menu.brace ul li a:before {
    content: "";
    position: absolute;
    display: none;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    border: 1px solid #fff;
    border-top: none;
}
.primary-menu.brace ul li a:hover:before {
    display: block;
}
/************** Menu Hover Parallel Style **************/

.primary-menu.parallel ul li a:before,
.primary-menu.parallel ul li a:after {
    -webkit-transition: .3s ease all;
    -o-transition: .3s ease all;
    transition: .3s ease all;
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    background-color: #fff;
}
.primary-menu.parallel ul li a:before {
    top: 0;
    left: 0;
}
.primary-menu.parallel ul li a:after {
    bottom: 0;
    right: 0;
}
.primary-menu.parallel ul li a:hover:before,
.primary-menu.parallel ul li a:hover:after {
    width: 100%;
}
/************** Menu Hover square Style **************/

.primary-menu.square ul li a:before {
    content: "";
    position: absolute;
    display: none;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 2px solid #fff;
    border-radius: 5px;
}
.primary-menu.square ul li a:hover:before {
    display: block;
}


.social-network a {
    background-color: #d4f2f2;
    border-radius: 3px;
    color: #666;
    padding: 2px 5px;
    position: relative;
}
.social-network ul {
    background-color: #d4f2f2;
    list-style: outside none none;
    margin-top: 22px;
    padding: 6px;
    position: absolute;
    right: 0;
    top: 100%;
    width: 198px;
    display: none;
}
.social-network ul li {
    float: left;
    margin: 3px;
}
.social-network ul li a {
    background-color: #27bebe;
    border-radius: 4px;
    color: #fff;
    display: inline-block;
    height: 25px;
    padding-left: 6px;
    width: 25px;
}
.social-network:hover.social-network ul {
    display: block;
}

/*--------------------------------------------------------------
6.0 Slider Section
--------------------------------------------------------------*/

.slider-area img {
    width: 100%;
    height: 500px;
}

/*--------------------------------------------------------------
6.0 Service Section
--------------------------------------------------------------*/
.section-headering {
    text-align: center;
    position: relative;
    z-index: 9999;
}
.section-headering h1 {
    color: #27bebe;
    font-size: 30px;
    font-weight: lighter;
    letter-spacing: 2px;
    text-transform: capitalize;
    margin-bottom: 10px;
}
.section-headering p {
    color: #aaa;
    margin: 10px;

}
.separator {
    background-color: #27bebe;
    height: 1px;
    margin: 0 auto;
    width: 10%;
    margin-bottom: 40px;
    position: relative;
    z-index: 99999;
}
.service-area {
    padding: 40px 0;
}
.single-service {
    margin-bottom: 40px;
}
.service-icon {
    border: 1px solid #ddd;
    border-top: none;
    margin: 0 auto;
    font-size: 35px;
    height: 70px;
    margin: 0 auto;
    -webkit-transform: rotate(-45deg);
    -0-transform: rotate(-45deg);
    transform: rotate(-45deg);
    width: 70px;
    margin-bottom: 20px;
}
.service-icon i {
    -webkit-transform: rotate(45deg);
    -0-transform: rotate(45deg);
    transform: rotate(45deg);
    color: #27bebe;
    padding-left: 22px;
    padding-top: 12px;
}
.service-content {
    text-align: center;
}
.service-content h2 {
    color: #27bebe;
    font-size: 20px;
    font-weight: normal;
    text-transform: capitalize;
}
.read-more {
    color: #999;
    position: relative;
    padding: 3px 14px;
}
.read-more:before {
    position: absolute;
    content: "";
    width: 20%;
    height: 100%;
    top: 0;
    left: 0;
    border: 2px solid #27bebe;
    border-right: none;
    border-left-width: 5px;
    -webkit-transition: .3s ease all;
     -o-transition: .3s ease all;
     transition: .3s ease all; 
}
.read-more:hover {
    color: #27bebe;
}
.read-more:hover:before {
    width: 100%;
}
.service-content a {}


/*--------------------------------------------------------------
7.0 About Section
--------------------------------------------------------------*/

.about-area {
    background: url(img/about_bg.jpg) no-repeat fixed;
    position: relative;
    -webkit-background-size: 100% 100%;
    background-size: 100% 100%;
    padding: 40px 0;
}
.about-area:before {
    position: absolute;
    content: "";
    background-color: #fff;
    opacity: 0.7;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}
.about-area h2 {
    color: #27bebe;
    letter-spacing: 2px;
    text-transform: uppercase;
}
.about h2 {}
.about p {}
.skill h2{}
.single-bar {}
.single-bar p {
    background-color: #333;
    border-radius: 4px 4px 0 0;
    color: #fff;
    letter-spacing: 1px;
    margin-bottom: 0;
    padding: 5px 10px;
}
.single-bar p span {
    background-color: #27bebe;
    border-radius: 4px;
    color: #333;
    margin-left: 8px;
    padding: 0 6px;
}
.bar-bg {
    background-color: rgba(0, 0, 0, .55);
    height: 5px;
    margin-bottom: 20px;
    overflow: hidden;
    border-radius: 0 0 4px 4px;
}
.bar-progress {
    background-color: #27bebe;
    height: 100%;
    width: 0;
}

/*--------------------------------------------------------------
8.0 Portfolio Section
--------------------------------------------------------------*/
.portfolio-list .mix {
    display: none;
}
.portfolio-area {
    padding: 40px 0;
}
.portfolio-filter {
    text-align: center;
}
.portfolio-menu {}
ul.portfolio-menu {
    list-style: none;
    margin-bottom: 40px;
}
ul.portfolio-menu li {
    display: inline-block;
    padding: 5px 10px;
    border: 1px solid #ddd;
    cursor: pointer;
    text-transform: uppercase;
    -webkit-transition: .5s ease all;
    -o-transition: .5s ease all;
    transition: .5s ease all;
}
ul.portfolio-menu li:hover,
ul.portfolio-menu li.active {
    background-color: #27bebe;
    color: #fff;
}
.portfolio-list {

}
.portfolio-list .single-portfolio {
    margin: -3px -2px;
    width: 25%;
    height: 230px;  
    position: relative;
    overflow: hidden;
}
.portfolio-list .single-portfolio img {
    width: 100%;
    height: 100%;
}
.project-details {
    height: 100%;
    left: 100%;
    position: absolute;
    top: 100%;
    width: 100%;
    -webkit-transition: .5s ease all;
    -o-transition: .5s ease all;
    transition: .5s ease all;
}
.project-details a {
    color: #fff;
    display: inline-block;
    margin: 0;
    padding: 20px 25px;
    position: relative;
    z-index: 2;
    background-color: #27bebe;
    font-size: 25px;
}
.project-overlay {
    position: absolute;
    background-color: #27bebe;
    opacity: .7;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}
.portfolio-list .single-portfolio:hover .project-details {
    top: 0;
    left: 0;
} 


/*--------------------------------------------------------------
9.0 Team Section
--------------------------------------------------------------*/

.team-area {
    padding: 40px 0;
}
.team-member {
    position: relative;
    overflow: hidden;
}
.team-member:before {
    background-color: #333;
    content: "";
    height: 100%;
    left: 0;
    opacity: 0.4;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 1;
    -webkit-transition: 1.5s ease all;
    -o-transition: 1.5s ease all;
    transition: 1.5s ease all;
}
.team-member-thumbnail {
}
.team-member-thumbnail img {
    width: 100%;
}
.team-member:hover:before {
    opacity: 0;
}
.team-member:hover .team-member-info {
    bottom: 0;
}
.team-member-info {
    position: absolute;
    bottom: -45px;
    width: 100%;
    z-index: 2;
    -webkit-transition: .5s ease all;
    -o-transition: .5s ease all;
    transition: .5s ease all;
}
.team-member-info span.line {
    background-color: #fff;
    display: block;
    width: 100%;
    height: 1px;
}
.team-member-desc {
    padding: 10px 0 15px 15px;
}
.team-member-desc h4 {
    color: #fff;
    font-size: 16px;
    letter-spacing: 2px;
    text-transform: uppercase;
}
.team-member-desc h5 {
    color: #fff;
    text-transform: uppercase;
    font-size: 12px;
}
.team-member-social-icon {}
.team-member-social-icon ul {
    list-style: none;
    margin: 0;
    padding-left: 10px;
    padding-bottom: 10px;
}
.team-member-social-icon ul li {
    float: left;
}
.team-member-social-icon ul li a {
    background-color: rgba(0, 0, 0, 0.4);
    border-radius: 100%;
    color: #fff;
    display: inline-block;
    font-size: 14px;
    height: 30px;
    line-height: 30px;
    margin-bottom: 10px;
    margin-left: 5px;
    text-align: center;
    -webkit-transition: .5s ease all;
    -o-transition: .5s ease all;
    transition: .5s ease all;
    width: 30px;
}
.team-member-social-icon ul li a:hover {
    background-color: rgba(39,190,190, .4);
}


/*--------------------------------------------------------------
10.0 Numeric Factor Section
--------------------------------------------------------------*/

.numeric-factor-area {
    text-align: center;
    padding: 40px 0;
    color: #fff;
    position: relative;
    background: url(img/factor_bg.jpg) no-repeat fixed;
    -webkit-background-size: 100% 100%;
    background-size: 100% 100%;
}
.numeric-factor-area:before {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    content: "";
    background: rgba(0, 0, 0, .7);
}
.numeric-factor-area p {
    font-size: 20px;
    letter-spacing: 2px;
    text-transform: uppercase;
}
.count {}
.count span.number {
    color: #27bebe;
    font-size: 60px;
    font-weight: lighter;
}
.count p {
    font-size: 16px;
    font-weight: lighter;
}

/*--------------------------------------------------------------
11.0 Pricing Table Section
--------------------------------------------------------------*/

.pricing-area {
    padding: 40px 0;
}
.pricing-table {}
.single-table {
    float: left;
    width: 25%;
    text-align: center;
    border-left: 1px solid #fff;
}
.single-table.popular {
    -webkit-transform: scaleY(1.05);
    -ms-transform: scaleY(1.05);
    -o-transform: scaleY(1.05);
    transform: scaleY(1.05);
}
.table-header {
    background-color: #27bebe;
    color: #fff;
}
.table-header h2 {
    background-color: #6ed6d8;
    border-radius: 30px 0 0;
    color: #333;
    font-size: 18px;
    font-weight: lighter;
    letter-spacing: 2px;
    margin: 0;
    padding: 6px 0;
    text-transform: uppercase;
}
.table-header p {
    font-size: 40px;
    margin: 0;
    padding: 10px 0;
}
.table-header p span {
    background-color: #333;
    border-radius: 4px;
    display: inline-block;
    font-size: 14px;
    padding: 2px 5px;
    text-transform: capitalize;
}
.table-info {}
.table-info ul {
    list-style: none;
    margin: 0;
    padding: 0;
    background-color: #ecf3f3;
}
.table-info ul li {
    border-bottom: 1px solid #ddd;
    color: #666;
    padding: 10px 0;
}
.table-action {
    background-color: #27bebe;
    padding: 10px 0;
}
.table-action a {
    background-color: rgba(0, 0, 0, .3);
    border-radius: 5px;
    color: #fff;
    display: inline-block;
    padding: 10px 15px;
    text-transform: uppercase;
    -webkit-transition: .5s ease-out all;
    -o-transition: .5s ease-out all;
    transition: .5s ease-out all;
}
.table-action a:hover {
    background-color: rgba(0, 0, 0, .6);
}

/*--------------------------------------------------------------
12.0 Newsletter Section
--------------------------------------------------------------*/

.newsletter-area {
    padding: 40px 0;
    position: relative;
    background: url(img/newsletter.jpg) no-repeat fixed;
    -webkit-background-size: 100% 100%;
    background-size: 100% 100%;
}
.newsletter-area:before {
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(255, 255, 255, .9);
    position: absolute;
}
.newsletter {}
.newsletter h2 {
    color: #27bebe;
    text-transform: uppercase;
    letter-spacing: 2px;

}
.newsletter p {
    margin: 0;
    color: #666;
}
.newsletter-form {
    padding: 18px 0;
}
.newsletter-form input[type="text"] {
    background-color: transparent;
    border: none;
    border-bottom: 2px solid #27bebe;
    float: left;
    margin-right: 5px;
    padding: 10px 15px;
    width: 73%;
}
.newsletter-form input[type="text"]:focus {
}
.newsletter-form input[type="submit"] {
    background-color: transparent;
    border: 2px solid #27bebe;
    color: #666;
    font-size: 18px;
    padding: 8px 20px;
    width: 25%;
    border-radius: 5px;
}

/*--------------------------------------------------------------
13.0 Testimonial Section
--------------------------------------------------------------*/

.testimonial-area {
    padding: 40px 0;
    background-color: #f6f6f6;
    border-bottom: 1px dotted #ddd;
    border-top: 1px dotted #ddd;
}
.testimonial {
margin: 0 auto;
width: 600px;
}
.testimonial.item {
      display: block;
  width: 100%;
  height: auto;
}
.message {
    width: 70%;
    float: left;
    margin-top: 40px;
}
.message p {
    color: #999;
    font-size: 18px;
    font-style: italic;
    text-shadow: 0 2px 1px #fff;
}
.message-sender {
    float: right;
    width: 30%;
}
.sender-img {
height: 150px;
margin: 0 auto 5px;
width: 150px;
}
.sender-img img {
    border: 5px solid rgba(39, 190, 190, 0.6);
border-radius: 100%;
height: 100%;
width: 100%;
}
.sender-info {
    text-align: center;
}
.sender-info h3 {
    color: #27bebe;
font-size: 18px;
text-transform: capitalize;
}
.sender-info span {
    color: #999;
font-size: 12px;
}
.owl-theme .owl-controls .owl-page span {
  background: #999 none repeat scroll 0 0;
  display: block;
  height: 8px;
  margin: 5px;
  opacity: 0.5;
  width: 25px;
}

/*--------------------------------------------------------------
14.0 Testimonial Section
--------------------------------------------------------------*/

.client-area {
    padding: 40px 0;
}
.client-logo {}
.client-logo ul {
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: center;
}
.client-logo ul li {
    border: 2px solid #27bebe;
    background-color: #ECF3F3;
    display: inline-block;
    margin: 5px;
    padding: 15px 20px;
}
.client-logo ul li img {}

/*--------------------------------------------------------------
15.0 HomePage Blog Section
--------------------------------------------------------------*/

.blog-area {
    padding: 40px 0;
    background-color: #f6f6f6;
    border-bottom: 1px dotted #ddd;
    border-top: 1px dotted #ddd;
}
.blog {
    background-color: #fff;
    border: 1px dotted #afafaf;
    margin-bottom: 20px;
}
.blog-thumb {}
.blog-thumb a img {
    width: 100%;
}
.blog-content {
    margin-top: 15px;
    padding: 5px 12px 0;
}
.blog-content p {}
.blog-content h2 {
    margin: 0;
}
.blog-content h2 a {
    color: #0ba2a2;
    font-size: 22px;
    -webkit-transition: .5s ease all;
    -o-transition: .5s ease all;
    transition: .5s ease all;
}
.blog-content h2 a:hover {
    color: #27bebe;
}
.post-meta {
    color: #aaa;
    font-size: 14px;
    margin-bottom: 15px;
}
.post-meta a {
    color: #aaa;
    -webkit-transition: .5s ease all;
    -o-transition: .5s ease all;
    transition: .5s ease all;
}
.blog-content a.more {
    background-color: #0ba2a2;
    color: #fff;
    display: inline-block;
    float: right;
    font-size: 22px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    width: 40px;
    margin-right: -12px;
    -webkit-transition: .5s ease all;
    -o-transition: .5s ease all;
    transition: .5s ease all;
} 
.blog-content a.more:hover {
    background-color: #27bebe;
}
.post-meta a:hover {
    color: #27bebe;
}
.more-blog {
    text-align: center;
} 
.more-blog a {
    background-color: #0ba2a2;
    border: 1px solid #0ba2a2;
    color: #fff;
    display: inline-block;
    font-size: 20px;
    padding: 10px 20px;
    -webkit-transition: .5s ease all;
    -o-transition: .5s ease all;
    transition: .5s ease all;
} 
.more-blog a:hover {
    background-color: transparent;
    color: #0ba2a2;
} 

/*--------------------------------------------------------------
16.0 Contact Us Section
--------------------------------------------------------------*/

.contact-area {
    padding: 40px 0;
    background: url(img/contact_bg.jpg) no-repeat fixed;
    -webkit-background-size: 100% 100%;
    background-size: 100% 100%;
    position: relative;
}
.contact-area:before {
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: #000;
    opacity: .7 ;
    position: absolute;
}
.contact-info {
    margin-bottom: 40px;
}
.info {
    color: #ddd;
}
.info-icon {
    float: left;
margin-right: 15px;
}
.info-icon i {
    border: 1px solid #999;
    border-radius: 100%;
    color: #27bebe;
    font-size: 33px;
    height: 80px;
    line-height: 80px;
    text-align: center;
    width: 80px;
}
.info-desc {
    font-size: 14px;
}
.info-desc p {}
.info-mobile {
    margin-top: 20px;
}
.info-address {
    margin-top: 12px;
}
.info-mail {
    margin-top: 30px;
}
.contact-form {}
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
    background: transparent none repeat scroll 0 0;
    border: medium none;
    border-bottom: 1px solid #27bebe;
    color: #ddd;
    width: 100%;
    padding: 5px 10px;
}
.contact-form input[type="text"],
.contact-form input[type="email"] {
    margin-bottom: 25px;
}
.contact-form textarea {
    resize: vertical;
}
.message-submit {
    margin-top: 20px;
    text-align: right;
}
.message-submit input[type="submit"] {
    background-color: transparent;
    border: 1px solid #27bebe;
    color: #27bebe;
    font-size: 18px;
    letter-spacing: 2px;
    padding: 6px 20px;
    text-transform: uppercase;
}

/*--------------------------------------------------------------
17.0 Footer Section
--------------------------------------------------------------*/

.footer-area {
    padding: 40px 0;
    background-color: #222;
    text-align: center;
}
.social-icon {
    margin-bottom: 20px;
}
.social-icon ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.social-icon ul li {
    display: inline-block;
}
.social-icon ul li a {
    display: inline-block;
    width: 80px;
    height: 80px;
    line-height: 80px;
    font-size: 18px;
    color: #999;
    background-color: #444;
    margin-left: 5px;
    border-radius: 100%;
    -webkit-transition: .5s ease all;
    -o-transition: .5s ease all;
    transition: .5s ease all;
}
.social-icon ul li a:hover {
    background-color: #333;
} 
.footer-text {
    text-align: center;
    color: #999;
    margin-top: 20px;
}
.footer-text p {
    margin: 0;
    font-size: 14px;
}
a.scrollup {
    width: 40px;
    height: 40px;
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: none;
    background-color: rgba(39, 190, 190, 0.6);
    line-height: 40px;
    text-align: center;
    color: #fff;
    -webkit-transition: .5s ease all;
    -o-transition: .5s ease all;
    transition: .5s ease all;
}
a.scrollup:hover {
    background-color: rgba(39, 190, 190, 1);
}