@charset "UTF-8";
@import url(variables.css);
@import url(page.css);

/* FONTS */
@font-face {
    font-family: 'Myriad Pro';
    font-weight: normal;
    font-style: normal;
    src: local('Myriad Pro Regular'), url('../fonts/MyriadPro-Regular.woff') format('woff');
}
@font-face {
    font-family: 'Myriad Pro';
    font-weight: 500;
    font-style: normal;
    src: local('Myriad Pro Semibold'), url('../fonts/MyriadPro-Semibold.woff') format('woff');
}
@font-face {
    font-family: 'Helvetica';
    font-weight: 700;
    font-style: normal;
    src: local('Helvetica Bold'), url('../fonts/Helvetica-Bold-Font.ttf') format('ttf');
}

/* SETTINGS */
*, *::after, *::before, ul, ol, p{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent;
    background-color: #fff;
    font-family: "Myriad Pro";
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 130%;
    color: var(--text-black);
    transition: 0.4s ease-in-out;
}
.wrapper{
    overflow: hidden;
}

@media (min-width: 1600px){
    .container, .container-sm, .container-md, .container-lg, .container-xl, .container-xxl{
        max-width: 1400px;
    }
}

ol, ul {
    list-style: none;
}
a {
    text-decoration: none;
    transition: .3s all ease;
}
button, input, optgroup, select, textarea {
    color: inherit;
    font: inherit;
    outline: none;
    border: none;
    margin: 0
}
audio, canvas, iframe, img, svg, video, i {
    vertical-align: middle
}
img{
    border-style: none;
    max-width: 100%;
    height: auto;
}

section{
    margin-bottom: 90px;
}

.section-title{
    line-height: 130%;
    font-weight: bold;
    font-size: 27px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #CCD5D9;
}


/* HEADER */

header{
    background-color: #0277C9;
}
header .header-top{
    position: relative;
}

header .hamburger-btn{
    width: 40px;
    height: 40px;
    display: flex;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #115a9e;
    border-color: #115a9e;
    color: var(--text-white);
}
header .menu-list {
    display: flex;
    align-items: center;
}


header .menu-list .menu-item,
header .menu-list .menu-item a {
    font-size: 18px;
    color: var(--text-white);
    text-decoration: none;

}

header .menu-list .menu-item > a,
header .menu-item.has-dropdown > .dropdown_toggle {
    cursor: pointer;
    display: block;
    transition: .3s all ease;
}

header .menu-list .menu-item > a:hover,
header .menu-item.has-dropdown > .dropdown_toggle:hover{
    color: var(--text-sandy);
}

header .menu-list li:not(:last-child) {
    margin-right: 50px;
}

header .menu-item.has-dropdown {
    position: relative;
}

header .menu-item.has-dropdown > .submenu {
    position: absolute;
    top: 60px;
    right: 0;
    opacity: 0;
    visibility: hidden;
    background: rgba(2, 119, 201, 0.95);
    pointer-events: none;
    transition: 0.1s all ease;
    min-width: 220px;
    border-radius: 5px;
    padding: 20px 0;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    gap: 15px;
}

header .menu-item.has-dropdown .submenu .menu-item.has-dropdown > .submenu {
    top: 0;
    left: 100%;
}

header .menu-item.has-dropdown:hover > .submenu {
    top: 40px;
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

header .menu-item.has-dropdown .submenu .menu-item.has-dropdown:hover > .submenu {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}
header .menu-item > a,
header .menu-item > span {
    padding: 10px 15px;
}
header .header-links{
    display: flex;
    flex-direction: column;
    gap: 10px 0;
}
header .menu-item.has-dropdown > .dropdown_toggle {

    position: relative;
}

header .menu-item.has-dropdown > .dropdown_toggle::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    width: 7px;
    height: 7px;
    border-bottom: 2px solid #fff;
    transition: .3s all ease;
    border-right: 2px solid #fff;
}
header .menu-item.has-dropdown:hover > .dropdown_toggle::after {
    transform: translateY(-50%) rotate(225deg);
    border-color: var(--text-sandy);
}

