@charset "utf-8";

/*------------------------------------------------------------------
[Master Stylesheet]

Project:		Portfolio Web Site
Version:		2.0
Finish Date:	10/18/21
Create By:		Damir Mehinagic
-------------------------------------------------------------------*/


/*------------------------------------------------------------------
[Color and Font size used]

1. Active navigation menu text color and hover color: #f5f5f5
2. Text color in nav menu when not active: #9f9f9f

3. Color of 1px outline of nav button menu in responsive view: #3f3f3f

4. Color of written text, underline and head title in about, skill, contact section: #4f4f4f

5. Color of outline of filter button, outline of filter subsection and outline of Skill buttons: #BCBCBC
6. Color of filter button, active/hover filter subsection buttons, banner and thumbnail in work section: #4f4f4f

7. Copyright text and social media icons color in fotter when not active: #9f9f9f
8. Copyright text and social media icons color in fotter when hovering: #f5f5f5

9. Fotter color: #171717 (used to be #222222)

10. Font: Open Sans

11. Text size is 22px and 18 responsive, head title is h2: 48px and 32px responsive for Overview, Design, Wireframe, Related Work First/Last name and Contact section, 
    color is #4f4f4f, font-weight is 400, line height is 1.6.
12. Banner Text size is h1: 104px and rsponsive text is 80px and 70px color is #f5f5f5 opacity 0.5
-------------------------------------------------------------------*/
@import url('https://fonts.googleapis.com/css?family=Open+Sans:400italic,700italic,400,600,300,700&display=swap');
@import url('https://fonts.googleapis.com/css?family=Dosis:300,400,700&display=swap');
@import "dm-font-awesome.css";
@import "dm-et-line.css";
@import "dm-moonlite-outline.css";

* {
    box-sizing: border-box;
}

body {
	font-family: "Open Sans", arial, sans-serif;
    background-color: #171717; /*--from #222222 to #171717--*/
	/*-- I added the background-color: #171717, so the porfolio section does not show white under footer when there are one or two images --*/
	line-height: 1.6;
    margin: 0;
	-webkit-font-smoothing: antialiased; 
}


ul {
    list-style: none;
}

a {
    text-decoration: none;
}


h1 {
    font-size: 112px;
    font-weight: 700; 
}

h2 {
    font-size: 48px;
    font-weight: 700;
}

img {
    width: 100%;
}



/* ==============================
   Page loader
   ============================== */

.page-loader {
	display: block;
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	left: 0;
	background: #eeeeee;
	z-index: 100000;
}

/*-- Page loader in about section for less loading animation 2sec --*/
.page-loader-2 {
	display: block;
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	left: 0;
	background: #eeeeee;
	z-index: 100000;
}

.load-container {
	/*--display: table;--*/
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
	width: 100%;
    height: 100%; /*-- has to be in %, not 100vh or loading icon will not be centered on mobile phones --*/
	/*--table-layout: fixed;--*/
}

.loader {
    width: 64px;
	height: 64px;
	position: relative;
	margin: 0 auto;
	
    background: url(../image/loader/page_loader.gif);
	background-repeat: no-repeat;
	background-position: center center;

    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;

	z-index: 100001;
}


/* ==============================
   Navigation Bar
   ============================== */

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    
    max-width: 1200px;
    height: 82px;
    
    margin: 0 auto;
    padding: 0 15px;
    top: 0px;
    
    position: relative;
}

.navbar ul {
    display: flex;
}

.navbar a {
    color: #9f9f9f;
    padding: 15px 0px;
    margin-left: 60px;
    font-size: 15px;
    letter-spacing: 1px;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
	cursor: pointer;
    z-index: 11;
    
    -webkit-tap-highlight-color: rgba(255, 255, 255, .1);
	-webkit-transition: all 0.27s cubic-bezier(0.000, 0.000, 0.580, 1.000);
	-moz-transition: all 0.27s cubic-bezier(0.000, 0.000, 0.580, 1.000);
	-o-transition: all 0.27s cubic-bezier(0.000, 0.000, 0.580, 1.000);
	-ms-transition: all 0.27s cubic-bezier(0.000, 0.000, 0.580, 1.000);
	transition: all 0.27s cubic-bezier(0.000, 0.000, 0.580, 1.000);
}

