/**
* Template Name: Avilon
* Template URL: https://bootstrapmade.com/avilon-bootstrap-landing-page-template/
* Updated: Mar 17 2024 with Bootstrap v5.3.3
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

@font-face {
    font-family: "Paperlogy";
    src: url("/resources/assets/fonts/Paperlogy-3Light.ttf") format("truetype");
    font-weight: 100;
    font-style: normal;
}

@font-face {
    font-family: "Paperlogy";
    src: url("/resources/assets/fonts/Paperlogy-4Regular.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: "Paperlogy";
    src: url("/resources/assets/fonts/Paperlogy-7Bold.ttf") format("truetype");
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: "Paperlogy";
    src: url("/resources/assets/fonts/Paperlogy-8ExtraBold.ttf") format("truetype");
    font-weight: 900;
    font-style: normal;
}

* {
    font-family: "Paperlogy", sans-serif;
    box-sizing: border-box;
}

@import url('https://fonts.googleapis.com/css2?family=Archivo+Black&display=swap');

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
    background: #fff;
    color: #666666;
    overflow-x: hidden;

}

a {
    color: var(--maincolor3);
    text-decoration: none;
    transition: 0.5s;
}

a:hover,
a:active,
a:focus {
    color: var(--maincolor2);
    outline: none;
    text-decoration: none;
}

p {
    padding: 0;
    margin: 0 0 30px 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 400;
    margin: 0 0 20px 0;
    padding: 0;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
    position: fixed;
    background: #91C8E4;
    color: #fff;
    border-radius: 4px 4px 0 0;
    right: 15px;
    bottom: 0;
    transition: none;
    visibility: hidden;
    opacity: 0;
    width: 64px;
    height: 34px;
}

.back-to-top i {
    line-height: 0;
    font-size: 20px;
}

.back-to-top:focus {
    background: var(--maincolor3);
    color: #fff;
    outline: none;
}

.back-to-top:hover {
    background: var(--maincolor3);
    color: #fff;
}

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

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
    height: 90px;
    transition: all 0.5s;
    z-index: 997;
    background: var(--maincolor3);
}

#header.header-transparent {
    background: transparent;
}

#header.header-scrolled {
    background: var(--maincolor3);
    height: 70px;
    transition: all 0.5s;
}

#header #logo h1 {
    font-size: 36px;
    padding: 0;
    margin: 0;
    display: inline-block;
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
}

#header #logo h1 a,
#header #logo h1 a:hover {
    color: #fff;
}

@media (max-width: 768px) {
    #header #logo h1 {
        font-size: 28px;
    }

    #header #logo img {
        max-height: 40px;
    }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation
*/


.navbar {
    width: 100%;
    padding: 0;
    display: flex;
}

.navbar ul {
    width: 100%;
    margin-top: 0;
    margin-bottom: 0;
    margin-left: 30%;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
}

.navbar li {
    position: relative;
}

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


.navbar > ul > li {
    white-space: nowrap;
    padding: 10px 0 10px 24px;
}

.navbar a,
.navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    padding: 0 2px;
    white-space: nowrap;
    transition: 0.3s;
    letter-spacing: 0.4px;
    position: relative;
}

.navbar a i,
.navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
}

.navbar > ul > li > a:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -8px;
    left: 0;
    background-color: #fff;
    visibility: hidden;
    transform: scaleX(0);
    transition: all 0.3s ease-in-out 0s;
}

.navbar a:hover:before,
.navbar li:hover > a:before,
.navbar .active:before {
    visibility: visible;
    transform: scaleX(1);
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover > a {
    color: #fff;
    font-weight: bold;
}

.navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 24px;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
}

.navbar .dropdown ul a {
    padding: 10px 20px;
    font-size: 14px;
    text-transform: none;
    color: #333333;
}

.navbar .dropdown ul a i {
    font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover > a {
    color: var(--maincolor3);
}

.navbar .dropdown:hover > ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
}

.navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
}

.navbar .dropdown .dropdown:hover > ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
}

