@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=JetBrains+Mono:ital,wght@0,100..800;1,100..800&family=Jost:ital,wght@0,100..900;1,100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Rubik+Mono+One&family=Sen:wght@400..800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --swiper-theme-color: #6981df;
}

.mobile {
    display: none;
}

html {
    font-size: 1.61vh;
}

body {
    background-image: url('../assets/desktop/bg.png');
    background-size: cover;
    background-position: top right;
    background-attachment: fixed;
    background-repeat: no-repeat;
}

main {
    padding-top: 6.3rem;
}

section {
    min-height: 89vh;
    scroll-margin-top: 6rem;
}

h1 {
    font-family: "Jost", sans-serif;
    text-align: center;
    font-size: 2.7rem;
    font-weight: 700;

    padding-top: 2rem;
    padding-bottom: 2rem;
    
}

h2 {
    font-family: "Jost", sans-serif;
    text-align: left;
    font-size: 2rem;
    font-weight: 700;
    padding-bottom: 2rem;
}

header {
    display: flex;
    align-items: center;
    justify-content: space-between;

    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-size: 1.5rem;
    font-weight: 750;
    font-style: normal;

    position: fixed;
    
    height: 6.3rem;
    width: 100%;
    background-color: white;

    z-index: 1000;
}

header .logo{
    display: flex;
    flex-direction: row;
    align-items: center;
}

header .logo a {
    height: 6rem;
    padding-left: 0.7rem;
}

header .logo img {
    height: 100%;
}

/* Стили меню */
.desktop-nav {
    width: 100%;
}

.main-nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
}

.main-nav li {
    margin: 0 0.4rem;
}

.main-nav a {
    color: black;
    text-decoration: none;
    padding: 0.5rem 1rem;
    display: block;
}

.main-nav a:hover {
    background-color: #d1cfff;
    border-radius: 1rem;
}

/* Контейнер для подменю (общий) */
.submenu-container {
    position: absolute;
    top: 5rem;          /* сразу под шапкой */
    left: 0;
    width: 100%;
    background-color: transparent;
    display: flex;
    justify-content: center;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.2s ease, visibility 0.2s;
}

.submenu-container.active {
    visibility: visible;
    opacity: 1;
}

/* Сами подменю (горизонтальные ряды) */
.submenu {
    display: none;      /* скрыты по умолчанию */
    background-color: white;
    justify-content: center;
    padding: 1rem;
    gap: 0.5rem;
    border-radius: 1rem;
}

#submenu-org {
    margin-left: 45rem;
}

.submenu.active {
    display: flex;      /* показывается активное подменю */
}

.submenu a {
    color: #000000;
    text-decoration: none;
    padding: 5px 15px;
    background-color: transparent;
}

.submenu a:hover {
    border-radius: 1rem;
}

#submenu-t6 a:hover{
    background-color: #ccffcc;
}

#submenu-a2 a:hover{
    background-color: #fcded4;
}

#submenu-org a:hover {
    background-color: #d1cfff;
}

.t6 a:hover{
    background-color: #ccffcc;
}

.a2 a:hover{
    background-color: #fcded4;
}

.org a:hover{
    background-color: #d1cfff;
}

.current a{
    color: #596dbd;
}

.current a:hover {
    background-color: white;
}

header button {
    all: unset;
    cursor: pointer;
    height: 3.8rem;
    width: 3.8rem;

    position: fixed;
    right: 0.7rem;
    top: 0.7rem;

    z-index: 1001;

    background-color: #d6b8eb;
    border-radius: 1rem;
    padding: 0.3rem;
}

button img {
    height: 100%;
}

.mobile-menu-container {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: 1000;
    padding: 7rem 2rem;
    overflow-y: auto;
}

/* Когда меню открыто, показываем контейнер */
.mobile-menu-container.open {
    display: block;
}

/* Стили для пунктов меню (генерируются скриптом) */
.mobile-menu-container ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu-container li {
    border-bottom: 1px solid #eee;
}

.mobile-menu-container li a {
    display: block;
    padding: 15px 0;
    text-decoration: none;
    color: #333;
    font-weight: bold;
    padding-left: 1.5rem;
}

