body,
html {
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    -webkit-user-select: none;
    /* Safari */
    -moz-user-select: none;
    /* Firefox */
    -ms-user-select: none;
    /* Internet Explorer/Edge */
    user-select: none;
    /* Non-prefixed version, currently supported by Chrome, Opera, and Edge */
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: transparent;
    /* Initially transparent */
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: background-color 0.5s;
    /* Smooth transition for background color */
}

.header-scrolled {
    background-color: rgba(23, 42, 69, 0.75);
    /* transform: translateY(-10px); */
}

/* .header-scrolled .nav-link.active {
    border-top: 3px solid #fff;
    color: #fff;
}

.header-scrolled .nav-link::before {
    border-top: 3px solid #fff;
} */

.logo {
    padding-top: 5px;
    padding-left: 15px;
}

/***nav header***/
#navbar-desktop {
    margin-right: 25px;
}

#navbar-desktop .nav-link {
    font-family: 'Poppins', sans-serif;
    font-size: 21px;
    font-weight: 100;
    color: #fff;
    text-decoration: none;
    margin: 0 28px;
    background-color: transparent;
    position: relative;
    overflow: hidden;
    /* To contain the pseudo-element within the link's area */
}

#navbar-desktop .nav-link::before {
    content: '';
    position: absolute;
    top: -3px;
    left: 0;
    right: 0;
    /* Stretch to the full width of the parent */
    height: 3px;
    background-color: #fff;
    opacity: 0;
    /* Initially invisible */
    visibility: hidden;
    /* Also initially not visible */
    transition: opacity 0.3s ease-in, visibility 0s linear 0.3s;
    /* Add transition for opacity */
}

#navbar-desktop .nav-link:hover::before,
#navbar-desktop .nav-link.active::before {
    opacity: 1;
    /* Fully visible */
    visibility: visible;
    /* Now visible */
    transition-delay: 0s;
    /* Apply transition immediately */
}

/***nav mobile***/
#navbar {
    position: fixed;
    left: auto;
    right: calc(100px);
    top: calc(50% - 120px);
    height: auto;
    background-color: transparent;
    overflow-x: hidden;
    transform: translateX(200%);
    z-index: 1000;
    overflow: hidden;
    display: block;

    font-size: 16px;
    margin-right: 0;

    display: flex;
    /* Use flexbox */
    flex-direction: column;
    /* Align items in a column */
    align-items: flex-end;
    /* Align items to the start (left) */

}

@keyframes hoverAnimation {
    0% {
        background-color: #98B9DC;
        background-position: 100% 0;
    }

    100% {
        background-color: #3D5D8F;
        background-position: 0 100%;
    }
}

#navbar .nav-link {
    /* Default state with flat color */
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    font-size: 24px;
    color: #fff;
    background-color: #3D5D8F;
    text-decoration: none;
    margin-bottom: 15px;
    padding: 8px 30px 8px 24px;
    display: flex;
    align-items: center;
    justify-content: right;
    transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
    transition: transform 0.5s ease-out;
}

#navbar .nav-link:hover {
    /* Apply animated gradient on hover, then transition to flat color */
    color: #172A45;
    background-image: linear-gradient(45deg, #98B9DC 50%, #3D5D8F 50%);
    background-size: 200% 200%;
    animation: hoverAnimation 0.3s ease forwards;
}

#navbar .nav-link.active,
#navbar .nav-link.active:hover {
    /* Active state with flat color */
    background-image: none;
    background-color: #98B9DC !important;
    color: #172A45 !important;
}

.nav-link-open {
    box-shadow: 0 5px 5px rgba(26, 25, 80, 0.3),
        0 5px 5px rgba(0, 0, 0, 0.3);
}


.nav-home {
    width: 100px;
}

.nav-whoweare {
    width: 180px;
}

.nav-whatwedo {
    width: 190px;
}

.nav-pastevents {
    width: 180px;
}

.nav-contactus {
    width: 160px;
}

.material-symbols-outlined {
    font-variation-settings:
        'FILL' 0,
        'wght' 400,
        'GRAD' 0,
        'opsz' 24
}



/*at bottom*/
.hamburger-menu {
    font-family: 'Roboto', sans-serif;
    font-weight: 900;
    line-height: 100%;
    font-size: 22px;
    color: #02A0C1;
    font-style: italic;

    display: block;
    position: fixed;
    right: 64px;
    transform: translateX(50%);
    top: 50%;
    z-index: 1001;
    -webkit-tap-highlight-color: transparent;

    cursor: pointer;
    /* Add glow effect */
    /* text-shadow: 0 0 5px rgba(39, 118, 182, 0.7),
                 0 0 20px rgba(39, 118, 182, 0.7); */
}