.navbar a:hover {
    color: #f5f5f5;
}

li.active a {
    color: #f5f5f5;
}

.nav-line {
	height: 13px;
	border-top: 9px solid #252525;
	border-bottom: 2px solid #252525;
	position: relative;
	top: 2px; /*--changed from 0px to 2px because can't have margin-top: 2px;--*/
	z-index: 600;
	/*-- because of responsive nav menu --*/
}

/*-- This is needed so the button is not visible in normal desktop view --*/
.c-hamburger-block {
	display: none;
}



/* ==============================
   Logo Section
   ============================== */

.logo-container {
    width: 30px;
    height: 30px;
    margin: 0px;
	position: absolute;
	top: 26px;
    z-index: 250;
    
	-webkit-transition: all 0.27s cubic-bezier(0.000, 0.000, 0.580, 1.000);
	-moz-transition: all 0.27s cubic-bezier(0.000, 0.000, 0.580, 1.000);
	-o-transition: all 0.27s cubic-bezier(0.000, 0.000, 0.580, 1.000);
	-ms-transition: all 0.27s cubic-bezier(0.000, 0.000, 0.580, 1.000);
	transition: all 0.27s cubic-bezier(0.000, 0.000, 0.580, 1.000);
}

.logo-wrap {
	position: relative; /*-- changend from relative to absolute for new navigation --*/
    height: 82px;
    top:0;
	z-index: 400;
}

.logo-wrap .logo {
	
}

 a.logo:hover .logo-container{
    /*--color: #f5f5f5;--*/
     -webkit-filter: grayscale(100%) brightness(150%);
    -moz-filter: grayscale(100%) brightness(150%);
    -o-filter: grayscale(100%) brightness(150%); 
    -ms-filter: grayscale(100%) brightness(150%); 
    filter: grayscale(100%) brightness(150%);
}


/* ==============================
   Banner Section
   ============================== */

.work-hero {
    background-image: url('../image/banner/work_banner.jpg');
    height: 404px;
    display: block;
    position: relative;
    overflow: hidden;
    background-repeat: no-repeat;
    background-position: center center;
    background-color: #252525;
    color: #f5f5f5;
}

.about-hero {
    background-image: url('../image/banner/about_banner.jpg');
    height: 404px;
    display: block;
    position: relative;
    overflow: hidden;
    background-repeat: no-repeat;
    background-position: center center;
    background-color: #252525;
    color: #f5f5f5;
}

.contact-hero {
    background-image: url('../image/banner/contact_banner.jpg');
    height: 404px;
    display: block;
    position: relative;
    overflow: hidden;
    background-repeat: no-repeat;
    background-position: center center;
    background-color: #252525;
    color: #f5f5f5;
}

.work-banner-detail {
     width: 100%;
	height: 604px;
	display: block;
	position: relative;
	overflow: hidden;
	/*-- background-attachment: fixed; --*/
	background-repeat: no-repeat;
	/*-- background-repeat: repeat; --*/
	background-position: center center;
	background-image: url(../image/banner/detail_banner.jpg);
    background-color: #252525;
    
    -webkit-transition: all 0.5s cubic-bezier(0.000, 0.000, 0.580, 1.000);
    -moz-transition: all 0.5s cubic-bezier(0.000, 0.000, 0.580, 1.000);
    -o-transition: all 0.5s cubic-bezier(0.000, 0.000, 0.580, 1.000);
    -ms-transition: all 0.5s cubic-bezier(0.000, 0.000, 0.580, 1.000);
    transition: all 0.5s cubic-bezier(0.000, 0.000, 0.580, 1.000); 
}