@media (max-width: 1366px) {
    .navbar .dropdown .dropdown ul {
        left: -90%;
    }

    .navbar .dropdown .dropdown:hover > ul {
        left: -100%;
    }
}

/**
* Mobile Navigation
*/
.mobile-nav-toggle {
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: 0.5s;
}

@media (max-width: 879px) {
    .navbar {
        width: 100%;
        padding: 0;
        display: flex;
        flex-direction: row-reverse;
    }

    .mobile-nav-toggle {
        display: block;
    }

    .navbar ul {
        display: none;

    }
}

.navbar-mobile {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(26, 26, 26, 0.9);
    transition: 0.3s;
    z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
    position: absolute;
    top: 15px;
    right: 15px;
}

.navbar-mobile ul {
    width: 60%;
    display: block;
    position: absolute;
    top: 55px;
    bottom: 15px;
    padding: 10px 0;
    background-color: #fff;
    overflow-y: auto;
    transition: 0.3s;
}

.navbar-mobile > ul > li {
    padding: 0;
}

.navbar-mobile a:hover:before,
.navbar-mobile li:hover > a:before,
.navbar-mobile .active:before {
    visibility: hidden;
}

.navbar-mobile a,
.navbar-mobile a:focus {
    padding: 10px 20px;
    font-size: 15px;
    color: #333333;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover > a {
    color: var(--maincolor3);
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
    margin: 15px;
}

.navbar-mobile .dropdown ul {
    position: static;
    display: none;
    margin: 10px 20px;
    padding: 10px 0;
    z-index: 99;
    opacity: 1;
    visibility: visible;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
    /*min-width: 200px;*/
}

.navbar-mobile .dropdown ul a {
    padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
    font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover > a {
    color: var(--maincolor3);
}

.navbar-mobile .dropdown > .dropdown-active {
    display: block;
}

/*--------------------------------------------------------------
# Sections
--------------------------------------------------------------*/
section {
    overflow: hidden;
}

/* Sections Header
--------------------------------*/
.section-header .section-title {
    font-size: 32px;
    color: #111;
    text-align: center;
    font-weight: 400;
}

.section-header .section-description {
    text-align: center;
    color: #777;
}

.section-header .section-divider {
    display: block;
    width: 60px;
    height: 3px;
    background: var(--maincolor3);
    background: linear-gradient(0deg, var(--maincolor3) 0%, var(--maincolor1) 100%);
    margin: 0 auto;
    margin-bottom: 20px;
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
    padding: 20px 0;
    min-height: 40px;
    margin-top: 92px;
}

@media (max-width: 992px) {
    .breadcrumbs {
        margin-top: 68px;
    }
}

.breadcrumbs h2 {
    font-size: 24px;
    font-weight: 300;
    margin: 0;
}

@media (max-width: 992px) {
    .breadcrumbs h2 {
        margin: 0 0 10px 0;
    }
}

.breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 14px;
}

.breadcrumbs ol li + li {
    padding-left: 10px;
}

.breadcrumbs ol li + li::before {
    display: inline-block;
    padding-right: 10px;
    color: #6c757d;
    content: "/";
}

@media (max-width: 768px) {
    .breadcrumbs .d-flex {
        display: block !important;
    }

    .breadcrumbs ol {
        display: block;
    }

    .breadcrumbs ol li {
        display: inline-block;
    }
}

/* Product Featuress Section
--------------------------------*/
#features {
    background: #fff;
    padding: 60px 0 0 0;
    overflow: hidden;
}

#features .features-img {
    text-align: center;
    padding-top: 20px;
}

@media (min-width: 769px) {
    #features .features-img {
        padding-top: 120px;
        margin-top: -200px;
    }
}

#features .features-img img {
    max-width: 100%;
}

#features .box {
    margin-bottom: 15px;
    text-align: center;
}

#features .icon {
    margin-bottom: 10px;
}

#features .icon i {
    color: #666666;
    font-size: 40px;
    transition: 0.5s;
}