.hamburger-menu .bar {
    width: 25px;
    text-align: center;
}

.hyphen {
    opacity: 0.8;
    color: #BACFEC;
    margin: 6px 0;
    display: block;
}


section {
    /* border: 1px solid #f00; */
    /* background-color: #D6DBDF; */
    /* height: 1000px; */
}


/* Class to apply fade in */
.fade-in {
    animation: fadeIn 0.3s linear forwards;
}


/* Class to apply fade out */
.fade-out {
    animation: fadeOut 0.5s linear forwards;
}

/* Class to apply fade in */
.fade-in {
    animation: fadeIn 0.5s linear forwards;
}

.use-transition {
    transition: transform 0.5s ease, transition-delay 0s;
}

/*home section*/
#home {
    background-image: url('images/topbackground.jpg');
    background-size: cover;
    /* or 100% 100%, depending on how you want to scale the image */
    background-repeat: no-repeat;
    background-position: center center;
    height: 1000px;
}

/* Style for Gallery Popup */
.gallery-popup {
    display: none;
    /* Hidden by default */
    position: fixed;
    z-index: 1001;
    padding-top: 100px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    /* Enable scroll if needed */
    background-color: rgb(0, 0, 0);
    /* Fallback color */
    background-color: rgba(0, 0, 0, 0.9);
    /* Black w/ opacity */
}

/* Style for Images */
.gallery-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 80%;
    max-height: 80%;
    width: auto;
    height: auto;
}

/* Style for Gallery Popup */
.gallery-popup {
    display: none;
    /* Hidden by default */
    position: fixed;
    z-index: 1001;
    width: 100%;
    height: 100%;
    overflow: auto;
    /* Enable scroll if needed */
    background-color: rgba(0, 0, 0, 0.9);
    /* Black w/ opacity */
}

/* Style for Close Button */
.close-gallery {
    position: absolute;
    top: 25px;
    right: 35px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}

/* Style for Next/Prev Buttons */
.prev,
.next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -50px;
    color: white;
    font-weight: bold;
    font-size: 20px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    -webkit-user-select: none;
}

/* Position the "next button" to the right */
.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

/* Position the "prev button" to the left */
.prev {
    left: 0;
    border-radius: 3px 0 0 3px;
}

.image-indicators {
    text-align: center;
    /* Centers the indicators horizontally */
    position: fixed;
    /* Fixed position relative to the viewport */
    bottom: 10px;
    /* 10px from the bottom of the viewport */
    left: 50%;
    /* Positioned halfway across the screen */
    transform: translateX(-50%);
    /* Shifts it back to the center horizontally */
    padding: 10px 0;
}

.image-indicator {
    height: 10px;
    width: 10px;
    background-color: white;
    display: inline-block;
    margin: 0 5px;
    border-radius: 50%;
    cursor: pointer;
}


#backToTopSection {
    display: none;
    /* Hidden by default */
    position: fixed;
    /* Fixed position */
    bottom: 75px;
    /* Place the button 20px from the bottom */
    right: 0px;
    /* Place the button 30px from the right */
    z-index: 1000;
    /* Make sure it sits on top */
    text-align: center;
    /* Center align the text */
    cursor: pointer;
    /* Pointer cursor on hover */
}

#backToTop {
    border: none;
    /* No border */
    outline: none;
    /* Remove outline */
    /* color: #3D5D8F; */
    color: #fff;
    padding: 15px;
    /* Some padding */
    cursor: pointer;
    /* Pointer cursor on hover */
    transition: transform 0.3s ease;
    /* Smooth transition for the rotation */
    background-color: transparent;
}

#backToTopSection .Word {
    font-family: 'Roboto', sans-serif;
    font-size: 1.3rem;
    font-weight: bold;
    /* color: #3D5D8F; */
    color: #8BEAFE;
    padding: 5px;
    /* Some padding around the text */
    transform: rotateZ(90deg);
}

#backToTopSection .paddingMore {
    margin-bottom: 32px;
}

#backToTopSection .paddingTop {
    margin-top: 24px;
}

#backToTop.upward {
    transform: rotate(180deg);
    /* Rotate the arrow when class is 'upward' */
}

/*Google icon*/
.material-symbols-outlined {
    font-variation-settings:
        'FILL' 0,
        'wght' 400,
        'GRAD' 0,
        'opsz' 24
}