.app1-hero {
    width: 100%;
	height: 652px;
	display: block;
	position: absolute;
	overflow: hidden;
	/*-- background-attachment: fixed; --*/
	background-repeat: no-repeat;
	/*-- background-repeat: repeat; --*/
	background-position: center center;
	background-image: url(../image/banner/app1_design.png);
   
    -webkit-transition: all 0.5s cubic-bezier(0.000, 0.000, 0.580, 1.000);
    -moz-transition: all 0.5s cubic-bezier(0.000, 0.000, 0.580, 1.000);
    -o-transition: all 0.5s cubic-bezier(0.000, 0.000, 0.580, 1.000);
    -ms-transition: all 0.5s cubic-bezier(0.000, 0.000, 0.580, 1.000);
    transition: all 0.5s cubic-bezier(0.000, 0.000, 0.580, 1.000);
}

.app2-hero {
    width: 100%;
	height: 652px;
	display: block;
	position: absolute;
	overflow: hidden;
	/*-- background-attachment: fixed; --*/
	background-repeat: no-repeat;
	/*-- background-repeat: repeat; --*/
	background-position: center center;
	background-image: url(../image/banner/app2_design.png);
   
    -webkit-transition: all 0.5s cubic-bezier(0.000, 0.000, 0.580, 1.000);
    -moz-transition: all 0.5s cubic-bezier(0.000, 0.000, 0.580, 1.000);
    -o-transition: all 0.5s cubic-bezier(0.000, 0.000, 0.580, 1.000);
    -ms-transition: all 0.5s cubic-bezier(0.000, 0.000, 0.580, 1.000);
    transition: all 0.5s cubic-bezier(0.000, 0.000, 0.580, 1.000);
}

.app3-hero {
    width: 100%;
	height: 652px;
	display: block;
	position: absolute;
	overflow: hidden;
	/*-- background-attachment: fixed; --*/
	background-repeat: no-repeat;
	/*-- background-repeat: repeat; --*/
	background-position: center center;
	background-image: url(../image/banner/app3_design.png);
    
    -webkit-transition: all 0.5s cubic-bezier(0.000, 0.000, 0.580, 1.000);
    -moz-transition: all 0.5s cubic-bezier(0.000, 0.000, 0.580, 1.000);
    -o-transition: all 0.5s cubic-bezier(0.000, 0.000, 0.580, 1.000);
    -ms-transition: all 0.5s cubic-bezier(0.000, 0.000, 0.580, 1.000);
    transition: all 0.5s cubic-bezier(0.000, 0.000, 0.580, 1.000);
}

.web1-hero {
    width: 100%;
	height: 645px;
	display: block;
	position: absolute;
	overflow: hidden;
	/*-- background-attachment: fixed; --*/
	background-repeat: no-repeat;
	/*-- background-repeat: repeat; --*/
	background-position: center center;
	background-image: url(../image/banner/web1_design.png);
    
    -webkit-transition: all 0.5s cubic-bezier(0.000, 0.000, 0.580, 1.000);
    -moz-transition: all 0.5s cubic-bezier(0.000, 0.000, 0.580, 1.000);
    -o-transition: all 0.5s cubic-bezier(0.000, 0.000, 0.580, 1.000);
    -ms-transition: all 0.5s cubic-bezier(0.000, 0.000, 0.580, 1.000);
    transition: all 0.5s cubic-bezier(0.000, 0.000, 0.580, 1.000);
}

.web2-hero {
    width: 100%;
	height: 645px;
	display: block;
	position: absolute;
	overflow: hidden;
	/*-- background-attachment: fixed; --*/
	background-repeat: no-repeat;
	/*-- background-repeat: repeat; --*/
	background-position: center center;
	background-image: url(../image/banner/web2_design.png);
    
    -webkit-transition: all 0.5s cubic-bezier(0.000, 0.000, 0.580, 1.000);
    -moz-transition: all 0.5s cubic-bezier(0.000, 0.000, 0.580, 1.000);
    -o-transition: all 0.5s cubic-bezier(0.000, 0.000, 0.580, 1.000);
    -ms-transition: all 0.5s cubic-bezier(0.000, 0.000, 0.580, 1.000);
    transition: all 0.5s cubic-bezier(0.000, 0.000, 0.580, 1.000);
}

