@font-face {
	src: url("../fonts/beaufortforlol-medium.otf");
	font-family: "Beaufort";
	font-weight: 500;
}

@font-face {
	src: url("../fonts/beaufortforlol-bold.otf");
	font-family: "Beaufort";
	font-weight: 700;
}

@font-face {
	src: url("../fonts/Roboto-Regular.ttf");
	font-family: "Roboto";
	font-weight: 300;
}

@font-face {
	src: url("../fonts/Roboto-Medium.ttf");
	font-family: "Roboto";
	font-weight: 500;
}


body {
	margin: 0;
	font-family: "Beaufort";
	font-weight: 500;
	overflow-x: hidden; /* Evita rolagem horizontal acidental */
}

.background-container {
    height: 100vh; /* Altura igual al 100% del viewport height */
}


.background {
    background-image: url("../images/background.png");
     background-repeat: no-repeat;
    background-color: #111;
    border-radius: 10px;
    width: 100%;
    height: 100%;
    line-height: 1;
    background-position:  auto;
    background-size:  auto;
}

/* Media query para dispositivos móviles */
@media (max-width: 768px) {
    .background {
        border-radius: 0; /* Eliminamos el borde redondeado en dispositivos móviles si es necesario */
    }
}

@keyframes move {
    0% {
        background-position-x: 0%; /* Posición inicial */
    }
    50% {
        background-position-x: 0%; /* Posición final (desplazamiento hacia adelante) */
    }
}

.container {
	width: 1240px;
	margin: 0 auto;
	padding-top: 28px;
}

.header {
	display: flex;
	background-image: url("../images/nav-background.png");
}

.logo {
	width: 130px;
	height: 85px;

	background-image: url("../images/logo.png");
}

.nav {
	padding-top: 32px;
}

.nav__item {
	margin-right: 35px;
	font-size: 18px;
	text-transform: uppercase;
	color: #fff;
	text-decoration: none;
}

.nav__item--active {
	color: #f7cf41;
	padding-bottom: 28px;
	border-bottom: 2px solid #f7cf41;
}

.login {
	background-image: url("../images/login-background.png");
	color: #54200e;
	font-size: 20px;
	text-transform: uppercase;
	margin-left: auto;
	padding: 30px 15px 30px 20px;
	font-weight: 700;
	text-align: center;
	letter-spacing: 0.06em;
	text-decoration: none;
}

.main {
	padding: 25px 16px 12px 15px;
}

.main__background {
    background-image: url("../images/main.png");
    width: 489px;
    height: 283px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto; /* Esto asegura que el elemento esté centrado horizontalmente */

}

.main__background:hover {
    transform: scale(1.0); /* Hace un zoom al 130% cuando el mouse pasa por encima */
}
@keyframes fly {
    0% {
        transform: translateY(0) rotate(0);
    }
    50% {
        transform: translateY(-100px) rotate(90deg);
    }
    100% {
        transform: translateY(0) rotate(0);
    }
}

.effect {
    position: absolute;
    z-index: 0;
    pointer-events: none;
    animation: fly 10s infinite linear;
}

.effect2 {
    position: absolute;
    z-index: 0;
    pointer-events: none;
    -webkit-animation: fly 10s 5s infinite linear;
    animation: fly 10s 5s infinite linear;
    opacity: 0
}	

.start {
	display: flex;
}

.start__button {
	background-image: url("../images/start-background.png");
	color: #54200e;
	padding: 55px 38px;
	text-align: center;
	text-decoration: none;
}

.start__button-caption {
	font-size: 32px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.06em;
}

.start__button-desc {
	font-family: "Roboto";
	font-weight: 500;
	font-size: 18px;
	text-transform: uppercase;
	margin-top: 3px;
	margin-left: 8px;
	letter-spacing: 0.24em;
}

.info {
	display: flex;
	flex: 1;
	margin-left: 3px;
	background-image: url("../images/info-background.png");
}

.info__box {
	padding-right: 55px;
	border-right: 1px solid #616060;
    text-decoration: none;
}

.info__box:last-child {
	border-right: none;
}

.info__icon {
	width: 108px;
	height: 115px;
	display: inline-block;
	margin-top: 36px;
	margin-left: 10px;
}

.info__text {
	display: inline-block;
	vertical-align: top;
	padding: 60px 0px;
	color: #fff;
}

.info__caption {
	font-size: 24px;
	text-transform: uppercase;
}

.info__desc {
	font-family: "Roboto";
	font-size: 14px;
	margin-top: 4px;
	font-weight: 100;
	color: #f0eae7;
}

.status {
	width: 185px;
	padding-right: 0;
	position: relative;
}

.status__rate {
	font-size: 24px;
	color: #fff;
	text-align: center;
	margin-top: 62px;
}

.status__chronicle {
	font-family: "Roboto";
	color: #f0eae7;
	font-size: 14px;
	text-align: center;
}

.slider {
	background: gray;
	padding: 50px 40px;
	overflow: hidden;
}

.slider__items {
	transition: all, .25s;
	display: flex;
	flex-wrap: wrap;
}

.slider__item {

}

.slider__caption {
	font-size: 38px;
	text-transform: uppercase;
	color: #fff;
}

.slider__caption span {
	color: #ffd200;
}

.slider__desc {
	font-family: "Roboto";
	font-size: 16px;
	font-weight: 100;
	color: #cecece;
	margin-top: 12px;
	line-height: 24px;
}

.slider__link {
	background-image: url("../images/button.png");
	background-repeat: no-repeat;
	display: inline-block;
	text-transform: uppercase;
	font-size: 18px;
	font-weight: 700;
	color: #54200e;
	margin-top: 22px;
	padding: 15px 29px;
	line-height: 20px;
	letter-spacing: 0.06em;
	text-align: center;
	text-decoration: none;
	vertical-align: top;
}

