/* mobile */
@media (max-width: 480px) {
    body.main ,
    body.news {
        padding-top: 120px;
    }

    .video-slider .swiper-slide {
        width: 250px;
        height: 400px;
    }
}

/* Tablet */
@media (min-width: 480px) and (max-width: 768px) {

}

/* 13' */
@media (min-width: 768px) and (max-width: 1280px) {

    h1 {
        font-size: 64px !important;
    }

    h2 {
        font-size: 28px !important;
    }

    .page-container {
        margin: 120px 72px;
    }

    p {
        font-size: 18px;
    }

	footer {
        padding: 60px 76px;
    }

	.flex-container {
		gap: 120px;
	}

}

/* laptops */
@media (min-width: 1280px) and (max-width: 1920px) {
    h1 {
        font-size: 96px !important;
    }

    h2 {
        font-size: 32px !important;
    }

    h3 {
        font-size: 20px !important;
    }

    .page-container {
        margin: 140px 76px;
    }

    p {
        font-size: 18px;
    }

	header {
        padding: 33px 40px;
    }

	footer {
        border-radius: 0;
    }

	.flex-container {
		gap: 140px;
	}
}

/* desktop */
@media screen and (min-width: 1920px) {
    h1 {
        font-size: 100px !important;
    }

    h2 {
        font-size: 42px !important;
    }

    h3 {
        font-size: 32px !important;
    }

    .page-container {
        margin: 150px 144px;
    }

    p {
        font-size: 20px;
    }

	header {
        padding: 33px 40px;
    }

	.flex-container {
		gap: 150px;
	}
}