.mobile-menu-container .has-submenu a {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Пункт с подменю */
.mobile-menu-container .has-submenu .submenu-toggle {
    position: relative;
    right: 0;
    top: 0;
    width: 4rem;
    height: 100%;
    z-index: 1005;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 2rem;
    user-select: none;
}

.mobile-menu-container .submenu {
    display: none;
    padding-left: 2.5rem;
}

.mobile-menu-container .submenu.open {
    display: block;
}

.mobile-menu-container .submenu a {
    font-weight: normal;
    padding: 10px 0;
    font-size: 0.9em;
}

/**************************
**********О НАС************
**************************/

#about {
    padding: 0rem 5rem 0rem;
}

#about h1 {
    padding-bottom: 2rem;
}

#about .about-box {
    display: flex;
    flex-direction: row;
    background-color: rgba(255, 255, 255, 0.6);
    box-shadow: 0 0 30px 20px rgba(255, 255, 255, 0.4); 
    border-radius: 4rem;
    align-items: center; 
}

#about .about-box img {
    height: 40rem;
    border-radius: 4rem;
}

#about .about-box p {
    font-family: "Inter", sans-serif;
    font-size: 1.7rem;
    font-weight: 500;
    
    padding: 3rem 4rem 2rem;
    flex: 1;
}

/**************************
**********СЕКЦИЯ T6********
**************************/

#about-t6 {
    min-height: 0rem;
    padding-bottom: 1rem;
    padding: 0rem 5rem 1rem;
}

#about-t6 h1 {
    padding-bottom: 2rem;
}

#about-t6 .t6-box {
    display: flex;
    flex-direction: row;
    background-color: rgba(255, 255, 255, 0.6);
    box-shadow: 0 0 30px 20px rgba(255, 255, 255, 0.4);
    border-radius: 4rem;
    align-items: center; 
}

#about-t6 p {
    font-family: "Inter", sans-serif;
    font-size: 1.8rem;
    font-weight: 500;
    padding: 3rem 4rem 2rem;
    flex: 1;
}

#about-t6 img {
    border-radius: 4rem;
}

/**************************
**********СЕКЦИЯ 2a2*******
**************************/

#about-2a2 {
    min-height: 0rem;
    padding-bottom: 1rem;
    padding: 0rem 5rem 1rem;
}

#about-2a2 h1 {
    padding-bottom: 2rem;
}

#about-2a2 .a2-box {
    display: flex;
    flex-direction: row;
    background-color: rgba(255, 255, 255, 0.6);
    box-shadow: 0 0 30px 20px rgba(255, 255, 255, 0.4);
    border-radius: 4rem;
    align-items: center; 
}

#about-2a2 p {
    font-family: "Inter", sans-serif;
    font-size: 1.7rem;
    font-weight: 500;
    padding: 2rem 3rem 1rem;
    flex: 1;
}

#about-2a2 img {
    border-radius: 4rem;
}


.mySwiper {
    width: 40%;
    height: auto; /* Высота по содержимому */
    aspect-ratio: 4/3; /* Соотношение сторон изображений */
    flex-shrink: 0;
    border-radius: 4rem;
    overflow: hidden;
}

.swiper-slide {
    width: 100%;
    height: 100%;
}

.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Изображение целиком, с возможными полями */
    /* или object-fit: cover; если хотите обрезать */
    border-radius: 4rem;
}

.swiper-button-next, .swiper-button-prev {
    color: #6981df;
}
/**************************
**********ПРОГРАММА********
**************************/
#program {
    padding-bottom: 4rem;
}

#program h1 {
    padding-bottom: 0.7rem;
}

#program .day-selector {
    display: flex;
    justify-content: center;
    padding-bottom: 2rem;
}

#program button {
    all: unset;
    font-family: "Inter", sans-serif;
    text-align: center;
    font-size: 2.2rem;
    font-weight: 800;
    padding: 0.7rem 1rem;
    margin: 0rem 0.4rem 0rem;
    border-radius: 1rem;
}

#program .day-btn.active {
    background-color: #c30000;
    color: white;
    box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.8);
}

