/*
  Thingify CSS style
*/

/* Global */
* {
    padding: 0;
    margin: 0;
    font-family: "Raleway", sans-serif, Arial, Tahoma;
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
         -o-box-sizing: border-box;
        -ms-box-sizing: border-box;
            box-sizing: border-box;
}

/* Transition */
.transition {
	-webkit-transition: all .3s ease-in-out;
	   -moz-transition: all .3s ease-in-out;
	     -o-transition: all .3s ease-in-out;
	    -ms-transition: all .3s ease-in-out;
	        transition: all .3s ease-in-out;
}

/* Text Shadow */
.text-shadow {
	-webkit-text-shadow: 1px 1px 0 #222;
	   -moz-text-shadow: 1px 1px 0 #222;
	     -o-text-shadow: 1px 1px 0 #222;
	    -ms-text-shadow: 1px 1px 0 #222;
	        text-shadow: 1px 1px 0 #222;
}

body {
	background-color: rgba(0, 0, 0, 0.8)
}

/* Overlay Div */
.overlay { width: 100%; height: 100%; position: relative; background-color: rgba(0, 0, 0, .75); }

/* Overlay2 Div */
.overlay2 { width: 100%; height: 100%; position: relative; background-color: rgba(0, 0, 0, .86); }

/* Parallax Container */
.parallax-container { height: auto; }

/* Fixed Navbar To The Top Of Layout */
.fixed { position: fixed; top: 0; left: 0; right: 0; margin: 0 auto; }

/* Center Elements */
.centering {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	   -moz-transform: translate(-50%, -50%);
	     -o-transform: translate(-50%, -50%);
	    -ms-transform: translate(-50%, -50%);
	        transform: translate(-50%, -50%);
}

/* White Space */
section { padding: 50px 0; }
.row { margin-bottom: 0; }

