/*
Theme Name: Let's Coach
Author: The Goodplace
Author URI: https://thegoodplace.nl
Description: Dit thema is gemaakt door The Goodplace
Version: 0.1
License: GNU General Public License
License URI: license.txt
Text Domain: tgp
Domain Path: /languages/
Tags:
The Goodplace theme is based on Underscores http://underscores.me/, (C) 2012-2013 Automattic, Inc. and Twitter Bootstrap 4 
Standaard css
*/


/* SITE FONTS */
@import url('https://fonts.googleapis.com/css?family=Dosis:300,400,500,600,700,800');




body {
	font-family: 'Dosis', sans-serif;
    font-size: 16px;
    line-height: 20px;
    color: #222222;
    background-color: #fff;

}

p {
  font-size: 20px;
  font-size: 1.250rem;
  font-weight: 300;
/*   line-height: normal; */
  margin: 0px;
}

a:hover {
    color: #0056b3;
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5 {
   color: #222222;
}

h2{
	font-size: 32px;
	font-size: 2rem;
}



h1,
h2,
h3,
h4,
h5,
*,
ul,
li {
    padding: 0px;
    margin: 0px;
    list-style: none;
}

.nopadding {
    padding-left: 0px;
    padding-right: 0px;
}

b, strong {
	font-weight: 700;
}


::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: #8CA8A8;
  font-weight: 100;
}
::-moz-placeholder { /* Firefox 19+ */
  color: #8CA8A8;
   font-weight: 100;
}
:-ms-input-placeholder { /* IE 10+ */
  color: #8CA8A8;
  font-weight: 100;
}
:-moz-placeholder { /* Firefox 18- */
  color: #8CA8A8;
  font-weight: 100;
}







/*----------------------- Animations and Other Effects------------------------------ */

/*


/* BODY FADE IN ON PAGE LOAD */



/*----------------------- Site Header ------------------------------ */
.site-header{
	width: 100%;
	height: auto;
	position: relative;
	z-index: 100;
	top: 0;
	left: 0;
	right: 0;
	margin: 0 auto;
	background: #F4F4F4;
	transition: height 500ms, background 500ms;
}

.site-header.fixed{
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	margin: 0 auto;
}

.header-top{
	width: 100%;
	padding:10px 0;
	color: #fff;
	font-size: 0.813rem;
	font-size: 16px;
	font-weight: 700;
	background: #DAD3CD;
}

.header-top.display-none{
   display: none;
}

.header-top .row{
	justify-content: space-between
}

.header-top .content-left{
	display: none;
}

.header-top .content-left p{
	font-size: 0.813rem;
	font-size: 15px;
	font-weight: 700;
}

.header-top .content-right{
	font-size: 15px;
}


.header-top .content-right .social{
	width: 25px;
	height: 25px;
	padding: 2.5px;
	margin-right: 10px;
	display: inline-block;
	font-size: 12px;
	text-align: center;
	color: #fff;
	background: #4A90E2;
	border-radius: 50%;
}

.header-top .content-right span{
	margin: 0 10px;
}



/* HEADER BOTTOM */
.header-bottom{
	padding: 12px 0;
}
.header-bottom .row{
	align-items: center;
}

/* SITE LOGO */
.custom-logo-link{
	display: block;
	max-width: 150px;
}

.tiny .custom-logo-link{
	max-width: 120px;
	-moz-transition: all 0.4s ease-in-out 0s;
	-webkit-transition: all 0.4s ease-in-out 0s;
	transition: all 0.4s ease-in-out 0s;

}

.menu-logo{
	padding-top: 40px;
	padding-left: 30px;
}

.menu-logo .custom-logo-link{
	max-width: 100px;
}

/* MOBILE MENU ICION */
.menu-icon {
	width: 100%;
	padding-left: 15px;
	padding-right: 15px;
	position: relative;
	z-index: 15000;
	cursor: pointer;
}

.hamburger-menu{
	float: right;
	margin-right: 15px;
	transition: all 0.4s ease-in-out 0s;
}

