/*==========  Desktop First Method  ==========*/

/* Large Devices, Wide Screens */
@media only screen and (max-width : 1200px) {
}

/* Medium Devices, Desktops */
@media only screen and (max-width : 992px) {
	.s1 .content {
    margin-top: 30%;
    width: 50%;
}
.s1{
	height: initial;
	padding-bottom: 100px;
}
}

/* Small Devices, Tablets */
@media only screen and (max-width : 768px) {

}
@media only screen and (max-width : 600px) {
.s1 .content {
    margin-top: 155%;
    width: 100%;
}
.s1 .logo {
    top: 55%;
}
.s1{
	    background-position: top left 38%;
}
}


/* Extra Small Devices, Phones */
@media only screen and (max-width : 480px) {
.s1 .logo {
    top: 10px;
    left: 0;
    right: 0;
    margin: 0 auto;
}
.s1 .content {
    margin-top: 70%;
}
.s1{
    background: url('../img/bg_mob.png') no-repeat;
    background-size: cover;
    background-position: center;
    min-height: 100vh;
    padding-bottom: 0;
}
}

/* Custom, iPhone Retina */
@media only screen and (max-width : 380px) {
.s1 .logo {
    max-width: 150px;
}
}
@media only screen and (max-width : 320px) {
}


/*==========  Mobile First Method  ==========*/

/* Custom, iPhone Retina */
@media only screen and (min-width : 320px) {

}

/* Extra Small Devices, Phones */
@media only screen and (min-width : 480px) {

}

/* Small Devices, Tablets */
@media only screen and (min-width : 768px) {

}

/* Medium Devices, Desktops */
@media only screen and (min-width : 992px) {

}

 /* Large Devices, Wide Screens */
@media only screen and (min-width : 1920px) {

}