#features .icon i:before {
    background: var(--maincolor3);
    background: linear-gradient(45deg, var(--maincolor3) 0%, var(--maincolor1) 100%);
    background-clip: border-box;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

#features .title {
    font-weight: 300;
    margin-bottom: 15px;
    font-size: 22px;
}

#features .title a {
    color: #111;
}

#features .description {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 10px;
}

#features .section-description {
    padding-bottom: 10px;
}

/* Product Advanced Featuress Section
--------------------------------*/
#advanced-features {
    overflow: hidden;
}

#advanced-features .features-row {
    padding: 60px 0 30px 0;
}

#advanced-features h2 {
    font-size: 26px;
    font-weight: 700;
    color: #000;
}

#advanced-features h3 {
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: #999;
}

#advanced-features p {
    line-height: 24px;
    color: #777;
    margin-bottom: 30px;
}

#advanced-features i {
    color: #666666;
    font-size: 64px;
    transition: 0.5s;
    float: left;
    padding: 0 15px 0px 0;
    line-height: 1;
}

#advanced-features i:before {
    background: var(--maincolor3);
    background: linear-gradient(45deg, var(--maincolor3) 0%, var(--maincolor1) 100%);
    background-clip: border-box;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

#advanced-features .advanced-feature-img-right {
    max-width: 100%;
    float: right;
    padding: 0 0 30px 30px;
}

#advanced-features .advanced-feature-img-left {
    max-width: 100%;
    float: left;
    padding: 0 30px 30px 0;
}

@media (max-width: 768px) {

    #advanced-features .advanced-feature-img-right,
    #advanced-features .advanced-feature-img-left {
        max-width: 50%;
    }
}

@media (max-width: 767px) {

    #advanced-features .advanced-feature-img-right,
    #advanced-features .advanced-feature-img-left {
        max-width: 100%;
        float: none;
        padding: 0 0 30px 0;
    }
}

/* Call To Action Section
--------------------------------*/
#call-to-action {
    overflow: hidden;
    background: linear-gradient(var(--main-op5-color2), rgba(145, 200, 228, 0.2)), url(../img/hw/night-img.jpg) fixed center center;
    background-size: cover;
    padding: 80px 0;
}

#call-to-action .cta-title {
    color: #fff;
    font-size: 28px;
    font-weight: 700;
}

#call-to-action .cta-text {
    color: #fff;
}

@media (min-width: 769px) {
    #call-to-action .cta-btn-container {
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

#call-to-action .cta-btn {
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 8px 30px;
    border-radius: 25px;
    transition: background 0.5s;
    margin: 10px;
    border: 2px solid #fff;
    color: #fff;
}

#call-to-action .cta-btn:hover {
    background: var(--maincolor3);
    border: 2px solid var(--maincolor3);
}

/* More Features Section
--------------------------------*/
#more-features {
    padding: 60px 0 60px 0;
    overflow: hidden;
}

#more-features .box {
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: 0px 0px 30px rgba(73, 78, 92, 0.15);
    background: #fff;
    transition: 0.4s;
    height: 100%;
}

#more-features .icon {
    float: left;
}

#more-features .icon i {
    color: #666666;
    font-size: 80px;
    transition: 0.5s;
    line-height: 0;
}

#more-features .icon i:before {
    background: var(--maincolor3);
    background: linear-gradient(45deg, var(--maincolor3) 0%, var(--maincolor2) 100%);
    background-clip: border-box;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

#more-features h4 {
    margin-left: 100px;
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 18px;
}

#more-features h4 a {
    color: #111;
}

#more-features p {
    font-size: 14px;
    margin-left: 100px;
    margin-bottom: 0;
    line-height: 24px;
}

@media (max-width: 767px) {
    #more-features .box {
        margin-bottom: 20px;
    }

    #more-features .icon {
        float: none;
        text-align: center;
        padding-bottom: 15px;
    }

    #more-features h4,
    #more-features p {
        margin-left: 0;
        text-align: center;
    }
}

