@import "style-program.css";
@import "style-conf-form.css";
@import "style-lightbox-lektori.css";

:root {
    --max-width: 1230px;
    --max-width-gallery: 1600px;

    --fw-light: 300;
    --fw-regular: 400;
    --fw-medium: 500;
    --fw-semibold: 600;
    --fw-bold: 700;
    --fw-extrabold: 800;
    --fw-black: 900;
}


*,
*::before,
*::after {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}


body {
    -webkit-font-smoothing: auto;
    text-rendering: optimizeLegibility;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    overflow-x: hidden;
}

h1,
h2,
h3,
ul {
    margin: 0;
    padding: 0;
}

ul li {
    list-style-type: none;
}

a {
    text-decoration: none;
    color: black;
}

/* -------- typography --------*/
.fw-light {
    font-weight: var(--fw-light);
}

.fw-regular {
    font-weight: var(--fw-regular);
}

.fw-medium {
    font-weight: var(--fw-medium);
}

.fw-semibold {
    font-weight: var(--fw-semibold);
}

.fw-bold {
    font-weight: var(--fw-bold);
}

.fw-extrabold,
.fw-extrabold > * {
    font-weight: var(--fw-extrabold) !important;
}

.fw-black,
.fw-black > * {
    font-weight: var(--fw-black) !important;
}

.font-size-15 {
    font-size: 15px;
}

.font-size-18 {
    font-size: 18px;
}

.font-size-24 {
    font-size: 24px;
}

.font-size-32 {
    font-size: 32px;
}

.font-size-36 {
    font-size: 36px;
}

.font-size-48,
.font-size-48 > h2 {
    font-size: 48px;
}

.font-size-64 {
    font-size: 64px;
}

.uppercase {
    text-transform: uppercase;
}

.ta-center {
    text-align: center;
}

.no-wrap {
    white-space: nowrap;
}



/* -------- layout --------*/
.main-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
}

.content {
    width: 100%;
    max-width: var(--max-width);
}

.content-gallery {
    width: var(--max-width-gallery);
}

.content-gallery div {
    aspect-ratio: 1/1;
}

.flex {
    display: flex;
}

.flex-between {
    display: flex;
    justify-content: space-between;
}

.justify-right {
    justify-content: right;
}

.justify-left {
    justify-content: left;
}

.justify-center {
    justify-content: center;
}

.align-items {
    align-items: center;
}

.gap-5 {
    gap: 5px;
}

.gap-10 {
    gap: 10px;
}

.gap-20 {
    gap: 20px;
}

.gap-30 {
    gap: 30px;
}

.gap-50 {
    gap: 50px;
}

.padding-5 {
    padding: 5px;
}

.padding-10 {
    padding: 10px;
}

.padding-15 {
    padding: 15px;
}

.padding-20 {
    padding: 20px;
}

.padding-top-bottom-20 {
    padding: 20px 0;
}

.padding-top-bottom-30 {
    padding: 30px 0;
}

.padding-bottom-30 {
    padding-bottom: 30px;
}

.padding-top-50 {
    padding-top: 50px;
}


.margin-0,
.margin-0 > h2 {
    margin: 0px;
}

.margin-30 {
    margin: 30px 0;
}

.margin-bottom-0 {
    margin-bottom: 0px;
}

.margin-bottom-5 {
    margin-bottom: 5px;
}

.margin-bottom-20 {
    margin-bottom: 20px;
}

.margin-bottom-30 {
    margin-bottom: 30px;
}

.margin-top-0 {
    margin-top: 0px;
}

.margin-top-10 {
    margin-top: 10px;
}

.margin-top-20 {
    margin-top: 20px;
}

.margin-top-30 {
    margin-top: 30px;
}

.margin-top-40 {
    margin-top: 40px;
}

.margin-top-50 {
    margin-top: 50px;
}

.margin-top-bottom-30 {
    margin: 30px 0;
}

.margin-p-10 p{
    margin: 10px 0;
}

.border-radius-10 {
    border-radius: 10px;
}

.border-radius-20 {
    border-radius: 20px;
}

.wrap {
    flex-wrap: wrap;
}

.width-100 {
    width: 100%;
}

.width-90 {
    width: 90%;
}

.width-80 {
    width: 80%;
}

.width-70 {
    width: 70%;
}

.width-60 {
    width: 60%;
}

.width-66-66 {
    width: 66.66%;
}

.width-50 {
    width: 50%;
}

.width-40 {
    width: 40%;
}

.width-30 {
    width: 30%;
}

.width-33-33 {
    width: 33.33%;
}