.bar,
.bar:after,
.bar:before {
	width: 50px;
	height: 3px;
	content: "";
	left: 0;
	background: #212529;
}

.bar {
	position: relative;
	transition: all 0ms 300ms;
	transform: translateY(25px); 
	background: #212529;
}

.bar.animate {
  background: none;
}

.bar:before {
	position: absolute;
	bottom: 10px;
	transition: bottom 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1);
	transform: 300ms cubic-bezier(0.23, 1, 0.32, 1); 
}

.bar:after {
	position: absolute;
	top: 10px;
	transition: top 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1);
	transform: 300ms cubic-bezier(0.23, 1, 0.32, 1); 
}


.bar.animate:after {
	top: 0;
	-webkit-transform: rotate(45deg);
	-webkit-transform-transform: rotate(45deg);
	-webkit-transition: top 300ms cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1);
	transition: top 300ms cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1);
	transition: top 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1);
	transition: top 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1);
}

.bar.animate:before {
	bottom: 0;
	-webkit-transform: rotate(-45deg);
	-webkit-transform-transform: rotate(-45deg);
	-webkit-transition: bottom 300ms cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1);
	transition: bottom 300ms cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1);
	transition: bottom 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1);
	transition: bottom 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1);
}



/* STIE MENU */
.site-nav{
	width: 100%;
	position: relative;
}

.site-nav .nav-wrapper {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: auto;
  right: auto;
  bottom: auto;
  padding-top: 30px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  background: #F4F4F4;;
  opacity: 0;
  overflow: auto;
  overflow: hidden;
}


.menu-hoofdmenu-container{
	margin-top: 50px;
}


.nav-wrapper{
  display: none;
}

.open .nav-wrapper {
  right: 0;
  opacity: 1;
  display: block;
   -webkit-transition: all 0.3s;
  transition: all 0.3s;
  z-index: 999;
}

.site-nav ul li{
	margin-top: 16px;
	margin-bottom: 16px;
	position: relative;
	overflow: hidden;
}


.site-nav ul li a:hover {
  color: #222222;
}


.site-nav ul li a:hover:before, .site-nav ul li.active a:before{
  width: 75%;
}


.site-nav ul li a:before {
	content: '';
	position: absolute;
	bottom: -10px;
	width: 0%;
	-moz-transition: all .5s;
	-webkit-transition: all .5s;
	transition: all .5s;
	border-radius: 20px;
	border-bottom: 4px solid #F3D3D5;
	z-index: -1;
}

.site-nav ul li:last-child:before {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 0%;
	height: 100%;
	-moz-transition: all .5s;
	-webkit-transition: all .5s;
	transition: all .5s;
	border-radius: 20px;
	border-bottom:0;
	background: #F3D3D5;
/* 	z-index: -1; */
}


.site-nav ul li a:after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border-radius: 20px;
	z-index: -2;
}





.site-nav ul li a{
    font-size: 30px;
	font-size: 25px;
	font-weight: 500;
	color: #222222;
	position: relative;
	z-index: 1;
	display: inline-block;
	padding-top: 10px;
	padding-bottom: 10px;
	border-radius: 20px;
	-moz-transition: all .5s;
    -webkit-transition: all .5s;
    transition: all .5s;
}




/*
.site-nav ul li:last-child a:hover{
	color: inherit;
	padding: 10px;
	line-height:0
}
*/




/* Tablet View*/
@media screen and (min-width:768px) {
	
	.header-top{
		.padding:16px 0;
		padding: 5px 0;
	}

	.header-top .content-left{
		display: block;
	}
	
	.header-top .content-right{
		text-align: right;
	}
	
	/* SITE LOGO */
	.custom-logo-link{
		max-width: 200px;
	}
	
	.tiny .custom-logo-link{
		display: block;
		max-width: 150px;
	    -moz-transition: all 0.4s ease-in-out 0s;
	    -webkit-transition: all 0.4s ease-in-out 0s;
	     transition: all 0.4s ease-in-out 0s;
	}
	
}


