/* ========================================
   FONTS IMPORT
======================================== */
/* roboto-300 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 300;
  src: url('../fonts/roboto-v49-latin-300.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* roboto-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/roboto-v49-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* roboto-500 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 500;
  src: url('../fonts/roboto-v49-latin-500.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* roboto-700 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/roboto-v49-latin-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* roboto-condensed-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Roboto Condensed';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/roboto-condensed-v31-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* roboto-condensed-600 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Roboto Condensed';
  font-style: normal;
  font-weight: 600;
  src: url('../fonts/roboto-condensed-v31-latin-600.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* roboto-condensed-700 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Roboto Condensed';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/roboto-condensed-v31-latin-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}


/* ========================================
   GLOBALE STYLES
======================================== */
body {
    font-family: 'Roboto', sans-serif;
    overflow-x: hidden;
}

/* Überschriften */
h1, h3, h5, h6, .content-title, .services-title, .process-title, .location-title, .offcanvas-title {
    font-family: 'Roboto Condensed', sans-serif;
}


/* ========================================
   CSS VARIABLEN
======================================== */
:root {
    --primary-blue: #013f5b;
    --accent-yellow: #eeb607;
    --light-blue: #0eb1d2;
    --dark-teal: #013f5b;
}


/* ========================================
   NAVIGATION / HEADER
======================================== */
.navbar {
    background: white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    padding: 0;
    height: 100px !important;
}

.navbar-brand img {
    height: 60px;
}

#navbar-logo {
    width: auto;
    height: 175px;
    transition: height 0.3s ease;
    position: relative;
    bottom: -75px;
    background-color: #fff;
    border-radius: 0 0 30px 30px;
    padding: 33px 30px 25px;
    z-index: 10;
    margin-top: -109px;
}

.nav-link {
    color: var(--primary-blue) !important;
    font-weight: 500;
    margin: 0 15px;
    font-size: 1.05rem;
}

.nav-link:hover {
    color: #1974bb !important;
}

/* Button Hover Effects */
.btn-phone {
    background: var(--accent-yellow);
    color: var(--primary-blue);
    border: none;
    border-radius: 25px;
    padding: 10px 24px;
    font-weight: bold;
    margin-left: 15px;
    font-size: 1.05rem;
    transition: all 0.3s ease;
}

.btn-phone:hover {
    background-color: var(--light-blue);
    color: #fff;
    transform: translateY(-2px);
}

.btn-accessibility {
    background: var(--primary-blue);
    color: white;
    border: none;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    margin-left: 10px;
    padding-bottom: 9px;
    transition: all 0.3s ease;
}

.btn-accessibility:hover {
    background: var(--light-blue);
    color: var(--primary-blue);
    transform: scale(1.05);
}

/* Floating Sticky Button */
.floating-btn {
    position: fixed;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    border-radius: 20px 0px 0px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1020!important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    background-color: #003d5c;
    color: #fff;
    font-size: 1.4rem;
    transition: transform 0.3s, background-color 0.3s;
}

.floating-btn:hover {
    transform: translateY(-50%) scale(1.1);
    background-color: var(--light-blue);
}

/* Offcanvas */
.offcanvas {
    background-color: #003d5c;
    color: #ffffff;
    z-index: 1060 !important;
    box-shadow: -6px 0 30px rgba(0,0,0,0.25);
    border-radius: 0 0 0 12px;
    transition: transform 0.4s ease;
    max-width: 360px;
}

.offcanvas-header {
    border-bottom: none;
    padding-bottom: 2rem;
    padding-top: 32px;
    padding-left: 25px;
}

.offcanvas .btn-close {
    filter: invert(1);
}

.offcanvas-title {
    font-family: 'Fira Sans Condensed', sans-serif;
    font-weight: 800;
    font-size: 2rem;
    color: #ffffff;
    letter-spacing: 1px;
}

.offcanvas-body {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 0;
}

