@font-face {
    font-family: 'aquafont';
    src: url('../font/aquafont.woff2');
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'aquafont', sans-serif;
    font-weight: 500;
    max-width: 1350px;
    margin: 0 auto;
}

li {
    list-style: none;
}

a {
    text-decoration: none;
}

:root {
    /* color */
    --main-color: #0068B7;
    --secondary-color: #;
    --light-color: #f4f4f4;
    --dark-color: #333;
}


/* utility class */

.aquafont {
    font-family: 'aquafont', sans-serif;
}

.mw-1080 {
    max-width: 1080px;
}

.mw-100 {
    max-width: 100%;
}

.w_100 {
    width: 100%;
}

.w_90 {
    width: 90%;
}

.w_80 {
    width: 80%;
}

.w_70 {
    width: 70%;
}

.w_60 {
    width: 60%;
}

.w_50 {
    width: 50%;
}

.w_30 {
    width: 30%;
}

.d_block {
    display: block;
}

.dark-color {
    color: var(--dark-color);
}

.main-color {
    color: var(--main-color);
}

.light-color {
    color: var(--light-color);
}

.bg_main {
    background: var(--main-color);
}

.bg_light {
    background: var(--light-color);
}

.txt_center {
    text-align: center;
}

.txt_left {
    text-align: left;
}

.txt_right {
    text-align: right;
}

.lh_base {
    line-height: 1.5;
}

.lh_small {
    line-height: 1.2;
}

.p_relative {
    position: relative;
}

.p_absolute {
    position: absolute;
}

.f_flex {
    display: flex;
}

.d_grid {
    display: grid;
}

.d_flex {
    display: flex;
}

.ji-center {
    justify-items: center;
}

.ai-center {
    align-items: center;
}

.jc_center {
    justify-content: center;
}

.as-center {
    align-self: center;
}

.jc_space-between {
    justify-content: space-between;
}

.jc_lef {
    justify-content: left;
}

.jc_right {
    justify-content: right;
}

.grid_col_2 {
    grid-template-columns: repeat(2, 1fr);
}

.grid_col_5 {
    grid-template-columns: repeat(5, 1fr);
}

.grid_col_4 {
    grid-template-columns: repeat(4, 1fr);
}

.grid_col_b_a {
    grid-template-columns: auto 17rem auto;
}

.lh_lg {
    line-height: 1.8;
}

