* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #ff8d21;
    --secondary-color: #777;
    --white-color: #fff;
    --black-color: #000;
}

body {
    font-family: 'Lato';
    font-size: 16px;
    line-height: 1.5;
    font-weight: 400;
}

.container {
    max-width: 1680px;
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
}

h1 {
    font-size: 72px;
    line-height: 80px;
    font-weight: 800;
    color: var(--white-color);
}

h2 {
    font-size: 48px;
    line-height: 52px;
    font-weight: 500;
}

h3 {
    font-size: 28px;
    font-weight: 500;
    line-height: 38px;
}

h4 {
    font-size: 24px;
    font-weight: 500;
    line-height: 32px;
}

h5 {
    font-size: 22px;
    font-weight: 500;
}

h6 {
    font-size: 20px;
    font-weight: 500;
}

p,
li:not(nav ul li) {
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
    color: var(--secondary-color);
    margin-bottom: 16px;
}

p:last-child,
li:last-child {
    margin-bottom: 0;
}

img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

li {
    list-style: none;
}

a {
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    line-height: 24px;
}

.py {
    padding: 100px 0;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    padding: 13px 17px;
    color: var(--white-color);
    background-color: var(--primary-color);
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
    font-size: 21px;
    font-weight: 500;
    line-height: 28px;
    border: 1px solid transparent;
}

.btn,
.btn svg path,
header nav ul li a,
.service-box,
.contact-text-box a,
.f-wd ul li a,
.f-wd .social-icon a svg path,
.f-wd .social-icon a svg rect {
    transition: all 0.3s ease-in;
    -webkit-transition: all 0.3s ease-in;
    -moz-transition: all 0.3s ease-in;
    -ms-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
}

.btn:hover {
    background-color: transparent;
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.btn:hover svg path {
    fill: var(--primary-color);
}

#back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    padding: 10px;
    background-color: var(--primary-color);
    color: var(--white-color);
    cursor: pointer;
    line-height: 0;
    border-radius: 50%;
    border: 0;
    transition: background-color 350ms ease-in-out;
    -webkit-transition: background-color 350ms ease-in-out;
    -moz-transition: background-color 350ms ease-in-out;
    -ms-transition: background-color 350ms ease-in-out;
    -o-transition: background-color 350ms ease-in-out;
}

/* header */
header {
    position: fixed;
    left: 0;
    right: 0;
    z-index: 9;
    background-color: var(--white-color);
    padding: 8px 0;
}

header.sticky {
    box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px,
        rgb(16, 39, 29, 0.23) 0px 6px 6px;
}

.header-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.logo {
    width: 200px;
    height: auto;
}

header nav {
    display: flex;
    align-items: center;
    gap: 30px;
    justify-content: flex-end;
    flex: 1;
}

header nav ul {
    display: flex;
    align-items: center;
    gap: 30px;
}

header nav ul li a {
    color: var(--black-color);
    position: relative;
    display: inline-block;
    padding: 3px;
}

header nav ul li a::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--primary-color);
    transition: all 0.36s ease-in-out;
    transform: scale(0);
    -webkit-transition: all 0.36s ease-in-out;
    -moz-transition: all 0.36s ease-in-out;
    -ms-transition: all 0.36s ease-in-out;
    -o-transition: all 0.36s ease-in-out;
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
}

header nav ul li a:hover,
header nav ul li a.active {
    color: var(--primary-color);
}

header nav ul li a:hover::after,
header nav ul li a.active::after {
    transform: scale(1);
}

/* banner */
.banner {
    background-repeat: no-repeat;
    padding: 300px 0 200px;
    position: relative;
    z-index: 1;
}

.banner::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(33, 59, 94, 0.5);
    z-index: -1;
}

.banner-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.banner-content p {
    width: 55%;
    color: var(--white-color);
}

.banner-content .btn {
    width: fit-content;
}

.banner-content .btn:hover {
    color: var(--white-color);
    border-color: var(--white-color);
}

/* service */
.section-title {
    margin-bottom: 64px;
}

.section-title h2 {
    text-align: center;
    color: var(--black-color);
    text-transform: uppercase;
}

.section-title p {
    margin-top: 20px;
    text-align: center;
    color: var(--black-color);
}