header .menu-item.has-dropdown .submenu .menu-item.has-dropdown::after {
    content: '';
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%) rotate(315deg);
    width: 7px;
    height: 7px;
    border-bottom: 2px solid #fff;
    transition: .3s all ease;
    border-right: 2px solid #fff;
}

header .menu-item.has-dropdown .submenu .menu-item.has-dropdown .submenu {
    left: 100%;
    top: 0;
}
header .menu-item.has-dropdown .submenu .menu-item{
    padding: 0  20px;
    margin: 0;
    cursor: pointer;
    transition: .3s all ease;
}
header .menu-item.has-dropdown .submenu .menu-item:hover{
    color: var(--text-sandy);
}
header .menu-item.has-dropdown .submenu .menu-item:hover::after{
    border-color: var(--text-sandy);
}
header .menu-item.has-dropdown .submenu .menu-item a{
    padding: 0;
}
header .menu-item.has-dropdown .submenu .menu-item a.active{
    color: var(--text-sandy);
}
@media (max-width: 1024px) {
    header .menu-item.has-dropdown .submenu .menu-item.has-dropdown > .submenu {
        left: auto;
        right: 100%;
    }
}

header .language {
    position: relative;
    display: inline-block;
}

header .language-select {
    position: relative;
    cursor: pointer;
    background: rgba(2, 119, 201, 0.95);
    color: #fff;
    padding: 10px 15px;
    min-width: 50px;
    text-align: center;
    transition: .3s all ease;
    font-weight: 600;
}
header .language-select:hover {
    color: var(--text-sandy);
}

header .language-select:hover::after{
    border-color: var(--text-sandy);
}
header .language-select::after {
    content: "";
    position: absolute;
    right: 0;
    top: 45%;
    transform: translateY(-50%) rotate(45deg);
    transition: .3s all ease;
    width: 7px;
    height: 7px;
    border-bottom: 2px solid #fff;
    border-right: 2px solid #fff;
}

header .language:hover .language-select::after {
    transform: translateY(-50%) rotate(225deg);
}

header .language-menu {
    z-index: 3;
    position: absolute;
    top: 120%;
    cursor: default;
    left: 0;
    background: rgba(2, 119, 201, 0.95);
    border-radius: 6px;
    list-style: none;
    min-width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
}

header .language:hover .language-menu {
    opacity: 1;
    visibility: visible;
}