/* Small Laptop View*/
@media screen and (min-width:992px) {
	
	/* STIE MENU */
	.menu-icon {
		display: none;
	}
	
	.menu-logo {
		display: none;
	}
	
	.site-nav{
		width: 100%;
		text-align: right;
	}
	
	.menu-hoofdmenu-container {
	    margin-top: 0;
	}
	
	.nav-wrapper{
	  display: block;
	}
	
	.site-nav .nav-wrapper {
		width: 100%;
		height: auto;
		position: static;
		text-align: right;
		padding: 0;
		opacity: 1;
		overflow: auto
	}
	
	
	.site-nav ul li{
		display: inline-block;
		margin-top: 0;
		margin-bottom: 0;
		padding-right: 30px;
	    padding: 10px 25px;
	}
	
	.site-nav ul li:last-child{
		margin-top: 0;
		margin-left: 25px;
		padding: 10px 25px;
		text-align: center;
	}
	
	
	.site-nav ul li a{
		font-size: 20px;
		padding-top: 0;
		padding-bottom: 0;

	}
	
	.site-nav ul li:last-child:hover, .site-nav ul li.active:last-child{
		background: #F3D3D5;
		color: #222222!important;
	}


	.site-nav ul li:last-child a:before {
		border-bottom: 0;
		z-index: 0;
	}


	
	.site-nav ul li:last-child{
		max-width: 180px;
		background: #222222;
		color:#fff;
		border-radius: 20px;
/* 		padding-right: 0; */
		margin: 0 auto;
		margin-top: 25px;
		-moz-transition: all .5s;
		-webkit-transition: all .5s;
		transition: all .5s;
	}

	.site-nav ul li:last-child:after {
		content: '';
		position: absolute;
		bottom: 0;
		left: 0;
		width: 100%;
		height: 100%;
		border-radius: 20px;
		z-index: -2;
	}
	
	.site-nav ul li:last-child:hover:before, .site-nav ul li.active:last-child:before{
	  width: 100%;
	  color: white!important;
	}
	
	.site-nav ul li:last-child a{
		color: inherit!important;
		padding: 10px;
		line-height:0;
		-moz-transition: all .0s;
	    -webkit-transition: all .0s;
	    transition: all .0s;
	}
	
	.site-nav ul li:last-child a:hover{
		color: inherit!important;
		padding: 10px;
		line-height:0;
		-moz-transition: all .0s;
	    -webkit-transition: all .0s;
	    transition: all .0s;
	}


	
}


/* Laptop view*/
@media screen and (min-width:1200px) {
}


/*----------------------- Site Footer ------------------------------ */

.site-footer{
	width: 100%;
	position: relative;
	color: #fff;
/*
	margin-top: 65px;
	margin-top: 20px;
*/
}
.underfooter {
	margin: 15px 0;
}
.underfooter p, .underfooter p a {
	font-size: 13px;
	color: #222222;
}
.footer-inner{
	width: 100%;
	padding-top: 25px;
/* 	padding-bottom: 18px; */
	background: #DAD3CD;
}

.footer-inner .row{
	align-items: center;
}

.footer-column{
	padding-bottom: 20px;
}

/* FOOTER LOGO */
.footer-inner .footer-logo-wrapper{
	order: 1;	
}

.footer-logo{
	max-width: 165px;
	display: block;
}


.footer-logo img{
	width: 100%;
}


.footer-inner .site-info-wrapper{
	order: 3;
}

.footer-inner .site-info{
	text-align: center;
}

.footer-inner .site-info .widget-title{
	color: #fff;
	font-size: 0.9rem;
}

.footer-inner .site-info p{
	font-size: 14px;
	line-height: 30px;
}


.footer-inner .keurmerk-wrapper{
	order: 2;	
}

.footer-inner .nobco-keurmerk {
	width: 100%;
	text-align: right;
}

.footer-inner .nobco-keurmerk img {
	max-width: 75px;
	width: 100%;
}




/* Tablet View*/
@media screen and (min-width:768px) {
	
	/* 	FOOTER LOGO */
	.footer-inner .footer-logo-wrapper{
		order: 1;	
	}

	.footer-logo{
		max-width: 165px;
		padding-left: 20px;
	}
	
	.footer-inner .site-info-wrapper{
		order: 2;
	}
	
	
	/* 	KEURMERK */
	.footer-inner .keurmerk-wrapper{
		order: 3;	
	}
	
	.footer-inner .nobco-keurmerk {
		padding-right: 20px;
	}

}