#program .day-btn:not(.active):hover{
    color: #6981df;
    cursor: pointer;
}

#program .program {
  display: none;
  font-family: "Inter", sans-serif;
  font-weight: 700;
}

#program .program.active {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  min-height: 60vh;
}

#program .program .program-row {
    display: flex;
    align-items: center;
}

#program .program .program-row .time-point{
    display: flex;
    width: auto;
    justify-content: right;
    align-items: center;
    font-size: 2.4rem;
    font-style: italic;
    margin: 1rem;
    height: 4rem;
}

#program .program .program-row .event{
    font-size: 1.5rem;
    background-color: #ffffff60;
    padding-top: 0.8rem;
    padding-bottom: 0.6rem;
    width: 55rem;
    margin: 1rem;
    text-align: center;

    border-radius: 1rem;
    border-width: 4px;
    border-color: #6981df;
    border-style: solid;
    box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.8);
}

/**************************
**********ПОБЕДИТЕЛИ*******
**************************/

#winers {
    padding-bottom: 1rem;
}

#winers .space {
    height: 3rem;
}
#winers h1 {
    padding-bottom: 0.4rem;
}

#winers .year-selector {
    display: flex;
    justify-content: center;
    padding-bottom: 0rem;
}

#winers button {
    all: unset;
    font-family: "Inter", sans-serif;
    text-align: center;
    font-size: 2.2rem;
    font-weight: 800;
    padding: 0.7rem 1rem;
    margin: 0rem 0.4rem 0rem;
    border-radius: 1rem;
}

#winers .year-btn.active {
    background-color: #c30000;
    color: white;
    box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.8);
}
#winers .year-btn:not(.active):hover {
  color: #6981df;
  cursor: pointer;
}

#winers .winers-cards {
  display: none;
  font-family: "Inter", sans-serif;
  font-weight: 700;
}

#winers .winers-cards.active {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  padding-top: 2rem;
}

#winers .winner-card {
    width: 55rem;
    
    background-color: rgba(255, 255, 255, 0.6);
    box-shadow: 0 0 30px 20px rgba(255, 255, 255, 0.4); 
    
    border-radius: 1rem;
    border-width: 5px;
    border-color: #bb90e0;
    border-style: solid;

    padding: 0.5rem 2rem 1.7rem;
    margin-bottom: 3rem;
}

#winers .winner-card h1 {
    padding: 0;
    font-family: "Inter", sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    padding-bottom: 0.3rem;
    text-align: center;
}

#winers .winner-card h2 {
    padding: 0;
    text-align: center;
    font-family: "Montserrat", sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: #6981df;
    padding-bottom: 0.5rem;
}

#winers .winner-card p {
    padding: 0;
    font-size: 1.4rem;
    font-weight: 400;
    font-style: italic;
    padding-bottom: 0.5rem;
}

#winers .winner-card p.locat {
    padding: 0;
    font-size: 1.4rem;
    font-weight: 700;
    font-style: italic;
}

#winers .winner-card hr{
    margin-top: 1rem;
    margin-bottom: 0.7rem;
}

/**************************
*********ОРГАНИЗАТОРЫ******
**************************/

#organizers .org-boxes{
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 5vw;
    z-index: 0;
}

#organizers .org-box {
    display: flex;
    flex-direction: row;
    align-items: center;

    margin-bottom: 2rem;
    height: 12rem;
    
    background-color: rgba(255, 255, 255, 0.6);
    border-radius: 6rem 0rem 0rem 6rem;
    z-index: 0;
}

#organizers .org-box .avatar {
    height: 12rem;
    width: 12rem;

    border-radius: 100%;
    border-width: 6px;
    border-color: #6981df;
    border-style: solid;
    background-color: transparent;
}

#organizers .org-box .avatar img {
    height: 100%;
    border-radius: 100%;
}

#organizers .org-box p {
    font-family: "Inter", sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    text-align: center;
    width: 100%;
}

#organizers .org-boxes .glushkov-box {
    flex-direction: row-reverse;
    border-radius: 0 6rem 6rem 0rem;
}