/* Fade In Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Responsive styles */
@media (max-width: 1399.98px) {
    #navbar-desktop .nav-link {
        font-size: 19px;
        margin: 0 20px;
    }
}

@media (max-width: 1199.98px) {
    #navbar-desktop .nav-link {
        font-size: 17px;
        margin: 0 16px;
    }
}

@media (max-width: 991.98px) {
    #navbar-desktop .nav-link {
        font-size: 16px;
        margin: 0 8px;
    }
}

@media screen and (max-width: 768px) {

    input,
    textarea,
    button,
    select,
    a {
        -webkit-tap-highlight-color: transparent;
    }

    .logo {
        padding: 4px 0 0 5px;
    }

    .logo img {
        width: 50%;
        height: auto;
    }

    #navbar-desktop {
        display: none;
    }

    #home {
        background-image: url('images/topbackground_mobile.jpg');
        height: 100vh;
    }

    #navbar {
        right: calc(50px);
    }

    .hamburger-menu {
        right: 30px;
    }

    #backToTopSection {
        right: -20px;
        -webkit-tap-highlight-color: transparent;
        /* Place the button 30px from the right */
    }

    #backToTopSection .Word {
        font-size: 1rem;
        -webkit-tap-highlight-color: transparent;
    }

    #backToTopSection .paddingMore {
        margin-bottom: 20px;
    }

    #backToTopSection .paddingTop {
        margin-top: 20px;
    }
}

/*-- 01 Section -----------------------------------------------*/
.w1-container-pd-color {
    padding: 100px;
    padding-top: 175px;
    padding-bottom: 175px;
}

#who-we-are .hero-title-01 {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-style: italic;
    font-size: 85px;
    color: #fff;
    display: flex;
}

.w-1-icon {
    align-self: top;
    width: 68px;
    height: 42px;
    padding: 0 15px;

    position: relative;
    transition: transform 0.5s ease;
}

#who-we-are .sub-title-01 {
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    font-style: italic;
    font-size: 24px;
    color: #fff;
    width: 850px;
}

#who-we-are .hero-title-02 {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-style: italic;
    font-size: 85px;
    color: #fff;
    text-align: right;
    display: flex;
    justify-content: flex-end;
}

#who-we-are .sub-title-02 {
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    font-style: italic;
    font-size: 24px;
    color: #fff;
    text-align: right;
    margin-left: auto;
    width: 850px;
}

.w1-background {
    position: relative;
    background-image: url('images/whoweare1.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    overflow: hidden;
    --translate-before: 0px;
}

.w1-background-content {
    position: relative;
    z-index: 2;
}

.w1-background::before {
    content: "";
    position: absolute;
    bottom: -325px;
    /* Adjust this value as needed */
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/whoweare_bottom.png');
    /* background-size: cover; */
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
    transition: transform 0.3s ease-out;
    transform: translateY(var(--translate-before));
}


@media screen and (max-width: 768px) {
    .w1-container-pd-color {
        min-height: unset;
        padding: 35px 54px 180px 32px;
    }

    .w1-background {
        background-attachment: unset;
    }

    .w1-background::before {
        background-size: 250%;
    }

    .w-1-icon {
        width: 50px;
        height: fit-content;
        align-self: center;
        padding: 0 5px;
    }

    #who-we-are .hero-title-01 {
        margin-top: 55px;
        font-size: 32px;
    }

    #who-we-are .sub-title-01 {
        font-size: 16px;
        width: 100%;
    }

    #who-we-are .hero-title-02 {
        margin-top: 55px;
        font-size: 32px;
    }

    #who-we-are .sub-title-02 {
        font-size: 16px;
        width: 100%;
    }
}

/*-- 02 Section -----------------------------------------------*/
.w2-container-pd-color {
    padding: 150px 180px 0px 180px;
}

.w2-background {
    position: relative;
    background-image: url('images/whatwedo2.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    --translate-before: 0px;
}

.w-2-icon {
    width: 50px;
    padding: 0 30px;
}

.lightcircle {
    position: absolute;
    bottom: -10px;
    /* Adjust as needed */
    left: 50%;
    /* Center align */
    transform: translateX(-50%);
    /* Ensure it's centered regardless of its width */
    /* z-index: -1;  */
}


#what-we-do .hero-title-01 {
    font-family: 'Poppins', sans-serif;
    font-size: 40px;
    font-weight: 500;
    font-style: italic;
    color: #fff;
    text-align: center;
    margin-bottom: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#what-we-do .flex-item {
    flex: 25%;
    display: flex;
    /* justify-content: center; */
    align-items: center;
    margin-bottom: 65px;
    position: relative;
}