.section-title h2 span {
    color: var(--primary-color);
}

.service-wrapper,
.plan-wrapper,
.location-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    gap: 48px;
    row-gap: 32px;
}

.service-box {
    width: calc(33.33% - 32px);
    padding: 24px;
    background-color: var(--white-color);
    border: 1px solid var(--secondary-color);
    display: flex;
    flex-direction: column;
    gap: 20px;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
}

.service-box:hover {
    box-shadow: 0px 4px 40px 0px #FFD58040;
    border: 1px solid transparent;
}

figure.service-img {
    width: 70px;
    height: auto;
}

figure.service-img svg {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.service-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* plan */
.plan-box {
    width: calc(33.33% - 32px);
    background-color: var(--white-color);
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
}

.plan-box h3 {
    font-weight: 400;
}

.plan-box h3 span {
    color: var(--primary-color);
    font-weight: 700;
}

.plan-box h4 {
    font-weight: 700;
    color: var(--secondary-color);
}

.plan-box .price {
    font-size: 24px;
    font-weight: 700;
    line-height: 38px;
}

.plan-box ul {
    flex: 1;
}

.plan-box ul li {
    position: relative;
    padding-left: 31px;
}

.plan-box ul li::after {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="19" height="14" viewBox="0 0 19 14" fill="none"><path d="M1 6.64865L6.56364 12L18 1" stroke="%23ff8d21" stroke-width="2"></path></svg>');
    content: "";
    position: absolute;
    left: 0;
    width: 21px;
    height: 21px;
    background-repeat: no-repeat;
    top: 6px;
}

.plan-box .btn {
    width: fit-content;
    margin: 40px auto 0;
}

/* location */
.location-box {
    width: calc(25% - 36px);
    overflow: hidden;
    height: 450px;
    position: relative;
    border-radius: 16px;
    -webkit-border-radius: 16px;
    -moz-border-radius: 16px;
    -ms-border-radius: 16px;
    -o-border-radius: 16px;
}

.location-box img {
    height: 100%;
}

.location-content {
    position: absolute;
    bottom: 0px;
    padding: 20px;
    z-index: 1;
    height: 40%;
    opacity: 1;
    background: linear-gradient(180deg, rgba(255, 141, 33, 0) 0%, rgba(255, 141, 33, 0.515) 35.5%, var(--primary-color) 100%);
    width: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.4s ease;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
}

.location-content h3,
.location-descrp p {
    color: var(--white-color);
}

.location-content h3 {
    margin-bottom: 10px;
    /* flex: 1; */
}

.location-descrp {
    display: flex;
    gap: 8px;
    /* flex: 1; */
}

.location-box:hover .location-content {
    height: 70%;
}

/* video */
.lg-orange {
    background-color: #fff8ea;
}

.video-section {
    text-align: center;
}

.position-relative {
    position: relative !important;
    display: inline-block;
}

.position-relative video {
    max-width: 100%;
    height: 450px;
    width: 100%;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    overflow: hidden;
}

.play-btn {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border: 2px solid white;
    text-align: center;
    padding: 20px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
}

/* faq */
.accordion {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    column-gap: 16px;
}

.icon {
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 50%;
    right: 0px;
    transform: translateY(-50%);
}

.icon-in:before {
    content: "";
    position: absolute;
    top: 46%;
    left: 23%;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="28" height="29" viewBox="0 0 28 29" fill="none"><path d="M14.0007 6.33398V22.6673M5.83398 14.5007H22.1673" stroke="%23211444" stroke-width="1.25" stroke-linecap="round" stroke-linejoin="round"/></svg>');
    background-repeat: no-repeat;
    width: 28px;
    height: 28px;
    transform: translateY(-50%);
}

.at-tab {
    display: none;
    padding: 15px 25px 0px 0;
    border-top: none;
    color: var(--secondary-color);
}

.at-title.active .icon-in:before {
    content: "";
    font-size: 29px;
    background-repeat: no-repeat;
    width: 28px;
    height: 28px;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="28" height="29" viewBox="0 0 28 29" fill="none"><path d="M5.83398 14.5H22.1673" stroke="%23211444" stroke-width="1.25" stroke-linecap="round" stroke-linejoin="round"/></svg>');
    transform: translateY(-53%);
}

.at-item {
    background-color: var(--white-color);
    width: 100%;
    margin-bottom: 15px;
    border: 0.5px solid #dedede;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
    padding: 20px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

.at-title {
    cursor: pointer;
    margin: 0;
    position: relative;
}

.at-title span {
    font-size: 20px;
    font-weight: 600;
}

/* contact */
.contact-wrapper {
    background-color: var(--white-color);
    display: flex;
    align-items: stretch;
    gap: 30px;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
    overflow: hidden;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
}

.contact-map,
.contact-detail {
    width: calc(50% - 30px);
}

.contact-map iframe {
    width: 100%;
    height: 100%;
}

.contact-detail {
    padding: 50px 0;
}

.contact-detail .section-title {
    margin-bottom: 30px;
}

.contact-detail .section-title h2 {
    text-align: left;
}

.contact-text-box {
    display: flex;
    align-items: start;
    gap: 20px;
    margin-bottom: 24px;
}

.contact-text-box p:first-child {
    font-size: 22px;
    color: var(--black-color);
    line-height: 28px;
    font-weight: 700;
    margin-bottom: 12px;
}

.contact-text-box p,
.contact-text-box li,
.contact-text-box a {
    color: var(--black-color);
    line-height: 30px;
    margin-bottom: 10px;
}

.contact-text-box li {
    /* margin-bottom: 0; */
    padding-left: 26px;
    position: relative;
}

.contact-text-box li::after {
    position: absolute;
    content: "";
    left: 0;
    width: 16px;
    top: 8px;
    height: 16px;
    background-repeat: no-repeat;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="13" viewBox="0 0 16 13" fill="none"><path d="M2 7.57684L5.58974 11.1666L14.2051 1.83325" stroke="%23ff8d21" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round"/></svg>');
}

.contact-icon img {
    width: 46px;
    height: 46px;
}

.contact-text-box a:last-child {
    margin-bottom: 0;
}

.contact-text-box a:hover {
    color: var(--primary-color);
}

/* footer */
footer {
    background-color: #040D1B;
}

.footer-wrapper {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.f-wd {
    width: calc(20% - 16px);
}

.f-wd p {
    color: var(--white-color);
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 20px;
}

.f-wd ul li {
    margin-bottom: 12px;
}

.f-wd ul li a {
    font-size: 16px;
    color: var(--white-color);
}

.f-wd ul li a:hover {
    color: var(--primary-color);
}

.f-wd .social-icon {
    display: flex;
    align-items: center;
    gap: 10px;
}

.f-wd .social-icon a {
    line-height: 0;
}

.f-wd .social-icon a:hover svg path {
    fill: var(--primary-color);
}

.f-wd .social-icon a:hover svg rect {
    stroke: var(--primary-color);
}

.copy-right {
    border-top: 2px solid var(--primary-color);
    padding: 30px 0;
}

.copy-right-wrapper {
    display: flex;
    align-items: center;
    gap: 30px;
    justify-content: space-between;
}

.copy-right-wrapper .copy-img {
    width: 150px;
}

.copy-right-wrapper .copy-text p {
    color: var(--white-color);
}

.menu,
.close {
    display: none;
}

/*  */
.mobile-sticky {
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 99;
    width: 100%;
    text-align: center;
    display: none;
}

.mobile-s-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.m-call {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    padding: 16px 0;
}

.m-call {
    background: var(--primary-color);
    color: var(--white-color);
}

.m-call p {
    color: var(--white-color);
}

.m-call svg {
    width: 30px;
}

.benifit-wrapper {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 50px;
}

.benifit-wrapper:last-child {
    margin-bottom: 0;
}

.benifit-img,
.banifit-boxs {
    width: calc(50% - 20px);
}

.banifit-boxs {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: stretch;
}

.banifit-boxs .service-box {
    width: calc(50% - 10px);
}

.benifit-img img {
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
}

@media(max-width:1440px) {

    .location-wrapper {
        gap: 42px;
    }

    .location-box {
        width: calc(25% - 32px);
    }
}

@media(max-width:1360px) {

    .service-wrapper,
    .plan-wrapper,
    .location-wrapper {
        gap: 30px;
        row-gap: 24px;
    }

    .service-box,
    .plan-box {
        width: calc(33.33% - 20px);
    }

    .location-box {
        width: calc(25% - 23px);
        height: 400px;
    }
}

@media(max-width:1200px) {
    .f-wd {
        width: calc(25% - 15px);
    }
}

@media(max-width:1180px) {
    .banner {
        padding: 250px 0 150px;
    }

    .header-wrapper .btn {
        font-size: 0;
        line-height: 0;
    }

    .location-box {
        width: calc(33.33% - 20px);
    }

    .benifit-img,
    .banifit-boxs {
        width: 100%;
    }

    .benifit-wrapper:nth-child(odd) {
        flex-direction: column-reverse;
    }
}

@media(max-width:1024px) {
    .banner {
        padding: 200px 0 100px;
    }

    h1 {
        font-size: 60px;
        line-height: 65px;
    }

    h2 {
        font-size: 44px;
        line-height: 50px;
    }

    h3 {
        font-size: 26px;
        line-height: 34px;
    }

    .py {
        padding: 70px 0;
    }

    .section-title {
        margin-bottom: 40px;
    }

    .service-box,
    .plan-box,
    .location-box {
        width: calc(50% - 15px);
    }

    .location-content {
        height: 32%;
    }

    .position-relative video {
        height: 400px;
    }

    .header-wrapper {
        gap: 24px;
    }

    .menu {
        display: block;
        cursor: pointer;
    }

    nav#menu.open .close {
        display: block;
        cursor: pointer;
        transition: left 0.8s ease-in-out;
        -webkit-transition: left 0.8s ease-in-out;
        -moz-transition: left 0.8s ease-in-out;
        -ms-transition: left 0.8s ease-in-out;
        -o-transition: left 0.8s ease-in-out;
    }

    nav#menu ul {
        position: absolute;
        left: -1000%;
        top: 0;
        width: 300px;
        background-color: var(--primary-color);
        height: 100vh;
        padding: 50px 30px;
        flex-direction: column;
        align-items: flex-start;
        transition: left 0.8s ease-in-out;
        -webkit-transition: left 0.8s ease-in-out;
        -moz-transition: left 0.8s ease-in-out;
        -ms-transition: left 0.8s ease-in-out;
        -o-transition: left 0.8s ease-in-out;
    }

    nav#menu.open ul {
        transition: left 0.8s ease-in-out;
        left: 0;
        -webkit-transition: left 0.8s ease-in-out;
        -moz-transition: left 0.8s ease-in-out;
        -ms-transition: left 0.8s ease-in-out;
        -o-transition: left 0.8s ease-in-out;
    }


    nav.open::after {
        width: 100%;
        opacity: 1;
        left: 0;
        z-index: -1;
    }

    nav::after {
        position: fixed;
        content: '';
        top: 0;
        bottom: 0;
        left: -100%;
        width: 0;
        height: 100vh;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 99;
        opacity: 0;
        transition: all 0.8s ease-in-out;
        display: block;
    }

    .close {
        position: absolute;
        top: 20px;
        left: 250px;
    }

    nav#menu ul li a {
        color: var(--white-color);
    }

    nav#menu ul li a:hover,
    nav#menu ul li a.active {
        color: var(--white-color);
    }

    nav#menu ul li a:hover::after,
    nav#menu ul li a.active::after {
        background-color: var(--white-color);
    }

    nav#menu.open~.btn {
        z-index: -3;
    }

    svg.menu-icon {
        width: 30px;
        height: 26px;
    }

    .menu {
        background-color: var(--primary-color);
        display: flex;
        padding: 17px;
        border-radius: 4px;
    }

}

