 /* =================================
------------------------------------
  	Template Name: Photographer
	Description: Photographer HTML Template
	Author: colorlib
	Author URI: https://www.colorlib.com/
	Version: 1.0
	Created: colorlib
 ------------------------------------
 ====================================*/

/*changed .col-lg-2 and 10 to 3 and 9 on 7/30/22*/

/*----------------------------------------*/
/* Template default CSS
/*----------------------------------------*/

html,
body {
	height: 100%;
	font-family: 'Open Sans', sans-serif;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
	background-image: url("../img/cloud.gif");

}
body {
	  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  min-height: 100vh;
  flex-direction: column;
	
}



h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0;
	color: #212121;
	font-weight: 500;
}

h1 {
	font-size: 70px;
}

h2 {
	font-size: 36px;
}

h3 {
	font-size: 30px;
}

h4 {
	font-size: 24px;
}

h5 {
	font-size: 18px;
}

h6 {
	font-size: 16px;
	color: #7d7d7d;
}

p {
	font-size: 15px;
	color: #7d7d7d;
	line-height: 1.8;
}

img {
	max-width: 100%;
}

input:focus,
select:focus,
button:focus,
textarea:focus {
	outline: none;
}

a:hover,
a:focus {
	text-decoration: none;
	outline: none;
}

ul,
ol {
	padding: 0;
	margin: 0;
}

label, a 
{
	
font-size: 15px;
	font-weight: 500;
	color: #7d7d7d;
}



/*---------------------
  Helper CSS
-----------------------*/

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

.section-title h2 {
	font-size: 36px;
}

.set-bg {
	background-repeat: no-repeat;
	background-size: cover;
	background-position: top center;
}

.spad {
	padding-top: 105px;
	padding-bottom: 105px;
}

.text-white h1,
.text-white h2,
.text-white h3,
.text-white h4,
.text-white h5,
.text-white h6,
.text-white p,
.text-white span,
.text-white li,
.text-white a {
	color: #fff;
}

/*---------------------
  Commom elements
-----------------------*/

.elements-section {
	padding-top: 120px;
}

.element {
	margin-bottom: 100px;
}

.element:last-child {
	margin-bottom: 0;
}

.el-title {
	margin-bottom: 62px;
}

/* buttons */

.site-btn {
	display: inline-block;
	border: none;
	font-size: 15px;
	font-weight: 500;
	min-width: 218px;
	padding: 24px 47px;
	border-radius: 0;
	text-transform: uppercase;
	color: #fff;
	line-height: 1.2;
	cursor: pointer;
	text-align: center;
	background: #212121;
}

.site-btn:hover {
	background: #7d7d7d;
	color: #fff;
}

.site-btn.sb-line {
	color: #212121;
	background: transparent;
	padding: 22px 47px;
	border: 2px solid #212121;
}

.site-btn.sb-light-bg {
	background: #f3f3f3;
}

/* Preloder */

#preloder {
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 1; /*9999999*/
	background: #000;
}

.loader {
	width: 40px;
	height: 40px;
	position: absolute;
	top: 50%;
	left: 50%;
	margin-top: -13px;
	margin-left: -13px;
	border-radius: 60px;
	animation: loader 0.8s linear infinite;
	-webkit-animation: loader 0.8s linear infinite;
}

@keyframes loader {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
		border: 4px solid #f44336;
		border-left-color: transparent;
	}
	50% {
		-webkit-transform: rotate(180deg);
		transform: rotate(180deg);
		border: 4px solid #673ab7;
		border-left-color: transparent;
	}
	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
		border: 4px solid #f44336;
		border-left-color: transparent;
	}
}

@-webkit-keyframes loader {
	0% {
		-webkit-transform: rotate(0deg);
		border: 4px solid #f44336;
		border-left-color: transparent;
	}
	50% {
		-webkit-transform: rotate(180deg);
		border: 4px solid #673ab7;
		border-left-color: transparent;
	}
	100% {
		-webkit-transform: rotate(360deg);
		border: 4px solid #f44336;
		border-left-color: transparent;
	}
}

/* Accordion */

.accordion-area .panel {
	margin-bottom: 18px;
}

.accordion-area .panel-header {
	display: block;
	font-weight: 500;
	position: relative;
	border: 2px solid #212121;
	-webkit-transition: all 0.4s ease-out 0s;
	transition: all 0.4s ease-out 0s;
}