/* Clients Section
--------------------------------*/
#clients {
    padding: 30px 0;
    background: #fff;
    overflow: hidden;
}

#clients img {
    max-width: 100%;
    opacity: 0.5;
    transition: 0.3s;
    padding: 15px 0;
}

#clients img:hover {
    opacity: 1;
}

/* Pricing Section
--------------------------------*/
#pricing {
    padding: 60px 0 60px 0;
    overflow: hidden;
}

#pricing .box {
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: 0px 0px 30px rgba(73, 78, 92, 0.15);
    background: #fff;
    text-align: center;
}

#pricing h3 {
    font-weight: 400;
    margin-bottom: 15px;
    font-size: 28px;
}

#pricing h4 {
    font-size: 46px;
    color: var(--maincolor3);
    font-weight: 300;
}

#pricing h4 sup {
    font-size: 20px;
    top: -20px;
}

#pricing h4 span {
    color: #bababa;
    font-size: 20px;
}

#pricing ul {
    padding: 0;
    list-style: none;
    color: #999;
    text-align: left;
    line-height: 20px;
}

#pricing ul li {
    padding-bottom: 12px;
}

#pricing ul i {
    color: var(--maincolor3);
    font-size: 18px;
    padding-right: 4px;
}

#pricing .get-started-btn {
    background: #515e61;
    display: inline-block;
    padding: 6px 30px;
    border-radius: 20px;
    color: #fff;
    transition: none;
    font-size: 14px;
    font-weight: 400;
}

#pricing .featured {
    border: 2px solid var(--maincolor3);
}

#pricing .featured .get-started-btn {
    background: linear-gradient(45deg, #1de099, var(--maincolor3));
}

/* Frequently Asked Questions Section
--------------------------------*/
#faq {
    padding: 60px 0 90px 0;
    overflow: hidden;
}

#faq .faq-list {
    padding: 0;
    list-style: none;
}

#faq .faq-list li {
    border-bottom: 1px solid #f0f0f0;
    margin-bottom: 35px;
    padding-bottom: 35px;
}

#faq .faq-list .question {
    display: block;
    position: relative;
    font-size: 18px;
    line-height: 24px;
    font-weight: 400;
    padding-left: 25px;
    cursor: pointer;
    color: var(--maincolor3);
    transition: 0.3s;
}

#faq .faq-list i {
    font-size: 16px;
    position: absolute;
    left: 0;
    top: 3px;
}

#faq .faq-list p {
    margin-bottom: 0;
    /*padding: 10px 0 0 25px;*/
    padding: 5px 0 0 40px;
}

#faq .faq-list p:first-child {
    padding: 12px 0 0 40px !important;
}

#faq .faq-list .icon-show {
    display: none;
}

#faq .faq-list .collapsed {
    color: black;
}

#faq .faq-list .collapsed:hover {
    color: var(--maincolor4);
}

#faq .faq-list .collapsed .icon-show {
    display: inline-block;
    transition: 0.6s;
}

#faq .faq-list .collapsed .icon-close {
    display: none;
    transition: 0.6s;
}

/* Our Team Section
--------------------------------*/
#team {
    padding: 60px 0;
    overflow: hidden;
}

#team .member {
    text-align: center;
    margin-bottom: 20px;
}

#team .member .pic {
    margin-bottom: 15px;
    overflow: hidden;
    height: 260px;
}

#team .member .pic img {
    max-width: 100%;
}

#team .member h4 {
    font-weight: 700;
    margin-bottom: 2px;
    font-size: 18px;
}

#team .member span {
    display: block;
    font-size: 13px;
}

#team .member .social {
    margin-top: 15px;
}

#team .member .social a {
    color: #b3b3b3;
}

#team .member .social a:hover {
    color: var(--maincolor3);
}

#team .member .social i {
    font-size: 18px;
    margin: 0 2px;
}

/* Gallery Section
--------------------------------*/
#gallery {
    background: #fff;
    padding: 60px 0 0 0;
    overflow: hidden;
}

#gallery .container-fluid {
    padding: 0px;
}

