:root {
    --max-width: 1440px;
    --sec-width: 89%;
    --sec-max-width: 1280px;
    --black: #444C55;
    --black-light-20: rgb(54, 54, 54, 0.2);
    --white: #FFFFFF;
    --white-66: rgba(255, 255, 255, 0.66);
    --white-30: rgba(255, 255, 255, 0.3);
    --main-color: #154994;
    --main-color-30: rgb(21, 73, 148, 0.3);
    --main-color-16: rgb(21, 73, 148, 0.16);
    --dark-blue: #011D45;
    --accent-color: #218CD9;
    --accent-color-30: rgb(33, 140, 217, 0.3);
    --accent-color-20: rgb(33, 140, 217, 0.2);
    --light-blue: #8BE6F7;
    --light-blue-2: #8AB8D9;
    --bg-color: #F2F3F4;
    --shadow-1: 0px 3px 6px var(--black-light-20);
    --shadow-2: 0px 0px 10px var(--black);
    --shadow-3: 0px 0px 50px var(--main-color-16);
    --main-to-dark-blue-150deg-gradient: linear-gradient(150deg, var(--main-color) 40%, var(--dark-blue) 160%);
}

@font-face {
    font-family: Heebo;
    src: url("assets/fonts/Heebo.ttf") format("trueType");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: ZenKakuGothicNew-Black;
    src: url("assets/fonts/ZenKakuGothicNew-Black.ttf") format("trueType");
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: ZenKakuGothicNew-Bold;
    src: url("assets/fonts/ZenKakuGothicNew-Bold.ttf") format("trueType");
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: ZenKakuGothicNew-Light;
    src: url("assets/fonts/ZenKakuGothicNew-Light.ttf") format("trueType");
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: ZenKakuGothicNew-Medium;
    src: url("assets/fonts/ZenKakuGothicNew-Medium.ttf") format("trueType");
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: ZenKakuGothicNew-Regular;
    src: url("assets/fonts/ZenKakuGothicNew-Regular.ttf") format("trueType");
    font-style: normal;
    font-display: swap;
}

.black {
    color: var(--black);
}

.bg-white {
    background: var(--white);
}

.bg-white-30 {
    background: var(--white-30);
}

.circle {
    border-radius: 50%;
}

.margin-auto {
    margin-left: auto;
    margin-right: auto;
}

h1 {
    font-family: ZenKakuGothicNew-Black, sans-serif;
    font-size: 40px;
}

h2 {
    font-family: ZenKakuGothicNew-Black, sans-serif;
    font-size: 48px;
    line-height: 1;
}

h3 {
    font-family: ZenKakuGothicNew-Bold, sans-serif;
    font-size: 20px;
}

body {
    background: var(--bg-color);
    font-family: ZenKakuGothicNew-Medium, sans-serif;
    font-size: 16px;
    line-height: 1.35;
    color: var(--black);
}

header {
    width: 100%;
    height: 80px;
    display: flex;
    align-items: start;
    justify-content: center;
    position: fixed;
    top: 0;
    left: 0;
    background: var(--white-66);
    -webkit-backdrop-filter: blur(30px) brightness(130%);
    backdrop-filter: blur(30px) brightness(130%);
    z-index: 1000;
}

header>.inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: var(--max-width);
    height: 100%;
}

.logo {
    height: 55px;
    aspect-ratio: 186 / 55;
    flex: none;
    margin-left: 24px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 50px;
    max-height: 100%;
}

.nav-links>.inner {
    display: flex;
    gap: 40px;
}

.nav-button {
    padding: 31px 60px 34px 60px;
    background: linear-gradient(140deg, var(--accent-color) -10%, var(--light-blue) 200%);
    font-family: ZenKakuGothicNew-Bold, sans-serif;
    font-size: 20px;
    color: var(--white);
    box-shadow: var(--shadow-1);
}

.hamburger {
    display: none;
}

main {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.container-1 {
    padding-top: 80px;
    min-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.hero-bg {
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    max-width: none;
    height: calc(100dvh - 80px);
    max-height: 800px;
    object-fit: cover;
    z-index: -1;
    filter: blur(18px);
}

#hero {
    width: 100%;
    max-width: var(--max-width);
    height: calc(100dvh - 80px);
    max-height: 800px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: var(--white);
    overflow: clip;
}

#hero>.inner-1 {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    width: var(--sec-width);
    max-width: var(--sec-max-width);
    height: 100%;
    gap: 26px;
    z-index: 1;
}