.accordion-area .panel-header.active .panel-link {
	color: #fff;
	background-color: #323232;
}

.accordion-area .panel-header.active .panel-link.collapsed {
	color: #323232;
	background-color: transparent;
}

.accordion-area .panel-link:after {
	content: "+";
	position: absolute;
	font-size: 15px;
	font-weight: 500;
	right: 25px;
	top: 50%;
	color: #000;
	line-height: 16px;
	margin-top: -8px;
	margin-left: -4px;
}

.accordion-area .panel-header.active .panel-link:after {
	content: "-";
	margin-top: -10px;
	color: #fff;
}

.accordion-area .panel-header.active .panel-link.collapsed:after {
	content: "+";
	color: #323232;
}

.accordion-area .panel-link {
	text-align: left;
	background-color: transparent;
	border: none;
	position: relative;
	width: 100%;
	padding: 23px 40px;
	padding-left: 30px;
	font-size: 15px;
	text-transform: uppercase;
	color: #212121;
	font-weight: 500;
	line-height: 1.3;
	cursor: pointer;
}

.accordion-area .panel-body p {
	margin-bottom: 0;
	padding-top: 20px;
}

.accordion-area .panel-body {
	padding: 0 5px;
}

/* Tab */

.tab-element .nav-tabs {
	border-bottom: none;
	margin-bottom: 25px;
}

.tab-element .nav-item {
	margin-right: 10px;
	margin-bottom: 10px;
}

.tab-element .nav-tabs .nav-link {
	border: 2px solid #212121;
	text-align: left;
	background-color: transparent;
	border-radius: 0;
	position: relative;
	width: 100%;
	padding: 23px 38px;
	font-size: 15px;
	text-transform: uppercase;
	color: #323232;
	font-weight: 500;
	line-height: 1.3;
	cursor: pointer;
}

.tab-element .nav-tabs .nav-item:last-child {
	margin-right: 0;
}

.tab-element .nav-tabs .nav-link.active {
	background: #212121;
	color: #fff;
}

.tab-element .tab-pane p {
	margin-bottom: 0;
	line-height: 1.9;
}

/* Circle progress */

.circle-progress {
	text-align: center;
	display: block;
	position: relative;
	margin-bottom: 30px;
}

.circle-progress canvas {
	-webkit-transform: rotate(90deg);
	transform: rotate(90deg);
}

.circle-progress .progress-info {
	position: absolute;
	width: 100%;
	top: 50%;
	margin-top: -30px;
}

.circle-progress .progress-info h2 {
	font-size: 36px;
	font-weight: 400;
}

.circle-progress .progress-info p {
	margin-bottom: 0;
	line-height: normal;
}

/* milestones */

.milestone {
	margin-bottom: 30px;
}

.milestone h2 {
	font-size: 60px;
	font-weight: 400;
	line-height: 1;
}

.milestone p {
	margin-bottom: 0;
}

.search-model {
	display: none;
	position: fixed;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	background: #000;
	z-index: 99;
}

.search-model-form {
	padding: 0 15px;
}

.search-model-form input {
	width: 500px;
	font-size: 40px;
	border: none;
	border-bottom: 2px solid #333;
	background: none;
	color: #999;
}

.search-close-switch {
	position: absolute;
	width: 50px;
	height: 50px;
	background: #333;
	color: #fff;
	text-align: center;
	border-radius: 50%;
	padding-top: 6px;
	font-size: 26px;
	top: 30px;
	cursor: pointer;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	font-weight: 300;
}

/* Image Popup */

.img-popup-warp .mfp-content,
.img-popup-warp.mfp-ready.mfp-removing .mfp-content {
	opacity: 0;
	-webkit-transform: scale(0.8);
	transform: scale(0.8);
	-webkit-transition: all 0.4s;
	transition: all 0.4s;
}

.img-popup-warp.mfp-ready .mfp-content {
	opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
}

/*------------------
  Header section
---------------------*/
.header-section.scrollUp {
  transform: translateY(-80px);
}
.header-section {
	padding-top: 5px;
	padding-bottom: 15px;
	  position: fixed; /*catch22!!! position: relative; can push down content*/
  top: 0;
  left: 0;
  right: 0;
	
	z-index: 999;
	background-image: url("../img/cloud.gif");
	-webkit-transition: -webkit-transform 0.4s;
  transition: -webkit-transform 0.4s;
  transition: transform 0.4s;
  transition: transform 0.4s, -webkit-transform 0.4s;
}

