@import url('https://fonts.googleapis.com/css?family=Roboto');


#slideshow{
    height: 480px;
}
.slider{
    position: relative;
    overflow: hidden;
    height: 100vh;
    width: 100vw;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
		transform: scale(1.2);
    transition: all 2s ease-in-out;
}

.slide.current {
    opacity: 1;
		transform: scale(1);
}

.slide .content {
    position: absolute;
    bottom: 70px;
    left: -600px;
    opacity: 0;
    width: 600px;
    background-color: rgba(255, 255, 255, 0.8);
    color: #333;
    padding: 10px;
}

.slide .content h1 {
    margin-bottom: 10px;
		color: #E94654;
		font-family: 'Anton';
		font-size: 50px;
		font-weight: 800;
}

.slide .content p {
    font-size: 15px;
    	font-weight: 600;
}

.slide.current .content {
    opacity: 1;
    transform: translateX(600px);
    transition: all 1s ease-in-out 1s;
}

.buttons button#next {
    position: absolute;
    top: 40%;
    right: 15px;
}

.buttons button#prev {
    position: absolute;
    top: 40%;
    left: 15px;
}

.buttons button {
    border: 2px solid #234C7F;
    background-color: transparent;
    color: #234C7F;
    cursor: pointer;
    padding: 13px 20px;
    border-radius: 50%;
    outline: none;
}

.buttons button:hover {
	background-color: #234C7F;
	color: #FFF;
}

@media(max-width: 500px) {
	.slide .content {
		bottom: -300px;
		left: 0;
		width: 100%
	}
	
	.slide.current .content {
		transform: translateY(-300px);
	}
}



/* Background Images */
/*.slide:first-child {*/
/*    background: url('https://drive.google.com/uc?id=17tLcBTupNVFBDhqkzdfYq5XqS5MnShPb') no-repeat center center/cover;*/
/*}*/
/*.slide:nth-child(2) {*/
/*    background: url('https://drive.google.com/uc?id=1Oxn2mhUOSG-n2kU_e-PAk-_I6erD4aVt') no-repeat center center/cover;*/
/*}*/
/*.slide:nth-child(3) {*/
/*    background: url('https://drive.google.com/uc?id=1A8ci7uQx4ualinoXVY4BDMwO_YCnzZWK') no-repeat center center/cover ;*/
/*}*/
/*.slide:nth-child(4) {*/
/*    background: url('https://drive.google.com/uc?id=1apx4Jkym-X8XvLvopVWEVtjKvvc9yhWq') no-repeat center center/cover;*/
/*}*/
/*.slide:nth-child(5) {*/
/*    background: url('https://drive.google.com/uc?id=19eTswcHPUVwmVLuqPsUXeKcqsn1hzsQv') no-repeat center center/cover;*/
/*}*/

.onoffswitch {
        display: none;
	position: absolute;
	top: 10%;
	right: 15px;
	width: 75px;
  -webkit-user-select:none; -moz-user-select:none;
	-ms-user-select: none;
}
.onoffswitch-checkbox {
    display: none;
}
.onoffswitch-label {
    display: block; overflow: hidden; cursor: pointer;
    height: 36px; padding: 0; line-height: 36px;
    border: 2px solid #E3E3E3; border-radius: 36px;
    background-color: #FFFFFF;
    transition: background-color 0.3s ease-in;
}
.onoffswitch-label:before {
    content: "";
    display: block; width: 36px; margin: 0px;
    background: #FFFFFF;
    position: absolute; top: 0; bottom: 0;
    right: 37px;
    border: 2px solid #E3E3E3; border-radius: 36px;
    transition: all 0.3s ease-in 0s; 
}
.onoffswitch-checkbox:checked + .onoffswitch-label {
    background-color: #E94654;
}
.onoffswitch-checkbox:checked + .onoffswitch-label, .onoffswitch-checkbox:checked + .onoffswitch-label:before {
   border-color: #E94654;
}
.onoffswitch-checkbox:checked + .onoffswitch-label:before {
    right: 0px; 
}