@media(max-width:992px) {
    .contact-wrapper {
        flex-wrap: wrap;
        gap: 0;
    }

    .contact-map {
        height: 450px;
    }

    .contact-map,
    .contact-detail {
        width: 100%;
    }

    .contact-detail {
        padding: 25px 20px;
    }

    .f-wd {
        width: calc(33.33% - 14px);
    }

    .contact-text-box {
        margin-bottom: 16px;
    }
}

@media(max-width:860px) {
    .banner-content {
        gap: 14px;
    }

    h1 {
        font-size: 54px;
        line-height: 60px;
    }

    h2 {
        font-size: 40px;
        line-height: 46px;
    }

    h4 {
        font-size: 22px;
        line-height: 30px;
    }

    .location-content {
        height: 40%;
    }

    .position-relative video {
        height: auto;
    }
}

@media(max-width:768px) {
    h1 {
        font-size: 48px;
        line-height: 54px;
    }

    h2 {
        font-size: 36px;
        line-height: 46px;
    }

    .section-title {
        margin-bottom: 30px;
    }

    .service-box {
        padding: 24px;
    }

    .contact-map {
        height: 400px;
    }

    .f-wd {
        width: calc(50% - 10px);
    }
}

@media(max-width:681px) {
    .benifit-wrapper .owl-dots {
        display: none;
    }

    .benifit-wrapper .owl-nav {
        display: flex !important;
        align-items: center;
        justify-content: flex-end;
        gap: 13px;
        margin-top: 20px;
    }

    .benifit-wrapper .owl-nav button {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 45px;
        height: 45px;
        border-radius: 4px;
        -webkit-border-radius: 4px;
        -moz-border-radius: 4px;
        -ms-border-radius: 4px;
        -o-border-radius: 4px;
        overflow: hidden;
    }

    .benifit-wrapper .owl-nav button span {
        background: var(--primary-color);
        color: #fff;
        font-size: 30px;
        width: 100%;
        height: 100%;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        line-height: 0;
    }

    .benifit-wrapper {
        gap: 0;
        margin-bottom: 20px;
    }

    .benifit-img {
        display: none;
    }
}