.banner-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    
    position: absolute;
    height: 100%;
    width: 100%;
}

 .banner-content h1 {
    font-family: "Moonlite Outline";
    font-size: 192px;
    /*--font-weight: 700;--*/
    font-weight: normal;
    line-height: 1;
     
    margin: 0;
    padding: 0;
    
    opacity: 0.4;
    filter: drop-shadow(4px 4px 2px rgba(0, 0, 0, 1));
}

.hb {
    opacity: 1;
    
    -webkit-transition: all 0.5s cubic-bezier(0.000, 0.000, 0.580, 1.000);
    -moz-transition: all 0.5s cubic-bezier(0.000, 0.000, 0.580, 1.000);
    -o-transition: all 0.5s cubic-bezier(0.000, 0.000, 0.580, 1.000);
    -ms-transition: all 0.5s cubic-bezier(0.000, 0.000, 0.580, 1.000);
    transition: all 0.5s cubic-bezier(0.000, 0.000, 0.580, 1.000);
}


/* ==============================
   User Image
   ============================== */

.user-image {
    display: flex; 
    justify-content: center; 
    align-items: center;
    max-width: 360px;
    margin: 0 auto;
    padding-top: 137px; 
}


/* ==============================
   Header and Text section
   ============================== */

.section-title-about {
    color: #4f4f4f;
    margin-top: 0px;
    margin-bottom: 0px;
}

.work-title {
    color: #f5f5f5;
    margin-top: 0px;
    margin-bottom: 0px;
    text-align: center;
    font-weight: 500;
    opacity: 0.4;
    filter: drop-shadow(4px 4px 2px rgba(0, 0, 0, 1));
}

.section-title-1 {
    color: #4f4f4f;
    margin-top: 0px;
    margin-bottom: 0px;
    text-align: center;
}

.section-title-2 {
    color: #4f4f4f;
    margin-top: 0px;
    margin-bottom: 11px;
    text-align: center;
}

.section-title-3 {
    color: #4f4f4f;
    margin-top: 0px;
    margin-bottom: 14px;
    text-align: center;
}

.text-section {
    font-family: "Open Sans", arial, sans-serif;
	font-size: 22px; /*-- changend from 16px to 20px to 22px --*/
	font-weight: 400;
	color: #4f4f4f; /*-- changend from #4f4f4f to #2f2f2f--*/
	line-height: 1.6;  /*-- change from 1.8 to 1.6 --*/
    margin-top: 0px;
}

.text-center{
    text-align: center;
}



/* ==============================
   Flex Grid Container
   ============================== */

.flex-grid {
	background-repeat: repeat;
	background-position: center center;
	background-image: url(../image/background/cross_scratches_248.png);
}