#organizers .org-boxes .kuznecov-box {
    flex-direction: row-reverse;
    border-radius: 0 6rem 6rem 0rem;
}

#organizers .garnov-box {
    position: relative;
    left: 9vw;
    width: 90vw;
    height: 16rem;

    border-radius: 8rem 0rem 0rem 8rem;
}

#organizers .garnov-box .avatar{
    height: 16rem;
    width: 16rem;
}

#organizers .garnov-box p{
    font-size: 1.7rem;
}

/**************************
*********ЛЕКТОРЫ***********
**************************/

#lecturers h1 {
    padding-bottom: 4rem;
}

#lecturers .lecturer-boxes {
    display: flex;
    justify-content: center;
    flex-direction: row;
    flex-wrap: wrap;
    padding-bottom: 1rem;
}

#lecturers .lecturer-box {
    display: flex;
    align-items: center;
    flex-direction: column;

    width: 18rem;

    margin-right: 0.7rem;
    margin-left: 0.7rem;
    margin-bottom: 7rem;
}

#lecturers .lecturer-box .avatar{
    height: 11rem;
    width: 11rem;
    border-radius: 100%;
    border-width: 3px;
    border-color: #6981df;
    border-style: solid;

    border-radius: 100%;
}

#lecturers .lecturer-box .avatar img {
    height: 100%;
    border-radius: 100%;
    background-color: transparent;
}

#lecturers .lecturer-box p {
    font-family: "Inter", sans-serif;
    font-size: 1rem;
    font-weight: 500;
    text-align: center;
    width: 100%;
    line-height: 1.1rem;
    padding-top: 1.2rem;
}

/**************************
**********КОНТАКТЫ*********
**************************/

#contacts {
    padding: 0rem 10rem;
}

#contacts .contacts-box {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

#contacts .contacts-box .map-box {
    padding: 1rem;
}

#contacts .contacts-box .map-box iframe {
    height: 25rem;
    width: 40rem;

    border-radius: 1rem;
    box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.8);
}

#contacts .card-box {
    font-family: "Jost", sans-serif;
    display: flex;
    flex-direction: column;
}

#contacts .card-box .card {
    border-radius: 1rem;
    background-color: #ffffff60;
    padding: 0.7rem 1rem;
    margin: 1rem;
}

#contacts .card-box .card span {
    font-size: 2rem;
    font-weight: 900;
}

#contacts .card-box .card p {
    font-size: 1.6rem;
    font-weight: 500;
}

#contacts .logo-box {
    padding-top: 3rem;
    display: flex;
    flex-direction: row;
}

#contacts .logo-box .logo {
    padding-right: 5rem;
    padding-left: 2rem;
}

#contacts .logo-box .logo a {
    height: 8rem;
}

#contacts .logo-box .logo a img {
    height: 8rem;
}