#gallery .gallery-overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 1;
    transition: all ease-in-out 0.4s;
}

#gallery .gallery-item {
    overflow: hidden;
    position: relative;
    padding: 0;
    vertical-align: middle;
    text-align: center;
}

#gallery .gallery-item img {
    transition: all ease-in-out 0.4s;
    width: 100%;
}

#gallery .gallery-item:hover img {
    transform: scale(1.1);
}

#gallery .gallery-item:hover .gallery-overlay {
    opacity: 1;
    background: rgba(0, 0, 0, 0.7);
}

/* Contact Section
--------------------------------*/
#contact {
    box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.1);
    padding: 60px 0;
    overflow: hidden;
}

#contact .contact-about h3 {
    font-size: 36px;
    margin: 0 0 10px 0;
    padding: 0;
    line-height: 1;
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--maincolor3);
}

#contact .contact-about p {
    font-size: 14px;
    line-height: 24px;
    color: #888;
}

#contact .social-links {
    padding-bottom: 20px;
}

#contact .social-links a {
    font-size: 18px;
    background: #fff;
    color: var(--maincolor3);
    padding: 8px 0;
    margin-right: 4px;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    transition: 0.3s;
    border: 1px solid var(--maincolor3);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

#contact .social-links a i {
    line-height: 0;
}

#contact .social-links a:hover {
    background: var(--maincolor3);
    color: #fff;
}

#contact .info {
    color: #333333;
}

#contact .info i {
    font-size: 32px;
    color: var(--maincolor3);
    float: left;
    line-height: 0;
}

#contact .info p {
    padding: 0 0 10px 42px;
    line-height: 28px;
    font-size: 14px;
}

#contact .php-email-form .error-message {
    display: none;
    color: #fff;
    background: #ed3c0d;
    text-align: center;
    padding: 15px;
    font-weight: 600;
}

#contact .php-email-form .sent-message {
    display: none;
    color: #fff;
    background: var(--maincolor3);
    text-align: center;
    padding: 15px;
    font-weight: 600;
}

#contact .php-email-form .loading {
    display: none;
    background: #fff;
    text-align: center;
    padding: 15px;
}

#contact .php-email-form .loading:before {
    content: "";
    display: inline-block;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    margin: 0 10px -6px 0;
    border: 3px solid var(--maincolor2);
    border-top-color: #eee;
    animation: animate-loading 1s linear infinite;
}

#contact .php-email-form input,
#contact .php-email-form textarea {
    border-radius: 8px;
    box-shadow: none;
    font-size: 14px;
    padding: 16px 20px;
}

#contact .php-email-form input::placeholder,
#contact .php-email-form textarea::placeholder {
    font-weight: 400 !important;
    color: #9E9E9E !important;
}

#contact .php-email-form button[type=button] {
    background: linear-gradient(45deg, var(--maincolor2), var(--maincolor4));
    border: 0;
    border-radius: 20px;
    padding: 8px 30px;
    color: #fff;
}

#contact .php-email-form button[type=button]:hover {
    cursor: pointer;
}

@keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
    background: #fff;
    box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.1);

    padding: 30px 0;
    color: #333;
    font-size: 14px;
}

#footer .credits {
    font-size: 13px;
    color: #888;
}

#footer .footer-links a {
    color: #666;
    padding-left: 15px;
}

#footer .footer-links a:first-child {
    padding-left: 0;
}

#footer .footer-links a:hover {
    color: var(--maincolor3);
}

.navbar .dropdown ul {

}

/*         포트폴리오           */
#port {
    width: 894px;
    /*background: #fff;*/
    padding: 0 1.15%;
    display: flex;
    flex-wrap: wrap; /* 아이템들을 여러 줄에 걸쳐 나열하기 위해 필요합니다. */
    justify-content: flex-start; /* 왼쪽 정렬을 위해 필요합니다. */
}

#port ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: stretch;
    justify-content: space-around;
    align-items: center;
}