/* Section Heading */
section .section-head { color: #203D5D; margin-top: 8px; margin-bottom: 20px; font-size: 25px; text-transform: uppercase; font-weight: 600; }
section .small-head { font-size: 13px; color: #455C78; opacity: .8; margin: 0; font-weight: 600; }

/* Three Spans Make A Line Under The Header */
.underline { margin-bottom: 15px; }
.underline span { width: 15px; height: 2px; margin: 0 3px; margin-bottom: 20px; background: #C2CFDF; display: inline-block; }

/* Buttons Style */
.buttons button {
    min-width: 150px;
    padding: 15px;
    outline: none;
    border: 1px solid #FEFEFE;
    border-radius: 5px;
    color: #FEFEFE;
    background-color: transparent;
    margin: 0 5px;
    text-align: center;
	text-transform: uppercase;
	font-size: 12px;
}

/* Buttons Hover Effect */
.buttons .active, .buttons button:hover { background-color: #1D93E5; border-color: #1D93E5; color: #FFF !important; }

/* Reset Input */
.input-reset input,
.input-reset input[type="text"]:focus,
.input-reset input[type="email"]:focus {
	outline: none;
	display: block;
	width: 100%;
	height: auto;
	padding: 10px;
	-webkit-box-shadow: none;
	   -moz-box-shadow: none;
	     -o-box-shadow: none;
	    -ms-box-shadow: none;
	        box-shadow: none;
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
         -o-box-sizing: border-box;
        -ms-box-sizing: border-box;
            box-sizing: border-box;
}

/* Uppercase Letters */
.uppercase { text-transform: uppercase; }

/* Paragraph & Plus Icon */
.nice-p { text-align: center !important; margin-bottom: 30px; }
.fa-plus { margin-right: 5px; }
/* End Global Style */


/* Welcome */
.intro-area { width: 100%; height: 100vh; padding: 0; }
.intro-area .overlay .intro-welcome { color: #F5F5F5; }
.intro-area .overlay .intro-welcome h5, 
.intro-area .overlay .intro-welcome h1 { font-weight: 600; font-size: 1.4em; letter-spacing: 1px; line-height: .8; }
.intro-area .overlay .intro-welcome h1 { font-size: 3em; }
.intro-area .overlay .intro-welcome h5 span { color: #1D93E5; }

.intro-area .overlay .intro-welcome h6 {
	text-transform: capitalize;
	font-weight: 100;
	font-family: Verdana, Arial, Tahoma;
	margin: 20px 0 60px;
	font-size: 1.2em;
	letter-spacing: .5px;
}
/* End Welcome */


/* About */

/* Responsive Image */
.about-us { padding: 0; }
.about-us .about-area, .about-us .responsive-photo { padding: 50px 0; }
.about-us .responsive-photo { padding-right: 30px; padding-left: 15px; }
.about-us .about-area { padding-right: 15px; }

/* About Header */
.about-us .about-area .small-head, .about-us .about-area h5 { color: #FEFEFE; }

/* About Tabs */
.about-us .about-area .nav-tabs { border: none; margin-bottom: 30px; }

.about-us .about-area .nav-tabs > li > a {
	border: none;
	border-top: 2px solid transparent;
	color: #FFF;
	margin-right: 20px;
    padding: 10px 0;
    text-align: left;
    font-size: 13px;
    font-weight: bold;
	-webkit-border-radius: 0;
       -moz-border-radius: 0;
         -o-border-radius: 0;
        -ms-border-radius: 0;
            border-radius: 0;
}

.about-us .about-area .nav-tabs > li:last-of-type  > a{ margin-right: 0; }

/* Tabs Hover Effect */
.about-us .about-area .nav-tabs > .active > a, 
.about-us .about-area .nav-tabs > .active > a:focus, 
.about-us .about-area .nav-tabs > .active > a:hover { background-color: transparent; color: #1D93E5; border-color: #1D93E5; }
.about-us .about-area .nav-tabs > li > a:hover { background-color: transparent; color: #FFF; }

/* Content Of Tabs */
.about-us .about-area .tab-content .tab-pane div { padding: 0; }
.about-us .about-area .tab-content .tab-pane p { text-align: left; font-size: .95em; color: #EEE; }
.about-us .about-area .tab-content .tab-pane .thumbnail { padding: 0; border: none; margin: 0; margin-right: 10px; }

/* Skills Progress Bars */
.about-us .about-area .tab-content .tab-pane .progress { 
	width: 80%; 
	height: 30px; 
	margin: 5px 0;
	color: #FFF;
	background-color: transparent;
	border: 1px solid #00B899;
	-webkit-border-radius: 3px;
       -moz-border-radius: 3px;
         -o-border-radius: 3px;
        -ms-border-radius: 3px;
            border-radius: 3px;
}

.about-us .about-area .tab-content .tab-pane .progress .progress-bar { line-height: 30px; text-align: left; padding-left: 10px; font-size: .7em; }
.about-us .about-area .tab-content .tab-pane .progress .progress-bar:first-of-type { width: 70%; } 
.about-us .about-area .tab-content .tab-pane .progress .progress-bar:nth-of-type(2) { width: 85%; } 
.about-us .about-area .tab-content .tab-pane .progress .progress-bar:nth-of-type(3) { width: 60%; } 
.about-us .about-area .tab-content .tab-pane .progress .progress-bar:last-of-type  { width: 92%; } 
/* End About */

/* Contact */
.contact-us .map { padding-left: 0; }
.contact-us .map iframe { width: 100%; height: 100%; border: none; pointer-events: none; }
.contact-us .map iframe.clicked { pointer-events: auto; }
.contact-us .form { padding: 0 15px; }

.contact-us .form .contact-form input,
.contact-us .form .contact-form textarea,
.contact-us .form .contact-form button,
.contact-us .form .contact-form input:focus  {
    border: 1px solid #CEE1D4;
    outline: none;
    padding: 10px;
    font-size: .85em;
    color: #676767;
    font-weight: 600;
    margin-bottom: 10px;
    resize: none;
}

.contact-us .form .contact-form textarea { height: 200px; margin-bottom: 5px; width: 100%; }

/* Send Button */
.contact-us .form .contact-form button { width: 100%; margin: 0; padding: 14px; background: #1D93E5; color: #FEFEFE; border: none; }
/* End Contact */

/* Footer */
.main-footer { background-color: #182D37; color: #78919F;  }

/* Copright Area */
.copyright { padding: 20px 0; background-color: #1C333E; color: #78919F; font-size: .9em; }
.main-footer .copyright a { color: #FEFEFE; text-decoration: none; }
.main-footer .copyright a:hover { color: #1D93E5; }
/* End Footer */

