﻿@import url('https://fonts.googleapis.com/css2?family=Merriweather:wght@400;700&family=Montserrat:wght@600&family=Work+Sans:wght@300&display=swap');

@font-face {
    font-family: "Helvatica";
    src: url("../fonts/Helvatica/helvetica.woff2");
    font-display: swap;
    font-weight: 400;
}

@font-face {
    font-family: "Helvatica";
    src: url("../fonts/Helvatica/helvetica-bold-tr.woff2");
    font-display: swap;
    font-weight: 700;
}

@font-face {
    font-family: "Gilroy";
    src: url("../fonts/Gilroy/gilroy-extra-bold.woff2");
    font-display: swap;
    font-weight: 700;
}


@keyframes blink {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    background-color: #f4f4f4;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: #222;
    cursor: pointer
}

figure {
    margin: 0;
}

.list-vertical {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
}


.container {
    width: 1140px;
    margin: 0 auto;
    padding-left: .5rem;
    padding-right: .5rem;
}

.c_p {
    cursor: pointer;
}

.two_lines_ellipsis{
   overflow: hidden;
   text-overflow: ellipsis;
   display: -webkit-box;
   -webkit-line-clamp: 2;
   -webkit-box-orient: vertical;
}

.three_lines_ellipsis{
   overflow: hidden;
   text-overflow: ellipsis;
   display: -webkit-box;
   -webkit-line-clamp: 3;
   -webkit-box-orient: vertical;
}

.header {
    font-family: "Helvatica";
    width: 100%;
}

.header--row-1 {
    background-color: #f4f4f4;
    padding: .5rem 0;
    font-family: "Helvatica";

}

.header--wrapper {
    display: flex;
    height: 1rem;
}

.header--finance_list {

    font-size: .75rem;
    align-items: center;
}

.header--finance_list li {
    display: inline;

    font-weight: 700;
}

.header--finance_list li a {
    display: inline-flex;
}

.header--finance_list li .text {
    margin-right: .5rem;
}

.header--finance_list li .indicator {
    display: inline-flex;
    align-items: center;
}

.header--finance_list li .indicator.up {
    color: #080;
}

.header--finance_list li .indicator.down {
    color: #d00;
}



.header--finance_list li .arrow {
    transform: translateY(-1px);
    font-family: Arial, Helvetica, sans-serif;
    font-size: .65rem;
}

.header--finance_list li .price {
    margin-left: .25rem;
}

.header--finance_list li .percentage {
    font-weight: 400;
    font-size: .65rem;
    color: #444;
    margin-left: .25rem;
}

.header--finance_list li .divider {
    height: 14px;
    width: 1px;
    background-color: #d8d8d8;
    margin: 0 .5rem;
}

.header--weather {
    margin-left: auto;
    display: flex;
    align-items: center;
    cursor: pointer;
    color: #353535;
}

.header--weather_icon {
    display: flex;
    justify-content: center;
    align-items: center;
}

.header--weather_icon img {
    width: 1.1rem;
    filter: invert(20%);
}

.header--weather_city {
    font-size: .75rem;
    margin-left: .5rem;
}

.header--weather_arrow {
    font-size: 2rem;
    transform: rotate(-90deg);
    margin-left: .25rem;
}

.header--weather_degree {
    font-weight: 700;
    margin-left: .5rem;
    color: inherit;
}

.header--row-2 {
    padding: .5rem 0;
    font-family: "Helvatica";
    background-color: #fff;
    border-bottom: 1px solid #00000010;
    width: 100%;
}

.header--wrapper-2 {
    display: flex;
}

.header--logo img {
    width: 250px;
}

.header--nav {
    display: flex;
    align-items: center;
    font-size: .9rem;
    margin-left: auto;
}

.header--nav_list {
    height: 100%;
}

.header--nav_list li {
    position: relative;
    display: flex;
    align-items: center;
    padding: 0 .25rem;
}

.header--nav_list li:hover .header--nav_list_line {
    display: block;
}

.header--nav_list li a {
    color: #222;
    height: 100%;
    display: flex;
    align-items: center;
}

.header--nav_list li a:hover {
    text-shadow: 1px 0 0 #000;
}

.header--nav_list_line {
    width: 100%;
    position: absolute;
    bottom: .25rem;
    left: 0;
    height: 3px;
    background-color: #222;
    display: none;
}

.header--right {
    margin: auto 0 auto 1rem;
    display: flex;
    font-size: .85rem;
    transform: translateY(2px);
}

.header--magnifier {
    margin-right: 1rem;
}

.header--right_icon {
    width: .9em;
    filter: invert(40%);
}

main{
    margin-top: 0px;
}

.band {
    width: 100%;
    background-color: red;
    font-family: "Helvatica";
    padding: .75rem 0;
    color: #fff;
    font-weight: 700;
}