.scroll-down .header-section {
  -webkit-transform: translate3d(0, -100%, 0);
          transform: translate3d(0, -100%, 0);
}

.scroll-up .header-section {
  -webkit-transform: none;
          transform: none;
}

.scroll-up:not .header-section {
 
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.35);
}

.header-section.hs-bd {
	clear: both;
	border-bottom: 1px solid #e8e8e8;
}

.site-logo {
	display: inline-block;
	padding-top: 10px;
	padding-bottom: 0px;
	padding-left: 80px;
	color: #212121;
	font-size: 1.8em;
	font-weight: 400;
}

.site-logo:hover {
	opacity: 0.7;
	color: #212121;
}
.header-controls {
	float: right;
	padding: 16px 25px 0 50px;
}

.header-controls button {
	background: transparent;
	border: none;
	font-size: 19px;
	
}

.header-controls button.nav-switch-btn {
	font-size: 21px; /*size of nav btn*/

}




.slicknav_menu {
	display: none;
}

.main-menu {
	list-style: none;
	float: right;
	margin-right: -60px;
	

	
}

.main-menu li {
	display: inline-block;
	position: relative;
	padding-top: 1.2em;
}



.main-menu li a
{
    color: rgba(255, 255, 255, 0.3); 
	font-size: 1.4em;
	padding-right: 2em;
}

.main-menu li a:before
{
    position: absolute;
    color: #212121;

    overflow: hidden;
    content: attr(alt);
    transition: all 0.3s;
    transform: scale(0.9);
    opacity: 0.7;
} 
.main-menu li a:hover:before
{
    transform: scale(1);
    opacity: 1;
}




.main-menu li.search-mobile {
	display: none;
}



.main-menu li .sub-menu {
	position: absolute;
	top: 100%;
	left: 0;
	width: 220px;
	background: #fff;
	visibility: hidden;
	opacity: 0;
	margin-top: 50px;
	padding: 10px 0 5px;
	-webkit-box-shadow: 0 15px 50px 1px rgba(0, 0, 0, 0.13);
	box-shadow: 0 15px 50px 1px rgba(0, 0, 0, 0.13);
	-webkit-transition: all 0.4s;
	transition: all 0.4s;
}

.main-menu li .sub-menu li {
	display: block;
}

.main-menu li .sub-menu li a {
	padding: 10px 15px;
	text-transform: none;
}

.main-menu li:hover .sub-menu {
	visibility: visible;
	opacity: 1;
	margin-top: 0;
	
}

.search-mobile button {
	background: transparent;
	border: none;
	color: #fff;
	padding: 15px;
}

/*------------------
  Hero section
---------------------*/

.hero-section {
	clear: both;
	position: relative;
}

.hero-item {
	height: 278px;
	position: relative;
}

.hero-item:hover .hero-link {
	opacity: 1;
}

.hero-item:hover .hero-link h2 {
	top: 0;
}

.hero-link {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background-color: rgba(100, 255, 255, 0.5); 
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	padding: 0 30px;
	overflow: hidden;
	opacity: 0;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}

.hero-link h2 {
	color: #fff;
	line-height: 1.5;
	position: relative;
	top: 50px;
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
}

.hero-social-links {
	position: absolute;
	width: 110px;
	bottom: 0;
	right: 0;
	z-index: 9;
	background: #fff;
	text-align: center;
	padding: 40px 0;
}

.hero-social-links a {
	display: block;
	padding: 16px 0;
	font-size: 15px;
	color: #212121;
}

/* ----------------
  Intro section
---------------------*/

.intro-section {
	padding: 45px 30px 0px;
}

.intro-warp {
	max-width: 1780px;
	width: 100%;
	margin: 0 auto;
}

.intro-text h2 {
	font-size: 48px;
	margin-bottom: 25px;
}

.intro-text p {
	margin-bottom: 45px;
}

.sp-link {
	display: inline-block;
	font-weight: 500;
	font-size: 15px;
	color: #212121;
	border-bottom: 3px solid #212121;
	padding-right: 15px;
}

.sp-link:hover {
	color: #212121;
}