/* Small Laptop View*/
@media screen and (min-width:992px) {
}


/* Laptop view*/
@media screen and (min-width:1200px) {
}





/*----------------------- Banner Section ------------------------------ */


/* Homepage Banner */
.home-banner{
	position: absolute;
	width: 100%;
	min-height: 275px;
}



.banner-button {
    display: inline-block;
    position: relative;
    min-width: 100px;
    min-height: 100px;
    border-radius: 50%;
    border: none;
    background: #F3D3D5;
    margin-top: 25px;
    margin-right: 20px;
    
    transition: box-shadow 400ms cubic-bezier(0.2, 0, 0.7, 1), -webkit-transform 200ms cubic-bezier(0.2, 0, 0.7, 1);
    transition: box-shadow 400ms cubic-bezier(0.2, 0, 0.7, 1), transform 200ms cubic-bezier(0.2, 0, 0.7, 1);
    transition: box-shadow 400ms cubic-bezier(0.2, 0, 0.7, 1), transform 200ms cubic-bezier(0.2, 0, 0.7, 1), -webkit-transform 200ms cubic-bezier(0.2, 0, 0.7, 1);
   
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    color: #fff;
    z-index: 1;
}

.banner-button {

  text-decoration: none;
	-moz-transition: all 0.5s;
    -webkit-transition: all 0.5s;
	    transition: all 0.5s;
}


.banner-button span{
	width: 100%;
	display: block;
	padding-top: 25px;
	padding-left: 10px;
    padding-right: 10px;
}

.banner-button span:before {
  content: "+";
  font-size: 25px;
  display: block;
  padding-bottom: 10px;
  .padding-right: 10px;
}

.banner-button:hover {
	color: #fff;
	background-color: #222222;
     -webkit-transform: scale(1.05); /* Chrome 4+, Op 15+, Saf 3.1, iOS Saf 3.2+ */
       -moz-transform: scale(1.05); /* Fx 3.5-15 */
        -ms-transform: scale(1.05); /* IE 9 */
         -o-transform: scale(1.05); /* Op 10.5-12 */
            transform: scale(1.05); /* Fx 16+, IE 10+ */
}



/* Banner (not homepage) */
.banner{
	width: 100%;
    position: absolute;
    min-height: 200px;
}


.home-banner::after, .banner::after {
	content: "";
	background-image: url(images/hero-curve.svg);
	background-size: 100%;
	background-position: center bottom;
	background-repeat: no-repeat;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	position: absolute;
	z-index: -1;   
}

.banner .row{
	position: relative;
}


.banner-inner {
	background-color: #f5f4f2;
	position: absolute;
	top: 0;
	min-height: 130px;
	width: 100%;
}

.banner .banner-title{	
	max-width: 600px;
	font-weight: 800;
	font-size: 40px;
	line-height: 50px;
}

.banner .banner-image{
	max-width: 300px;
	width: 100%;
	height: 975px;
	position: absolute;
	top: 50px;
	right: 0;
	background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
}


/* Tablet View*/
@media screen and (min-width:768px) {
	
	/* Homepage Banner */
	.home-banner{
		min-height: 350px;
	}
	

	
	/* Banner (not homepage) */
	.banner{
		width: 100%;
	    position: absolute;
	    min-height: 260px;
	}


}

/* Small Laptop View*/
@media screen and (min-width:992px) {
	
	/* Homepage Banner */
	.home-banner{
		min-height: 500px;
	}
	
	.banner{
	    min-height: 350px;
	}
	
	.banner-inner {
		min-height: 0;
	}
	
	.banner-button {
	    min-width: 150px;
	    min-height: 150px;
	    font-size: 20px;
	    margin-top: 45px;
	    margin-right: 50px;
	}
	
	.banner-button span:before {
	  display: inline;
	  padding-bottom: 0;
	  padding-right: 10px;
	}

	.banner-button span{
		padding-top: 65px;
	}
		
}