header .language-menu li {
    text-align: center;
    position: relative;
}
header .language-menu li a {
    color: #fff;
    padding: 8px 15px;
    text-decoration: none;
    display: block;
    font-weight: 500;
    transition: .3s all ease;
}
header .language-menu li a:hover{
    color: var(--text-sandy);
}
header .language-menu li a.active{
    color: var(--text-sandy);
}
header .language-menu li:not(:last-child) a{
    border-bottom: 1px solid #ccc;
}
.hamburger-menu {
    position: fixed;
    right: 0;
    top: 0;
    width: 380px;
    height: 100%;
    transform: translateX(calc(100% + 80px));
    background: #0077d4;
    transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    z-index: 99999;
    overflow-y: scroll;
    overscroll-behavior-y: contain;
    scrollbar-width: none;
}
.hamburger-menu.active {
    transform: translateX(0);
    opacity: 1;
}
.hamburger-menu .hamburger-wrapper {
    position: relative;
    padding: 25px 20px 145px;
    z-index: 1;
    min-height: 100%;
}
.hamburger-menu .hamburger-menu-list{
    margin-top: 50px;
}
.hamburger-menu .hamburger-menu-list li {
    position: relative;
}
.hamburger-menu .hamburger-menu-list li a{
    transition: .3s all ease;
}
.hamburger-menu .hamburger-menu-list li a.active{
    color: var(--text-sandy);
}
.hamburger-menu .hamburger-menu-list li a:hover{
    color: var(--text-sandy);
}
.hamburger-menu .hamburger-menu-list li a,
.hamburger-menu .hamburger-menu-list li .current {
    display: block;
    position: relative;
    text-transform: uppercase;
    padding: 13px 0;
    color: #fff;
    border-bottom: 1px solid #ececec;
}
.hamburger-menu-list li .current.active {
    color: var(--text-sandy);
}
.hamburger-menu .mobile-languages{
    position: absolute;
    bottom: 25px;
    left: 0;
    right: 0;
    margin: 0 auto;
}
.hamburger-menu .mobile-languages ul{
    display: flex;
    align-items: center;
    gap: 0 25px;
    justify-content: center;
}
.mobile-languages  li a{
    font-size: 18px;
    color: #fff;
    text-transform: uppercase;
    padding-bottom: 5px;
    border-bottom: 1px solid transparent;
    transition: .3s all ease;
    font-weight: 600;
}
.mobile-languages  li a:hover{
    color: var(--text-sandy);
}
.mobile-languages  li a.active{
    border-color: var(--text-sandy);
    color: var(--text-sandy);
}
.hamburger-menu-list li .current.active::after {
    transform: rotate(225deg);
}
.hamburger-menu-list li .current:after {
    content: "";
    border: solid #fff;
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 3px;
    transform: rotate(45deg);
    position: absolute;
    top: 0;
    bottom: 0;
    right: 10px;
    margin: auto;
    transition: 0.3s all ease;
    height: 3px;
}
body.overflow-hidden {
    overflow: hidden;
}
.hamburger-menu-list li ul {
    padding: 10px 0 0 10px;
    display: none;
}
.hamburger-menu .hamburger-menu-list li ul a:hover {
    color: var(--text-sandy);
}
.hamburger-menu .hamburger_contacts {
    padding: 20px;
    border-radius: 5px;
    border: 1px solid #ececec;
    margin: 17px 0 30px 0;
    display: flex;
    flex-direction: column;
    gap: 15px 0;
}
.hamburger-menu .hamburger_contacts a {
    display: flex;
    align-content: center;
    gap: 0 10px;
}
.hamburger-menu .hamburger_contacts a i {
    color: #fff;
}
.hamburger-menu .switch_lang {
    padding: 0 15px;
}
.hamburger-menu .switch_lang ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0 15px;
}
.hamburger-menu .switch_lang ul li a {
    font-weight: 500;
}

.hamburger-wrapper .hamburger-close button {
    width: 40px;
    height: 40px;
    display: flex;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #115a9e;
    border-color: #115a9e;
    color: var(--text-white);
}
.hamburger-menu .hamburger-wrapper .hamburger-close {
    position: absolute;
    top: 25px;
    right: 20px;
}
.hamburger-menu .logo img{
    width: 50px;
    height: 50px;
}
body.disable{
    overflow: hidden;
}
.overlay {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    background: rgba(0, 0, 0, 0.8);
    z-index: 105;
    pointer-events: none;
}
.overlay.active {
    pointer-events: all;
    opacity: 1;
    visibility: visible;
}

header .header-logo a
{
    padding: 5px 0;
    display: block;
}

header .header-logo img{
    width: 100px;
}