#hero>.inner-2 {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: end;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-image {
    width: 83%;
    aspect-ratio: 1200 / 600;
}

.hero-title {
    filter: drop-shadow(var(--shadow-2));
}

.hero-text {
    font-size: 24px;
    line-height: 1.6;
    filter: drop-shadow(var(--shadow-2));
    width: 61%;
}

.scroll-button {
    position: absolute;
    bottom: 5%;
    right: 0;
    width: 148px;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    background: var(--accent-color-30);
    padding: 6px;
    color: var(--main-color);
    font-family: ZenKakuGothicNew-Bold, sans-serif;
    font-size: 20px;
}

.scroll-button>.inner {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--white);
    gap: 9px;
}

.scroll-icon {
    height: 46px;
}

.gradient-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

#company {
    width: 100%;
    max-width: var(--max-width);
    padding: 170px 0px 178px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.bg-2 {
    position: absolute;
    top: 222px;
    width: 100vw;
    max-width: none;
    aspect-ratio: 1440 / 878;
    z-index: -2;
}

.text-image {
    width: 170px;
    aspect-ratio: 170 / 540;
    z-index: 1;
}

.machine-01 {
    position: absolute;
    top: 10%;
    left: 16%;
    width: 16%;
    aspect-ratio: 240 / 160;
}

.haruchika-polishing-machine {
    position: absolute;
    top: 38%;
    left: 0;
    width: 28%;
    aspect-ratio: 400 / 256;
}

.automatic-deposition-machine {
    position: absolute;
    top: 71%;
    left: 22%;
    width: 14%;
    aspect-ratio: 200 / 120;
}

.holding-lens {
    position: absolute;
    top: 15%;
    right: 0;
    width: 28%;
    aspect-ratio: 400 / 256;
}

.spinner {
    position: absolute;
    top: 54%;
    right: 17%;
    width: 21%;
    aspect-ratio: 299 / 275;
}

#products {
    width: var(--sec-width);
    max-width: var(--sec-max-width);
    padding: 100px 80px;
    background: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: start;
    box-shadow: var(--shadow-3);
    color: var(--main-color);
    gap: 40px;
}

#products .section-heading {
    gap: 12px;
}

.section-heading {
    display: flex;
    flex-direction: column;
    align-items: start;
}

.section-heading ul {
    font-family: ZenKakuGothicNew-Bold, sans-serif;
}

.section-heading li::before {
    content: "";
    display: inline-block;
    width: 12px;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    background: var(--main-color);
    margin-right: 8px;
}

.section-heading.white li::before {
    background: var(--white);
}

.section-heading h2 {
    text-transform: uppercase;
}

.separator-line {
    width: 100%;
    height: 1px;
    background: var(--main-color);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto;
    grid-row-gap: 40px;
    grid-column-gap: 24px;
}

.product-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    transition: transform 0.2s ease-out;
}

.product-item img {
    width: 100%;
    height: auto;
    aspect-ratio: 352 / 248;
    object-fit: contain;
    transition: transform 0.25s ease-out;
}

.product-item:hover,
.product-item:focus-within {
    transform: translateY(-2px);
}

.product-item:hover img,
.product-item:focus-within img {
    transform: scale(1.03);
}

.site-button {
    width: 300px;
    max-width: 100%;
    border-radius: 1000px;
    padding: 4px;
    background: var(--main-color-30);
    color: var(--white);
    font-family: ZenKakuGothicNew-Bold, sans-serif;
}

.site-button.white {
    background: var(--white-30);
    color: var(--main-color);
}

.site-button>.inner {
    width: 100%;
    border-radius: 1000px;
    background: var(--main-to-dark-blue-150deg-gradient);
    padding: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.site-button.white>.inner {
    background: var(--white);
}

.site-button img {
    height: 24px;
    aspect-ratio: 1 / 1;
    position: absolute;
    right: 20px;
}

#about {
    width: 100%;
    max-width: var(--max-width);
    padding: 328px 0px 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    color: var(--white);
}