/* Laptop view*/
@media screen and (min-width:1200px) {
}





/*----------------------- Main Content Section ------------------------------ */

main{
	width: 100%;
	position: relative;
}


 /*Content Left*/
.heading{
	max-width: 640px;
	margin-top: 25px;
	margin-bottom: 25px;
}


.content-margin{
	margin-top: 85px;
}

.heading h2{
	font-weight: 700;
	font-size: 25px;
	font-size: 28px;
	line-height: normal;
}

.entry-home-content{
	margin-top: 45px;
}

.entry-content .line{
	width: 55px;
    background: #ECD4D6;
    height: 3.5px;
    display: block;
    margin-bottom: 20px;
    border-radius: 10px;
}

.entry-content .entry-title{
	font-size: 20px;
	font-weight: 300;
	position: relative;
	margin-bottom: 15px;
}

.entry-content .entry-title{
	font-size: 20px;
	font-weight: 300;
	position: relative;
	margin-bottom: 15px;
}


.entry-content .read-more-btn{
	font-size: 1.250rem;
	font-weight: 700;
	color: #fff;
	padding: 15px 25px;
	margin-top: 40px;
	margin-bottom: 20px;
	border-radius: 25px;
	display: inline-block;
	-moz-transition: all .5s;
    -webkit-transition: all .5s;
    transition: all .5s;
	position: relative;
	overflow: hidden;
	background: #222222;	
	z-index: 1;
}

.entry-content .read-more-btn:hover{
	background: #F3D3D5;
		-moz-transition: all .5s;
    -webkit-transition: all .5s;
    transition: all .5s;	
}

.entry-content .read-more-btn:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 25px;
  z-index: -2;
}

.entry-content .read-more-btn:hover {
  color: #222222;
}
.entry-content .read-more-btn:hover:before {
  width: 100%;
}

.entry-content .read-more-btn:before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background: #F3D3D5;
  -moz-transition: all .5s;
  -webkit-transition: all .5s;
  transition: all .5s;
  border-radius: 25px;
  z-index: -1;
}

 .entry-content .content-wrapper {
    max-width: 670px;
    line-height: 30px;
    line-height: normal;
}
.entry-content .content-wrapper li {
	font-size: 20px;
    line-height: 31px;
    list-style: disc;
}
.entry-content .content-wrapper ul {
	padding-left: 20px;
}
.readmore {
	margin-bottom: 25px;
}
.entry-content .content-wrapper h2 {
	font-size: 22px;
	font-weight: 800;
	line-height: normal;
}

.entry-content .content-wrapper p{
	font-size: 20px;
	line-height: 31px;
	margin-bottom: 15px;
}
.streamer-icon {
	width: 100% !important;
	margin-bottom: 0 !important;
}
.streamer-one {
	background-image: url("images/iconen.svg");
	background-repeat: repeat;
	background-size: contain;
	background-position: center;
}
.streamer-icon img {
	max-width: 100px;
    max-height: 60px;
}


/* Tablet View*/
@media screen and (min-width:768px) {
	 
	 /*Content Left*/
	.heading {
	    margin-top: 45px;
	    margin-bottom: 25px;
	}
	
	.heading h2{
		font-size: 40px;
		line-height: 50px;
	}
	
	
	.entry-content .content-wrapper h2 {
		font-size: 28px;
		font-weight: 800;
		line-height: normal;
		margin-bottom: 15px;
	}
	
	.entry-content .read-more-btn{
		margin-top: 50px;
	}

}


/* Small Laptop View*/
@media screen and (min-width:992px) {
	
	.heading h2{
		font-size: 45px;
		line-height: 60px;
	}
	
	.entry-home-content {
	    margin-top: 115px;
	}
	
	.entry-content .content-wrapper h2 {
		font-size: 33px;
		font-weight: 800;
		line-height: normal;
		line-height: 44px;;
	}
	
}


/* Laptop view*/
@media screen and (min-width:1200px) {
}