.p_y-3 {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.p_y-1 {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.m_y-3 {
    margin-top: 3rem;
    margin-bottom: 3rem;
}

.m_y-4 {
    margin-top: 4rem;
    margin-bottom: 4rem;
}

.m_y-1 {
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.m_b-1 {
    margin-bottom: 1rem;
}

.fs_0_8 {
    font-size: 0.8rem;
}

.fs_0_9 {
    font-size: 0.9rem;
}

.fs_1_1 {
    font-size: 1.1rem;
}

.fs_1_1 {
    font-size: 1.1rem;
}

.fs_1_4 {
    font-size: 1.4rem;
}

.fs_2 {
    font-size: 2rem;
}

.fs_3 {
    font-size: 3rem;
}

.mx_auto {
    margin-left: auto;
    margin-right: auto;
}

.mx_1 {
    margin-left: 1rem;
    margin-right: 1rem;
}

.ml_0_5 {
    margin-left: 0.5rem;
}

.mx_2 {
    margin-left: 2rem;
    margin-right: 2rem;
}

.mx_auto {
    margin-left: auto;
    margin-right: auto;
}

.m_b_7 {
    margin-bottom: 7rem;
}

.m_b_6 {
    margin-bottom: 6rem;
}

.m_b_5 {
    margin-bottom: 5rem;
}

.m_b_4 {
    margin-bottom: 4rem;
}

.m_b_2 {
    margin-bottom: 2rem;
}

.p_b_7 {
    padding-bottom: 7rem;
}

.m_t_4 {
    margin-top: 4rem;
}

.m_t_6 {
    margin-top: 6rem;
}

.p_t_6 {
    padding-top: 6rem;
}

.p_t_4 {
    padding-top: 4rem;
}

.p_t_1 {
    padding-top: 1rem;
}

.m_t_1 {
    margin-top: 1rem;
}

.m_t_2 {
    margin-top: 2rem;
}

.br_1100 {
    display: none;
}

.br_1000 {
    display: none;
}

.br_900 {
    display: none;
}

.br_768 {
    display: none;
}


/* utility class */


/* top banner */

.top_bana {
    position: relative;
    font-size: 0;
}

.top_bana .banner_text {
    position: absolute;
    top: 50%;
    left: 21%;
    transform: translate(-50%, -50%);
}

.top_bana .banner_text p {
    font-size: 2rem;
    color: var(--main-color);
}

.top_bana .banner_text .top_bana_tel {
    font-size: 3.3rem;
}

.top_bana .banner_text .top_bana_grid {
    display: grid;
    grid-template-columns: repeat(3, auto);
    justify-content: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.top_bana .banner_text .top_bana_grid a {
    font-size: 0.9rem;
    color: var(--main-color);
    background-color: white;
    padding: 0.4rem 0.5rem;
    box-shadow: 1px 1px 3px var(--main-color);
}


/* top banner */


/* header css and hamburger menu */

.header {
    position: sticky;
    top: 0;
    border-bottom: 1px solid #E2E8F0;
    background: var(--main-color);
    z-index: 999;
}

.navbar {
    // display: flex;
    // justify-content: space-between;
    // align-items: center;
    padding: 1rem 1.5rem;
}

.hamburger {
    display: none;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    background-color: var(--light-color);
}

.nav-menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    margin: 0 auto;
}

.nav-link {
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--light-color);
}

.nav-link:hover {
    color: #a8d6fa;
}

.nav-logo {
    width: 29px;
}

.top_d {
    display: none;
}

// Inside the Media Query.
.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}


/* header css and hamburger menu */

#body_top .body_top_title {
    text-align: center;
}

#body_top .body_top_title .inu_icon {
    width: 2rem;
    margin: 0 0.5rem;
}

#body_top .body_top_title p {
    display: inline-block;
    color: var(--main-color);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

#body_top .body_top_title .sora {
    font-size: 2.5rem;
}

#body_top .f_flex {
    margin-top: 3rem;
}

#body_top .f_flex .profile {
    font-size: 2.3rem;
}

#body_top .f_flex .img-1 {
    width: 20rem;
}

#body_top .f_flex .text_2 {
    padding-left: 2rem;
}

#body_top .f_flex .text_poz {
    position: absolute;
    top: 0;
    right: 5%;
}

#body_top .f_flex .text_poz_addres {
    padding-left: 5rem;
}

#body_top .h_size {
    height: 48rem;
}

#body_top .inu_bg {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: -1;
}

#body_top .container-cloud {
    position: relative;
}

#body_top .container-cloud .cloud {
    vertical-align: middle;
    text-align: center;
}

#body_top .container-cloud .cloud .cloud_w {
    width: 155px;
    text-align: center;
    vertical-align: middle;
}

#body_top .container-cloud .cloud .cloud_w img {
    width: 100%;
    vertical-align: middle;
}

#body_top .container-cloud .cloud .cloud_text {
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
}

#body_top .container-cloud .cloud .cloud_text p {
    font-size: 15px;
}

#body_top .social_icon {
    width: 9rem;
    margin: 0 4rem;
}

#body_top .doui_btn {
    padding: 8px 16px;
    background: var(--main-color);
    color: var(--light-color);
    border-radius: 15px;
    font-size: 15px;
    cursor: pointer;
}

#fooder {
    margin-top: 5rem;
    font-size: 0;
}

#fooder .footer_banner {
    background: var(--main-color);
    display: grid;
    grid-template-columns: auto auto;
    justify-content: center;
    gap: 2rem;
    padding: 1.5rem 0;
}

#fooder .footer_banner a {
    display: flex;
    align-items: center;
    padding: 0.5rem 3rem;
    font-size: 2.5rem;
    color: var(--main-color);
    background: white;
}

#fooder .footer_banner a img {
    width: 5rem;
    margin: 0 0.5rem;
}

#fooder .copyright {
    font-size: 1rem;
    text-align: center;
    padding: 1rem 0;
    line-height: 1.5;
}