header .links ul{
    display: flex;
    align-items: center;
}
header .links li:not(:last-child){
    margin-right: 40px;
}
header .links a{
    font-size: 18px;
    color: var(--text-white);
    transition: .3s all ease;
    text-decoration: none;
}
header .links a.active,
header .links a:hover{
    color: var(--text-sandy);
}
header .selected-title {
    color: #fff;
    font-weight: 500;
    cursor: pointer;
    position: relative;
    transition: .3s all ease;
    padding-right: 15px;
}
header .selected-title:hover,
header .weather-select.active .selected-title{
    color: var(--text-sandy);
}
header .selected-title:hover::after,
header .weather-select.active .selected-title::after{
    border-color: var(--text-sandy);
}
header .selected-title::after{
    content: "";
    position: absolute;
    right: 0;
    top: 45%;
    transform: translateY(-50%) rotate(45deg);
    transition: .3s all ease;
    width: 7px;
    height: 7px;
    border-bottom: 2px solid #fff;
    border-right: 2px solid #fff;
}
header .weather-select.active .cities-list {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}
header .cities-list {
    position: absolute;
    top: 100%;
    right: 0;
    width: max-content;
    background: rgba(2, 119, 201, 0.95);
    list-style: none;
    border-radius: 6px;
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: .3s all ease;
}
header .cities-list:hover{
    display: block;
}
header .cities-list li {
    padding: 8px 15px;
    color: #fff;
    cursor: pointer;
    transition: 0.3s;
}

header .cities-list li:hover {
    color: var(--text-sandy);
}

/* HERO */

.hero{
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    min-height: 400px;
    padding: 80px 0;
    display: flex;
    align-items: center;
    margin: 0;
}
.hero .hero-texts{

    color: var(--text-white);
}
.hero .hero-texts .hero-title{
    font-size: 38px;
}


/* SUB-NAVIGATION */
.sub-navigation{
    background-color: var(--bg-secondary-white);
    margin-bottom: 50px;
}
.sub-navigation .swiper-container{
    position: relative;
}
.sub-navigation .swiper-slide{
    width: fit-content !important;
}
.sub-navigation .swiper-slide .swiper-link{
    padding: 20px 0;
    color: var(--text-dark);
    display: block;
}
.sub-navigation .swiper-slide .swiper-link.active{
    font-weight: 600;
}
.sub-navigation .sub-menu li:not(:last-child){
    margin-right: 32px;
}