.many-lenses {
    width: 100vw;
    height: 640px;
    max-width: none;
    object-fit: cover;
    object-position: bottom;
    z-index: -2;
    position: absolute;
    bottom: 220px;
}

.about-grid {
    width: 75%;
    max-width: 1080px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    position: relative;
    z-index: 1;
}

.about-card {
    display: flex;
    flex-direction: column;
    align-items: start;
    padding: 42px 40px 54px 40px;
    gap: 50px;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.about-card-lower {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.about-card-button {
    width: 64px;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    background: var(--white-30);
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: padding 0.2s ease-in;
}

.about-card-button>.inner {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
}

.about-card-button img {
    width: 24px;
    aspect-ratio: 1 / 1;
}

.about-card-button:hover {
    padding: 0px;
}

.bg-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(135deg, var(--main-color) -10%, var(--dark-blue) 90%);
    transition: transform 0.3s ease-out;
}

.about-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.about-bg-image-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 40%;
    background: linear-gradient(270deg, var(--accent-color), var(--light-blue-2));
}

.about-card:hover .bg-gradient {
    transform: translateX(-100%);
}

#join-us {
    width: 100%;
    max-width: var(--max-width);
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: ZenKakuGothicNew-Regular, sans-serif;
    color: var(--white);
    position: relative;
}

.people {
    width: 100vw;
    max-width: none;
    height: 440px;
    object-fit: cover;
    object-position: top left;
}

#join-us>.inner {
    width: 53%;
    position: absolute;
    right: 0;
    top: 138px;
}

.recruit-card {
    display: flex;
    flex-direction: column;
    align-items: start;
    padding: 42px 35% 60px 10%;
    gap: 50px;
    position: relative;
    z-index: 1;
}

.join-us-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.join-us-image {
    position: absolute;
    top: 67%;
    right: 5%;
    width: 40%;
    aspect-ratio: 300 / 235;
    z-index: 2;
}

.container-2 {
    min-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

#news {
    width: 100%;
    max-width: var(--max-width);
    padding-top: 375px;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--main-color);
}

#news>.inner {
    width: 75%;
    max-width: 963px;
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 20px;
    position: relative;
}

.coin-like-lens {
    position: absolute;
    bottom: -45px;
    left: -10.4%;
    width: 214px;
    aspect-ratio: 421 / 484;
    z-index: -1;
}

.news-list {
    width: 75%;
    display: flex;
    flex-direction: column;
    align-items: end;
    gap: 40px;
    color: var(--black);
}

.news-list ul {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.news-list li {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.news-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 64px;
}

.news-item>.inner {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 8px;
}

.news-date {
    font-family: ZenKakuGothicNew-Regular, sans-serif;
}

.circular-arrow-button {
    width: 56px;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    background: var(--main-color-30);
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: none;
    transition: padding 0.2s ease-in;
}

.circular-arrow-button>.inner {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
}

.circular-arrow-button img {
    width: 50%;
    aspect-ratio: 1 / 1;
}

.circular-arrow-button:hover {
    padding: 0px;
}

#contact {
    width: 100%;
    max-width: var(--max-width);
    padding: 160px 0px 240px;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--main-color);
    font-family: ZenKakuGothicNew-Regular, sans-serif;
    position: relative;
}

.lenses-2 {
    position: absolute;
    bottom: 0;
    width: 100vw;
    max-width: none;
    aspect-ratio: 1440 / 559;
    z-index: -10;
}

#contact>.inner {
    width: 75%;
    max-width: 963px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 44px clamp(0px, 7%, 100px);
    gap: 20px;
    background: var(--white);
    box-shadow: var(--shadow-3);
}

.contact-text {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 55px;
}

.contact-links {
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 30px;
}

.mail-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    background: var(--main-to-dark-blue-150deg-gradient);
    border-radius: 1000px;
    padding: 0px 24px 0px 40px;
    color: var(--white);
    height: 104px;
}

.mail-button img {
    width: 34px;
    aspect-ratio: 34 / 24;
}

.phone-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    background: var(--accent-color-20);
    border-radius: 1000px;
    padding: 0px 24px 0px 40px;
    color: var(--main-color);
    font-family: ZenKakuGothicNew-Bold, sans-serif;
    height: 104px;
}