.skill-warp {
	padding-left: 83px;
	padding-top: 80px;
}

.single-progress-item {
	margin-bottom: 30px;
	position: relative;
}

.single-progress-item:last-child {
	margin-bottom: 0;
}

.single-progress-item p {
	padding-top: 28px;
}

.progress-bar-style {
	display: block;
	height: 6px;
	position: relative;
	width: 100%;
}

.progress-bar-style .bar-inner {
	position: absolute;
	height: 100%;
	left: 0;
	top: 0;
	background: #212121;
}

.progress-bar-style .bar-inner span {
	position: absolute;
	width: 54px;
	height: 40px;
	right: 0;
	top: 22px;
	padding-top: 8px;
	color: #fff;
	font-weight: 400;
	text-align: center;
	background: #212121;
}

/*------------------
  Footer section
---------------------*/

.footer-section {
	flex-shrink: 0;
	padding: 19px 40px;
}

.copyright {
	color: #212121;
	opacity: 0.7;
	font-size: 11px;
	font-weight: 500;
	padding: 4px 0;
}

.footer-social-links {
	text-align: right;
}

.footer-social-links a {
	display: inline-block;
	color: #212121;
	opacity: 0.7;
	font-size: 17px;
	margin-left: 40px;
}

/*------------------
====================
  Other Page
====================
--------------------*/
/*------------------
  Project page
---------------------*/

.project-section {
	  flex: 1 0 auto;
	padding: 75px 28px 60px 30px;
}

.project-section h6 {
	
	font-weight: 600;
	padding: 5px 20px 0px 0px;
}

.project-section .col-lg-12 img{
		
		margin-bottom: 20px;
	}
.project-section .col-lg-6 img{
		
		margin-bottom: 20px;
	}	
.project-section .col-lg-4 img{
		
		margin-bottom: 20px;
	}	
.project-section .col-lg-3 img{
		
		margin-bottom: 20px;
	}	

.project-section .col-lg-9 a {
	text-decoration: underline;
	text-decoration-color: #7d7d7d;
	
}

.project-section .col-lg-9 a:hover {
	background-color: rgba(100, 255, 255, 0.5); 

}


video {
	
	width: 100%;
}
.videowrapper {
	position: relative;
	padding-bottom: 56.25%; /* 16:9 */
	padding-top: 25px;
	height: 0;
}
.videowrapper iframe {
	position: absolute;
	left: 0px;
	top: 0px;
	right: 0px;
	bottom: 0px;
	width: 100%;
	height: 100%;
}
.img-fit {
	width: 100%;
}

/*------------------
  About page
---------------------*/

.about-bg {
	height: 100%;
}
.about-section {
	flex: 1;
	padding: 75px 30px 60px 30px;
	
}
.about-text {
	
	padding-left: 30px;
	
	
}

.about-text h3 {
	margin-top: -5px;
	margin-bottom: 30px;
}

.about-text h4 {
	margin-bottom: 20px;
}

.about-text p {
	margin: -15px 0px 32px 0px;
	padding: 0;
}

.about-text .site-btn {
	margin-top: 20px;
}

.skill-section {
	padding-top: 60px;
	padding-bottom: 35px;
}

.services-section {
	padding: 117px 0;
}

.services-section .site-btn {
	min-width: 244px;
}

.services-section .services-item {
	padding-right: 20px;
	max-width: 440px;
}

.services-item {
	margin: 0 auto 70px;
}

.services-item img {
	margin-bottom: 30px;
}

.services-item h4 {
	margin-bottom: 20px;
}

.services-item p {
	margin-bottom: 0;
}

.instagram-section {
	border-top: 1px solid #e8e8e8;
	padding-top: 25px;
}

.instagram-section h6 {
	font-size: 15px;
	padding-left: 80px;
	padding-bottom: 25px;
}

/* ----------------
  Portfolio page 1
---------------------*/

.portfolio-section {
	padding-top: 120px;
}

.portfolio-filter {
	list-style: none;
	margin-bottom: 35px;
	/*margin-left: -25px;
	margin-right: -25px;*/
	padding: 0;
}

.portfolio-filter li {
	display: inline-block;
	font-size: 15px;
	color: #7d7d7d;
	font-weight: 500;
	margin-right: 46px;
	text-transform: uppercase;
	cursor: pointer;
}
.portfolio-filter li:hover {
	background-color: rgba(100, 255, 255, 0.5); 
	text-decoration-color: #7d7d7d;
	
}