.sub-navigation .swiper-nav{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.sub-navigation .swiper-nav .slide-prev,
.sub-navigation .swiper-nav .slide-next{
    width: 32px;
    height: 32px;
    cursor: pointer;
    border-radius: 50%;
    color: #7f888f;
    background-color: #d5dadd;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
}
.sub-navigation .swiper-nav .slide-prev{
    left: 0;
}
.sub-navigation .swiper-nav .slide-next{
    right: 0;
}

/* SECTION INFORMATION */

.information .information-row {
    background-color: #0A0A09;
    color: var(--text-sandy);
    padding: 30px;
    background-position: right center;
    background-size: auto 100%;
    background-repeat: no-repeat;
    border-radius: 10px;
}
.information .information-wrapper .information-title{
    font-size: 27px;
    letter-spacing: 2px;
    margin-bottom: 20px;
}
.information-wrapper .information-texts .bolder-text{
    margin-bottom: 5px;
    font-weight: 600;
}
.information-wrapper .information-texts .information-text:not(:last-child){
    margin-bottom: 20px;
}

.information-text ul li{
    list-style: inside;
    list-style-type: lower-roman;
}
.information-text ul li:not(:last-child){
    margin-bottom: 5px;
}
.information-wrapper .information-texts{
    margin-bottom: 20px;
}
.information-wrapper .information-link,
.information-wrapper .information-link a{
    color: var(--text-white);
}


/* SECTION INFO BLOCK */

.info-block{
    margin-bottom: 50px;
}
.info-block .images{
    display: flex;
    align-items: center;
}
.info-block .image{
    width: 166px;
    height: 166px;
    border-radius: 50%;
    overflow: hidden;
    background-color: #CAC4BE;
}
.info-block .image:nth-child(n+1){
    margin-left: -40px;
}
.info-block .text-block:not(:last-child){
    margin-bottom: 20px;
}
.info-block .image.bordered{
    position: relative;
    z-index: 1;
    border: 1px solid var(--text-white);
}
.info-block .image:nth-child(2){
    z-index: 2;
}


/* PARTICIPANTS */

.bg-sandy{
    background-color: var(--bg-sandy);
}
.participants .block-row{
    padding: 30px 0;
}
.bg-sandy .block-title{
    font-weight: bold;
    font-size: 27px;
    margin-bottom: 30px;
}
.bg-sandy .text-content p{
    font-size: 16px;
    font-weight: 600;
}
.participants .text-content:not(:last-child){
    margin-bottom: 30px;
}
.participants .text-content p{
    margin-bottom: 20px;
}
.participants .text-content .action{
    display: flex;
}
.participants .text-content .action a{
    text-transform: uppercase;
    font-weight: 600;
    padding: 10px 20px;
    background-color: var(--action-bg-brown);
    color: var(--text-white);
}

/* REGISTRATION-INFO */

.registration-info .info-row .text-content,
.registration-info .info-row .text-content-bg{
    padding: 30px;
}
.registration-info .info-row .title{
    font-weight: 600;
    margin-bottom: 20px;
}

/* DOCUMENTATION-INFO */
.documentation-info .text-content{
    display: flex;
    flex-direction: column;
    gap: 20px 0;
}
.documentation-info .documentation-image img{
    object-fit: cover;
    object-position: center;
    max-height: 360px;
    width: 100%;
}

/* ORGANIZER */

.organizer .text-content,
.organizer .text-content p{
    margin-bottom: 20px;
}
.organizer .action a{
    font-weight: 600;
    color: var(--text-dark);
}
.organizer .organizer-images{
    display: flex;
    align-items: center;
    gap: 100px;
}
.organizer .organizer-images .image:first-child{
    position: relative;
}
.organizer .organizer-images .image:first-child::before{
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    right: -50px;
    height: 100%;
    width: 2px;
    background-color: var(--text-black);
}


/* VENUE */
.venue .venue-image img{
    object-fit: cover;
    object-position: center;
    width: 100%;
    min-height: 100%;
}
.venue .venue-content .texts{
    margin-bottom: 30px;
}
.venue-content .texts p:not(:last-child){
    margin-bottom: 20px;
}
.venue .venue-content .action a{
    background-color: var(--action-bg-brown);
    padding: 10px 0 10px 10px;
    display: inline-flex;
    width: 200px;
    color: var(--text-white);
}

/* USERFUL LINKS */

.useful-swiper .swiper-card{
    display: flex;
    position: relative;
    min-height: 400px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.useful-swiper .swiper-card .title{
    position: absolute;
    color: var(--text-white);
    left: 20px;
    bottom: 20px;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 27px;
    line-height: 130%;                                                                                                                   ;
}

/* FOOTER */
footer{
    background-color: #EDF2F5;
}

footer .footer-row{
    padding: 48px 0;
}
footer .col-title{
    padding: 24px 0;
    border-top: 1px solid #d5dadd;
    color: var(--secondary-black);
    font-weight: 600;
}
footer .footer-links{
    margin-left: 16px;
}
footer .footer-links .nav-item:not(:last-child){
    margin-bottom: 16px;
}
footer .footer-links .nav-item.icon-external i{
    margin-left: 5px;
    font-size: 12px;
}
footer .footer-links .nav-link{
    padding: 0;
}

footer .social-links{
    display: flex;
    flex-direction: column;
}
footer .social-links li:not(:last-child){
    margin-bottom: 16px;
}
footer .social-links .link-item{
    display: flex;
    align-items: center;
    color: var(--secondary-black);
}
.social-links .link-item span{
    margin-right: 16px;
    width: 32px;
    height: 32px;
    text-align: center;
    background-color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}


/* PAGE MEDIA */

.accreditation .accreditation-row{
    background-repeat: no-repeat;
    background-position: right;
}
.accreditation .accreditation-row .accreditation-texts{
    padding: 30px;
}
.accreditation-row .accreditation-texts p:not(:last-child){
    margin-bottom: 20px;
}
.accreditation-row .accreditation-texts ul{
    margin-bottom: 20px;
}
.accreditation-row .accreditation-texts ul li{
    list-style: initial;
    margin-left: 10px;
}


/* GALLERY */
.gallery .gallery-row{
    gap: 20px 0;
}
.gallery-row .image-card{
    position: relative;
    display: flex;
    align-items: center;
    color: var(--text-white);
    justify-content: center;
}
.gallery-row .image-card .image-title{
    position: absolute;
    bottom: 20px;
    left: 20px;
    font-size: 27px;
    color: var(--text-white);
    font-weight: bold;
    text-transform: uppercase;
}

.gallery-row .image-card img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.documentation-row.press-block .text-content{
    margin-bottom: 20px;
}
.documentation-row.press-block .info li{
    display: grid;
    grid-template-columns: 0.5fr 1fr;
}
.documentation-row.press-block .info .title-text{
    font-weight: 600;
}
.documentation-row.press-block .info a{
    color: var(--text-black);
    font-weight: 600;
}
.documentation-row.press-block .info li:first-child{
    margin-bottom: 20px;
}

.media-centre .block-row{
    padding: 30px 0;
}
.media-centre .block-row .media-image{
    height: 300px;
}
.registration .registration-texts p:not(:last-child){
    margin-bottom: 20px;
}

/* PAGE WEATHER */

.weather-content .cities-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
    gap: 10px;
    padding: 0;
    list-style: none;
}

.weather-content .cities-list li {
    text-align: center;
    word-wrap: break-word;
}


.weather-content .cities-list a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 12px;
    background: #f0f0f0;
    border-radius: 5px;
    text-decoration: none;
    color: #333;
    transition: background 0.3s;
}