@media(max-width:650px) {
    .banner {
        padding: 180px 0 50px;
    }

    .banner-content p {
        width: 100%;
    }

    .service-box,
    .plan-box,
    .location-box {
        width: 100%;
    }

    .location-content {
        height: 33%;
    }

    .py {
        padding: 50px 0;
    }
}

@media(max-width:576px) {
    h1 {
        font-size: 44px;
        line-height: 54px;
    }

    h2 {
        font-size: 32px;
        line-height: 42px;
    }

    h3 {
        font-size: 24px;
        line-height: 34px;
    }

    .service-content {
        gap: 10px;
    }

    .f-wd {
        width: 100%;
    }

    .at-title span {
        width: 95%;
        display: block;
    }

    .f-wd p {
        margin-bottom: 16px;
    }

    .f-wd ul li {
        margin-bottom: 10px;
    }

    .f-wd ul li:last-child {
        margin-bottom: 0px;
    }

    .copy-right-wrapper {
        gap: 16px;
        flex-direction: column;
    }

    .mobile-sticky {
        display: block;
    }

    .header-wrapper .btn {
        display: none;
    }

    #back-to-top {
        bottom: 75px;
    }

    footer {
        margin-bottom: 60px;
    }

    .banner-content h1 br {
        display: none;
    }

    .location-content {
        height: 38%;
    }

    .banifit-boxs .service-box {
        width: 100%;
    }

    .banifit-boxs {
        gap: 14px;
    }

    .benifit-wrapper {
        margin-bottom: 14px;
    }
}

@media(max-width:425px) {
    .section-title p {
        margin-top: 14px;
    }

    .location-box {
        height: 420px;
    }

    .contact-map {
        height: 350px;
    }

    .at-title span {
        font-size: 18px;
    }

    p,
    li:not(nav ul li) {
        font-size: 16px;
    }

    .contact-map {
        height: 300px;
    }

    h1 {
        font-size: 40px;
        line-height: 50px;
    }

    h2 {
        font-size: 29px;
        line-height: 39px;
    }

    .contact-text-box {
        flex-direction: column;
        gap: 16px;
    }

    .contact-detail {
        padding: 18px;
    }
}

@media(max-width:320px) {
    h1 {
        font-size: 36px;
        line-height: 46px;
    }

    .banner-content {
        gap: 10px;
    }

    .service-box {
        gap: 12px;
        padding: 15px;
    }

    .location-box {
        height: 350px;
    }

    h3 {
        font-size: 24px;
        line-height: 30px;
    }

    .location-content {
        height: 42%;
    }

    .at-item {
        padding: 14px;
    }

    .contact-text-box {
        gap: 8px;
    }

    .contact-text-box p:first-child {
        margin-bottom: 6px;
    }

    h2 {
        font-size: 26px;
        line-height: 36px;
    }
}