.width-20 {
    width: 20%;
}

.width-10 {
    width: 10%;
}

.max-width-100 {
    max-width: 100%;
}

.flex-direction-column {
    flex-direction: column;
}

.content-gallery div {
    transition: all 0.3s;
}

.content-gallery div:hover {
    rotate: 0deg !important;
    transition: all 0.3s;
    cursor: pointer;
}


.content-gallery .img-box {
    min-width: 250px;
    min-height: 250px;
    border: 1px solid black;
    overflow: hidden;
}

.content-gallery .img-box img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.relative {
    position: relative;
}

/* -------- colors --------*/
.bg-black {
    background-color: black;
}

.bg-white {
    background-color: white;
}

.text-white {
    color: white;
}

.text-black {
    color: black;
}


/* -------- custom --------*/
.shop-link {
    display: flex;
    width: 35px;
    height: 35px;
    align-items: center;
    justify-content: center;
}

.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  width: 44px;
  height: 44px;
  cursor: pointer;
}

/* ikonka hamburgeru */
.nav-toggle-icon {
  display: block;
  width: 26px;
  height: 2px;
  background: currentColor;
  position: relative;
  margin: 0 auto;
}

.nav-toggle-icon::before,
.nav-toggle-icon::after {
  content: "";
  position: absolute;
  left: 0;
  width: 26px;
  height: 2px;
  background: currentColor;
  transition: transform .2s ease, top .2s ease, opacity .2s ease;
}

.nav-toggle-icon::before { top: -8px; }
.nav-toggle-icon::after  { top:  8px; }

.menu-item > a,
.current-menu-item > a {
    position: relative;
}

.menu-item:hover > a::after,
.current-menu-item > a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -8px; /* doladíš podľa potreby */
    transform: translateX(-50%);

    width: 0;
    height: 0;

    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid #000; /* čierny trojuholník */
}

.hero-topics{
  overflow: hidden;
  white-space: nowrap;
  background-color: black;
  color: white;
  text-transform: uppercase;
  padding: 15px 0;
  font-size: 18px;
  border-radius: 10px;
  font-weight: 600;
}

.hero-topics__track{
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  will-change: transform;
  animation: heroTopicsScroll 35s linear infinite;
}

/* bullet medzi položkami */
.hero-topics__track .hero-topic{
  display: inline-flex;
  align-items: center;
}

.hero-topics__track .hero-topic:not(:last-child)::after{
  content: " • ";
  margin: 0 18px; /* medzery okolo bulletu */
}

@keyframes heroTopicsScroll{
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.count-box {
    padding: 7px 0;
    border: 1px solid black;
    border-radius: 20px;
    min-width: 200px;
}



/* -------------- lightobx --------------- */

.raabe-lightbox{
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
}

.raabe-lightbox.is-open{
  display: block;
}

.raabe-lightbox__backdrop{
  position:absolute;
  inset:0;
  background: rgba(0,0,0,.85);
}

.raabe-lightbox__content{
  position:absolute;
  inset: 0;
  display:flex;
  align-items:center;
  justify-content:center;
  padding: 24px;
}

.raabe-lightbox__img{
  max-width: min(1200px, 95vw);
  max-height: 90vh;
  width: auto;
  height: auto;
  display:block;
  border-radius: 14px;
  cursor: zoom-out;
}

.raabe-lightbox__btn{
  position:absolute;
  top: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor:pointer;
}

.raabe-lightbox__nav{
  position:absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  color: #fff;
  font-size: 32px;
  cursor:pointer;
}

.raabe-lightbox__prev{ left: 16px; }
.raabe-lightbox__next{ right: 16px; }

@media (max-width: 640px){
  .raabe-lightbox__prev{ left: 8px; }
  .raabe-lightbox__next{ right: 8px; }
  .raabe-lightbox__btn{ top: 8px; right: 8px; }
}

.raabe-lightbox__content{
  touch-action: pan-y; /* nech mobil neblokuje vertikálne scroll gestá úplne */
}


.hp-field {
  position: absolute;
  left: -100vw;
}

.info ul {
    margin: 10px 0 20px 0;
}

.info ul li {
    list-style-type: disc;
    margin-left: 20px;
    margin-bottom: 10px;
}

.lektor-box {
    width: calc(33.33% - 30px);
}

.lektor-img {
    width: 180px;
    height: 170px;
    overflow: hidden;
    border: 1px solid black;
    border-radius: 20px;
    cursor: pointer;
    rotate: 0deg;
    transition: all 0.3s;
}

.lektor-img:hover {
    rotate: -7deg;
    transition: all 0.25s;
}

.lektor-img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.lektor-box h4 {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
}

.lektor-box p {
    font-size: 15px;
    margin-top: 5px;
    font-style: italic;
    font-weight: 300;
    display: -webkit-box;
    -webkit-line-clamp: 3;   /* počet riadkov */
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ===========================
   Conference SYLABY - sections accordion header
   =========================== */


.conf-sylaby-section{
  display: grid;
  grid-template-rows: auto 1fr;
}

.conf-sylaby-body{
  overflow: hidden;
}

.conf-sylaby-section.is-collapsed{
  grid-template-rows: auto 0fr;
}

.conf-sylaby-section{
  transition: grid-template-rows .25s ease;
}

.conf-sylaby-section {
  margin: 0 0 10px 0;
}

.conf-sylaby-header {
  display: flex;
  align-items: center;
  gap: 16px;
  border-radius: 10px;
  cursor: pointer;
  user-select: none;
  margin-bottom: 30px;
}

.conf-sylaby-title {
  color: black;
  font-weight: 700;
  font-size: 36px;
  line-height: 1.1;
  letter-spacing: 0.2px;
  white-space: nowrap;
}

/* deliaca ciara ako v programe (pridaj <span class="conf-sylaby-line"></span> do headeru) */
.conf-sylaby-line {
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.65);
  transform: translateY(1px);
}

.conf-sylaby-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: black;
  border: 1px solid black;
  border-radius: 12px;
  padding: 8px 12px;
  font-weight: 700;
  cursor: pointer;
}