.weather-content .cities-list a:hover,
.weather-content .cities-list a.selected {
    background: #007bff;
    color: #fff;
}
.weather-content .cities-wrapper{
    margin-bottom: 40px;
}

.weather-content .weather-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.weather-content .cont-block {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    flex: 1;
    min-width: 300px;
}

.weather-content h2, h3 {
    margin-bottom: 10px;
}

.weather-content .current-day {
    color: #666;
    font-size: 14px;
}

.weather-content .current-forecast {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 24px;
    margin: 10px 0;
}

.weather-content .current-forecast img {
    width: 50px;
    height: 50px;
}

.weather-content .current-forecast-desc {
    font-size: 18px;
    color: #444;
    font-weight: bold;
    margin-bottom: 10px;
}

.weather-content .current-forecast-details {
    display: flex;
    justify-content: space-between;
    text-align: left;
    font-size: 14px;
}

.weather-content .current-forecast-day {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    gap: 10px;
}

.weather-content .current-forecast-day .col-1,
.weather-content .current-forecast-day .col-2,
.weather-content .current-forecast-day .col-3 {
    flex: 1;
    text-align: center;
    background: #f9f9f9;
    padding: 10px;
    border-radius: 6px;
}

.weather-content .weather-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}

.weather-content .weather-table th, .weather-content .weather-table td {
    padding: 10px;
    border-bottom: 1px solid #ddd;
    text-align: center;
    word-break: break-word;
}
.weather-row-forecast .forecast-info{
    align-items: center;
    justify-content: center;
    gap: 0 10px;
}
.weather-row-forecast .forecast-icon{
    width: 40px;
    height: 40px;
}

.weather-content .weather-table th {
    background: #f4f4f4;
}

.weather-content .weather-row-day,
.weather-content .weather-row-day-short {
    font-weight: bold;
}
/* Контейнер */
.currency-container {
    margin: 40px auto;
}