@media (max-width: 799px) {
    body {
        background-image: url('../assets/mobile/bg.jpg');
        background-position: center top;
        width: 100vw;
        min-height: 0vh;        z-index: 0;
    }

    main {
        padding-top: 0rem;
    }

    section {
        min-height: 0vh;
        scroll-margin-top: 0rem;
    }
    
    .desktop {
        display: none;
    }

    .mobile {
        display: block;
    }

    header {
        display: inline-block;

        font-family: "Inter", sans-serif;
        font-optical-sizing: auto;
        font-size: 1.5rem;
        font-weight: 750;
        font-style: normal;

        
        height: 0rem;
        background-color: transparent;
    }

    header .logo {
        display: none;
    }

    header .logo.visible {
        position: absolute;
        top: 0.4rem;
        left: 0.4rem;
        display: flex;
        flex-direction: row-reverse;
        z-index: 1010;
    }

    header .logo a {
        display: block;
        height: 5.5rem;
        padding-left: 0rem;
    }

    /**************************
    **********О НАС************
    **************************/
    #about {
        padding: 0rem 2rem 0rem;
    }

    #about h1 {
        text-align: left;
        font-size: 1.8rem;
        padding-bottom: 2rem;
        padding-left: 2rem;
    }

    #about .about-box {
        border-radius: 1rem;
        flex-direction: column;
    }

    #about .about-box img {
        width: 100%;
        height: auto;
        border-radius: 1rem;
    }

    #about .about-box p {
        font-family: "Inter", sans-serif;
        font-size: 1.3rem;
        font-weight: 500;
        padding: 1rem 1rem;
    }

    /**************************
    **********СЕКЦИИ***********
    **************************/

    #about-t6 {
        padding: 0rem 2rem 1rem;
    }
    
    #about-t6 h1 {
        text-align: left;
        font-size: 1.8rem;
        padding-bottom: 1rem;
        padding-left: 2rem;
    }

    #about-t6 .t6-box {
        flex-direction: column-reverse;
        border-radius: 1rem;
    }

    #about-t6 img {
        width: 100%;
        border-radius: 1rem;
    }

    #about-t6 p {
        font-family: "Inter", sans-serif;
        font-size: 1.3rem;
        font-weight: 500;
        padding: 1rem 1rem;
    }
    

    #about-2a2 {
        padding: 0rem 2rem 1rem;
    }
    
    #about-2a2 h1 {
        text-align: left;
        font-size: 1.8rem;
        padding-bottom: 1rem;
        padding-left: 2rem;
    }

    #about-2a2 .a2-box {
        flex-direction: column-reverse;
        border-radius: 1rem;
    }

    #about-2a2 img {
        width: 100%;
        border-radius: 1rem;
    }

    #about-2a2 p {
        font-family: "Inter", sans-serif;
        font-size: 1.3rem;
        font-weight: 500;
        padding: 1rem 1rem;
    }

    .mySwiper {
        width: 100%;
        border-radius: 1rem;
    }

    /**************************
    **********ПРОГРАММА********
    **************************/
    #program {
        min-height: 0rem;
        padding-bottom: 1rem;
    }

    #program h1 {
        text-align: left;
        font-size: 1.8rem;
        padding-top: 1rem;
        padding-bottom: 1rem;
        padding-left: 2rem;
    }

    #program .program.active {
    min-height: 50vh;
    }

    #program .day-selector {
        display: flex;
        justify-content: center;
        padding-bottom: 1rem;
    }

    #program button {
        font-size: 1.3rem;
        font-weight: 800;
        padding: 0.6rem 0.7rem;
        margin: 0rem 0.1rem 0rem;
        border-radius: 0.7rem;
    }

    #program .program .program-row .time-point{
        font-size: 1.5rem;
        margin-right: 1rem;
        height: auto;
    }

    #program .program .program-row .event{
        font-size: 0.8rem;
        padding-top: 0.3rem;
        padding-bottom: 0.2rem;
        width: 18rem;
        margin: 0rem;

        border-radius: 0.8rem;
        border-width: 4px;

        box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.8);
    }

    #program .day-btn.active {
        background-color: #c30000;
        color: white;
        box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.8);
    }

    /**************************
    **********ПОБЕДИТЕЛИ*******
    **************************/

    #winers .space {
        height: 3rem;
    }
    #winers h1 {
        text-align: left;
        font-size: 1.8rem;
        padding-bottom: 1rem;
        padding-left: 2rem;
    }

    #winers .year-selector {
        display: flex;
        justify-content: center;
        padding-bottom: 0rem;
    }

    #winers button {
        all: unset;
        font-family: "Inter", sans-serif;
        text-align: center;
        font-size: 1.8rem;
        font-weight: 800;
        padding: 0.6rem 0.8rem;
        margin: 0rem 0.4rem 0rem;
        border-radius: 1rem;
    }

    #winers .year-btn.active {
        background-color: #c30000;
        color: white;
        box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.8);
    }

    #winers .winers-cards {
    display: none;
    font-family: "Inter", sans-serif;
    font-weight: 700;
    }

    #winers .winers-cards.active {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    padding-top: 2rem;
    }

    #winers .winner-card {
        width: 23rem;
        
        background-color: rgba(255, 255, 255, 0.6);
        box-shadow: 0 0 15px 10px rgba(255, 255, 255, 0.4); 
        
        border-radius: 1rem;
        border-width: 5px;

        padding: 0.3rem 1rem 0.8rem;
        margin-bottom: 1.5rem;
    }

    #winers .winner-card h1 {
        font-size: 0.9rem;
        padding-bottom: 0.2rem;
    }

    #winers .winner-card h2 {
        font-size: 0.8rem;
        padding-bottom: 0.3rem;
    }

    #winers .winner-card p {
        font-size: 0.7rem;
        padding-bottom: 0.3rem;
    }

    #winers .winner-card p.locat {
        font-size: 0.6rem;
        line-height: 1.3;
    }

    #winers .winner-card hr{
        margin-top: 0.5rem;
        margin-bottom: 0.4rem;
    }

    /**************************
    *********ОРГАНИЗАТОРЫ******
    **************************/

    #organizers .org-boxes .glushkov-box {
        flex-direction: row;
        border-radius: 6rem 0rem 0rem 6rem;
    }

    #organizers .org-boxes .kuznecov-box {
        flex-direction: row;
        border-radius: 3.5rem 0rem 0rem 3.5rem;
    }

    #organizers h1 {
        width: 70vw;
        padding-top: 2rem;
        padding-left: 1rem;
        font-size: 1.5rem;
    }

    #organizers .org-boxes {
        display: flex;
        flex-direction: column;
    }

    #organizers .org-box {
        position: relative;
        margin-bottom: 1.2rem;
        height: 7rem;
        left: 5vw;
        width: 95vw;
    }
    
    #organizers .org-box .avatar {
        height: 7rem;
        width: 7rem;
        border-width: 5px;
    }

    #organizers .org-box p {
        font-size: 0.7rem;
    }

    #organizers .garnov-box {
        flex-direction: row-reverse;
        left: 0;
        width: 95vw;
        height: 9rem;

        border-radius: 0rem 4.5rem 4.5rem 0rem;
    }

    #organizers .garnov-box .avatar{
        height: 9rem;
        width: 9rem;
    }

    #organizers .garnov-box p{
        font-size: 0.8rem;
        font-weight: 700;
    }


    /**************************
    *********ЛЕКТОРЫ***********
    **************************/
    
    #lecturers h1 {
        font-size: 1.5rem;
        padding-top: 2rem;
        padding-bottom: 2rem;
    }

    #lecturers .lecturer-box {
        width: 11rem;

        margin-bottom: 2rem;
        margin-left: 0;
        margin-right: 0;
    }

    #lecturers .lecturer-box .avatar{
        height: 7rem;
        width: 7rem;
    }

    #lecturers .lecturer-box .avatar img {
        border-width: 4px;
    }

    #lecturers .lecturer-box p {
        font-size: 0.6rem;
        font-weight: 700;
        line-height: 0.7rem;
        padding-top: 0.7rem;
    }

    /**************************
    **********КОНТАКТЫ*********
    **************************/

    #contacts {
        padding: 0rem 0rem;
    }

    #contacts h1{
        padding-top: 1.5rem;
        padding-bottom: 1.5rem;
        padding-left: 3rem;
        text-align: left;
    }

    #contacts .contacts-box {
        flex-direction: column-reverse;
        align-items: center;
        width: 100vw;
    }
    #contacts .contacts-box .map-box {
       width: 100%;
    }

    #contacts .contacts-box .map-box iframe {
        height: 17rem;
        width: 100%;

        border-radius: 1rem;
        box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.8);
    }

    #contacts .card-box .card {
        width: auto;
        border-radius: 1rem;
        background-color: #ffffff60;
        padding: 0.7rem 1rem;
        margin: 0.5rem 1rem;
    }

    #contacts .card-box .card span {
        font-size: 1.7rem;
    }

    #contacts .card-box .card p {
        font-size: 1.3rem;
    }

    #contacts .logo-box {
        padding-top: 2rem;
        padding-bottom: 2rem;
        justify-content: space-around;
    }

    #contacts .logo-box .logo {
        padding: 0rem;
    }

    #contacts .logo-box .logo a {
        height: 5rem;
    }

    #contacts .logo-box .logo a img {
        height: 5rem;
    }
}