#what-we-do .flex-container {
    display: flex;
    flex-wrap: wrap;
}


/*Without :after*/
.frame {
    text-align: center;
    position: relative;
    cursor: pointer;
    border-radius: 50%;
    overflow: hidden;

    width: 300px;
    height: 300px;
}

.frame img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.frame .details {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotateY(90deg);
    transform-origin: 50%;
    background: rgba(32, 56, 99, 1);
    opacity: 1;
    transition: all 0.4s ease-in;
    display: flex;
    align-items: center;
    justify-content: center;
}

.frame:hover .details {
    transform: translate(-50%, -50%) rotateY(0deg);
    opacity: 0.7;
}

.frame .details h1 {
    margin: 0;
    color: #fff;
}

/*Effect without Perspective*/
.wth {
    perspective: none;
}

.text-mobile {
    display: none;
}

@media screen and (max-width: 768px) {
    .w2-container-pd-color {
        padding: 25px 38px 25px 16px;
    }

    .frame .details {
        display: none;
    }

    #what-we-do .hero-title-01 {
        margin-top: 55px;
        font-size: 26px;
        margin-bottom: 30px;
    }

    .w-2-icon {
        padding: 0 15px;
        width: 30px;
    }

    #what-we-do .flex-item {
        flex-direction: column;
        margin-bottom: 10px;
    }

    .frame {
        width: 130px;
        height: 130px;
    }

    .text-mobile {
        font-family: 'Roboto', sans-serif;
        font-weight: bold;
        font-size: 15px;
        color: #fff;
        display: block;
        text-align: center;
        margin: 8px 0 14px 0;
        width: 150px;
    }

    .lightcircle {
        top: -10px;
        left: 50;
        width: 150px;
        opacity: 0.7;
    }
}


/*-- 03 Section -----------------------------------------------*/
.w3-container-pd-color {
    background-color: #172A45;
    background: rgb(49, 37, 77);
    background: linear-gradient(180deg, rgba(49, 37, 77, 1) 0%, rgba(23, 42, 69, 1) 100%);
    min-height: 1000px;
}

#past-events .hero-title-01 {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-style: italic;
    font-size: 40px;
    /* color: #BACFEC; */
    color: #fff;
    padding: 150px 0 45px 100px;
    display: flex;
    align-items: center;
    /* justify-content: center; */
}

.w-3-icon {
    width: 34px;
    padding-left: 15px;
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    /* gap: 10px; */
}

/* For viewport width under 1280px */
@media screen and (max-width: 1280px) {
    .image-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* For viewport width under 768px */
@media screen and (max-width: 768px) {
    .image-grid {
        grid-template-columns: repeat(1, 1fr);
    }

    #past-events .hero-title-01 {
        font-size: 26px;
        padding: 60px 0 10px 25px;
    }
}


/* Style for the images */
.image-grid img {
    width: 100%;
    height: auto;
    display: block;
    /* Remove any extra space below the image */
}



/*-- 04 Section -----------------------------------------------*/
.w4-container-pd-color {
    padding: 150px;
    padding-top: 100px;
    padding-bottom: 0;
    background-color: #172A45;
}

#contact-us .hero-title-01 {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-style: italic;
    font-size: 40px;
    color: #BACFEC;
    margin-bottom: 20px;
}

#contact-us .hero-title-02 {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    /* font-style: italic; */
    font-size: 25px;
    color: #fff;
    margin: 0;
}

#contact-us .flex-container {
    display: flex;
    flex-wrap: wrap;
    /* Allows items to wrap to the next line if necessary */
    gap: 20px;
    /* Adjust this value for the desired space between items */
    justify-content: space-between;
    align-items: flex-start;
}

#contact-us .flex-item {
    flex: 1;
    /* Each item will grow to use available space */
    min-width: calc(50% - 20px);
    /* Adjust for half width minus half of gap */
    font-family: 'Poppins', sans-serif;
    font-weight: 100;
    /* font-size: 24px; */
    color: #fff;
    background-color: #1A2F4D;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    border-radius: 1%;
    box-sizing: border-box;
    padding: 25px;
}

.form-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.form-item {
    flex: 1;
    min-width: calc(50% - 20px);
    margin-top: 25px;
    font-size: 24px;
}

.form-item .required {
    color: #839CC2;
    font-size: 14px;
}