.conf-sylaby-btn-icon {
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid black;
  border-radius: 10px;
  line-height: 1;
  font-size: 18px;
}

.conf-sylaby-btn:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.25);
}

.conf-sylaby-day-line {
    flex: 1;
    height: 1px;
    background: black;
    transform: translateY(1px);
}

.sylaby-item {
    margin-bottom: 30px;
}

.sylaby-item h3 {
    font-size: 24px;
}

.sylaby-form-change input {
    border: 1px solid black;
}

.sylaby-form-change .raabe-conf-note,
.sylaby-form-change .raabe-conf-note a {
    color: black;
}

.partner-wrapper {
    width: calc(33.33% - 30px);
    background-color: white;
    border-radius: 20px;
    height: 125px;
    padding: 30px;
    transition: all 0.25s;
    rotate: 0;
}

.partner-wrapper:hover {
    transition: all 0.25s;
    rotate: -6deg;
}

.partner-wrapper img {
    object-position: center;
    object-fit: scale-down;
    width: 100%;
    height: 100%;
    display: block;
}

.partner-kontakt-photo {
    width: calc(50% - 15px);
    object-fit: cover;
    object-position: center;
    overflow: hidden;
    border: 1px solid black;
    border-radius: 20px;
}

.partner-kontakt-text p {
    margin: 10px 0;
}

.partner-kontakt-text a {
    text-decoration: underline;
}

.partner-kontakt-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.footer-second-row>:nth-child(1) a {
    text-decoration: underline;
}

.footer-second-row>:nth-child(1),
.footer-second-row>:nth-child(4) {
    width: calc(30% - 30px);
}

.footer-second-row>:nth-child(2) {
    width: calc(25% - 30px);
}

.footer-second-row>:nth-child(3) {
    width: calc(15% - 30px);
}

.footer-second-row>:nth-child(2) ul li,
.footer-second-row>:nth-child(3) ul li {
    margin-bottom: 10px;
}

.footer-second-row>:nth-child(2) ul li a::after,
.footer-second-row>:nth-child(3) ul li a::after {
    display: none;
}

.footer-second-row>:nth-child(2) ul li.current-menu-item a,
.footer-second-row>:nth-child(3) ul li.current-menu-item a,
.footer-second-row>:nth-child(2) ul a:hover,
.footer-second-row>:nth-child(3) ul a:hover {
    text-decoration: underline;
}

.footer-second-row>:nth-child(4) {
    align-items: end;
}

.footer-second-row>:nth-child(4) > * {
    display: flex;
    justify-content: right;
}



footer * {
    transform: translateY(0);
}

nav.footer-1-nav,
nav.footer-2-nav,
.footer-second-row>:nth-child(4) {
    padding-top: 20px;
}

.ucast-button,
.raabe-conf-btn,
.conference-nav ul li,
.js-lektor-open {
    transition: all 0.3s;
    rotate: 0deg;
}

.ucast-button:hover,
.raabe-conf-btn:hover,
.conference-nav ul li:hover,
.js-lektor-open:hover {
    transition: all 0.3s;
    rotate: -6deg;
}