.band--wrapper {
    display: flex;
    align-items: center;
}

.band--title_h2 {
    margin: 0;
    font-size: 1rem;
}

.band--buttons {
    margin-left: 1rem;
    display: flex;
    flex-wrap: nowrap;
}

.band--buttons span {
    display: inline-flex;
    align-items: center;
}

.band--buttons_icon {
    height: 1rem;
}

.band--buttons_left {
    margin-right: .5rem;
    transform: rotate(-180deg);
}

.band--band {
    width: calc(800px - 1rem);
    margin-left: 1rem;
}

.bandSwiper .swiper-slide {
    width: 100%;
}


.bandSwiper .swiper-slide a {
    width: 100%;
    display: block;
    color: inherit;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}


.band--band_text::before {
    content: "\25CF";
    font-size: .75rem;
    position: absolute;
    left: -1rem;
}

.band--right {
    margin-left: auto;
}

.band--right a {
    color: inherit;
    display: flex;
    align-items: center;
}

.band--right_text {
    text-transform: uppercase;
    margin-right: .5rem;
    white-space: nowrap;
}

.band--right_arrow {
    font-size: .9rem;
    font-family: Arial, Helvetica, sans-serif;
}

.mainswiper--container {
    margin-top: 1rem;
}

.mainswiper--wrapper {
    display: flex;
}

.mainswiper--pagination {
    width: 64px;
    margin-right: 5px;
    display: flex;
    flex-direction: column;
}



.mainswiper--pagination a:not(:last-of-type) {
    margin-bottom: 5px;
}

.m-swiper-link {
    position: relative;
}

.m-swiper-link-active::after {
    content: "";
    position: absolute;
    width: 60px;
    height: 64px;
    background-color: #00000067;
    border-left: 4px solid red;
    top: 0;
    left: 0;

}

.mainswiper--pagination_img_container {
    width: 64px;
    height: 64px;
}

.mainswiper--pagination_img {
    width: 64px;
    height: 64px;
}

.mainswiper--pagination_imp {
    height: 64px;
    width: 64px;
    background-color: red;
}

.mainswiper--pagination_imp_text {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-content: center;
    justify-content: center;
    color: #fff;
    font-family: "Helvatica";
    font-weight: 700;
    font-size: .9rem;
    animation: blink 2.5s ease 0s infinite normal forwards;
}

.mainswiper--pagination_imp_text p {
    margin: 0;
    text-align: center;
    transform: translateY(-2px);
}

.mainswiper--pagination_imp_text p:first-of-type {
    font-size: 1.5em;
}

.mainswiper--swiper {
    width: calc(100% - 69px);
}

.mainswiper--swiper .swiper-slide a img {
    width: 100%;
    height: 100%;
    max-height: 340px;
    object-fit: cover;
}

.quadnews {
    margin-top: 1.5rem;
    font-family: "Gilroy";
}

.quadnews--wrapper {
    display: flex;
    justify-content: space-between;
}

.quadnews--item {
    display: block;
    width: 259px;
    background-color: #fff;
    transition: color .1s linear;
}

.quadnews--item img{
    width: 100%;
    height: auto;
    object-fit: contain;
}

.quadnews--item:hover {
    color: #d00;
}


.quadnews--textContainer {
    padding: .75rem .9rem 1.05rem;
    font-size: 1.125rem;
    line-height: 1.625rem;
}

.quadnews--text {
    margin: 0;
}

.secondswiper {
    margin-top: 1.5rem;
}

.secondswiper--wrapper {
    display: flex;
}

.secondswiper--left {
    width: 740px;
    padding: 0;
    margin-right:34px
}

.secondswiper--swiper {
    width: 100%;
}
.secondswiper--img{
    width: 740px;
    height: 425px;
}
.secondswiper--navigation {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    display: flex;
    justify-content: space-between;
}