.slider__nav {
	display: inline-flex;
	margin-top: 35px;
	margin-left: 42px;
}

.slider__prev {
	background-image: url("../images/slider-prev.png");
	width: 14px;
	height: 25px;
	cursor: pointer;
}

.slider__next {
	background-image: url("../images/slider-next.png");
	width: 14px;
	height: 25px;
	cursor: pointer;
}

.slider__dots {
	display: flex;
	margin-left: 18px;
	margin-top: 7px;
}

.slider__dot {
	width: 10px;
	height: 10px;
	background: #383638;
	border-radius: 50%;
	margin-right: 18px;
	cursor: pointer;
}

.slider__dot--active {
	background: #fdc268;
}

.news {
	margin-top: 10px;
	padding-bottom: 55px;
	border-bottom: 1px solid #1e1e1e;
}

.news__posts {
	width: 1230px;
	display: inline-flex;
	flex-wrap: wrap;
	vertical-align: top;
}

.news__post {
	padding-bottom: 35px;
	width: 308px;
	margin-right: 3px;
}

.news__post:last-of-type {
	margin-right: 0px;
}

.news__date {
	background-image: url("../images/news-date.png");
	width: 72px;
	height: 74px;
	margin-left: 25px;
	margin-top: 22px;
}

.news__date-day {
	color: #ffd200;
	padding-top: 16px;
	text-align: center;
	font-size: 20px;
}

.news__date-month {
	font-family: "Roboto";
	font-size: 10px;
	line-height: 5px;
	text-align: center;
	text-transform: uppercase;
	color: #fff;
}

.news__content {
	padding: 0px 40px;
	margin-top: 100px;
}

.news__caption {
	font-size: 26px;
	color: #fff;
}

.news__desc {
	font-family: "Roboto";
	color: #999999;
	margin-top: 10px;
	margin-bottom: 15px;
	line-height: 24px;
}

.news__link {
	font-family: "Roboto";
	font-size: 16px;
	color: #c0c0c0;
}

.news__all {
	background-image: url("../images/news-all-button-background.png");
	width: 100%;
	margin-top: 3px;
	text-align: center;
	text-transform: uppercase;
	text-decoration: none;
	font-size: 20px;
	padding: 15px 0px;
	letter-spacing: 0.1em;
	color: #8a8a8a;
}

.discussion {
	background-image: url("../images/discussion-background.png");
	display: inline-block;
	width: 306px;
	padding-bottom: 36px;
}

.discussion__header {
	width: 306px;
	border-bottom: 1px solid #302e2e;
}

.discussion__icon {
	background-image: url("../images/info-icon.png");
	width: 90px;
	height: 88px;
	background-size: 100%;
	margin-left: 15px;
	margin-top: 15px;
	margin-right: -12px;
	display: inline-block;
}

.discussion__text {
	display: inline-block;
	vertical-align: top;
}

.discussion__caption {
	font-size: 24px;
	text-transform: uppercase;
	color: #fff;
	margin-top: 30px;
}

.discussion__desc {
	font-family: "Roboto";
	font-size: 12px;
	margin-top: 4px;
	margin-left: 2px;
	color: #999999;
}

.discussion__container {
	font-family: "Roboto";
	padding: 0px 40px 4px 40px;
	margin-top: 30px;
	font-weight: 100;
}

.discussion__topic {
	font-size: 15px;
	color: #c2c2c2;
	display: block;
	text-decoration: none;
	line-height: 20px;
}

.discussion__date {
	font-size: 13px;
	color: #7c7c7c;
	margin-top: 8px;
	display: inline-block;
	vertical-align: top;
}

.discussion__author {
	display: inline-block;
	margin-top: 8px;
	vertical-align: top;
	font-size: 13px;
	color: #e8b422;
	text-decoration: none;
}

.footer-background {
	background-image: url("../images/footer-background.png");
	background-position-y: 100%;
	background-position-x: 30%;
	background-color: #111;
	border-top: 1px solid #1e1e1e;
	min-width: auto;
}

.footer {
	font-family: "Roboto";
	padding-top: 12px;
	padding-bottom: 26px;
}

.footer__info {
	width: 400px;
	display: inline-block;
	margin-right: 30px;
}

.footer__logo {
	background-image: url("#");
	width: 0px;
	height: 0px;
}

.footer__copyright {
	font-size: 10px;
	color: #474646;
	margin-top: 10px;
	line-height: 16px;
}

.footer__section {
	display: inline-block;
	vertical-align: top;
	margin-left: 100px;
	margin-top: 6px;
}

.footer__link {
	display: block;
	color: #58534b;
	text-transform: uppercase;
	font-size: 14px;
	margin-bottom: 15px;
}

.footer__socials-items {
	display: inline-block;
	vertical-align: top;
	float: right;
	margin-top: 4px;
}

.footer__social-item {
	display: inline-block;
	font-size: 24px;
	margin-left: 5px;
	color: #443d37;
}

/**/

.progress {
	position: absolute;
	top: 0;
	left: 0;
	width: 0;
	height: 3px;
	background: #29d;
	box-shadow: 0 0 3px #29d;
}

.text {
	position: absolute;
	top: 50%;
	left: 50%;
	color: #000;
	border: none;
	width: 100px;
	height: 100px;
	margin-top: -50px;
	margin-left: -50px;
	text-align: center;
	line-height: 100px;
	display: none;
}

.round-progress {
	fill: none;
	stroke: #42ed07;
	stroke-width: 4;
	stroke-dasharray: 1000;
}

.svg {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100px;
	height: 100px;
	margin-top: -50px;
	margin-left: -50px;
	transform: rotate(-90deg);
}