.offcanvas .nav-item {
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

.offcanvas .nav-link {
    font-family: 'Baloo Paaji 2', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #ffffff !important;
    padding: 1rem 0;
    text-align: left;
    transition: color 0.3s ease, background 0.3s ease;
    padding-left: 21px;
    padding-right: 21px;
    margin: 0;
}

.offcanvas .nav-link:hover {
    color: var(--light-blue) !important;
    background-color: rgba(255,255,255,0.05);
}

.offcanvas .nav-item:last-child {
    border-bottom: none;
}

/* Navbar Toggler Styling */
.navbar-toggler {
    border: none;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: var(--primary-blue);
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.navbar-toggler:hover {
    background: var(--light-blue);
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler .navbar-toggler-icon {
    width: 24px;
    height: 24px;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23ffffff' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2.5' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
}

.navbar-toggler:hover .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23013f5b' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2.5' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ========================================
   HERO SECTION
======================================== */
.hero {
    height: 85vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
    color: white;
    padding: 120px 0 80px;
    position: relative;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.hero h1 .ampersand {
    color: var(--accent-yellow);
}

.hero h2 {
    font-size: 1.8rem;
    font-weight: 300;
}

/* ========================================
   PILL COMPONENT
======================================== */
.pill-wrapper {
    display: flex;
    justify-content: center;
    margin-top: -50px;
    position: relative;
    z-index: 10;
}

.pill-container {
    display: flex;
    width: 100%;
    max-width: 1296px;
    margin: 0;
    padding: 0;
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0;
}

.pill-section {
    flex: 1;
    padding: 25px 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    color: white;
    border: none;
    margin: 0;
}

.pill-section:nth-child(1) {
    background: var(--light-blue);
}

.pill-section:nth-child(2) {
    background: var(--accent-yellow);
    color: var(--primary-blue);
}

.pill-section:nth-child(3) {
    background: var(--dark-teal);
}

.pill-section i {
    font-size: 2.5rem;
}

/* ========================================
   DROPLET COMPONENT
======================================== */
.droplet-container {
    width: 100%;
    max-width: 400px;
    position: relative;
}

.droplet-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    clip-path: polygon(
        50% 0%, 
        100% 36%, 
        100% 64%, 
        77% 100%, 
        50% 100%, 
        23% 100%, 
        0% 64%, 
        0% 36%
    );
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.droplet-image:hover {
    transform: scale(1.05);
    opacity: 1;
}

.droplet-icon {
    position: absolute;
    bottom: 60px;
    right: -40px;
    width: 160px;
    height: 160px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.droplet-icon:hover {
    transform: scale(1.05);
    opacity: 1;
}

.svg-container {
    display: block;
    margin: 0 auto;
}

/* ========================================
   CONTENT SECTION
======================================== */
.content-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    min-height: 600px;
}

.content-title {
    color: var(--primary-blue);
    font-size: 2.5rem;
    font-weight: bold;
}

.content-subtitle {
    color: var(--light-blue);
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.check-list {
    list-style: none;
    padding: 0;
}

.check-list li {
    padding: 10px 0;
    display: flex;
    align-items: center;
}

.check-list li::before {
    content: '✓';
    color: var(--light-blue);
    font-weight: bold;
    margin-right: 10px;
    font-size: 1.2rem;
}

.btn-more {
    background: var(--accent-yellow);
    color: var(--primary-blue);
    border: none;
    border-radius: 25px;
    padding: 12px 30px;
    font-weight: bold;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.btn-more:hover {
    background: var(--light-blue);
    color: var(--primary-blue);
    transform: translateY(-2px);
}

/* ========================================
   SERVICES CAROUSEL
======================================== */
.services-section {
    background: #f8f9fa;
    padding: 80px 0;
}

.services-title {
    color: var(--primary-blue);
    font-size: 2rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 50px;
}

.carousel-wrapper {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
}

.carousel-container {
    position: relative;
    margin: 0 auto;
    padding: 0 80px;
    overflow: visible;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-viewport {
    overflow: hidden;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
}

.carousel-track {
    display: flex;
    gap: 30px;
    padding: 40px 0;
    transition: transform 0.5s ease;
    align-items: center;
}

.service-card {
    min-width: 320px;
    max-width: 320px;
    flex-shrink: 0;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    opacity: 0.5;
    transform: scale(0.85);
}

.service-card.active {
    transform: scale(1.05);
    z-index: 10;
    opacity: 1;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.service-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.service-card-body {
    padding: 30px;
    text-align: center;
    background: var(--primary-blue);
    color: white;
    font-weight: bold;
    font-size: 1.2rem;
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-card-body.yellow {
    background: var(--accent-yellow);
    color: var(--primary-blue);
}

.service-card-body.teal {
    background: var(--light-blue);
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary-blue);
    color: white;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 100;
    transition: all 0.3s;
}

.carousel-nav:hover {
    background: var(--light-blue);
    color: var(--primary-blue);
    transform: translateY(-50%) scale(1.05);
}

.carousel-nav.prev {
    left: 10px;
}

.carousel-nav.next {
    right: 10px;
}

.carousel-indicators-custom {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

.carousel-indicators-custom button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background-color: #ccc;
    cursor: pointer;
    transition: all 0.3s;
}

.carousel-indicators-custom button.active {
    background-color: var(--accent-yellow);
    transform: scale(1.3);
}

@media (min-width: 1024px) {
    .carousel-nav.prev {
        left: 70px;
    }
    .carousel-nav.next {
        right: 70px;
    }
}

/* ========================================
   PROCESS SECTION
======================================== */
.process-section {
    padding: 80px 0;
    background: white;
    padding-bottom: 100px;
    position: relative;
    overflow: hidden;
}

.process-title {
    color: var(--primary-blue);
    font-size: 2rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 50px;
}

.process-step {
    flex: 1;
    text-align: center;
    padding: 20px;
    position: relative;
    transition: all 0.6s ease;
}

.process-step.active {
    box-shadow: 0 15px 40px rgba(14, 177, 210, 0.3);
    transform: translateY(-5px);
}

.process-icon-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 30px;
}

.process-icon-bg {
    width: 130px;
    height: 130px;
    background: white;
    border-radius: 85px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 3px 15px #00a8cc45;
    transition: all 0.6s ease;
}

.process-step.active .process-icon-bg {
    box-shadow: 0 0 40px rgba(14, 177, 210, 0.8),
                0 0 60px rgba(14, 177, 210, 0.5) !important;
}

.process-icon-bg i {
    font-size: 3rem;
    color: var(--primary-blue);
}

.process-number {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 40px;
    height: 40px;
    background: var(--accent-yellow);
    color: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.3rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.process-step h4 {
    color: var(--primary-blue);
    font-weight: bold;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.process-step p {
    color: #666;
    line-height: 1.6;
}

.process-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.process-separator {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 0 0 auto;
}

.process-dots {
    display: flex;
    gap: 6px;
}

.process-dots span {
    width: 6px;
    height: 6px;
    background: #999;
    border-radius: 50%;
    opacity: 0.2;
}

.bg-img {
    position: absolute;
    width: 400px;
    opacity: 0.015;
    pointer-events: none;
    filter: grayscale(1);
}

.bg-img.top-left {
    top: -10%;
    left: -3%;
    animation: float1 6s ease-in-out infinite;
}

.bg-img.bottom-right {
    bottom: -6%;
    right: -10%;
    animation: float2 8s ease-in-out infinite;
}

@keyframes float1 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(10px, 10px); }
}

@keyframes float2 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-10px, -10px); }
}

/* ========================================
   LOCATION SECTION
======================================== */
.location-section {
    background: #f8f9fa;
    margin-bottom: 80px;
}

.location-title {
    color: var(--primary-blue);
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 30px;
}

.location-subtitle {
    color: var(--light-blue);
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.location-buttons {
    display: flex;
    flex-wrap: nowrap;
    gap: 10px;
    margin-top: 20px;
    justify-content: flex-start;
}

.location-btn {
    background: var(--primary-blue);
    color: white;
    border: none;
    border-radius: 25px;
    padding: 10px 20px;
    font-weight: 500;
    transition: all 0.3s;
    white-space: nowrap;
}

@media (max-width: 1447px) {
    .location-btn {
        padding: 8px 14px;
        font-size: 0.9rem;
        border-radius: 20px;
    }
    
    .location-buttons {
        gap: 8px;
    }
}

.location-btn:hover {
    background: var(--light-blue);
    transform: translateY(-2px);
}

.location-btn.active {
    background: var(--accent-yellow);
    color: var(--primary-blue);
}

@media (max-width: 1500px) {
    .location-buttons {
        flex-wrap: wrap;
    }
}

@media (max-width: 767px) {
    .location-buttons {
        flex-direction: column;
        flex-wrap: nowrap;
        gap: 8px;
        align-items: stretch;
    }
    .location-btn {
        width: 100%;
    }
    .location-section .image-container {
        right: 29%;
        position: relative;
    }
}

/* ========================================
   FOOTER
======================================== */
footer {
    background: #fff;
    color: var(--primary-blue);
    padding: 50px 0 20px;
    border-top: 4px solid var(--accent-yellow);
}

footer h5 {
    color: var(--primary-blue);
    margin-bottom: 10px;
    font-weight: bold;
}

footer a {
    color: var(--light-blue);
    text-decoration: none;
}

footer a:hover {
    color: var(--accent-yellow);
}

.copyright {
    text-align: center;
    padding-top: 15px;
    margin-top: 15px;
    border-top: 1px solid rgba(255,255,255,0.2);
    font-size: 0.9rem;
}

/* ========================================
   BACK TO TOP BUTTON
======================================== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--accent-yellow);
    color: var(--primary-blue);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1019;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    font-size: 1.2rem;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--primary-blue);
    color: #fff;
    box-shadow: 0 6px 16px rgba(0,0,0,0.3);
}

/* ========================================
   FLOATING DROPS
======================================== */
.floating-drop path {
    fill: none;
    stroke: #999999;
    stroke-width: 2;
    opacity: 0.05;
    pointer-events: none;
}

.drop1 {
    position: absolute;
    bottom: 13%;
    right: -5%;
    width: 400px;
    animation: floatDrop1 6s ease-in-out infinite;
}

.drop2 {
    position: absolute;
    bottom: 2%;
    right: 15%;
    width: 150px;
    animation: floatDrop2 8s ease-in-out infinite;
}

@keyframes floatDrop1 {
    0%, 100% { transform: translate(0,0) rotate(0deg); }
    50% { transform: translate(-15px, -20px) rotate(-5deg); }
}

@keyframes floatDrop2 {
    0%, 100% { transform: translate(0,0) rotate(0deg); }
    50% { transform: translate(-10px, -10px) rotate(5deg); }
}

/* ========================================
   UTILITY CLASSES
======================================== */
.h4, h4 {
    font-size: 1.2rem;
}

.rotate-45 {
    transform: rotate(45deg);
}

img.white {
    filter: brightness(0) invert(1);
}

img.blue {
    filter: invert(7%) sepia(95%) saturate(7000%) hue-rotate(192deg) brightness(90%) contrast(90%);
}

/* ========================================
   RESPONSIVE DESIGN
======================================== */
@media (max-width: 992px) {
    .process-steps {
        flex-direction: column;
    }
    .process-dots {
        display: flex !important;
        flex-direction: column !important;
        gap: 6px;
    }
}

@media (max-width: 768px) {
    #navbar-logo {
        height: 150px;
        border-radius: 0 0 20px 20px;
        padding-bottom: 20px;
        bottom: -65px;
    }
    .hero {
        height: 75vh;
    }
    .hero h1 {
        font-size: 2rem;
    }
    
    .pill-wrapper {
        padding: 0 20px;
    }
    
    .pill-container {
        flex-direction: column;
        border-radius: 25px;
    }
    
    .content-title {
        font-size: 1.8rem;
    }
    .carousel-container {
        padding: 0 20px;
    }
    .carousel-nav {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    .carousel-nav.prev {
        left: 5px;
    }
    .carousel-nav.next {
        right: 5px;
    }
    .service-card {
        min-width: 90%;
        max-width: 90%;
    }
    .service-card img {
        height: 200px;
    }
    .service-card-body {
        padding: 20px;
        font-size: 1rem;
        min-height: 60px;
    }
    .droplet-icon {
        right: 10px;
        width: 120px;
        height: 120px;
        bottom: 70px;
    }
    .svg-container {
        width: 80%;
        max-width: 300px;
    }
    svg {
        width: 100%;
        height: auto;
        display: block;
    }
    .process-steps {
        flex-direction: column;
        align-items: center;
    }
    .process-dots {
        display: flex !important;
        flex-direction: column !important;
        gap: 6px;
    }
    .process-dots span {
        display: block;
    }
    .process-separator {
        padding: 15px 0;
    }
}

@media (max-width: 576px) {
    .service-card {
        min-width: 95%;
        max-width: 95%;
    }
    .service-card img {
        height: 180px;
    }
}

@media (max-width: 991px) {
    .location-section .row {
        text-align: center;
    }
    .location-section .col-lg-6 {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .location-section .image-container {
        margin-bottom: 20px;
    }
    .location-section #locationDetails .col {
        margin-bottom: 15px;
    }
    .location-section .location-buttons {
        justify-content: center;
    }
    .location-section .location-buttons .location-btn {
        margin: 5px;
    }
}