/* 430 이상일때 절반 줄여야하고 오뚜기의 경우 430이하 일떄 원복시켜야함 */
#ottogi {
    transform: scaleX(0.5)
}

#port ul li {
    margin: 30px 20px;
    flex: 0 0 calc(20% - 15px);
    text-align: center;
}

#port ul li:nth-child(4n) {
    margin-right: 0px;
}

#port ul li > img {
    /*width: 100%;*/
    /*height: auto; !* 이미지 비율 유지 *!*/
    max-width: 100%; /* 이미지가 너무 큰 경우에도 넘치지 않도록 설정 */
}


@media (max-width: 894px) {
    #pc {
        display: none;
    }

    #mobile {
        display: inline;
    }
}

@media (min-width: 895px) {
    #pc {
        display: inline;
    }

    #mobile {
        display: none;
    }
}

.slider {
    background: #f2f3f6; /* 슬라이더의 배경색을 흰색으로 설정합니다. */
    box-shadow: 0 10px 20px -5px rgba(0, 0, 0, .125); /* 그림자 효과를 추가합니다. */
    margin: auto; /* 가운데 정렬합니다. */
    overflow: hidden; /* 넘치는 내용을 감춥니다. */
    position: relative; /* 상대 위치 설정합니다. */
    width: 100%; /* 슬라이더의 너비를 960px로 설정합니다. */
}


/* 슬라이더의 앞뒤 그라데이션 효과를 추가합니다. */
.slider::before,
.slider::after {
    background: linear-gradient(to right, rgba(242, 243, 246, 1), rgba(242, 243, 246, 0)); /* 그라데이션을 반대로 설정합니다. */
    content: "";
    height: 100%;
    position: absolute;
    width: 10%;
    z-index: 2;
}

/* 슬라이더의 뒤쪽 그라데이션의 위치와 회전을 조정합니다. */
.slider::after {
    right: 0;
    top: 0;
    transform: rotateZ(180deg); /* 그라데이션 방향을 조정합니다. */
}

/* 슬라이더의 앞쪽 그라데이션의 위치를 조정합니다. */
.slider::before {
    left: 0;
    top: 0;
}

/* 슬라이드 트랙을 스타일링합니다. */
.slider .slide-right {
    animation: scroll 40s linear infinite reverse; /* 애니메이션 방향을 반대로 설정합니다. */
    display: flex; /* Flexbox를 사용하여 요소를 배치합니다. */
    width: calc(100px * 24); /* 슬라이드 트랙의 너비를 설정합니다. */
}

.slider .slide-left {
    animation: scroll 40s linear infinite; /* 애니메이션 방향을 반대로 설정합니다. */
    display: flex; /* Flexbox를 사용하여 요소를 배치합니다. */
    width: calc(100px * 24); /* 슬라이드 트랙의 너비를 설정합니다. */
}

/* 슬라이드를 스타일링합니다. */
.slider .slide {
    margin: 5px;
    border-radius: 50%;
    background: #fff;
    height: 100px; /* 슬라이드의 높이를 100px로 설정합니다. */
    width: 100px; /* 슬라이드의 너비를 250px로 설정합니다. */
    display: flow;
    align-content: center;
    text-align: center;
}

.slide img {
    width: 100px;
    height: auto;
    padding: 10px;
}

/* 슬라이드 트랙을 위해 스크롤 애니메이션을 정의합니다. */
@keyframes scroll {
    0% {
        transform: translateX(0); /* 초기 위치 */
    }
    100% {
        transform: translateX(calc(-100px * 16)); /* 슬라이드가 7개 이동하도록 설정 */
    }
}

/* loader */

.loader-wrapper {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .2);
}

.loader-wrapper.show {
    display: block;
}

.loader {
    position: fixed;
    top: calc(50% - 38px);
    left: calc(50% - 38px);
    filter: drop-shadow(1px 1px 4px rgba(0, 0, 0, .3));
    width: 76px;
    height: 76px;
    border: 5px solid #FFF;
    border-bottom-color: transparent;
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
}

@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}