/*----------------------- Sidebar Section ------------------------------ */
 
 .sidebar{
	width: 100%;
 }
 
 
.sidebar-bottom {
    margin-top: 55px;
    margin-bottom: 50px;
}

.page-template-content-contact .sidebar-top{
	display: none;
}

.sidebar .photo-me-small{
	max-width: 200px;
	width: 100%;
	max-height: 200px;
}

.sidebar .photo-on-mobile{
	max-width: 250px;
	width: 100%;
	max-height: 250px;
	height: 100%;
	border-radius: 50%;
}

.home-content .sidebar .photo-me-big, .sidebar .photo-me-big  {
	height: auto;
	float: right;
/* 	display: none; */
}
 
.sidebar .photo-me-small img,
.sidebar .photo-me-big img {
	width: 100%;
	height: auto;
/* 	object-fit:cover; */
}


.sidebar .photo-me-small img{
	width: 100%;
	height: auto;
}




.sidebar-bottom .content-wrapper{
	font-size: 20px;
	line-height: 30px;
}


.sidebar-bottom.pink .content-wrapper{
	float: none;
	font-size: 20px;
	line-height: 30px;
}

.sidebar-bottom .content-wrapper img{
	max-width: 115px;
	height: auto;
}
 
.sidebar.pink{
	width: 100%;
	color: #fff;
	font-size: 20px;
	font-weight: 300;
	line-height: 31px;
	padding: 25px;
	padding-left: 35px;
	.margin-top: 50px;
	margin-top: 30vh;
	border-radius: 10px;
	background: #F3D3D5;
}

.sidebar.pink h2{
	font-size: 35px;
	font-weight: 800;
	color: #fff;
}




/* Tablet View*/
@media screen and (min-width:768px) {
	
	.home-content .sidebar .photo-me-big {
		height: 650px;
		display: none;
	}
	
	.sidebar .photo-me-big {
		height: 350px;
		overflow: hidden;
	}
	
	.sidebar .photo-me-big{
		width: 100%;
		height: auto;
	}
	
	
	.page-template-content-contact .sidebar-top{
		display: block;
		order: 2;
	}
	

	.sidebar .photo-me-small img {
		width: 100%;
		height: 100%;
	}
	
	.sidebar .photo-me-small{
		display: block;
	}
	
	.sidebar-bottom{
		.margin-top: 55px;
	}


}


@media screen and (max-width:768px) {
	.hide-on-mobile {
		display: none;
	}
}



/* Small Laptop View*/
@media screen and (min-width:992px) {
	
	.home-content .sidebar .photo-me-big {
		width: 100%;
		height: 900px;
	}
	
	.hide-on-desktop {
		display: none;
	}
	
	.home-content .sidebar .photo-me-big, .sidebar .photo-me-big   {
		display: block;
	}
	
	.sidebar-top{
		margin-top: 30px;
	}

	
	.sidebar .photo-me-small{
		max-width: 300px;
		max-height: 300px;
		float: right;
	}

	.sidebar .photo-me-big img {
		width: 100%;
		height: 100%;
		object-fit:cover;
	}
	
	.sidebar-bottom .content-wrapper{
		float: right;
	}
	
	.page-template-content-contact .content-margin{
		margin-top: 150px;
		margin-bottom: 50px;
	}

	.page-template-content-contact .sidebar-top{
		order: 1;
	}
	
	.page-template-content-contact .sidebar-bottom{
		order: 2;
	}
	
}


/* Laptop view*/
@media screen and (min-width:1200px) {
	
/*
	.sidebar .photo-me-big img {
		width: auto;
	}
*/
	
}




/*----------------------- Streamer Section ------------------------------ */


/* Streamer One */
.streamer-one{
	width: 100%;
	padding-top: 30px;
	padding-bottom: 30px;
    margin-top: 55px;
	text-align: center;
	background-color: #F4F4F4;
}

.streamer-icon{
	width: 55px;
	height: 55px;
	margin: 0 auto;
	margin-bottom: 10px;
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
}

.streamer-one h3{
	font-size: 22px;
	font-weight: 700;
	line-height: normal;
}