.secondswiper--nav {
    z-index: 2;
    height: 100%;
    width: 5rem;
    font-size: 3rem;
    fill: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 900;
    filter: drop-shadow(1px 0 3px #00000099);
    user-select: none;
    cursor: pointer;
    transition: filter .1s linear;
}

.secondswiper--nav:hover {
    filter: drop-shadow(2px 2px 5px #000);
}

.secondswiper--pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 4rem;
    background-color: #fff;
    z-index: 7;
    position: relative;
}

.secondswiper--pagination .swiper-pagination-bullet {
    height: 3.2ch;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.2ch;
    background-color: #fff;
    color: #939393;
    font-family: "Gilroy";
    opacity: 1;
}

.secondswiper--pagination .swiper-pagination-bullet-active {
    background-color: red;
    color: #fff;
    border-radius: 4px;
}

.secondswiper--right {
    width: 350px;
}

.secondswiper--sub_wrapper {
    background-color: #fff;
    display: flex;
    flex-direction: column;
}

.sw_left {
    background-color: unset;
}

.secondswiper--news_item {
    display: block;
    position: relative;
    height: 235px;
}

.secondswiper--news_item:not(:last-of-type) {
    margin-bottom: 1.5rem;
}

.secondswiper--news_item-img {
    width: 100%;
    object-fit: contain;
}

.secondswiper--news_item-overlay {
    width: 100%;
    height: 235px;
    background: rgb(0, 0, 0);
    background: linear-gradient(0deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 25%, rgba(255, 255, 255, 0) 60%, rgba(255, 255, 255, 0) 100%);
    position: absolute;
    top: 0;
    display: flex;
    align-items: flex-end;
}

.secondswiper--news_item-text {
    color: #fff;
    margin: 0 0 .5rem 0;
    font-family: "Gilroy";
    line-height: 1.55rem;
    font-size: 1.25rem;
    padding: 0 .5rem;
}

.secondswiper--bottom {
    width: 100%;
    padding-top: 1rem;
    height: 145px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.secondswiper--bottom-item {
    display: block;
    width: 45%;
    height: 115px;
}

.secondswiper--bottom-item.traffic {
    background-color: #fff;
    padding: .9rem .75rem .75rem .75rem;
    font-family: "Gilroy";
}

.secondswiper--bottom-item_img {
    width: 100%;
}

.secondswiper--bottom-item_title {
    font-family: "Gilroy";
    font-size: 1.1rem;
    margin: 0;
}

.secondswiper--bottom-item_content {
    width: 100%;
    height: calc(75% - .25rem);
    margin: .25rem 0 0 0;
    border: 1px solid #d8d8d8;
    padding: .5rem 0 0 .5rem;
}

.secondswiper--bottom-item_content .title {
    text-transform: uppercase;

    font-size: 14px;
}

.secondswiper--bottom-item_content .information {
    font-size: .9rem;
    display: flex;
    align-items: center;
    margin-top: .25rem;
    position: relative;
}

.secondswiper--bottom-item_content .information.low {
    color: #080;
    fill: #080;
}

.secondswiper--bottom-item_content .information.mid {
    color: #ee8f00;
    fill: #ee8f00;
}

.secondswiper--bottom-item_content .information.high {
    color: #d00;
    fill: #d00;
}

.secondswiper--bottom-item_content .information .indicator {
    font-size: 1.25rem;
    display: inline-flex;
    justify-content: center;
    margin-right: .25rem;
}

.secondswiper--bottom-item_content .information .text {
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 400;
    color: #939393;
    margin-left: .25rem;
}

.secondswiper--bottom-item_content .information .img {
    position: absolute;
    right: 20px;
    top: -42px;
    width: 80px;
}

/* GRID NEWS */

/* GRID 1 */
.grid_news_1{
   margin-top: 2rem;
}
.grid_news_1_parent {
   display: grid;
   grid-template-columns: repeat(3, 355px);
   grid-template-rows: repeat(7, 302px);
   grid-column-gap: 32px;
   grid-row-gap: 30px;
}
.grid_1_div1 {grid-area: 1 / 1 / 2 / 2;}
.grid_1_div2 {grid-area: 1 / 2 / 2 / 3;}
.grid_1_div3 {grid-area: 1 / 3 / 2 / 4;}
.grid_1_div4 {grid-area: 2 / 1 / 4 / 2; /* BIG */}
.grid_1_div5 {grid-area: 2 / 2 / 3 / 3;}
.grid_1_div6 {grid-area: 2 / 3 / 3 / 4;}
.grid_1_div7 {grid-area: 3 / 2 / 4 / 3;}
.grid_1_div8 {grid-area: 3 / 3 / 4 / 4;}
.grid_1_div9 {grid-area: 4 / 1 / 5 / 2;}
.grid_1_div10 {grid-area: 4 / 2 / 6 / 3; /* BIG */}
.grid_1_div11 {grid-area: 4 / 3 / 5 / 4;}
.grid_1_div12 {grid-area: 5 / 1 / 6 / 2;}
.grid_1_div13 {grid-area: 5 / 3 / 6 / 4;}
.grid_1_div14 {grid-area: 6 / 1 / 7 / 2;}
.grid_1_div15 {grid-area: 6 / 2 / 7 / 3;}
.grid_1_div16 {grid-area: 6 / 3 / 8 / 4; /* BIG */}
.grid_1_div17 {grid-area: 7 / 1 / 8 / 2;}
.grid_1_div18 {grid-area: 7 / 2 / 8 / 3;}
/* GRID 1 */

/* GRID 2 */
.grid_news_2_parent {
   display: grid;
   grid-template-columns: repeat(2, 355px);
   grid-template-rows: repeat(4, 302px);
   grid-column-gap: 32px;
   grid-row-gap: 30px;
}
.grid_2_div1 { grid-area: 1 / 1 / 2 / 2; }
.grid_2_div2 { grid-area: 1 / 2 / 2 / 3; }
.grid_2_div3 { grid-area: 2 / 1 / 4 / 2; }
.grid_2_div4 { grid-area: 2 / 2 / 3 / 3; }
.grid_2_div5 { grid-area: 3 / 2 / 4 / 3; }
.grid_2_div6 { grid-area: 4 / 1 / 5 / 2; }
.grid_2_div7 { grid-area: 4 / 2 / 5 / 3; }
/* GRID 2 */


/* GRID 3 */
.grid_3_parent {
   display: grid;
   grid-template-columns: repeat(3, 355px);
   grid-template-rows: repeat(4, 302px);
   grid-column-gap: 32px;
   grid-row-gap: 30px;
}

.grid_3_div1 { grid-area: 1 / 1 / 2 / 2; }
.grid_3_div2 { grid-area: 1 / 2 / 2 / 3; }
.grid_3_div3 { grid-area: 1 / 3 / 2 / 4; }
.grid_3_div4 { grid-area: 2 / 1 / 3 / 2; }
.grid_3_div5 { grid-area: 2 / 2 / 3 / 3; }
.grid_3_div6 { grid-area: 2 / 3 / 4 / 4; }
.grid_3_div7 { grid-area: 3 / 1 / 4 / 2; }
.grid_3_div8 { grid-area: 3 / 2 / 4 / 3; }
.grid_3_div9 { grid-area: 4 / 1 / 5 / 2; }
.grid_3_div10 { grid-area: 4 / 2 / 5 / 3; }
.grid_3_div11 { grid-area: 4 / 3 / 5 / 4; }
/* GRID 3 */

/* GRID 4 */
.grid_4_parent {display: grid;
   grid-template-columns: repeat(3, 355px);
   grid-template-rows: repeat(4, 302px);
   grid-column-gap: 32px;
   grid-row-gap: 30px;}
.grid_4_div1 { grid-area: 1 / 1 / 2 / 2; }
.grid_4_div2 { grid-area: 1 / 2 / 2 / 3; }
.grid_4_div3 { grid-area: 1 / 3 / 3 / 4; }
.grid_4_div4 { grid-area: 2 / 1 / 3 / 2; }
.grid_4_div5 { grid-area: 2 / 2 / 4 / 3; }
.grid_4_div6 { grid-area: 3 / 1 / 4 / 2; }
.grid_4_div7 { grid-area: 3 / 3 / 4 / 4; }
.grid_4_div8 { grid-area: 4 / 1 / 5 / 2; }
.grid_4_div9 { grid-area: 4 / 2 / 5 / 3; }
.grid_4_div10 { grid-area: 4 / 3 / 5 / 4; }
/* GRID 4 */

/* GRID 5 */
.grid_5_parent {
   display: grid;
   grid-template-columns: repeat(3, 355px);
   grid-template-rows: repeat(4, 302px);
   grid-column-gap: 32px;
   grid-row-gap: 30px;
}
.grid_5_div1 { grid-area: 1 / 1 / 2 / 2; }
.grid_5_div2 { grid-area: 1 / 2 / 2 / 3; }
.grid_5_div3 { grid-area: 1 / 3 / 3 / 4; }
.grid_5_div4 { grid-area: 2 / 1 / 4 / 2; }
.grid_5_div5 { grid-area: 2 / 2 / 3 / 3; }
.grid_5_div6 { grid-area: 3 / 2 / 4 / 3; }
.grid_5_div7 { grid-area: 3 / 3 / 4 / 4; }
.grid_5_div8 { grid-area: 4 / 1 / 5 / 2; }
.grid_5_div9 { grid-area: 4 / 2 / 5 / 3; }
.grid_5_div10 { grid-area: 4 / 3 / 5 / 4; }
/* GRID 5 */
.grid_news--item-sm{

}

.grid_news--item-sm figure{
   height: 197px;

}

.grid_news--item-sm .grid_news--img{
   width: 350px;
   height: 197px;
   object-fit: cover;
}

.grid_news--item-lg{

}

.grid_news--item-lg figure{
   height: 531px;
}

.grid_news--item-lg .grid_news--img{
   width: 350px;
   height: 531px;
   object-fit: cover;
}


.grid_news--item_content{
   height: 132px;
   width: 100%;
}

.grid_news--content {
   background-color: #fff;
   overflow: hidden;
}

.grid_news--title {
   margin: 0;
   overflow: hidden;
   text-overflow: ellipsis;
   white-space: nowrap;
}

.grid_news--content {
   font-family: "Gilroy";
   padding-bottom: .9rem;
}

.grid_news--title {
   padding: .9rem 1rem .5rem 1rem;
}

.grid_news--text {
   font-family: Arial, Helvetica, sans-serif;
   font-weight: 400;
   margin: 0;
   padding: 0 1rem 1.1rem 1rem;
   display: -webkit-box;
   display: -moz-box;
   overflow: hidden;
   white-space: inherit;
   -webkit-box-orient: vertical;
   -webkit-line-clamp: 2;
   line-height: 1.4rem;
   height: 43px;
}
/* GRID NEWS TEST */
/* .grid_news {
    margin-top: 2rem;
}

.grid_news--wrapper {
  display: flex;
  justify-content: space-between;
}

.grid_news--column {
    width: calc(33.3336% - 1.2rem);
    display: flex;
    flex-direction: column;
}

.grid_news--column a:not(:last-of-type) {
    margin-bottom: 1.875rem;
}


.grid_news--row {
    width: 100%;
    clear:both;
    height: 300px;
}



.grid_news--item-sm {
    width: calc(33.3336% - 1.2rem);
    margin-right:1.2rem;
    float:left;
}


.grid_news--item-big {
    width: calc(33.3336% - 1.2rem);
    margin-right:1.2rem;
    float:left;
}


.grid_news--img_container-sm {
    width: 100%;
    height: 199px;
}

.grid_news--img-sm {
    width: 100%;
    height: 199px;
    object-fit: cover;
}

.grid_news--img_container-big {
    width: 100%;
    height: 531px;
    overflow: hidden;
}

.grid_news--img-big {
    width: 100%;
    height: 531px;
} */

/* GRID NEWS TEST */

.double_swiper {
    margin-top: 2rem;
}

.double_swiper--wrapper {
    display: flex;
    justify-content: space-between;
}

.double_swiper--side {
    width: 49%;
}

.double_swiper--pagination {
    position: absolute;
    top: 0;
    left: 0;
    width: 5.4ch !important;
    height: calc(100% - 4px);
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #0000005d;
}

.ds_pagination_item {
    width: 3.5ch;
    height: 3.5ch;
    border-radius: 0;
    background-color: unset;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: "Gilroy";
    border-radius: 4px;
    opacity: 1;
}

.ds_pagination_item.swiper-pagination-bullet-active {
    background-color: #d00;
}

.right-swiper-pagination {
    position: absolute;
    bottom: 1rem !important;
    z-index: 3;
    width: 100%;
    display: flex;
    justify-content: center;
}

.right-swiper-pagination .swiper-pagination-bullet {
    background-color: #ccc;
    opacity: 1;
    margin: 0 .3rem !important;
}

.right-swiper-pagination .swiper-pagination-bullet-active {
    background-color: #d00;
}

.right-swiper-navigation {
    position: absolute;
    display: flex;
    width: 100%;
    height: 100%;
    justify-content: space-between;
    align-items: center;
}

.right-swiper-navigation div {
    position: relative;
    cursor: pointer;
    font-size: 1.5rem;
    padding: 0 .5rem;
    z-index: 5;
}

.right-swiper-navigation div svg {
    fill: #fff;
    filter: drop-shadow(0 0 4px #000);
}
.double_swiper_right--img{
    width: 550px;
    height: 368px;
    object-fit: cover;
}

.double_siwper_left--img{
    width: 550px;
    height: 368px;
    object-fit: cover;
}

.authors {
    margin-top: 2rem;
}

.authors_wrapper {
    display: flex;
    justify-content: space-between;
}

.authors_swiper--header {
    top: 0;
    width: 100%;
    position: relative;
}

.authors_swiper--navigation {
    width: 4rem;
    height: 1rem;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
}

.authors_swiper--navigation div svg {
    fill: #d8d8d8;
    width: .75rem;
    height: .75rem;
}

.authors_swiper--nav-prev {
    transform: rotate(-180deg);
}

.authors_swiper--nav-divider {
    width: 2px;
    height: calc(100% + .5rem);
    transform: translateY(-.25rem);
    background-color: #d8d8d8;
    margin: 0 .5rem;
}

.authors_swiper {
    background-color: #fff;
    border: 2px solid #f2f2f2;
    border-radius: 3px;
    max-width: 355px;
}

.authors_swiper--title {
    font-family: "Gilroy";
    font-weight: 700;
    font-size: 1.75rem;
    color: #464646;
}

.authors_swiper--title h5 {
    margin: 1rem 0 1rem .75rem;
}

.authors_swiper .swiper-wrapper {}

.authors_swiper .swiper-slide {
    width: 100% !important;
    display: flex;
    flex-direction: column;
    height: min-content;
}

.authors_swiper--link {
    display: flex;
    width: 100%;
    padding: 1rem .75rem;
    margin-bottom: 0 !important;
}

.authors_swiper--imgContainer {
    width: 20%;
}

.authors_swiper--imgContainer figure {
    display: flex;
    justify-content: center;
}

.authors_swiper--img {
    width: 100%;
    object-fit: contain;
    border-radius: 50%;
    overflow: hidden;
}

.authors_swiper--textContainer {
    width: 80%;
    padding: 0 1rem;
}

.authors_swiper--textContainer h5 {
    margin: 0;
}

.authors_swiper--textContainer .article_name {}

.authors_swiper--textContainer .article_name a {
    display: -webkit-box;
    display: -moz-box;
    overflow: hidden;
    white-space: inherit;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    font-family: "Gilroy";
    line-height: 1.4;
    font-size: 1rem;
    color: #212121;
    height: 45px;
}

.authors_swiper--textContainer .authors_name {
    margin-top: .25rem;
}

.authors_swiper--textContainer .authors_name a {
    font-family: 'Montserrat', sans-serif;
    color: #a7a7a7;
    font-size: .75rem;
}

.videos_slider {
    margin-top: 2rem;
}

.slig--container{
    width: 100%;
    margin-top: 1rem;
}

.slig--title{
    font-family: 'Merriweather', serif;
    font-weight: 700;
}

.slig--table{
    width: 100%;
    font-family: 'Work Sans', sans-serif;
    font-size: .77rem;
    border-collapse: collapse;
    padding: 0 .25rem;
}

.slig--table thead,
.slig--table thead tr{
    font-size: 1.1rem;
    background-color: #3256A1;
    color: #fff;
}
.slig--table thead tr th{
    padding: .35rem 0;
    border: 0;
}
.slig--table tbody tr{
    height: 30px;
}

.slig--table tbody tr:nth-of-type(odd){
    background-color: #f5f5f5;
}
.slig--table tbody tr:nth-of-type(even){
    background-color: #d9d9d9;
}
.slig--table tbody tr td:first-of-type{
    padding-left: .25rem;
}
.slig--table tbody tr td:nth-of-type(2){
    padding-left: 2px;
    white-space: nowrap;
}
.slig--table tbody tr td:last-of-type{
    padding-right: .25rem;
}

.photos_slider--background{
    background-color: #3256A1;
    width: 100%;
    padding: .75rem 1rem 1rem 1rem;
}
.photos_slider--title{
    color: #fff;
}

.videos_slider--background {
    background-color: #F3CE2B;
    width: 100%;
    padding: .75rem 1rem 1rem 1rem;
}


.videos_slider--title {
    margin: 0 0 .75rem 0;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    letter-spacing: .15rem;
    text-transform: uppercase;
}

.videos_slider--link {
    display: block;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    width: 100%;
    height: 206px;
    width: 265px;
    position: relative;
}

.videos_slider--play_button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background-color: red;
    display: flex;
    justify-content: center;
    align-items: center;
}

.videos_slider--play_button span {
    transform: translateX(1px) translateY(1px);
    color: #fff;
}

.videos_slider--text_container {
    font-family: 'Merriweather', serif;
    bottom: .5rem;
    color: #fff;

    left: 0;
    padding: 0 1rem;
    position: absolute;
    width: 100%;
    z-index: 1;
    display: -webkit-box;
    display: -moz-box;
    overflow: hidden;
    white-space: inherit;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.videos_slider--text {
    margin: 0;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.2;
    text-shadow: 1px 1px 3px #000;
}

.videos_slider--navigation {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    top: 0;
}

.videos_slider--nav {
    width: 2rem;
    height: 2rem;
    background-color: #444;
    z-index: 3;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.double_swiper_2 {
    margin-top: 2rem;
}

.double_swiper_2--wrapper {
    display: flex;
    justify-content: space-between;
}

.double_swiper_2--left_container {
    width: calc(66.6667% - .5rem);
}

.ds_2_left .swiper-slide a {
    display: block;
    max-height: 554px;
    position: relative;
}

.double_swiper_2--img {
    width: 741px;
    height: 554px;
    object-fit: cover;
}

.double_swiper_2--overlay {
    position: absolute;
    bottom: 0;
    height: 100%;
    width: 100%;
    background: rgb(0,0,0);
    background: linear-gradient(0deg, #000000e4 0%, #00000091 20%, #26262680 40%, #ffffff00 100%);
}
.double_swiper_2--title{
    position: absolute;
    bottom: 5.5rem;
    font-size: 2.25rem;
    color: #fff;
    font-family: 'Merriweather',serif;
    margin: 0;
    padding: 0 2rem;
    line-height: 1.3;
    z-index: 4;
    text-align: left;
    display: -webkit-box;
    display: -moz-box;
    overflow: hidden;
    white-space: inherit;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.double_swiper_2--pagination{
    position: absolute;
    z-index: 5;
    display: flex;
    justify-content: space-evenly;
}

.ds_2--pagination_item{
    width: calc(12.5% - .75rem);
    padding-top: calc(9.375% - .5625rem);
    border-radius: 0;
    background-color: unset;
    background-position: center;
    background-size: cover;
    opacity: 1;
    box-sizing: border-box;
}

.ds_2--pagination_item.swiper-pagination-bullet-active{
    outline: 2px solid red;
}

.double_swiper_2--navigation{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    top: 0;
}

.double_swiper_2--nav{
    cursor: pointer;
    z-index: 5;
    width: 2rem;
    height: 2rem;
    background-color: #444;
    display: flex;
    justify-content: center;
    align-items: center;
}

.double_swiper_2--right_container {
    width: calc(33.3333% - .5rem);
    height: 555px;
    background-color: #fff;
}
.ds_2_right--header{
    width: 100%;
    height: 8%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    --borderColor:#e5e5e5;
    border-bottom: 2px solid var(--borderColor);
}
.ds_2_right--title{
    height: 100%;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    display: flex;
    align-items: center;
    text-transform: uppercase;
    font-size: 1rem;
    padding-left: .5rem;
}
.ds_2_right--swiper-navigation{
    display: flex;
    height: 100%;
}
.ds_2_right--swiper-nav{
    border-left: 2px solid var(--borderColor);
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 .75rem;
    cursor: pointer;
}
.ds_2_right--swiper-nav svg{
    fill: var(--borderColor);
    width: .8em;
    height: .8em;
    transition: .2s linear;
}
.featured_news_swiper{
    counter-reset: newsCounter;
}
.featured_news_swiper .swiper-slide{
    display: flex;
    flex-direction: column;
    padding: .75rem 0;
}
.ds_2_right--link{
    display: block;
    margin-bottom: .75rem;
    padding: 0 .75rem;
}
.ds_2_right--link_wrapper{
    display: flex;
    align-items: center;
}
.ds_2_right--link_img_container{
    position: relative;

}
.ds_2_right--link_img_container::before{
    counter-increment: newsCounter;
    content: counter(newsCounter);
    position: absolute;
    top: -.25rem;
    left: -.25rem;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    background-color: red;
    font-size: .75rem;
    width: 3ch;
    height: 3ch;
    z-index: 99;
    font-family: "Gilroy";
    border-radius: 4px;
}

.ds_2_right--link_img{
    height: 84px;
    width: 150px;
    object-fit: cover;
}

.ds_2_right--link_text_container{
    display: -webkit-box;
    display: -moz-box;
    overflow: hidden;
    white-space: inherit;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    font-family: "Gilroy";
    line-height: 1.5rem;
    font-size: 1rem;
    height: 9ex;
    padding-left: .55rem;
    font-weight: 700;
}

.ds_2_right--link_text h3{
    margin: 0;
}

.grid_news_3{
    margin-top: 2rem;
}
.grid_news_3--wrapper{
    display: flex;
    justify-content: space-between;
}

.main_swiper_2{
    margin-top: 2rem;
}

.ms_2--link{
    display: block;
}

.main_swiper_2--img{
    width: 1120px;
    height: 633px;
    object-fit:cover;
}

.ms_2--overlay{
    background: rgb(0,0,0);
    background: linear-gradient(0deg, #000000e4 0%, #00000091 10%, #26262680 50%, #ffffff00 100%);
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
}

.ms_2--title_container{
    position: absolute;
    bottom: 7rem;

    font-family: 'Merriweather',serif;
    color: #fff;
    font-size: 2.25rem;
    line-height: 1.3;
    left: 28px;
    position: absolute;
    right: 28px;
    z-index: 4;
    text-align: left;
    display: -webkit-box;
    display: -moz-box;
    overflow: hidden;
    white-space: inherit;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.main_swiper_2--pagination{
    position: absolute;
    bottom: .5rem;
    width: 100%;
    z-index: 3;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1rem;
    height: 6rem;
}
.ms_2--pagination_item{
    width: calc(12.5% - .5rem);
    padding-top: calc(7% - .28rem);
    border-radius: 0;
    opacity: 1;
    margin: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.ms_2--pagination_item.swiper-pagination-bullet-active{
    outline: 2px solid red;
}

.ms_2--navigation{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    top: 0;
}

.ms_2--nav{
    cursor: pointer;
    z-index: 5;
    width: 2rem;
    height: 2rem;
    background-color: #444;
    display: flex;
    justify-content: center;
    align-items: center;
}

.main_swiper_3{
    margin-top: 2rem;
}

.ms_3--link{
    display: block;
}

.main_swiper_3--img{
    width: 1120px;
    height: 633px;
    object-fit:cover;
}

.ms_3--overlay{
    background: rgb(0,0,0);
    background: linear-gradient(0deg, #000000e4 0%, #00000091 10%, #26262680 50%, #ffffff00 100%);
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
}

.ms_3--title_container{
    position: absolute;
    bottom: 7rem;

    font-family: 'Merriweather',serif;
    color: #fff;
    font-size: 2.25rem;
    line-height: 1.3;
    left: 28px;
    position: absolute;
    right: 28px;
    z-index: 4;
    text-align: left;
    display: -webkit-box;
    display: -moz-box;
    overflow: hidden;
    white-space: inherit;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.main_swiper_3--pagination{
    position: absolute;
    bottom: .5rem;
    width: 100%;
    z-index: 3;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1rem;
    height: 6rem;
}
.ms_3--pagination_item{
    width: calc(12.5% - .5rem);
    padding-top: calc(7% - .28rem);
    border-radius: 0;
    opacity: 1;
    margin: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.ms_3--pagination_item.swiper-pagination-bullet-active{
    outline: 2px solid red;
}

.ms_3--navigation{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    top: 0;
}

.ms_3--nav{
    cursor: pointer;
    z-index: 5;
    width: 2rem;
    height: 2rem;
    background-color: #444;
    display: flex;
    justify-content: center;
    align-items: center;
}


.footer{
    width: 100%;
    background-color: #fff;
    min-height: 5rem;
    margin-top: 2rem;
}

.footer--wrapper{
    display: flex;
    flex-direction: column;
}

.footer--row{
    width: 100%;
    display: flex;
}

.footer--col{
    flex: 1 1 100%;
    padding-top: 1rem;
}
.footer--col_title{
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 700;
    margin: .5rem 0;
    font-size: 1rem;
}
.footer--top{
    padding: .75rem 0;
    border-bottom: 1px solid #e5e5e5;
}
.footer--top img{
    width: 220px;
}
.footer--bottom{
    margin-top: .5rem;
    padding: .5rem 0;
    border-top: 1px solid #e5e5e5;
}
.footer--list{
    margin: 0;
    padding: 0 0 0 0;
    list-style: none;
}
.footer--list li{
    padding: 0 0 .4rem 0;
}
.footer--list li a{
    font-size: 13px;
    font-family: Arial, Helvetica, sans-serif;
    color: #666;
    transition: .15s;
}
.footer--list li a:hover{
    color: #151515;
}
.footer--socialList li{
    margin-right: .5rem;
}
.footer--bottom_text{
    font-family: Arial, Helvetica, sans-serif;
    font-size: .75rem;
    text-align: center;
    color: #777;
    margin: .25rem 0;
}

.static_page{
    font-family: Arial, Helvetica, sans-serif;
}


/* NEWS BREADCRUMB */
.news--breadcrumb_wrapper {
    position: relative;
}

.news--breadcrumb_wrapper ul {
    display: flex;
    list-style-type: none;
    font-family: "Helvatica";
    font-size: .75rem;
    padding: .75rem 0 .75rem 1.25rem;
    margin: 0;
}

.news--breadcrumb_wrapper ul li {
    margin-right: .5rem;
    position: relative;
}

.news--breadcrumb_wrapper ul li:last-of-type a {
    color: #888;
    cursor: text;
}

.news--breadcrumb_wrapper ol {
    display: flex;
    list-style-type: disc;
    font-family: "Helvatica";
    font-size: .75rem;
    padding: .75rem 2.25rem .75rem 2.25rem;
    margin: 0;
}

.news--breadcrumb_wrapper ol li {
    margin-right: 1.5rem;
    position: relative;
}

.news--breadcrumb_wrapper ol li:last-of-type a {
    color: #888;
    cursor: text;
}

/* NEWS BREADCRUMB */
/* NEWS INFO */
.news--info_container {
    padding: 0 1.25rem;
    margin-bottom: 1rem;
    font-family: "Helvatica";
    font-size: .75rem;
    color: #888;
}

.news--info_container ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.news--info_container ul li {
    margin-right: .75ch;
}

/* NEWS INFO */
.fontsize_controller{
    margin-left: auto;
    display: flex;
}

.fontsize_controller div{
    cursor: pointer;
}
.fontsize_controller div:first-of-type{
    margin-right: .25rem;
}
.fontsize_controller svg{
    position: relative;
    z-index: 0;
    pointer-events: none;
}

.scroll-top-button{
    position: fixed;
    right: 1.5rem;
    bottom: 1rem;
    z-index: 10000;
    display: none;
}
.scroll-top-button svg{
    width: 3.5rem;
    height: 3.5rem;
    fill: #d00;
}
