/**************************************************
 											  SMALL
**************************************************/

/* On Small Screen */
@media screen and (max-width: 768px) {

  /**************************************************
   											Universal
  **************************************************/

  /* Back Button */
  #backBtn {
    position: relative;
  	background: #0070c0;
    float: left;
  	top: 20px;
  	margin-left: -150px;
  	width: 60px;
  	height: 60px;
  	text-decoration: none;
  	border: 0;
  	-webkit-border-radius: 15px;
  	-moz-border-radius: 15px;
  	border-radius: 15px;
  	-webkit-transition: all 0.2s linear;
  	-moz-transition: all 0.2s ease;
  	-ms-transition: all 0.2s ease;
  	-o-transition: all 0.2s ease;
  	transition: all 0.2s ease;
  }
  #backBtn i {
    position: relative;
  	color: #ffffff;
  	left: 10px;
  	top: 2px;
  	font-size: 25px;
  	-webkit-transition: all 0.2s ease;
  	-moz-transition: all 0.2s ease;
  	-ms-transition: all 0.2s ease;
  	-o-transition: all 0.2s ease;
  	transition: all 0.2s ease;
  }
  #backBtn:hover i {
  	left: -10px;
  }

  /* Logout Button */
  #logoutBtn {
    position: relative;
  	background: #ff0000;
    float: right;
  	top: 20px;
  	margin-right: -150px;
  	width: 60px;
  	height: 60px;
  	text-decoration: none;
  	border: 0;
  	-webkit-border-radius: 15px;
  	-moz-border-radius: 15px;
  	border-radius: 15px;
  	-webkit-transition: all 0.2s linear;
  	-moz-transition: all 0.2s ease;
  	-ms-transition: all 0.2s ease;
  	-o-transition: all 0.2s ease;
  	transition: all 0.2s ease;
  }
  #logoutBtn i {
    position: relative;
  	color: #ffffff;
  	right: 5px;
  	top: 2px;
  	font-size: 25px;
  	-webkit-transition: all 0.2s ease;
  	-moz-transition: all 0.2s ease;
  	-ms-transition: all 0.2s ease;
  	-o-transition: all 0.2s ease;
  	transition: all 0.2s ease;
  }
  #logoutBtn:hover i {
    right: -10px;
  }

  /**************************************************
 						    Portfolio (index) Page
  **************************************************/

  /* Logout Button */
  #portfolioLgoutBtn {
  	position: relative;
  	background: #ff0000;
    float: right;
  	top: -30px;
    margin-right: -600px;
  	width: 60px;
  	height: 60px;
  	text-decoration: none;
  	border: 0;
  	-webkit-border-radius: 15px;
  	-moz-border-radius: 15px;
  	border-radius: 15px;
  	-webkit-transition: all 0.2s linear;
  	-moz-transition: all 0.2s ease;
  	-ms-transition: all 0.2s ease;
  	-o-transition: all 0.2s ease;
  	transition: all 0.2s ease;
  }
  #portfolioLgoutBtn i {
    position: relative;
  	color: #ffffff;
  	right: 5px;
  	top: 2px;
  	font-size: 25px;
  	-webkit-transition: all 0.2s ease;
  	-moz-transition: all 0.2s ease;
  	-ms-transition: all 0.2s ease;
  	-o-transition: all 0.2s ease;
  	transition: all 0.2s ease;
  }
  #portfolioLgoutBtn:hover i {
    right: -10px;
  }

  /**************************************************
   									    Project
  **************************************************/

  /* Original and New Websites Header */
  #originalWebSectionHeader,
  #newWebSectionHeader {
  	color: #0070c0;
    font-size: 30px;
    font-weight: bold;
    text-align: center;
  	margin-bottom: 25px;
  }

  /* Original and New Websites Left Arrow */
  #originalWebPhotoSlideLeftArrow,
  #newWebPhotoSlideLeftArrow {
  	position: absolute;
  	top: 105%;
  	left: 0;
  	width: 40px;
  	height: 40px;
    -webkit-transition: all 0.2s;
  	-moz-transition: all 0.2s;
  	-ms-transition: all 0.2s;
  	-o-transition: all 0.2s;
  	transition: all 0.2s;
  }
  #originalWebPhotoSlideLeftArrow i,
  #newWebPhotoSlideLeftArrow i {
  	font-size: 35px;
    color: #0070c0;
  }
  #originalWebPhotoSlideLeftArrow:hover,
  #newWebPhotoSlideLeftArrow:hover {
    -webkit-transform: scale(1.4);
  	-moz-transform: scale(1.4);
  	-ms-transform: scale(1.4);
  	-o-transform: scale(1.4);
  	transform: scale(1.4);
    transform-origin: left center;
  }

  /* Original and New Websites Right Arrow */
  #originalWebPhotoSlideRightArrow,
  #newWebPhotoSlideRightArrow {
  	position: absolute;
  	top: 105%;
  	right: 0;
  	width: 40px;
  	height: 40px;
    -webkit-transition: all 0.2s;
    -moz-transition: all 0.2s;
    -ms-transition: all 0.2s;
    -o-transition: all 0.2s;
    transition: all 0.2s;
  }
  #originalWebPhotoSlideRightArrow i,
  #newWebPhotoSlideRightArrow i {
  	font-size: 35px;
    color: #0070c0;
  }
  #originalWebPhotoSlideRightArrow:hover,
  #newWebPhotoSlideRightArrow:hover {
    -webkit-transform: scale(1.4);
  	-moz-transform: scale(1.4);
  	-ms-transform: scale(1.4);
  	-o-transform: scale(1.4);
  	transform: scale(1.4);
    transform-origin: right center;
  }

  /* Original and New Websites Photo Slides Dots */
  #originalWebSlideIndicators,
  #newWebSlideIndicators {
  	margin-bottom: -50px;
  }
  #originalWebSlideIndicators li,
  #newWebSlideIndicators li {
    width: 7px;
  	height: 7px;
  	margin: 4px;
    cursor: pointer;
  	background-color: #262626;
    -webkit-border-radius: 2px;
  	-moz-border-radius: 2px;
  	border-radius: 2px;
  }
  #originalWebSlideIndicators .active,
  #newWebSlideIndicators .active {
  	background-color: #0070c0;
  }

  /* Original and New Websites Photo */
  #originalWebSlidePhoto,
  #newWebSlidePhoto {
    object-fit: cover;
		object-position: 50% 50%;
		width: 100%;
		height: 100%;
		margin: auto;
  }

  /* Desc */
  #projectDesc {
  	color: white;
  	background-color: #262626;
  	padding-top: 100px;
  	padding-bottom: 100px;
  	font-size: 16px;
  	text-align: justify;
    text-justify: inter-word;
  	line-height: 25px;
  }

  /**************************************************
   									    Gym Finder
  **************************************************/

  /* Navbar */
  #gymFinderNavbar {
  	background: rgba(0,0,0,0.6);
  	border-top: 2px solid #0070c0;
  	width: 100%;
    height: auto;
  }

  /* Navbar UL */
  #gymFinderNavUL {
  	width: 100%;
    justify-content: center;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  /* Navbar Item */
  #gymFinderNavItem {
  	color: #ffffff;
  	font-size: 14px;
    padding: 25px 20px;
  	text-align: center;
  }
  #gymFinderNavItem:active,
  #gymFinderNavItem:hover,
  #gymFinderNavItem:focus {
    text-decoration: none;
  	background-color: #ffffff;
  	color: #0070c0;
  }

  /* Logo Section */
  #gymFinderLogoSection {
    background-color: #99d5ff;
    margin-top: -75px;
  	padding-top: 100px;
  	padding-bottom: 100px;
  }

  /* Logo */
  #gymFinderLogo {
    height: 300px;
    margin: 100px auto;
  }

  /* Screen Section */
  #gymFinderScreenSection {
  	padding-bottom: 50px;
  }

  /* Screen 1-4 */
  #gymFinderScreen1to4 {
  	background-color: white;
    padding-top: 50px;
  	padding-bottom: 50px;
  }

  /* Screen 1-4 - Number */
  #gymFinderScreen1to4Num {
  	display: inline-block;
  	width: 70px;
  	height: 70px;
  	margin-top: 50px;
  	border-radius: 50%;
  	border: 3px solid #90c226;
  	color: #002060;
  	font-size: 40px;
  	text-align: center;
  }

  /* Screen 1-4 - Text */
  #gymFinderScreen1to4Text {
    display: inline-block;
  	font-size: 20px;
  	color: #002060;
  	text-align: center;
  	margin: auto;
  	display: inline-block;
  	padding-left: 20px;
  }

  /* Screen 1-4 - Image */
  #gymFinderScreen1to4Image {
    display: block;
  	width: 70%;
  	margin: 25px auto;
  }

  /* Screen 5 */
  #gymFinderScreen5 {
  	color: white;
  	background-color: #90c226;
    padding-top: 50px;
  	padding-bottom: 50px;
  }

  /* Screen 5 - Number */
  #gymFinderScreen5Num {
    display: inline-block;
  	width: 70px;
  	height: 70px;
  	margin: 50px auto 25px auto;
  	border-radius: 50%;
  	border: 3px solid #002060;
  	color: #002060;
  	font-size: 40px;
  	text-align: center;
  }

  /* Screen 5 - Text */
  #gymFinderScreen5Text {
    display: inline-block;
  	font-size: 20px;
  	color: #002060;
  	text-align: center;
  	margin: auto;
  	display: inline-block;
  	padding-left: 20px;
  }

  /* Screen 5 - Image */
  #gymFinderScreen5Image {
    display: inline-block;
  	width: 70%;
  	margin: 25px;
  }

  /* Screen 6 */
  #gymFinderScreen6 {
  	color: white;
  	background-color: #002060;
  	padding-top: 50px;
  	padding-bottom: 50px;
  }

  /* Screen 6 - Number */
  #gymFinderScreen6Num {
  	display: inline-block;
  	width: 70px;
  	height: 70px;
  	margin: 50px auto 25px auto;
  	border-radius: 50%;
  	border: 3px solid #ffffff;
  	color: #ffffff;
  	font-size: 40px;
  	text-align: center;
  }

  /* Screen 6 - Text */
  #gymFinderScreen6Text {
    display: inline-block;
  	font-size: 20px;
  	color: #ffffff;
  	text-align: center;
  	margin: auto;
  	display: inline-block;
  	padding-left: 20px;
  }

  /* Screen 6 - Image */
  #gymFinderScreen6Image {
    display: inline-block;
  	width: 70%;
  	margin: 25px;
  }

  /**************************************************
                      Login Page
  **************************************************/

  /* Login Form */
  #loginForm {
    position: fixed;
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    height: 400px;
    padding-top: 50px;
    padding-bottom: 50px;
    border-radius: 50px;
  }

  /**************************************************
   									    CV Page
  **************************************************/

  /* Download Button */
  #downloadCVBtn {
    position: relative;
  	background: #0070c0;
    color: #ffffff;
    font-size: 16px;
  	top: 20px;
  	height: 60px;
    margin: auto;
  	text-decoration: none;
  	border: 0;
  	-webkit-border-radius: 15px;
  	-moz-border-radius: 15px;
  	border-radius: 15px;
  }
  #downloadCVBtn:hover {
    background: #00cc00;
  }

	/* Navbar Toggle Button */
  .navbar-toggler {
    margin: 0;
    padding: 0;
  }

	.navbar-toggler span {
		display: block;
		background-color: white;
		height: 2px;
		width: 40px;
		margin: 8px auto;
		text-align: right;
		-webkit-transform: rotate(0deg);
		-moz-transform: rotate(0deg);
		-ms-transform: rotate(0deg);
		-o-transform: rotate(0deg);
		transform: rotate(0deg);
		opacity: 1;
	}

	.navbar-toggler span:nth-child(1),
	.navbar-toggler span:nth-child(3) {
		-webkit-transition: transform .40s ease-in-out;
		-moz-transition: transform .40s ease-in-out;
		-o-transition: transform .40s ease-in-out;
		transition: transform .40s ease-in-out;
	}

	.navbar-toggler:not(.collapsed) span:nth-child(1) {
		position: absolute;
		top: 20px;
		width: 50px;
		-webkit-transform: rotate(135deg);
		-moz-transform: rotate(135deg);
		-ms-transform: rotate(135deg);
		-o-transform: rotate(135deg);
		transform: rotate(135deg);
		opacity: 0.9;
	}

	.navbar-toggler:not(.collapsed) span:nth-child(2) {
		height: 20px;
		visibility: hidden;
		background-color: transparent;
	}

	.navbar-toggler:not(.collapsed) span:nth-child(3) {
		position: absolute;
    top: 20px;
		width: 50px;
		-webkit-transform: rotate(-135deg);
		-moz-transform: rotate(-135deg);
		-ms-transform: rotate(-135deg);
		-o-transform: rotate(-135deg);
		transform: rotate(-135deg);
		opacity: 0.9;
	}

  /* Navbar Item */
  #cvNavbarItem {
  	color: #ffffff;
  	font-size: 12px;
    padding: 10px 10px;
  	text-align: center;
    width: 100%;
  }
  #cvNavbarItem:active,
  #cvNavbarItem:hover,
  #cvNavbarItem:focus {
    text-decoration: none;
  	background-color: #ffffff;
  	color: #0070c0;
  }

  /* CV Body Background */
  #cvBackground {
    position: relative;
  	background-image: url('../View/Images/CV/CV Background.jpg');
    background-repeat: no-repeat;
    background-attachment: scroll;
  	background-position: right -160px top;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
  	z-index: -1;
    top: 0;
    left: 0;
  	width: 100%;
  	height: 768px;
  }

  /* Profile Image */
  #cvProfileImage {
  	width: 200px;
  	padding-top: 150px;
  	padding-bottom: 20px;
  	margin: auto;
  }

  /* My Name */
  #cvMyName {
  	font-size: 26px;
    font-weight: bold;
  }

  /* Contact Section */
  #contact {
  	width: 100%;
  	background-color: white;
  	padding-top: 50px;
  	padding-bottom: 50px;
  }

  /* Contact Mini Section */
  #cvContactMiniSection {
  	width: 100%;
  	padding-top: 25px;
  	padding-bottom: 25px;
  }

  /* Contact Icons */
  #cvContactIcon {
  	width: 50px;
  	margin: 0px 10px 0px auto;
  }

  /* Mobile Number */
  #cvMobNumber {
  	color: #0070c0;
  	font-size: 18px;
  	text-decoration: none;
  }
  #cvMobNumber:after {
    content: none;
  }
  #cvMobNumber:hover:after {
    content: none;
  }

  /* Email */
  #cvEmail {
  	color: #0070c0;
  	font-size: 18px;
  	text-decoration: none;
  }
  #cvEmail:after {
    content: none;
  }
  #cvEmail:hover:after {
    content: none;
  }

  /* Personal Profile Section */
  #personalProfile {
  	width: 100%;
  	background-color: rgba(0,0,0,0.8);
  	padding-top: 100px;
  	padding-bottom: 100px;
  }

  /* Achievements Text */
  #cvAchievementsText {
  	margin-left: 5px;
  }

  /* Achievements Text 2 */
  #cvAchievementsText2:after {
    content: none;
  }
  #cvAchievementsText2:hover:after {
    content: none;
  }

  /* Employment History Section */
  #employmentHistory {
  	width: 100%;
  	background-color: #0070c0;
  	padding-top: 100px;
  	padding-bottom: 100px;
  }

  /* Employment History Table */
  #cvEmploymentHistoryTable {
  	color: white;
  	font-size: 12px;
  	text-align: left;
  }

  /* Education Text */
  #cvEducationText {
  	color: #0070c0;
  	font-size: 12px;
  	text-align: left;
  }

  /* Languages Mini Section */
  #cvLanguageMiniSection {
    margin: 15px 0px 15px 0px;
  }

  /* Languages Text */
  #cvLanguageText {
    color: white;
  	font-size: 18px;
    float: left;
    margin-left: 20px;
    text-align: left;
  	text-decoration: none;
    cursor: pointer;
  }

  /* Languages URL */
  #cvLanguageURL:after {
    content: none;
  }
  #cvLanguageURL:hover:after {
    content: none;
  }

  #cvBackToTop {
    position: fixed;
    display: none;
    background: rgba(0, 112, 192, 0.7);
    bottom: 65px;
		right: 10px;
		width: 60px;
		height: 60px;
    text-decoration: none;
    border: solid 2px #ffffff;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    border-radius: 15px;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s ease;
    -ms-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
  }
  #cvBackToTop i {
    position: relative;
    color: #ffffff;
    left: 18px;
    top: 30px;
    font-size: 25px;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -ms-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
  }
  #cvBackToTop:hover i {
  	top: 5px;
  }

  /**************************************************
   										Back To Top
  **************************************************/

  #backToTop {
    position: fixed;
    display: none;
    background: rgba(0, 112, 192, 0.7);
    bottom: 40px;
		right: 40px;
		width: 60px;
		height: 60px;
    text-decoration: none;
    border: solid 2px #ffffff;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    border-radius: 15px;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s ease;
    -ms-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
  }
  #backToTop i {
    position: relative;
    color: #ffffff;
    left: 16px;
    top: 30px;
    font-size: 25px;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -ms-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
  }
  #backToTop:hover i {
    top: 5px;
  }

}
