@charset "utf-8";
/* Simple fluid media
   Note: Fluid media requires that you remove the media's height and width attributes from the HTML
   http://www.alistapart.com/articles/fluid-images/ 
*/
img, object, embed, video {
	max-width: 100%;
}
/* IE 6 does not support max-width so default to width 100% */
.ie6 img {
	width:100%;
}

/*
	Dreamweaver Fluid Grid Properties
	----------------------------------
	dw-num-cols-mobile:		6;
	dw-num-cols-tablet:		10;
	dw-num-cols-desktop:	14;
	dw-gutter-percentage:	25;
	
	Inspiration from "Responsive Web Design" by Ethan Marcotte 
	http://www.alistapart.com/articles/responsive-web-design
	
	and Golden Grid System by Joni Korpi
	http://goldengridsystem.com/
*/

/* Mobile Layout: 480px and below. */


	.socials-top{
		width: auto;
		float: left;
		clear: none;
		display: block;
		margin: 15vh 5% 0vh auto;
	}
    
	
.switch-field {
	display: flex;
	margin-bottom: 1em;
	overflow: hidden;
	 /* Center slide text vertically */
      display: -webkit-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      -webkit-justify-content: center;
      justify-content: center;
      -webkit-box-align: center;
      -ms-flex-align: center;
      -webkit-align-items: center;
      align-items: center;
	transition: .3s all;
	height: auto;
	border-radius: 2em;
margin: auto 7%;
}

.switch-field input {
	position: absolute !important;
	clip: rect(0, 0, 0, 0);
	height: 1px;
	width: 1px;
	border: 0;
	overflow: hidden;
	transition: .3s all;
	background-color: aqua;

}
	
.switch-field label i{ 
	font-size: 1.5em; 
	color: #000; 
	margin: 0;
	}

.switch-field label {
	background-color: #e4e4e4;
	color: rgba(0, 0, 0, 1);
	line-height: 1;
	text-align: center;
	padding: 1em 1.5em;
	margin-right: -1px;
	border-radius: 2em;
	transition: .3s all;
	 display: grid; 
  grid-template-columns: 0.3fr 1fr; 
  gap: 0em 1em; 
	
}
	
	
	.switch-field label p{
		font-size: 0em;
		transition: .3s all;
		width: auto;
	}

.switch-field label:hover {
	cursor: pointer;
}

.switch-field input:checked + label {
	background-color: #D6B58C;
	box-shadow: none;
	transform: all .3s;
}
	
	.switch-field input:checked + label p{
		font-size: 1.2em;
		transform: all .3s;
	}

.switch-field label:first-of-type {
	border-radius: 4px 0 0 4px;
}

.switch-field label:last-of-type {
	border-radius: 0 4px 4px 0;
}

/* This is just for CodePen. */


	
	
	
	
	
	
	.socials-container{
		width: calc(90% - 3em);
		margin: auto 5%;
		height: auto;
		display: block;
		float: left;
		clear: none;
		background-color: #fff;
		border-radius: 2em;
		padding: 1.5em;
	}
	
	
	.instagram{
		width: 100%;
		height: auto;
		display: block;
		float: left;
		clear: none;
	}
	
	.youtube{
		width: 100%;
		height: auto;
		display: none;
		float: left;
		clear: none;
	}
	









/* Tablet Layout: 481px to 768px. Inherits styles from: Mobile Layout. */

@media only screen and (min-width: 481px) {
	
	
	
	
	
	
    
    
    
    
    
    
    
    
    
	

	
	
	
}



/* Desktop Layout: 769px to a max of 1232px.  Inherits styles from: Mobile Layout and Tablet Layout. */

@media only screen and (min-width: 769px) {

    
    
    
    
    
    
    
    
    
    
  
    
    
}
    /* Desktop Layout: 769px to a max of 1080px.  Inherits styles from: Mobile Layout and Tablet Layout. */

@media only screen and (min-width: 1080px) {
	
	
	
	
	.socials-top{
		width: auto;
		float: right;
		clear: none;
		display: block;
		margin: 20vh 5% 0vh auto;
	}
    
	
.switch-field {
	display: flex;
	margin-bottom: 36px;
	overflow: hidden;
	 /* Center slide text vertically */
      display: -webkit-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      -webkit-justify-content: center;
      justify-content: center;
      -webkit-box-align: center;
      -ms-flex-align: center;
      -webkit-align-items: center;
      align-items: center;
	transition: .3s all;
	height: auto;
	border-radius: 2em;
	margin: auto auto;
}

.switch-field input {
	position: absolute !important;
	clip: rect(0, 0, 0, 0);
	height: 1px;
	width: 1px;
	border: 0;
	overflow: hidden;
	transition: .3s all;
	background-color: aqua;

}
	
.switch-field label i{ 
	font-size: 2em; 
	color: #000; 
	margin: 0;
	}

.switch-field label {
	background-color: #e4e4e4;
	color: rgba(0, 0, 0, 1);
	line-height: 1;
	text-align: center;
	padding: 1em 2em;
	margin-right: -1px;
	border-radius: 2em;
	transition: .3s all;
	 display: grid; 
  grid-template-columns: 0.3fr 1fr; 
  gap: 0em 1em; 
	
}
	
	
	.switch-field label p{
		font-size: 0em;
		transition: .3s all;
		width: auto;
	}

.switch-field label:hover {
	cursor: pointer;
}

.switch-field input:checked + label {
	background-color: #D6B58C;
	box-shadow: none;
	transform: all .3s;
}
	
	.switch-field input:checked + label p{
		font-size: 1.2em;
		transform: all .3s;
	}

.switch-field label:first-of-type {
	border-radius: 4px 0 0 4px;
}

.switch-field label:last-of-type {
	border-radius: 0 4px 4px 0;
}

/* This is just for CodePen. */


	
	
	
	
	
	
	.socials-container{
		width: calc(90% - 3em);
		margin: auto 5%;
		height: auto;
		display: block;
		float: left;
		clear: none;
		background-color: #fff;
		border-radius: 2em;
		padding: 1.5em;
	}
	
	
	.instagram{
		width: 100%;
		height: auto;
		display: block;
		float: left;
		clear: none;
	}
	
	.youtube{
		width: 100%;
		height: auto;
		display: none;
		float: left;
		clear: none;
	}
	
	
	
	
    
    
    
}
    
    
    /* Desktop Layout:1080px to a max of 1440px.  Inherits styles from: Mobile Layout and Tablet Layout. */

@media only screen and (min-width: 1440px) {

    
	
	
	
	
	
	
	
    
    
    
}
    
        /* Desktop Layout: 1440px to a max of 1920px.  Inherits styles from: Mobile Layout and Tablet Layout. */

@media only screen and (min-width: 1920px) {
	
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
  
    
    
    
}
            /* Desktop Layout: 1920px to a max of 2400px.  Inherits styles from: Mobile Layout and Tablet Layout. */

@media only screen and (min-width: 2400px) {
	

    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
		
}