/*==========  Desktop First Method  ==========*/

/* Large Devices, Wide Screens */
@media only screen and (max-width : 1200px) {

}

/* Medium Devices, Desktops */
@media only screen and (max-width : 992px) {

}

/* Small Devices, Tablets */
@media only screen and (max-width : 768px) {
    section.baner .section .descr_baner h1 {
        font-size: 25px;
    }
    header .section {
        flex-wrap: wrap;
    }
    .div6 {
        flex-wrap: wrap;
    }
    .descr {
    		position: relative;
    		z-index: 2;
        text-align: center;
    }
    header .section .descr .items {
    	justify-content: flex-end;
    	margin-bottom: 300px;
    }
    header .section .descr .its .it {
    	    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    }
    header .section .descr .its .it img {
    	display: block;
    }
    header .section .descr .its .it span {
    	width: 100%;
    	margin: 0;
    }
    header .section .descr .links a {
    	margin-bottom: 20px;
    	display: block;
    }
    header .section .ban {
    	position: absolute;
    	z-index: 1;
    	bottom: 760px;
    	width: auto;
    }
    .baner {
    	border-radius: 0;
    	margin: 20px auto 50px;
    }
    header .section .ban img {
    	width: 80%;
    }
    header .section .socials {
    	position: fixed;
	    top: 20px;
	    left: 20px;
	    right: auto;
    }
    .div6_left {
    	padding: 0;
    	text-align: center;
    }
    .div6 {
    	justify-content: center;
    }
}

/* Extra Small Devices, Phones */
@media only screen and (max-width : 480px) {

}

/* Custom, iPhone Retina */
@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 : 1200px) {

}