/* Streamer Two */
.streamer-two{
	margin-top: 10px;
	margin-bottom: 20px;
}
.streamer-two p {
	margin-bottom: 15px;
}
.streamer-two .entry-content{
	max-width: 550px;
	margin-top: 30px;
	font-size: 20px;
	line-height: 31px;
}

.streamer-two .entry-content h2{
	font-weight: 800;
	font-size: 28px;

}


.streamer-two .border-image {
	height: auto;
	margin-top: 20px;
	position: relative;
	padding-top: 0;
	padding-left: 0;
}

.streamer-two .border-image img {
	width: 100%;
	height:	auto;
}

.border-image:before {
	content: "";
    width: 90%;
    height: 100%;
    position: absolute;
    background-color: transparent;
    left: 0;
    top: -5px;
    z-index: -1;
    border: 2px solid #DAD3CD;
    border-radius: 10px;
}

.made-by {
	font-size: 13px;
	margin-top: 5px;
}

/* Tablet View*/
@media screen and (min-width:768px) {
	
	/* Streamer One */
	.streamer-one{
		padding-top: 55px;
		padding-bottom: 55px;
		margin-top: 35px;
	}
	
	.streamer-icon{
		width: 75px;
		.height: 250px;
		margin-bottom: 25px;
	}
	
	.streamer-one h3{
		font-size: 25px;
		line-height: normal;
	}
	
	
	/* Streamer Two */
	.streamer-two{
		margin-top: 35px;
		margin-bottom: 75px;
	}
	
	.streamer-two .entry-content{
		max-width: 550px;
	}
	
	.border-image:before {
		content: "";
		   width: 100%;
	    left: 0;
	    top: 0;
	}
	
	.streamer-two .border-image {
		height: auto;
		margin-top: 50px;
		position: relative;
	}


}

/* Small Laptop View*/
@media screen and (min-width:992px) {
	
	.streamer-one h3{
		font-size: 30px;
		line-height: 40px;
	}
	
		/* Streamer Two */
	.streamer-two{
		margin-top: 65px;
		margin-bottom: 75px;
	}
	
	
	.streamer-two .entry-content{
		max-width: 550px;
		padding-top: 75px;
		padding-left: 45px;
		font-size: 20px;
		line-height: 30px;
	}


	
}


/* Laptop view*/
@media screen and (min-width:1200px) {
}






/*----------------------- Contactform Section ------------------------------ */
 
.gform_body{
	
}

.gform_body .gfield_label{
	display: none!important;
}

.gform_body input, .gform_body .ginput_container.ginput_container_textarea textarea {
	margin-top: 10px;
	padding: 15px 20px!important;
	border-radius: 25px;
	border:none;
	background: #F4F4F4;
}

.gform_body input::placeholder, .gform_body textarea::placeholder  {
  color: #222222;
  font-size: 20px;
}


/* SUBMIT BUTTON */
.gform_button.button{
	min-width: 200px;
	font-size: 20px!important;
	font-weight: 700;
	color: #fff!important;
	padding: 5px;
	border-radius: 20px;
	border:none;
	-moz-transition: all .5s;
    -webkit-transition: all .5s;
    transition: all .5s;
    position: relative;
    overflow: hidden;
    background: #222222;
    z-index: 1;
}

.gform_button.button:hover{
	cursor: pointer;
	background: #F3D3D5;
    -moz-transition: all .5s;
    -webkit-transition: all .5s;
    transition: all .5s;
}

.gform_button.button:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: #F3D3D5;
    -moz-transition: all .5s;
    -webkit-transition: all .5s;
    transition: all .5s;
    border-radius: 25px;
    z-index: -1;
}

.gform_button.button:hover:before{
    width: 100%;
}


.gform_button.button:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 25px;
    z-index: -2;
}










/* Tablet View*/
@media screen and (min-width:768px) {
	
	/* SUBMIT BUTTON */
	.gform_button.button{
		padding: 14px;
	}

}

/* Small Laptop View*/
@media screen and (min-width:992px) {
}


/* Laptop view*/
@media screen and (min-width:1200px) {
}