/*Form*/
.form-control {
    display: block;
    width: 100%;
    padding: .375rem .75rem;
    font-size: 20px;
    line-height: 1.5;
    background-color: #152740;
    background-clip: padding-box;
    border: 1px solid #314564;
    border-radius: .25rem;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    box-sizing: border-box;
    color: #ddd;
    font-weight: 100;
    font-family: Arial, sans-serif;
}

input {
    overflow: visible;
}


input[type="text"],
textarea {
    transition: box-shadow 0.3s ease-in-out;
    box-shadow: inset 0 0 8px rgba(0, 0, 0, 0.2);
    outline: none;
}

/* Apply box-shadow on focus */
input[type="text"]:focus,
textarea:focus {
    box-shadow: 0 0 8px rgba(153, 153, 255, 0.5);
    /* Adjust the color and intensity as needed */
    outline: none;
    /* Optional: Removes the default outline */
}

.ic_ig {
    width: 32px;
    margin-right: 10px;
}

.ic_fb {
    width: 32px;
    margin-right: 10px;
}

.ic_email {
    width: 32px;
    margin-right: 10px;
}

.ic_map {
    width: 28px;
    margin-right: 14px;
}

.ic_section {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.detail_section {
    display: flex;
    align-items: center;
    margin-top: 30px;
    margin-bottom: 10px;
}

.ic_section a {
    font-size: 18px;
    text-decoration: none;
    color: #fff;
}

.ic_section a:hover {
    color: #02A0C1
}

.deep_blue {
    opacity: 0.7;
    height: 5px;
    border-top: 1px solid #314564;
    background: linear-gradient(to bottom,
            rgba(19, 35, 58, 1) 0%,
            rgba(19, 35, 58, 0) 100%);
    margin-bottom: 8px;
}

.office-detail {
    margin-bottom: 25px;
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
}

.office-detail b {
    font-weight: 400;
}

.tc {
    font-family: 'Noto Sans TC', sans-serif;
    font-weight: 100;
}

.sc {
    font-family: 'Noto Sans SC', sans-serif;
    font-weight: 100;
}

footer {
    color: #fff;
    font-weight: 100;
    padding: 15px 0;
}

.copyright {
    padding: 0;
    margin: 0;
    font-size: 14px;
}


/* submit button */
.button-submit {
    align-items: center;
    appearance: none;
    background-image: radial-gradient(100% 100% at 100% 0, #3879B2 0, #1E3D60 100%);
    border: 0;
    border-radius: 8px;
    box-shadow: rgba(17, 32, 51, .4) 0 2px 4px, rgba(17, 32, 51, .3) 0 7px 13px -3px, rgba(23, 42, 69, .5) 0 -3px 0 inset;
    box-sizing: border-box;
    color: #fff;
    cursor: pointer;
    display: inline-flex;
    /* font-family: "JetBrains Mono",monospace; */
    font-family: 'Poppins', sans-serif;
    font-weight: 100;
    height: 48px;
    width: 150px;
    justify-content: center;
    line-height: 1;
    list-style: none;
    overflow: hidden;
    padding-left: 16px;
    padding-right: 16px;
    position: relative;
    text-align: left;
    text-decoration: none;
    transition: box-shadow .15s, transform .15s;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    white-space: nowrap;
    will-change: box-shadow, transform;
    font-size: 18px;
}

.button-submit:focus {
    box-shadow: #006291 0 0 0 1.5px inset, rgba(17, 32, 51, .4) 0 2px 4px, rgba(17, 32, 51, .3) 0 7px 13px -3px, #006291 0 -3px 0 inset;
}

.button-submit:hover {
    box-shadow: rgba(17, 32, 51, .4) 0 4px 8px, rgba(17, 32, 51, .3) 0 7px 13px -3px, #006291 0 -3px 0 inset;
    transform: translateY(+2px);
}

.button-submit:active {
    box-shadow: #006291 0 3px 7px inset;
    transform: translateY(2px);
}

/* For viewport width under 768px */
@media screen and (max-width: 768px) {
    .w4-container-pd-color {
        padding: 0px;
    }

    #contact-us .hero-title-01 {
        font-size: 26px;
        padding: 50px 0 0px 25px;
    }

    #contact-us .flex-container {
        display: flex;
        flex-direction: column;
    }

    .form-container {
        gap: 0px;
    }

    #contact-us .flex-item {
        min-width: 100%;
        /* additional styles if needed */
    }

    .form-item {
        min-width: 100%;
        margin-top: 15px;
        /* Full width for smaller screens */
    }

    .button-submit {
        width: 100%;
    }

    .copyright {
        font-size: 12px;
    }

    footer {
        padding: 15px;
    }
}