.portfolio-filter li:last-child {
	margin-right: 0;
}

.portfolio-item {
	min-height: 100%;
	display: block;
}

.portfolio-item.next-btn {
	background: #060606;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	cursor: pointer;
}

.portfolio-item.next-btn h2 {
	color: #fff;
	font-size: 41px;
}

/* ----------------
  Portfolio page 2
---------------------*/

.portfolio-2-section {
	padding: 100px 17px 50px 18px;
		
}

.portfolio-2-section .site-btn {
	margin-top: 80px;
}

.pf-2 {
	padding-left: 0px;/*83*/
}

.portfolio-warp {
	padding: 0px;
}

.portfolio-box {
	margin-bottom: 30px;
	padding: 0 64px;
}

.portfolio-box h6 {
	padding-top: 30px;
}

.portfolio-box p {
	padding-top: 10px;
	margin-bottom: 0;
	font-size: 15px;
	color: #7d7d7d;
}

.portfolio-box p a{}
.portfolio-box p a:hover{
	color: #212121;
	
}
/* ----------------
  Portfolio page 3
---------------------

.portfolio-3-section {
	padding-top: 120px;
	padding-bottom: 100px;
	overflow: hidden;
}

.portfolio-grid {
	max-width: 1756px;
	margin: 0 auto;
}

.portfolio-grid:after {
	content: "";
	display: block;
	clear: both;
}

.grid-sizer,
.grid-item {
	width: 25%;
}

.grid-item {
	float: left;
}

.grid-width-1 {
	width: 50%;
}

.grid-width-2 {
	width: 75%;
}

.grid-portfolio {
	padding: 0 15px;
	margin-bottom: 35px;
}

.grid-portfolio img {
	min-width: 100%;
}

.grid-portfolio h6 {
	padding-top: 30px;
}

.grid-portfolio p {
	margin-bottom: 0;
}

.load-more-warp {
	max-width: 1756px;
	padding-top: 70px;
	margin: 0 auto;
}
*/
/* ----------------
  Blog section
---------------------*/

.blog-section {
	padding: 120px 0;
}

.blog-warp {
	max-width: 1386px;
	margin: 0 auto;
	padding-left: 15px;
	padding-right: 15px;
}

.blog-post {
	text-align: center;
	padding: 0 20px;
	margin-bottom: 120px;
}

.blog-post img {
	padding: 0 15px;
	margin-bottom: 50px;
}

.blog-post .blog-date {
	display: inline-block;
	font-size: 12px;
	line-height: 1.1;
	color: #fff;
	padding: 9px 17px;
	margin-bottom: 20px;
	background: #212121;
}

.blog-post h3 {
	margin-bottom: 10px;
}

.blog-post .blog-cata {
	margin-bottom: 30px;
}

.blog-post .blog-cata span {
	display: inline-block;
	font-size: 15px;
	color: #bcbcbc;
	font-weight: 500;
	padding-right: 13px;
	margin-right: 11px;
	position: relative;
}

.blog-post .blog-cata span:after {
	position: absolute;
	content: "|";
	right: 0;
	top: 0;
	font-size: 15px;
	color: #bcbcbc;
	font-weight: 500;
	margin-bottom: 10px;
}

.blog-post .blog-cata span:last-child {
	margin-right: 0;
	padding-right: 0;
}

.blog-post .blog-cata span:last-child:after {
	display: none;
}

.blog-post p {
	margin-bottom: 35px;
	padding: 0 11px;
}

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

.site-pagination a {
	display: inline-block;
	height: 42px;
	font-size: 15px;
	font-weight: 500;
	color: #888888;
	padding: 11px 5px;
}

.site-pagination a.current {
	color: #fff;
	background: #212121;
	padding: 11px 13px;
}

/* ----------------
  Contact page
---------------------*/

.map {
	height: 663px;
	position: relative;
}

.map iframe {
	position: absolute;
	width: 100%;
	height: 100%;
}

.contact-section {
	flex: 1;
	padding: 110px 0;
}

.contact-text h3 {
	margin-bottom: 30px;
	color: #212121;
}

.contact-text p {
	margin-bottom: 45px;
	color: #7d7d7d;
}

