:root{
     --cyan:#00ACC8;
     --ink:#242424;
     --footer:#000;
     --max:1150px;
}
 *{
    box-sizing:border-box
}
 html,body{ 
    margin:0;
    min-height:100%;
    font-size: 14px;
}
 body{
    font-family:"Montserrat",Arial,sans-serif;
    color:var(--ink);
    background:#fff;
}
 a{
    color:inherit;
    text-decoration:none
}
 .site{
    min-height:100vh;
}
 .wrap{
    width:min(var(--max),calc(100% - 120px));
    margin-inline:auto;
    position:relative;
}
 .hero{
     min-height:calc(100vh - 130px);
     padding:76px 0 64px;
     background:#fff url("assets/nanwani-bg-desktop.png") right top/cover no-repeat;
     overflow:hidden;
}
 .brand img{
    display:block;
    width:338px;
    max-width:100%;
    height:auto;
}
 .intro{
    position:relative;
    margin-top:86px;
    width:560px;
}
 .watermark{
    position:absolute;
    width:390px;
    height:auto;
    right:-210px;
    top:-105px;
    opacity:.18;
    z-index:0;
    pointer-events:none;
}
 .rule{
    display:block;
    width:70px;
    height:1px;
    background:var(--cyan);
    position:relative;
    z-index:1;
}
 h1{
    position:relative;
    z-index:1;
    margin:31px 0 31px;
    font-family:"Libre Baskerville",Georgia,"Times New Roman",serif;
    font-weight:400;
    line-height:.98;
    font-size:68px;
}
h1 span:first-child {
    letter-spacing: 5%;
}
 .practice{
    margin-top:45px;
    width:850px;
}
 .practice h2,.contact h3{
    margin:0;
    color:var(--cyan);
    font-family:"Libre Baskerville",Georgia,"Times New Roman",serif;
    text-transform:uppercase;
    letter-spacing:.12em;
    font-size:14px;
    font-weight:700;
}
 .practice ul{
    list-style:disc;
    padding-left:1rem;
    margin:21px 0 0;
    display:grid;
    grid-template-columns:minmax(0,360px) minmax(0,360px);
    grid-template-rows:repeat(4,auto);
    grid-auto-flow:column;
    column-gap:25px;
    row-gap:12px;
    font-size:15px;
    letter-spacing:.02em;
    line-height:1.25;
}
 .contact{
    margin-top:50px;
    width:100%;
    max-width:1088px;
    border:1px solid var(--cyan);
    background:rgba(255,255,255,.92);
    display:grid;
    grid-template-columns:310px 330px 1fr;
    min-height:104px;
    align-items:center;
}
 .contact-item{
    display:flex;
    align-items:center;
    gap:17px;
    padding:24px 32px;
    min-height:65px;
}
 .contact-item:not(:first-child){
    border-left:1px solid var(--cyan);
}
 .contact-icon{
    width:28px;
    height:28px;
    border-radius:50%;
    background:var(--cyan);
    display:inline-grid;
    place-items:center;
    flex:0 0 28px;
}
 .contact-icon svg{
    width:15px;
    height:15px;
    fill:#fff;
    display:block;
}
 .contact h3{
    font-size:14px;
    margin-bottom:7px;
    color: #2B2B2B !important;
}
 .contact p{
    margin:0;
    font-size:15px;
    letter-spacing:.025em;
    line-height:1.55;
}
 .footer{
    background:var(--footer);
    color:#fff;
    height:130px;
    display:flex;
    align-items:center;
}
 .footer-inner{
    display:grid;
    grid-template-columns:1fr auto 1fr;
    align-items:center;
    gap:40px;
}
 .footer img{
    width:62px;
    opacity:.42;
    display:block;
}
 .footer p{
    margin:0;
    font-size:13.5px;
    letter-spacing:.04em;
    line-height:1.35;
}
 .copyright{
    text-align:right;
}
 @media (max-width:900px){
     .wrap{
        width:calc(100% - 62px);
    }
     .hero{
        min-height:auto;
        padding:37px 0 40px;
        background-image:url("assets/nanwani-bg-mobile.png");
        background-size:cover;
        background-position:center top;
    }
     .brand img{
        width:300px;
        max-width:92%;
    }
     .intro{
        margin-top:35px;
        width:100%;
    }
     .watermark{
        width:250px;
        left:58%;
        transform:translateX(-50%);
        right:auto;
        top:94px;
        opacity:.14;
    }
     .rule{
        width:78px;
    }
     h1{
        font-size:49px;
        line-height:.98;
        letter-spacing:.03em;
        margin:23px 0 28px;
    }
     .practice{
        margin-top:27px;
        width:100%;
    }
     .practice h2{
        font-size:15px;
    }
     .practice ul{
        display:block;
        margin-top:17px;
        font-size:15px;
        line-height:1.3;
    }
     .practice li{
        margin-bottom:13px;
    }
     .contact{
        margin-top:45px;
        display:block;
        max-width:none;
        background:#fff;
        min-height:0;
    }
     .contact-item{
        padding:29px 18px 22px;
        gap:17px;
        align-items:flex-start;
    }
     .contact-item:not(:first-child){
        border-left:0;
        border-top:1px solid var(--cyan);
    }
     .contact-icon{
        width:32px;
        height:32px;
        flex-basis:32px;
        margin-top:1px;
    }
     .contact-icon svg{
        width:16px;
        height:16px;
    }
     .contact h3{
        font-size:14px;
        margin-top:0;
        margin-bottom:7px;
    }
     .contact p{
        font-size:15px;
        line-height:1.65;
    }
     .contact-address p br{
        display:none;
    }
     .footer{
        height:auto;
        min-height:178px;
        padding:25px 0 22px;
    }
     .footer-inner{
        display:flex;
        flex-direction:column;
        gap:18px;
        text-align:center;
    }
     .footer img{
        order:0;
        width:54px;
    }
     .message{
        order:1;
    }
     .copyright{
        order:2;
        text-align:center;
    }
     .footer p{
        font-size:12px;
        line-height:1.35;
    }
}
 @media (max-width:420px){
     .wrap{
        width:calc(100% - 62px);
    }
     h1{
        font-size:40px;
    }
    h1 span:first-child {
        letter-spacing: 7%;
    }
     .hero{
        padding-bottom:39px;
    }
}
 