@import '../components/globle/css/link.css';

@import '../components/globle/css/btn.css';

@import "../components/globle/content-active/content-active.css";

@import "./fonts.css"; 

@import "../components/section/css/popup.css";

@import "../css/card-list.css";

@import "../components/globle/contact/contact.css";
/* 
1. set up
2. container
3. font
4, device display
*/

/* ========== */
/* | set up | */
/* ========== */

img {
    width: 100%;
}

* {
    font-family: "kurious-looped";
    font-weight: normal;
    font-size: 16px;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    padding: 0;
    margin: 0;
}

a,
a:hover {
    text-decoration: none;
}

/* ============= */
/* | container | */
/* ============= */

:root {
    --ccrc-theme_container: 1240px;
}

@media screen and (max-width: 1240px) {
    :root {
        --ccrc-theme_container: 1172px;
    }
}

@media screen and (max-width: 767px) {
    :root {
        --ccrc-theme_container: 100%;
    }
}


@media screen and (min-width: 1400px) {
    .container {
        max-width: var(--ccrc-theme_container);
    }
}

@media screen and (min-width: 1241px) {
    .container {
        padding: 0;
        max-width: 1140px;
    }
}

@media screen and (max-width: 1240px) {
    .container {
        padding-left: 16px;
        padding-right: 16px;
    }
}

/* ======== */
/* | font | */
/* ======== */

/* font-size */

.fs-h1 {
    font-size: 49px;
    font-weight: 700;
}

.fs-h2 {
    font-size: 39px;
    font-weight: 700;
    line-height: 1.5;
}

.fs-h3 {
    font-size: 25px;
    line-height: 37.5px;
}

.fs-h4,
.fs-h4 span {
    font-size: 20px;
    line-height: 30px;
}

.fs-standard {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
}

.fs-semi-small {
    font-size: 13px;
    line-height: 15.6px;
}

.fs-small {
    font-size: 10px;
    line-height: 12px;
}

@media screen and (max-width: 767px) {
    .fs-h1 {
        font-size: 39px;
    }

    .fs-h2 {
        font-size: 25px;
        line-height: 37.5px;
    }

    .fs-h3 {
        font-size: 20px;
        line-height: 24px;
    }

    .fs-h4,
    .fs-h4 span {
        font-size: 16px;
        line-height: 24px;
    }

}

/* font-weight */
.fw-700 {
    font-weight: 700;
}

.fw-600 {
    font-weight: 600;
}

.fw-500 {
    font-weight: 500;
}

.fw-300 {
    font-weight: 300;
}

strong,
strong span {
    font-weight: 700;
}

/* line-height */
.lh-24 {
    line-height: 24px;
}

/* color */

:root {
    --ccrc-theme_c-navy: #1C3B51;
    --ccrc-theme_c-light-blue: #619DC8;
    --ccrc-theme_c-white: #FFFFFF;
    --ccrc-theme_c-black: #414042;
    --ccrc-theme_c-light-green: #CBDB2A;
    --ccrc-theme_c-dark-green: #476F64;
    --ccrc-theme_c-drak-gray: #A4A4A4;
    --ccrc-theme_c-light-gray: #CECECE;
}


.c-navy,
.c-navy:hover {
    color: var(--ccrc-theme_c-navy);
}

.c-light-blue,
.c-light-blue:hover {
    color: var(--ccrc-theme_c-light-blue);
}

.c-white,
.c-white:hover {
    color: var(--ccrc-theme_c-white);
}

.c-black,
.c-black:hover {
    color: var(--ccrc-theme_c-black);
}

.c-light-green,
.c-light-green:hover {
    color: var(--ccrc-theme_c-light-green);
}

.c-dark-green,
.c-dark-green:hover {
    color: var(--ccrc-theme_c-dark-green);
}

.c-drak-gray,
.c-drak-gray:hover {
    color: var(--ccrc-theme_c-drak-gray);
}

.c-light-gray,
.c-light-gray:hover {
    color: var(--ccrc-theme_c-light-gray);
}

/* ================== */
/* | device display | */
/* ================== */

/* mobile */
.show-md {
    display: none !important;
}

@media screen and (max-width: 767px) {
    .show-md {
        display: block !important;
    }

    .hidden-md {
        display: none !important;
    }
}


/* tablet */

.show-tb {
    display: none !important;
}

@media screen and (max-width: 1025px) {
    .show-tb {
        display: block !important;
    }

    .hidden-tl {
        display: none !important;
    }
}

/* desktop */
.show-lg {
    display: none !important;
}

@media screen and (max-width: 1024px) {
    .show-lg {
        display: block !important;
    }

    .hidden-lg {
        display: none !important;
    }
}

/* @media screen and (min-width: 768px){
    .hidden-dt {
        display: none !important;
    }
} */

a {
    overflow-wrap: break-word;
    word-wrap: break-word;

    -ms-word-break: break-all;

    word-break: break-all;

    word-break: break-word;

    /* Adds a hyphen where the word breaks, if supported (No Blink) */
    -ms-hyphens: auto;
    -moz-hyphens: auto;
    -webkit-hyphens: auto;
    hyphens: auto;
}

.gap-0 {
    gap: 0 !important;
}

.word {
    display: inline-block;
}

.fade-in-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.9s ease-out, transform 0.9s ease-out;
}

.fade-in-up.is-visible {
    opacity: 1;
    transform: translateY(0);
}
@supports (-moz-appearance:none) {
  * {
    scrollbar-width: auto;
    scrollbar-color: #99DDBF #fff;
  }
}

::-webkit-scrollbar {
  width: 12px;
  height: auto;
}

::-webkit-scrollbar-track {
  background: #fff;
}

::-webkit-scrollbar-thumb {
  background-color: #99DDBF;
  border-radius: 10px;
  border: 2px solid #fff;
}

::-webkit-scrollbar-thumb:hover {
  background-color: #6bcda1;
}

::-webkit-scrollbar-button {
  display: none;
  width: 0;
  height: 0;
}