.contact-text ul {
	list-style: none;
}

.contact-text ul li {
	font-size: 15px;
	font-weight: 500;
	color: #212121;
	line-height: 1.9;
}

.contact-form {
	padding-top: 11px;
}

.contact-form input,
.contact-form textarea {
	width: 100%;
	font-size: 15px;
	font-weight: 500;
	color: #7d7d7d;
	border: none;
	border-bottom: 1px solid #b2b2b2;
	padding-bottom: 14px;
	margin-bottom: 20px;
	background: transparent;
}

.contact-form textarea {
	height: 165px;
	min-height: 165px;
	margin-bottom: 38px;
}

.text-msg::-webkit-input-placeholder {
	padding-top: 130px;
}

.text-msg::-moz-input-placeholder {
	padding-top: 130px;
}

.text-msg:-moz-input-placeholder {
	padding-top: 130px;
}

.text-msg:-ms-input-placeholder {
	padding-top: 130px;
}

/* ----------------
  Responsive
---------------------*/

@media (min-width: 1200px) {
/*	.container {
		max-width: 1176px;
	}*/
.portfolio-warp {
		margin-left: 0px;
		margin-right: -1px;
		
	}
	.portfolio-box {
		padding: 0 14px;
	}
		.pf-2 {
		padding-left: 14px;
	}
	

}

@media (max-width: 1270px) {
	.site-logo {
		padding-left: 55px;
	}
		.pf-2 {
		padding-left: 14px;
	}



}

/* Medium screen : 992px. */

@media only screen and (min-width: 992px) and (max-width: 1199px) {
	.site-logo {
		padding-left: 55px;
	}


	.skill-warp {
		padding-left: 40px;
	}
	
	.portfolio-warp {
		margin-left: 0px;
		margin-right: -1px;
		
	}
	.portfolio-box {
		padding: 0 12px;
	}
	.pf-2 {
		padding-left: 12px;
	}
	.blog-post {
		padding: 0;
	}
	.blog-post img {
		padding: 0;
	}
}

/* Tablet :768px. */

@media only screen and (min-width: 768px) and (max-width: 991px) {
	/*.header-section {
		text-align: center;
		padding-bottom: 0;
	}
	.site-logo {
		padding-left: 15px;
	}
	.main-menu {
		float: none;
	}
	.main-menu li a {
		padding-top: 5px;
	}
	.main-menu li:last-child a {
		margin-right: 0;
	}
	.main-menu li .sub-menu {
		text-align: left;
	}
	.header-controls {
		float: none;
		padding: 20px 15px;
	}*/

	.skill-warp {
		padding-left: 0px;
	}
.about-section {

		padding: 73px 17px 40px 18px;
}	
.project-section {
	 flex: 1 0 auto;
	padding: 73px 17px 40px 18px; 
}
	
.project-section h6 {
	
	padding: 0px 20px 7px 0px;
}	

.project-section .col-lg-2 p {
		
	float: right;
	margin: -31px 2px -10px 0px;
	}


	
	
	.about-bg {
		
		height: 500px;}
	
	

		
.about-text {
	margin-left: -30px;
	margin-top: 45px;
	
}	
	.portfolio-warp {
		margin-left: -10px;
		margin-right: -11px;
		
	}
	.portfolio-box {
		padding: 0 10px;
	}
	.pf-2 {
		padding-left: 0px;
	}
	.blog-post {
		padding: 0;
	}
	.blog-post img,
	.blog-post p {
		padding: 0;
	}
	.contact-text {
		margin-bottom: 50px;
	}
	
}







/* Large Mobile :480px. */