/* Таблицы */
.currency-container .currency-table {
    width: 100%;
    background: #ffffff;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.currency-table .country-flag{
    border-radius: 50%;
}
.currency-container table tr th {
    color: #fff;
    background: #007bff;
    border-bottom: none;
    border-left: none;
    padding: 12px;
    text-align: center;
    white-space: nowrap;
}
.currency-container table tr th:first-child{
    text-align: left;
}
.currency-table td {
    padding: 12px;
}
.currency-table tbody tr td:first-child{
    text-align: left;
}
.currency-table tbody tr td{
    text-align: center;
    white-space: nowrap;
}
.currency-table .currency-info .country-flag{
    width: 24px;
    height: 24px;
    display: inline-block;
    background-size: cover;
}
.currency-table .currency-info{
    display: inline-flex;
    align-items: center;
    gap: 0 10px;
}
.currency-table tbody tr:nth-child(even) {
    background: #f8f9fa;
}

.currency-table tbody tr:hover {
    background: #cce5ff;
    transition: 0.3s ease-in-out;
}

.map-container {
    width: 100%;
    height: 600px;
}

#map {
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

@media (max-width: 768px) {
    .map-container {
        height: 300px;
    }
}

@media all and (max-width: 1400px){
    .weather-content .weather-table th,
    .weather-content .weather-table td{
        font-size: 14px;
    }
}

@media all and (max-width: 1200px){
    .currency-container .currency-table{
        font-size: 14px;
    }
    .currency-container {
        flex-direction: column;
        gap: 30px 0;
    }
    .currency-container .currency-table {
        overflow-x: auto;
        white-space: nowrap;
    }
    .info-block .image{
        width: 140px;
        height: 140px;
    }
    header .menu-list li:not(:last-child) {
        margin-right: 30px;
    }
    header .header-logo img{
        width: 220px;
    }
    .sub-navigation .swiper-container{
        padding: 0 40px;
        overflow: hidden;
    }
    .sub-navigation .swiper-nav .slide-prev, .sub-navigation .swiper-nav .slide-next{
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .accreditation .accreditation-row{
        background-image: none !important;
    }
}
@media all and (max-width: 992px){
    header .header-menu{
        display: none;
    }
    .weather-content .weather-wrapper{
        flex-direction: column;
        gap: 20px 0;
    }
    header .header-links{
        align-items: center;
    }
    header .weather-wrapper{
        display: none;
    }
    header{
        padding: 20px 0;
    }
    header .header-top{
        display: none !important;
    }
    .registration-info .info-row .text-content{
        padding: 0;
    }
    .information .information-row{
        padding: 20px;
    }
    .info-block .images{
        justify-content: center !important;
    }
    .registration-info .info-row .text-content-bg{
        padding: 20px;
    }
    footer .col-title{
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    footer .col-title.dropdown-toggle::after{
        content: "\f078";
        font-family: 'Font Awesome 6 Free';
        font-weight: 600;
        border: none;
        vertical-align: middle;
        margin-left: 5px;
        font-size: 12px;
        transition: .3s all ease;
    }
    footer .col-title.dropdown-toggle:not(.collapsed)::after{
        transform: rotate(180deg);
    }
    footer .footer-links{
        margin-bottom: 16px;
    }
}

@media all and (max-width: 768px){
    header .header-logo a
    {
        padding: 0;
    }
    header .header-logo img
    {
        width: 50px;
    }
    .currency-container .currency-table {
        display: block;
    }
    .useful-swiper .swiper-card .title{
        font-size: 24px;
    }
    .hero .hero-texts .hero-title{
        font-size: 32px;
    }
}

@media all and (max-width: 576px){
    .currency-container {
        gap: 10px;
    }

    .currency-table th,
    .currency-table td {
        padding: 8px;
    }
    .hero .hero-texts .hero-title{
        font-size: 27px;
    }
    .hamburger-menu{
        width: 100%;
    }
    .hero{
        margin-bottom: 40px;
    }
    .sub-navigation{
        display: none;
    }
}