.ucast-button {
    background-color: red;
    color: white;
    font-size: 1.3em;
}

#scrollToTopBtn {
    position: fixed;
    right: 30px;
    bottom: 30px;
    width: 48px;
    height: 48px;
    border: none;
    border-radius: 50%;
    background: #111;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 999;
}

#scrollToTopBtn.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

#scrollToTopBtn:hover {
    background: #333;
}

.page-content {
    background-color: #E5E5E5;
}

.page-content h1 {
    width: 100%;
    text-align: center;
    text-transform: uppercase;
    font-size: 48px;
    font-weight: 900;
}

.conf-archive {
    width: 100%;
    max-width: var(--max-width);
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.conf-card {
    width: calc(33.33% - 30px);
}

.conf-img-wrapper {
    object-fit: cover;
    object-position: center;
}

.conf-card__img {
    margin-bottom: 10px;
    border: 1px solid black;
    border-radius: 20px;
    transition: all 0.3s;
    rotate: 0deg;
    width: 100%;
    height: 100%;
}

.conf-card__img:hover {
    transition: all 0.3s;
    rotate: -6deg;
}

.partneri-content h3 {
    width: 100%;
    text-align: center;
    text-transform: uppercase;
    font-size: 32px;
    font-weight: 900;
    margin-top: 30px;
}

.partneri-content h4 {
    width: 100%;
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    margin-top: 10px;
}

.partneri-personal {
    display: flex;
    gap: 30px;
}

.personal {
    display: flex;
    gap: 20px;
    width: calc(50% - 15px);
}

.pers-img-wrapper {
    width: 180px;
    height: 170px;
    border: 1px solid black;
    border-radius: 20px;
    overflow: hidden;
    object-position: center;
}

.pers-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.personal p {
    margin: 10px 0;
}

.personal a {
    text-decoration: underline;
}

.logos h2 {
    width: 100%;
    text-align: center;
    text-transform: uppercase;
    font-size: 48px;
    font-weight: 900;
}

.partners-list .partner-wrapper{
    border: 1px solid black;
}

.contact-form {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 5px;
}

.contact-form .left {
    width: calc(70% - 15px);
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.contact-form .left label,
.contact-form .left input,
.contact-form .left textarea {
    width: 100%;
}

.contact-form .left input {
    height: 50px;
    text-indent: 10px;
}

.contact-form .left textarea {
    padding: 10px;
}

.contact-form .left input,
.contact-form .left textarea {
    border: 1px solid black;
    border-radius: 10px;
    margin-top: 10px;
}

.contact-form .left .form-row {
    width: 100%;
    display: flex;
    gap: 30px;
}

.contact-form .right {
    width: calc(30% - 15px);
}

.contact-form h2 {
    font-size: 32px;
}

.contact-form a {
    text-decoration: underline;
}

.google-map {
    border: 1px solid black;
    border-radius: 20px;
    overflow: hidden;
}

.form-status {
    display: none;
    margin-bottom: 30px;
    color: white;
    padding: 10px;
    width: 100%;
    text-align: center;
    border-radius: 10px;
}

.form-status[data-state="error"] {
    display: block;
    background-color: red;
}

.form-status[data-state="ok"] {
    display: block;
    background-color: green;
}

.main-title {
    max-width: var(--max-width);
}

@media (max-width: 1300px) {
    :root {
        --max-width: 1150px;
        --max-width-gallery: 1300px;
    }
}

@media (max-width: 1200px) {
    :root {
        --max-width: 950px;
        --max-width-gallery: 1200px;
    }

    .conf-menu {
        flex-direction: column;
        gap: 30px;
    }

    .logo-wrapper {
        width: auto;
        max-width: 250px;
    }

    .conf-menu > :nth-child(2) {
        width: 100%;
    }

    .lektor-box {
        width: calc(50% - 30px);
    }

    .footer-second-row {
        flex-wrap: wrap;
    }


    .footer-second-row > :nth-child(1),
    .footer-second-row > :nth-child(2),
    .footer-second-row > :nth-child(3) {
        width: calc(33.33% - 30px);
    }

    .footer-second-row > :last-child {
        width: 100%;
    }

    .footer-second-row > :last-child > div {
        justify-content: center;
    }
}

@media (max-width: 1000px) {
    :root {
        --max-width: 850px;
        --max-width-gallery: 1000px;
    }

    .first-row {
        flex-direction: column;
        gap: 15px;
    }

    .count-box {
        padding: 7px 30px;
        border: 1px solid black;
        border-radius: 20px;
        min-width: 0;
    }
}

@media (max-width: 900px) {
    :root {
        --max-width: 700px;
        --max-width-gallery: 900px;
    }

    .first-row {
        flex-direction: column;
        gap: 15px;
    }

    .content-gallery .img-box {
        min-width: 150px;
        min-height: 150px;
    }

    .conf-program-items {
        padding-top: 20px;
        column-count: 1;
        column-gap: 30px;
    }
}

@media (max-width: 750px) {
    :root {
        --max-width: 90%;
        --max-width-gallery: 900px;
    }

    .conference-nav__list {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .conference-nav ul li {
        width: 100%;
        text-align: center;
        border: 1px solid black;
        padding: 5px 13px;
        border-radius: 10px;
    }

    .logo-wrapper {
        margin-bottom: -15px;
    }

    h1 {
       font-size: clamp(2.5rem, 2.5vw, 3rem) !important;
    }

    h2 {
       font-size: clamp(1.8rem, 2.5vw, 3rem) !important;
    }

    .font-size-32 {
        font-size: clamp(1.5rem, 2.5vw, 3rem) !important;
    }

    .countdown {
        flex-wrap: wrap;
    }

    .info {
        flex-wrap: wrap;
    }

    .info > * {
        width: 100%;
    }

    .hlavni {
        flex-wrap: wrap;
    }

    .lektori-photo {
        flex-wrap: wrap;
    }

    .lektori-photo > div {
        width: 100%;
    }

    .pictograms {
        flex-wrap: wrap;
    }

    .pictograms > div {
        width: calc(50% - 30px);
    }

    .raabe-conf-row {
        flex-wrap: wrap;
    }

    .content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-topics {
        width: 100%;
    }

    .raabe-lightbox--lektor .raabe-lightbox__body {
        max-width: 100%;
        max-height: 90vh;
        width: min(860px, 92vw);
        overflow-y: auto;
        border-radius: 20px;
    }

    .lektor-modal {
        flex-wrap: wrap;
    }

    .lektor-modal__img img {
        height: auto;
    }

    .partner-wrapper {
        width: 100%;
    }

    .content img {
        max-width: 100%;
    }

    .footer-second-row > :nth-child(1), 
    .footer-second-row > :nth-child(2),
    .footer-second-row > :nth-child(3),
    .footer-second-row > :nth-child(4) {
        width: 100% !important;
    }

    .partner-kontakt-photo {
        display: none;
    }

    .footer-claim {
        padding: 30px 20px !important;
    }

  .nav-toggle{
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  /* aby absolute menu sedelo k nav */
  .main-nav{
    position: relative;
    width: 100%;
    margin-bottom: -15px;
  }

  /* menu defaultne schované */
  .main-nav .main-menu{
    display: none;

    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    left: 0;

    flex-direction: column;
    align-items: flex-start;
    gap: 12px;

    padding: 14px;
    background: #fff;
    border: 1px solid rgba(0,0,0,.08);
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
    z-index: 50;
  }

  /* otvorené menu */
  .main-nav.is-open .main-menu{
    display: flex;
  }

  /* tap-friendly linky */
  .main-nav .main-menu a{
    display: block;
    width: 100%;
    padding: 10px 8px;
    text-decoration: none;
  }

  /* X ikonka pri otvorení */
  .nav-toggle.is-open .nav-toggle-icon{
    background: transparent;
  }
  .nav-toggle.is-open .nav-toggle-icon::before{
    top: 0;
    transform: rotate(45deg);
  }
  .nav-toggle.is-open .nav-toggle-icon::after{
    top: 0;
    transform: rotate(-45deg);
  }

  .conf-program-day-header {
    flex-direction: column;
  }

  .conf-program-item {
    flex-wrap: wrap;
  }

  .program-item-left {
    width: 100%;
    flex: auto;
  }

  span.conf-program-room {
    display: none;
  }

  .conf-sylaby-header {
    flex-direction: column;
    gap: 10px;
  }

  .podklad {
    height: 75px !important;
  }

  .conf-card {
    width: 100%;
   }

   .pers-img-wrapper {
    display: none;
   }

   .personal {
    width: 100%;
   }

   .partneri-personal {
    flex-direction: column;
    width: 100%;
   }

   .contact-form {
    flex-direction: column;
   }

   .contact-form > div {
    width: 100% !important;
   }

   .form-row {
    flex-wrap: wrap;
    gap: 20px !important;
   }

   .google-map {
        width: 100%;
    }

    .contact-icons {
        flex-wrap: wrap;
    }

    .contact-icons > div {
        width: calc(50% - 30px);
    }

}