@media only screen and (max-width: 767px) {
	.header-section {
		text-align: center;
		margin-bottom: -5%; /*make header shorter: ONLY works on index because relative or fixed pisitioning*/
		

	}
	
	.hero-section {
		margin-top: 0%;
	}
	.site-logo {
		padding-left: 15px;
		margin-bottom: 20px;
	}
	.header-controls {
		display: none;
	}
	.main-menu {
		display: none !important;
	
		
	}
	.slicknav_menu {
		display: block;
		background: transparent; /* bg of whole menu*/
		margin-bottom: -6%; /*bottom height of header*/
		padding: 0;
		
			
	}
	.slicknav_btn {
				
		float: none;
		display: inline-block;
		margin-top: -120px;  /*change position of 3 lines*/
		margin-left: 77%; /*change position of 3 lines*/
	}
	.slicknav_nav {
		background: transparent; /*bg of expanded*/
		text-align: left;
		padding-bottom: 32px;/*height of expanded*/
		margin: 0;
			
		

		}
	
	.slicknav_nav a {
		
		color: #212121;
		font-size: 1.9em;
		padding: 15 15 30 15;
		margin: 0;
		
		transition: all 0.5s;
        transform: scale(0.95);
        opacity: 0.7;
		
	}
	.slicknav_nav a:hover,
	.slicknav_nav .slicknav_row:hover {
		background: rgba(100, 255, 255, 0.5); 
		transform: scale(1);
        opacity: 1;
		padding-left: 25px;
		
		
}
		
	/*above: burger menu items*/
	.skill-warp {
		padding-left: 0px;
	}
	
	.portfolio-2-section {
	padding: 95px 17px 30px 18px;
		
}

	
	.contact-section {
	padding: 95px 0;
}
	.about-section {

		padding: 70px 17px 30px 18px;
}	
	.project-section {
	 flex: 1 0 auto;
	padding: 70px 17px 30px 18px; 
}
.project-section h6 {
	
	padding: 5px 20px 7px 0px;
}
	
.project-section .col-lg-2 p {
		
	float: right;
	margin: -31px 2px -10px 0px;
	}	
	.about-bg {
		height: 500px;
	}

	.about-text {
	margin-left: -30px;
	margin-top: 45px;
	
}

	
	.portfolio-warp {
		margin-left: -10px;
		margin-right: -11px;
		
	}
	.portfolio-box {
		padding: 0 10px;
	}
	
	
	.pf-2 {
		padding-left: 0px;
	}
	.grid-sizer,
	.grid-item {
		width: 50%;
	}
	.grid-width-1 {
		width: 50%;
	}
	.grid-width-2 {
		width: 100%;
	}
	.blog-post {
		padding: 0;
	}
	.blog-post img,
	.blog-post p {
		padding: 0;
	}

	
	.contact-text {
		margin-bottom: 50px;
	}
	
	.footer-social-links {
		text-align: center;
		padding-top: 20px;
	}
	.footer-social-links a:first-child {
		margin-left: 0;
	}
	.copyright {
		padding-top: 15px;
		text-align: center;
	}
	.search-model-form input {
		width: 100%;
	}
}

@media only screen and (max-width: 639px) {

	
	.header-section {
		text-align: center;
		margin-bottom: -5%; /*make header shorter: only work on index*/

	}
	
.about-section {

		padding: 85px 17px 30px 18px;
}	
.project-section {
	flex: 1 0 auto;
	padding: 85px 17px 30px 18px;
}
.project-section h6 {
	
	padding: 5px 20px 7px 0px;
}

.project-section .col-lg-2 p {
		
	float: right;
	margin: -31px 2px -10px 30px;
	}	
	.slicknav_menu {
		
		margin-bottom: -7%; /*bottom height of header*/
	}
	.slicknav_nav {
		
		padding-bottom: 34px;/*height of expanded*/
		
		}
	.hero-section {
		margin-top: -2%;
	}

	.portfolio-warp {
		margin-left: 0px;
		margin-right: 0px;
		
	}
	.portfolio-box {
		padding: 0px;
	}
	.pf-2 {
		padding-left: 0px;
	}
}

/* Small Mobile :320px. */

@media only screen and (max-width: 479px) {

	

	
	.about-bg {
		height: 400px;
	}

	.services-section .services-item {
		padding-right: 0px;
	}
	.portfolio-box {
		padding: 0;
	}
	.pf-2 {
		padding-left: 0px;
	}
	.portfolio-item.next-btn h2 {
		font-size: 24px;
	}
	.grid-sizer,
	.grid-item,
	.grid-width-2 {
		width: 100%;
	}
	.hero-social-links {
		position: relative;
		width: 100%;
		bottom: 0;
		right: 0;
		z-index: 9;
		background: #fff;
		text-align: center;
		padding: 30px 0;
		border-bottom: 1px solid #e8e8e8;
	}
	.hero-social-links a {
		display: inline-block;
		padding: 5px 10px;
	}
	.map {
		height: 400px;
	}

	
}