.phone-button img {
    width: 34px;
    aspect-ratio: 1 / 1;
}

.phone-number {
    font-family: Heebo, sans-serif;
    font-weight: 600;
    font-size: 32px;
    margin-bottom: -4px;
}

@media (max-width: 1100px) {
    :root {
        --sec-width: 92%;
    }

    h1 {
        font-size: 36px;
    }

    h2 {
        font-size: 42px;
    }

    h3 {
        font-size: 18px;
    }

    body {
        font-size: 14px;
    }

    header {
        height: 60px;
    }

    .logo {
        height: 40px;
        margin-left: 16px;
    }

    .nav-links {
        gap: 30px;
    }

    .nav-links>.inner {
        gap: 20px;
    }

    .nav-button {
        padding: 22px 30px 24px 30px;
        font-size: 16px;
    }

    .container-1 {
        padding-top: 60px;
    }

    .hero-bg {
        top: 60px;
        height: calc(100dvh - 60px);
        max-height: 650px;
    }

    #hero {
        height: calc(100dvh - 60px);
        max-height: 650px;
    }

    #hero>.inner-1 {
        gap: 20px;
    }

    .hero-text {
        font-size: 20px;
        width: 75%;
    }

    .scroll-button {
        width: 110px;
        bottom: 8%;
        padding: 5px;
        font-size: 16px;
    }

    .scroll-button>.inner {
        gap: 6px;
    }

    .scroll-icon {
        height: 36px;
    }

    .hero-image {
        width: 85%;
    }

    #company {
        padding: 140px 0px 150px;
    }

    .bg-2 {
        height: calc(100% - 220px);
    }

    .text-image {
        width: 140px;
    }

    .machine-01 {
        width: 20%;
    }

    .haruchika-polishing-machine {
        width: 30%;
    }

    .automatic-deposition-machine {
        width: 18%;
    }

    .holding-lens {
        width: 30%;
    }

    .spinner {
        width: 23%;
    }

    #products {
        padding: 80px 50px;
        gap: 32px;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-column-gap: 20px;
        grid-row-gap: 32px;
    }

    .site-button {
        width: 280px;
    }

    #about {
        padding: 280px 0px 160px;
    }

    .about-grid {
        width: 85%;
        grid-column-gap: 32px;
        grid-row-gap: 32px;
    }

    .about-card {
        padding: 36px 32px 48px;
        gap: 40px;
    }

    .many-lenses {
        height: 520px;
    }

    #join-us>.inner {
        width: 75%;
        top: 120px;
    }

    .recruit-card {
        padding: 36px 30% 50px 8%;
        gap: 40px;
    }

    .people {
        height: 380px;
    }

    .join-us-image {
        width: 42%;
        top: 65%;
    }

    #news {
        padding-top: 320px;
    }

    #news>.inner {
        width: 85%;
    }

    .coin-like-lens {
        width: 180px;
        left: -8%;
        bottom: -35px;
    }

    .news-list {
        width: 85%;
        gap: 32px;
    }

    .news-item {
        gap: 24px;
    }

    #contact {
        padding: 140px 0px 200px;
    }

    #contact>.inner {
        width: 85%;
        padding: 36px 32px;
        gap: 40px;
    }

    .contact-text {
        gap: 40px;
        width: 100%;
    }

    .contact-links {
        width: 100%;
        gap: 24px;
    }

    .mail-button,
    .phone-button {
        height: 92px;
        padding: 0px 20px 0px 32px;
        gap: 16px;
    }

    .phone-number {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 32px;
    }

    h2 {
        font-size: 36px;
    }

    h3 {
        font-size: 16px;
    }

    body {
        font-size: 12px;
    }

    .logo {
        z-index: 1001;
    }

    .hamburger {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 24px;
        height: 20px;
        cursor: pointer;
        margin-right: 16px;
    }

    .hamburger span {
        display: block;
        height: 3px;
        width: 100%;
        background: var(--black);
        border-radius: 3px;
        z-index: 1001;
        transition: all 0.3s ease-in-out;
    }

    .hamburger.active span:nth-child(1) {
        transform: translateY(9px) rotate(225deg);
    }

    .hamburger.active span:nth-child(2) {
        transform: rotateZ(180deg);
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-225deg);
    }

    .nav-links {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100dvh;
        max-height: none;
        background: var(--white);
        flex-direction: column;
        align-items: stretch;
        justify-content: space-between;
        padding: 60px 0px 0px;
        gap: 0;
        z-index: 999;
        transition: left 0.3s ease-in-out;
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links>.inner {
        flex-direction: column;
        width: 100%;
        gap: 0;
    }

    .nav-links>.inner li {
        width: 100%;
    }

    .nav-links>.inner a {
        display: block;
        width: 100%;
        text-align: center;
        padding: 16px;
    }

    .nav-button {
        padding: 16px 24px;
        display: flex;
        justify-content: center;
        font-size: 14px;
    }

    #hero>.inner-1 {
        gap: 16px;
    }

    .hero-text {
        font-size: 18px;
        width: 90%;
    }

    .scroll-button {
        width: 90px;
        bottom: 12%;
        padding: 4px;
        font-size: 14px;
    }

    .scroll-button>.inner {
        gap: 4px;
    }

    .scroll-icon {
        height: 28px;
    }

    .hero-image {
        width: 100%;
        height: 360px;
        object-fit: cover;
        object-position: 45%;
    }

    #company {
        padding: 120px 0px 130px;
    }

    .bg-2 {
        top: 180px;
        height: calc(100% - 180px);
    }

    .text-image {
        width: 120px;
    }

    .machine-01 {
        width: 25%;
        left: 5%;
    }

    .automatic-deposition-machine {
        width: 20%;
        left: 10%;
    }

    .holding-lens {
        width: 30%;
    }

    .spinner {
        width: 25%;
        right: 5%;
    }

    #products {
        padding: 60px 20px;
        gap: 28px;
    }

    .products-grid {
        grid-template-columns: 1fr;
        grid-column-gap: 0;
        grid-row-gap: 24px;
    }

    .product-item {
        gap: 16px;
    }

    .site-button {
        width: 100%;
    }

    #about {
        padding: 200px 0px 120px;
    }

    .many-lenses {
        height: 100%;
        bottom: 150px;
    }

    .about-grid {
        width: var(--sec-width);
        grid-template-columns: 1fr;
        grid-column-gap: 0;
        grid-row-gap: 24px;
    }

    .about-card {
        padding: 28px 24px 40px;
        gap: 32px;
    }

    .about-card-button {
        width: 56px;
    }

    .section-heading h2 {
        font-size: 32px;
    }

    .people {
        height: 280px;
    }

    #join-us>.inner {
        position: relative;
        width: var(--sec-width);
        right: auto;
        top: -60px;
    }

    .recruit-card {
        padding: 28px 24px 140px;
        gap: 32px;
        margin-bottom: -120px;
    }

    .join-us-image {
        width: 240px;
        right: 0;
        position: relative;
        margin: 0 auto;
    }

    #news {
        padding-top: 40px;
    }

    #news>.inner {
        width: var(--sec-width);
        flex-direction: column;
        align-items: stretch;
        gap: 32px;
    }

    .coin-like-lens {
        width: 140px;
        right: 0;
        left: auto;
        top: -70px;
    }

    .news-list {
        width: 100%;
        gap: 28px;
        align-items: stretch;
    }

    .news-list ul {
        gap: 12px;
    }

    .news-list li {
        gap: 16px;
    }

    .news-item {
        gap: 20px;
    }

    .news-item>.inner {
        width: 100%;
    }

    .circular-arrow-button {
        align-self: flex-end;
        width: 40px;

    }

    #contact {
        padding: 100px 0px 160px;
    }

    #contact>.inner {
        width: 92%;
        flex-direction: column;
        padding: 28px 20px;
        gap: 32px;
    }

    .contact-text {
        gap: 32px;
        width: 100%;
    }

    .contact-links {
        width: 100%;
        gap: 20px;
    }

    .mail-button,
    .phone-button {
        height: 80px;
        padding: 0px 16px 0px 24px;
        gap: 12px;
        font-size: 12px;
    }

    .mail-button img,
    .phone-button img {
        width: 28px;
    }

    .phone-number {
        font-size: 24px;
    }
}