.flex-grid .container {
    display: flex;
    flex-direction: row;
    justify-content: center;

    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.flex-grid .container-2 {
    display: flex;
    flex-direction: row;
    justify-content: center;
  
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.flex-grid .about-container {
    display: flex;
    flex-direction: row;
    justify-content: center;

    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.flex-grid .work-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
   
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.work-item {
    /*--flex: 50%;--*/
    max-width: 50%;
    padding: 5px;
}

.text-box {
    flex: 1;
    margin: 0 auto;
    max-width: 570px;
}

.design-box {
    
}

.wire-box {
   
}

.app-preview-box {
    flex: 1;
    display: flex; 
    flex-direction: column; 
    justify-content: center; 
    align-items: center;
    max-width: 370px; 
}

.web-preview-box {
    display: flex; 
    flex-direction: row; 
    justify-content: center; 
    max-width: 905px;
}

.app-container {
    flex: 1;
    display: flex; 
    flex-direction: row; 
    justify-content: center; 
    align-items: center;
    max-width: 370px;
}

.work-detail {
    display: flex; 
    flex-direction: row; 
    justify-content: center; 
    flex-wrap: wrap;
}

.web-container {
    max-width: 570px;
}

.work-item-app {
    margin: 15px;
    width: 25.3%;
}

.work-item-web {
    margin: 0px;
    width: 45%;
}



/* ==============================
   Image Thumbnails
   ============================== */

.img-thumb {
	position: relative;
	overflow: hidden;
    border-radius: 15px;
    filter: drop-shadow(1px 1px 1px rgba(0, 0, 0, .25));/*---shadow/border around image--*/
    transition: filter .25s ease-in-out; /*---Used as part of shadow raising--*/
}

/*-- Shadow raising effect --*/
.img-thumb:hover {
    filter: drop-shadow(20px 20px 10px rgba(0, 0, 0, .46));
}


.img-thumb:hover img {
	 transform: scale(1.04); 
	/*-- scales the image zoom in, zoom out when hovering --*/
    /*--background: rgba(0, 0, 0, .05);--*/
}

.img-thumb img {
	width: 100%;
	transition: .5s;
}

.img-thumb2 {
	position: relative;
	overflow: hidden;
    /*--border-radius: 15px;--*/
    filter: drop-shadow(0px 1px 1px rgba(0, 0, 0, .25));
    transition: filter .25s ease-in-out;
}

/*--.thumb2-align-left {
    position: relative; 
    left: 33.4%;
}--*/

/*--.thumb2-align-right {
    position: relative; 
    right: 33.4%;
}--*/

/*-- Grayscale effect with drop-shadow --*/
.img-thumb2:hover {
    -webkit-filter: drop-shadow(0px 1px 1px rgba(0, 0, 0, .25)) grayscale(100%) brightness(85%);
    -moz-filter: drop-shadow(0px 1px 1px rgba(0, 0, 0, .25)) grayscale(100%) brightness(85%);
    -o-filter: drop-shadow(0px 1px 1px rgba(0, 0, 0, .25)) grayscale(100%) brightness(85%); 
    -ms-filter: drop-shadow(0px 1px 1px rgba(0, 0, 0, .25)) grayscale(100%) brightness(85%); 
    filter: drop-shadow(0px 1px 1px rgba(0, 0, 0, .25)) grayscale(100%) brightness(85%);    
}

.img-thumb3 {
	position: relative;
	overflow: hidden;
    border-radius: 15px;
    background: rgba(0, 0, 0, .04);
    filter: drop-shadow(1px 2px 2px rgba(0, 0, 0, .25));/*---shadow/border around image--*/
    transition: filter .25s ease-in-out; /*---Used as part of shadow raising--*/
}

/*-- Shadow raising effect --*/
.img-thumb3:hover {
    filter: drop-shadow(10px 10px 5px rgba(0, 0, 0, .46));
}

.img-thumb3:hover img {
	 transform: scale(1.02); 
	/*-- scales the image zoom in, zoom out when hovering --*/
    /*-- background: rgba(0, 0, 0, .05); --*/
}

.img-thumb3 img {
	width: 100%;
	transition: .5s;
}


/* ==============================
   Gap Height
   ============================== */

/*-- Gaps in between containers, using this instead off padding, gh= is for gap height --*/

.gh-4 {
    height: 4px;
}

.gh-8 {
    height: 8px;
}

.gh-15 {
    height: 15px;
}

.gh-27 {
    height: 27px;
}

.gh-30 {
    height: 30px;
}

.gh-52 {
    height: 52px;
}

.gh-53 {
    height: 53px;
}

.gh-54 {
    height: 54px;
}

.gh-56 {
    height: 56px;
}

.gh-62 {
    height: 62px;
}

.gh-64 {
    height: 64px;
}

.gh-65 {
    height: 65px;
}

.gh-67 {
    height: 67px;
}

.gh-72 {
    height: 72px;
}

.gh-75 {
    height: 75px;
}

.gh-76 {
    height: 76px;
}

.gh-81 {
    height: 81px;
}

.gh-83 {
    height: 83px;
}

.gh-84 {
    height: 84px;
}

.gmr-10 {
    margin-right: 10px;
}

.resp-gmr {
     margin: 0 15px 0 0;
}


/*-- This hides the black right and bottom 1px line bug that show up around app videos --*/
.clip-mask-border {
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%); 
}

/*-- This is needed for images in Design and Wireframe section, so there is no space on bottom between images ---*/
.img-block {
    display: block;
}

/*-- Reverse order of images in Work page index --*/
.img-reverse {
    display:flex; 
}

hr.line {
    margin: 0px;
	border-color: rgba(0, 0, 0, .04);
	background: rgba(0, 0, 0, .04);
}

.section-bg-color {
     background-color: rgba(0, 0, 0, 0.04);    
}


/* ==============================
   All Work Button
   ============================== */

.all-work-button {
    flex: 1;
    max-width: 915px;
}

.all-work-button,
.all-work-button ul {
	margin-top: 7px;
	padding: 8px 0px 8px 0px;
	line-height: 1.6;
    text-align: center;
}

.all-work-button li {  
    width: 100%; 
    
    display: inline-block; 
    background-color: rgba(0, 0, 0, .04);  
    border-radius: 10px;
}

.all-work-button a {
	display: block;
	position: relative;
	margin: 0px;
	padding: 15px 0px;
	color: #4f4f4f;
	font-size: 15px;
	letter-spacing: 1px;
	font-weight: 700;
	text-transform: uppercase;
	text-decoration: none;
	cursor: pointer;
    /*--filter: drop-shadow(1px 2px 2px rgba(0, 0, 0, .25));--*//*---shadow/border around image--*/
    transition: filter .25s ease-in-out; /*---Used as part of shadow raising--*/
}

.all-work-button a:hover {
    color: #171717;
    text-decoration: none;
    filter: drop-shadow(5px 5px 2px rgba(0, 0, 0, .46));
    transform: scale(1.02); 
}


/* ==============================
   Skill Buttons Icon
   ============================== */

.skill-buttons-container{
	display: flex; 
    flex-direction: row; 
    justify-content: center; 
    max-width: 1200px; 
    margin: 0 auto; 
    padding: 0 15px;
}

.skill-buttons-section{
	margin-top: 50px; 
	z-index: 0;
}

.skill-buttons-content{
	padding-left: 6px; 
	margin: 0 auto; 
	width: 141px;
}

.skill-button {
	display: block;
	float: left;
	margin: 4px 11px 7px 0;
	text-align: center !important;
	font-size: 28px;
	color: #FFF;
	text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.3);
	cursor: pointer;
	font-style: normal;
}

.skill-button {
	-webkit-transition: all 0.27s cubic-bezier(0.000, 0.000, 0.580, 1.000);
	-moz-transition: all 0.27s cubic-bezier(0.000, 0.000, 0.580, 1.000);
	-o-transition: all 0.27s cubic-bezier(0.000, 0.000, 0.580, 1.000);
	-ms-transition: all 0.27s cubic-bezier(0.000, 0.000, 0.580, 1.000);
	transition: all 0.27s cubic-bezier(0.000, 0.000, 0.580, 1.000);
}

.skill-button {
	margin: 0 5px 5px 0;
	width: 40px;
	height: 40px;
	font-size: 20px;
	line-height: 38px !important;
	color: #4f4f4f;
	text-shadow: none;
	border: 1px solid #BCBCBC;
	border-radius: 3px;
	overflow: hidden;
}

.skill-button:hover {
	color: #4f4f4f;
	border-color: transparent;
}


/* ==============================
   Contact Phone Icon Hover
   ============================== */

.icon-container {
	position: relative;
	display: block; /*-- Changend from inline-block to block because the phone image and text overlap when shrinking the window in windows explorer only --*/ 
    z-index: 10;
}

.icon-content {
	/*-- Used overflow: hidden, in here instead of icon content because it creates problem cutting of the letters in firefox --*/
    width: 100%;
	text-align: center;
	overflow: hidden;
	position: absolute;
	top: 50%;
    
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
}

.icon-content i {
	padding: 0;
	color: #f5f5f5;
    
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-ms-transform: scale(1);
	-o-transform: scale(1);
	transform: scale(1);
    
	-webkit-transition: .5s;
	-moz-transition: .5s;
	-o-transition: .5s;
	-ms-transition: .5s;
	transition: .5s;
	opacity: 1;
}

.icon-content h3 {
	font-family: "Open Sans", arial, sans-serif;
	text-transform: none;
	letter-spacing: 1px;
	font-weight: 400;
	position: absolute;
	top: 0%;
	width: 100%;
	padding: 0;
	color: #f5f5f5;
	font-size: 20px;
	transform: scale(1.5);
    
	/*-- added this --*/
	-webkit-transition: .5s;
	-moz-transition: .5s;
	-o-transition: .5s;
	-ms-transition: .5s;
	transition: .5s;
	opacity: 0;
	/*-- added this --*/
}

.icon-container:hover .icon-content i {
    /*-- added this --*/
	opacity: 0;
	/*-- added this --*/
    
	-webkit-transform: scale(0.5);
	-moz-transform: scale(0.5);
	-ms-transform: scale(0.5);
	-o-transform: scale(0.5);
	transform: scale(0.5);
}

.icon-container:hover .icon-content h3 {
    /*-- added this --*/
	opacity: 1;
	/*-- added this --*/
    
	/*-- transform: translateY(0) scale(1); --*/
	-webkit-transition: .5s;
	-moz-transition: .5s;
	-o-transition: .5s;
	-ms-transition: .5s;
	transition: .5s;
    
	-webkit-transform: scale(2);
	-moz-transform: scale(2);
	-ms-transform: scale(2);
	-o-transform: scale(2);
	transform: scale(2);
}

.phone-container {
    position: relative; 
    overflow: hidden;
}

.phone-img-box {
    width: 265px; 
    margin: 0 auto;
}

.phone-shadow {
    position: relative;
    width: 360px;
    height: 15px;
    bottom: 12px;
    
    margin: 0 auto;
    
    right: 44px;
    z-index: 10;
}

.phone-shadow-detail {
    position: relative;
    height: 15px;
    width: 382px;
    
    margin: 0 auto;
    bottom: 14px;
    
    right: 44px;
    z-index: 10;
}


/* ==============================
   Footer
   ============================== */

.footer {
    display: flex;
    /*---flex-direction: column;--*/
    align-items: center;
    justify-content: center;
    text-align: center;
    /*-- use height: 244px; if social icons are included in the footer --*/
    height: 214px;
    margin: 0px;
    padding: 0px;
    
    background-color: #171717;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
}

.footer a {
    color: #9f9f9f;
	text-decoration: none;
    
	-webkit-transition: all 0.27s cubic-bezier(0.300, 0.100, 0.580, 1.000);
	-moz-transition: all 0.27s cubic-bezier(0.300, 0.100, 0.580, 1.000);
	-o-transition: all 0.27s cubic-bezier(0.300, 0.100, 0.580, 1.000);
	-ms-transition: all 0.27s cubic-bezier(0.300, 0.100, 0.580, 1.000);
	transition: all 0.27s cubic-bezier(0.300, 0.100, 0.580, 1.000);
}

.footer a:hover {
	color: #f5f5f5;
}

.footer-made {
	font-size: 11px;
	color: #9f9f9f;
}

.footer-social {
	font-size: 22px;
    padding-bottom: 20px;
}

.footer-social a {
	width: 32px;
	height: 32px;
	line-height: 32px !important;
	position: relative;
	margin: 0 4px;
	text-align: center;
	display: inline-block;
	color: #9f9f9f;
    
	-webkit-transition: all 0.27s cubic-bezier(0.300, 0.100, 0.580, 1.000);
	-moz-transition: all 0.27s cubic-bezier(0.300, 0.100, 0.580, 1.000);
	-o-transition: all 0.27s cubic-bezier(0.300, 0.100, 0.580, 1.000);
	-ms-transition: all 0.27s cubic-bezier(0.300, 0.100, 0.580, 1.000);
	transition: all 0.27s cubic-bezier(0.300, 0.100, 0.580, 1.000);
}

.footer-social a i,
.footer-social a span {
	position: relative;
	top: 0;
	left: 0;
}

.footer-social a:hover {
	color: #f5f5f5;
}

.foot-line {
	height: 13px;
	border-top: 2px solid #171717; /*--changend from #222222 to #171717 --*/
	border-bottom: 9px solid #171717; /*--changend from #222222 to #171717 --*/
	position: relative;
	bottom: 2px;
}

