<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">:root {
    --color-white: #FFF;
    --color-black: #000;
    --color-light: #F8FAFC;
    --color-mid: #96A0AA;
    --color-dark: #1C1C1C;
    --color-red: #D13B37;
    --color-blue: #3D68ED;
    --color-aqua: #54C0CC;
    --color-green: #CBE54E;
    --color-purple: #9668C4;
    --color-dark-blue: #3E6285;
}

body {
    position: relative;
    background-color: var(--color-light);
    color: var(--color-dark);
    font-family: "poppins", sans-serif;
    font-size: 15px;
    font-weight: 400;
    font-style: normal;
}

.interface-bold {
    font-family: "interface", sans-serif;
    font-weight: 700;
    font-style: normal;
}

* {
    box-sizing: border-box;
    touch-action: manipulation;
    scroll-behavior: smooth;
}

img {
    display: block;
    object-fit: contain;
}


/* --------------------------------------General-------------------------------------- */

/* Sections */
section {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
}

section.full {
    min-height: 100vh;
}

section.start {
    align-items: start;
}

section.end {
    align-items: end;
}

/* Header */
main {
    margin-top: 200px;
}

header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2rem 6rem 2rem 6rem;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--color-light);
    z-index: 999;
}

header.service {
    padding: 4rem 0 3rem 5rem;
}

header a img {
    height: 40px;
}

header &gt; div {
    display: flex;
    align-items: center;
    gap: 1rem;
}

header .select {
    display: block;
    width: 90px;
    height: 45px;
    outline: none;
    border: none;
    background-color: var(--color-dark);
    border-radius: 13px;
    color: var(--color-white);
    text-align: center;
    text-transform: uppercase;
    font-size: 0.95em;
    font-weight: 500;

}

.header__start {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0 1rem;
    height: 45px;
    border: 2px solid var(--color-dark);
    border-radius: 13px;
    font-size: 0.95em;
    font-weight: 500;
}

.header__start i {
    font-size: 1.2rem;
}

/* Nav */
.nav__cont {
    position: relative;
    display: block;
    width: 45px;
    aspect-ratio: 1 / 1;
    overflow: visible;
}

.nav__cont &gt; button {
    display: block;
    width: 100%;
    height: 100%;
    background-color: transparent;
    outline: none;
    border: none;
    cursor: pointer;
}

.nav__cont img {
    width: 100%;
    height: 100%;
}

nav {
    position: absolute;
    top: -2rem;
    right: -2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.8rem;
    padding: 2rem 2rem 8rem 2rem;
    width: 400px;
    min-height: 100px;
    background-color: var(--color-white);
    box-shadow: 0px 15px 40px #1C1C1C14;
    border-radius: 25px;
    font-size: 1.3em;
    z-index: 100;
}

nav.hidden {
    display: none;
}

nav button {
    display: block;
    margin-left: auto;
    width: 45px;
    height: 45px;
    background-color: transparent;
    outline: none;
    border: none;
    font-size: 1.7em;
}

nav i {
    font-size: 1.2em;
}

nav div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

nav .select {
    display: none;
}

nav .current {
    color: var(--color-blue);
    font-weight: 600;
}


/* Footer */
footer {
    display: flex;
    flex-direction: column;
    align-items: end;
    padding: 3rem 4rem;
    gap: 1rem;
    width: 100%;
    background-color: var(--color-white);
    box-shadow: 0px -5px 40px #1C1C1C14;
    border-radius: 45px 45px 0px 0px;
    text-align: end;
}

footer.dark {
    background-color: var(--color-dark);
    color: var(--color-white);
}

footer &gt; img {
    margin-right: auto;
    height: 40px;
}

footer div {
    display: flex;
    align-items: end;
    gap: 0.6rem;
}

footer div img {
    height: 23px;
}


/* Loader */
.loader__modal {
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 0;
    left: 0;
    padding: 0 0 2rem 0;
    width: 100%;
    height: 100vh;
    background-color: #0016240C;
}

.loader__cont {
    position: relative;
    display: inline-block;
    width: 200px;
    height: 200px;
    overflow: hidden;
    background: transparent;
}

.loader__cont span {
    position: absolute;
    left: 54px;
    bottom: 2rem;
    color: #A8A9A8;
    text-align: center;
    font-size: 1.1em;
}

.loader {
    position: relative;
    width: 100%;
    height: 100%;
    transform: translateZ(0) scale(1);
    backface-visibility: hidden;
    transform-origin: 0 0;
}

.loader div {
    box-sizing: content-box;
    position: absolute;
    border-width: 4px;
    border-style: solid;
    opacity: 1;
    border-radius: 50%;
    animation: loader-animation 1.1363636363636365s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

.loader div:nth-child(1) {
    border-color: #a8a9a8;
    animation-delay: 0s;
}

.loader div:nth-child(2) {
    border-color: #0d0d13;
    animation-delay: -0.5681818181818182s;
}

#loader-text {
    animation: loader-text 1.1363636363636365s ease-in-out infinite alternate;
}

.select {
    position: relative;
    display: inline-block;
}

.select i {
    position: absolute;
    top: 50%;
    right: 0.35rem;
    color: inherit;
    translate: 0 -50%;
    pointer-events: none;
}

select {
    display: block;
    padding: 0 1rem;
    width: 100%;
    height: 100%;
    background-color: transparent;
    outline: none;
    border: none;
    border-radius: 0;
    color: inherit;
    text-align: start;
    -webkit-appearance: none;
    appearance: none;
}

option {
    background-color: var(--color-white);
    color: var(--color-dark);
}



/* ----------------------------------------Home---------------------------------------- */

/* Hero */
.home__hero {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 3rem;
    padding: 0 6rem;
}

.home__hero h1 {
    background: -webkit-linear-gradient(180deg, #9668C4, #3D68ED, #54C0CC);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 2.4em;
    font-weight: 600;
}

.home__hero h2 {
    font-size: 2.1em;
    font-weight: 500;
    line-height: 45px;
}

.home__hero h3 {
    grid-column: 1 / -1;
    max-width: 700px;
    font-size: 1.9em;
    font-weight: 500;
}

.home__hero-simplify div {
    display: block;
    margin-bottom: 0.6rem;
    height: 45px;
}

.home__hero-simplify img {
    height: 35px;
}

.home__hero-simplify span {
    display: block;
    font-size: 1.05em;
    line-height: 1.45em;
    opacity: 0.75;
}

.home__hero-grid {
    display: grid;
    grid-template-columns: 160fr auto 300px;
    grid-template-rows: 1fr 1fr;
    column-gap: 1rem;
    width: 100%;
    height: 615px;
}

.home__hero-grid .img-up {
    grid-column: 3 / 4;
    grid-row: 1 / 2;
    display: block;
    height: 300px;
}

.home__hero-grid .img-down {
    grid-column: 2 / 4;
    grid-row: 2 / 3;
    padding-top: 15px;
    height: 315px;
}

.home__hero-grid img {
    width: 100%;
    height: 100%;
    border-radius: 45px;
    object-fit: cover;
}

.home__hero-grid .dark-up {
    grid-column: 1 / 3;
    grid-row: 1 / 2;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: start;
    padding: 1rem 2rem;
    width: 100%;
    height: 100%;
    background-color: var(--color-dark);
    border-radius: 45px 45px 45px 0px;
    color: var(--color-white);
    text-align: start;
    font-size: 2em;
    z-index: 10;
}

.home__hero-grid .dark-down {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 2rem;
    width: 100%;
    height: 100%;
    background-color: var(--color-dark);
    border-radius: 0 0 45px 45px;
}

.home__hero-grid .dark-down::before {
    content: "";
    position: absolute;
    top: 0;
    right: -45px;
    width: 45px;
    height: 100px;
    background-color: transparent;
    border-top-left-radius: 45px;
    box-shadow: 0 -50px 0 0 var(--color-dark);
}

.home__hero-grid .dark-down div {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    column-gap: 1rem;
    width: 100%;
}

.home__hero-grid .dark-down img {
    height: 60px;
    object-fit: contain;
}

.home__hero-grid .dark-down p {
    color: var(--color-white);
    font-size: 1.05em;
    opacity: 0.75;
}

.home__hero-grid .dark-down a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2rem;
    width: 100%;
    height: 60px;
    max-width: 450px;
    background-color: var(--color-aqua);
    border-radius: 20px;
    font-size: 1.3em;
    font-weight: 500;
}

.home__hero-explore {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 2rem;
    width: 100%;
    height: 100%;
    background-color: var(--color-green);
    border-radius: 45px;
}

.home__hero-explore p {
    margin: 2rem;
    font-size: 2em;
}

.home__hero-explore a {
    display: flex;
    align-items: end;
    justify-content: space-between;
    padding: 2rem;
    background-color: var(--color-dark);
    border-radius: 25px;
    color: var(--color-white);
    font-size: 1.3em;
}

.home__hero-services {
    display: grid;
    grid-template-columns: 1fr 280px;
    column-gap: 2rem;
    row-gap: 5rem;
    margin-top: 2rem;
    padding-left: 1.2rem;
}

.home__hero-services &gt; a {
    align-self: end;
    display: flex;
    align-items: end;
    justify-content: space-between;
    padding: 2rem;
    background-color: var(--color-green);
    border-radius: 25px;
    color: var(--color-dark);
    font-size: 1.3em;
}

.home__hero-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: start;
    gap: 1rem;
}

.home__hero-tags a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 2rem;
    height: 60px;
    box-shadow: 0px 2px 8px #7B80900F;
    border: 1px solid #1C1C1C;
    border-radius: 20px;
}

.home__hero-tags p {
    font-size: 1.05em;
    opacity: 0.75;
}

.home__hero-tags span {
    color: var(--color-blue);
    font-size: 1.6em;
    opacity: 0.75;
}

/* Emporia */
.home__emporia {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: start;
    column-gap: 2rem;
    padding: 8rem 8rem 3rem 8rem;
}

.home__emporia span {
    max-width: 500px;
    font-size: 1.3em;
    font-weight: 500;
    opacity: 0.25;
}

.home__emporia p {
    margin: 2rem 0;
    font-size: 2em;
    font-weight: 500;
}

.home__emporia img {
    justify-self: end;
    width: 80%;
    max-width: 360px;
    aspect-ratio: 1 / 1;
}

/* Contact */
.contact {
    display: flex;
    flex-direction: column;
    gap: 6rem;
    padding: 8rem 6rem 12rem 6rem;
    width: 100%;
}

.contact h2 {
    width: 100%;
    text-align: left;
    font-size: 2.6em;
    font-weight: 600;
}

.contact__banner {
    display: block;
    width: 100%;
    aspect-ratio: 91 / 20;
    background: url('../assets/img/we-hear-you.png') center center no-repeat;
    background-size: cover;
}

.contact__grid {
    display: grid;
    grid-template-columns: minmax(530px, 77fr) 40fr;
    grid-template-rows: max-content calc(140px + 1rem);
    gap: 1rem;
}

.contact__form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    padding: 4rem;
    background-color: var(--color-white);
    box-shadow: 0px 15px 40px #1C1C1C14;
    border-radius: 45px;
}

.contact__form span {
    grid-column: 1 / 3;
    font-size: 1.05em;
    opacity: 00.75;
}

.contact__form span:first-child {
    margin-bottom: 1rem;
}

.contact__form input,
.contact__form .select {
    display: block;
    padding: 0 1.5rem 0 1rem;
    width: 100%;
    height: 60px;
    font-size: 1.05em;
    background-color: #A7B2BD14;
    box-shadow: 0px 2px 8px #7B80900F;
    border-radius: 20px;
    outline: none;
    border: none;
}

.contact__form .select {
    padding: 0;
}

.contact__form-time {
    grid-column: 1 / 3;
    grid-row: 5 / 6;
    display: flex;
    align-items: start;
}

.contact__form-time span {
    display: flex;
    align-items: center;
    margin: 0 5px;
    height: 60px;
    font-size: 1.2em;
}

.contact__form-time input,
.contact__form-time .select {
    padding: 0;
    width: 75px;
    text-align: center;
}

.contact__form-time .select {
    margin-left: 1rem;
}

.contact__form button {
    grid-column: 2 / 3;
    grid-row: 5 / 6;
    justify-self: end;
    display: flex;
    align-items: center;
    gap: 1.8rem;
    margin-top: 30px;
    padding: 0 1.8rem;
    width: max-content;
    height: 60px;
    background-color: var(--color-green);
    outline: none;
    border: none;
    border-radius: 20px;
    font-size: 1.05em;
    font-weight: 500;
    translate: 2rem;
}

.contact__location {
    grid-column: 2 / 3;
    grid-row: 1 / 3;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 2rem;
    padding: 2rem;
    width: 100%;
    height: 100%;
    background-color: var(--color-aqua);
    border-radius: 45px;
}

.contact__location iframe {
    width: 100%;
    height: min-content;
    aspect-ratio: 1 / 1;
    border-radius: 25px;
}

.contact__location p {
    font-size: 1.05em;
    padding-left: 3rem;
}

.contact__info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 70px 70px;
    column-gap: 1rem;
    row-gap: 1rem;
    width: 100%;
    height: 100%;
}

.contact__info a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    width: 100%;
    height: 100%;
    background-color: var(--color-dark);
    border-radius: 25px;
    color: var(--color-white);
}

.contact__info a:last-child {
    grid-column: 1 / -1;
}

.contact__info span {
    font-size: .9em;
}

.contact__info p {
    font-size: 1.8em;
}

.contact__info p.red {
    color: var(--color-red);
}

.contact__info p.blue {
    color: var(--color-blue);
}

.contact__info p.green {
    color: #25D366;
}



/* --------------------------------------About Us-------------------------------------- */
.about {
    display: grid;
    grid-template-columns: 50fr 57fr;
    grid-template-rows: auto auto 45px auto;
    column-gap: 3rem;
    padding: 0 6rem 6rem 6rem;
    overflow: hidden;
}

.about h1 {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
    align-self: start;
    margin-top: 3rem;
    font-size: 5.5em;
    font-weight: 600;
}

.about h3 {
    font-size: 2.3em;
    font-weight: 600;
}

.about p {
    display: block;
    max-width: 500px;
    font-size: 1.3em;
    line-height: 1.6em;
}

.about__us {
    grid-column: 1 / 2;
    grid-row: 2 / 4;
    align-self: end;
    font-size: 1.3em;
    line-height: 1.5em;
    translate: 0 2rem;
}

.about__passion {
    grid-column: 2 / 3;
    grid-row: 4 / 5;
    width: 100%;
    aspect-ratio: 31 / 25;
}

.about__mission-vision {
    grid-column: 1 / 2;
    grid-row: 4 / 6;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.about__values-title {
    grid-column: 1 / 2;
    grid-row: 5 / 6;
    align-self: end;
    margin-bottom: 3rem;
}

.about__values-p {
    grid-column: 1 / 2;
    grid-row: 6 / 7;
}

/* L Frame */
.about__l-frame {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    background-color: var(--color-white);
    box-shadow: 0px 15px 40px #1C1C1C14;
}

.about__l-frame.top {
    grid-column: 1 / 3;
    grid-row: 1 / 2;
    border-radius: 45px 45px 0 45px;
    z-index: 1;
}

.about__l-frame.right {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
    border-radius: 0 0 45px 45px;
    z-index: 5;
}

.about__l-frame.right::before {
    content: "";
    position: absolute;
    top: 0;
    left: -45px;
    width: 45px;
    height: 100px;
    background-color: transparent;
    border-top-right-radius: 45px;
    box-shadow: 0 -50px 0 0 var(--color-white);
}

.about__l-frame.right div {
    position: absolute;
    display: block;
    top: -50px;
    left: 0;
    width: 100%;
    height: 55px;
    background-color: var(--color-white);
}

.about__l-content-top {
    grid-column: 1 / 3;
    grid-row: 1 / 2;
    position: relative;
    display: flex;
    justify-content: space-between;
    padding: 2rem;
    width: 100%;
    z-index: 15;
}

div.about__l-content-top p {
    padding: 2rem;
    max-width: 350px;
    font-size: 1.05em;
}

.about__l-content-top img {
    width: 350px;
    z-index: 10;
}

.about__l-content-right {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
    position: relative;
    display: flex;
    justify-content: end;
    padding: calc(10rem + 5.5em) 4rem 8rem 4rem;
    z-index: 5;
}

div.about__l-content-right p {
    display: block;
    max-width: 350px;
    font-size: 1.05em;
    line-height: 1.6em;
}

/* Swiper */
.about__swiper-cont {
    grid-column: 2 / 3;
    grid-row: 5 / 6;
    position: relative;
    display: block;
    margin-top: 3rem;
    width: 100%;
    background-color: var(--color-green);
    border-radius: 45px;
    overflow: hidden;
}

.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto 1fr;
    row-gap: 2rem;
    padding: 5rem 3rem 3rem 5rem;
    width: 100%;
    height: 100%;
    color: var(--color-dark);
    overflow: hidden;
}

.swiper-slide h4 {
    font-size: 2em;
    font-weight: 400;
}

.swiper-slide p {
    font-size: 1.05em;
    opacity: 0.75;
}

.swiper-slide img {
    margin-left: auto;
    width: 48%;
    min-width: 200px;
}

.about__swiper-btns {
    grid-column: 2 / 3;
    grid-row: 5 / 6;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 3rem;
    width: 100%;
    height: 100%;
}

.about__swiper-btns button {
    position: relative;
    display: block;
    width: 60px;
    aspect-ratio: 1 / 1;
    background-color: var(--color-light);
    box-shadow: 0px 15px 40px #1C1C1C14;
    outline: none;
    border: none;
    border-radius: 50%;
    color: var(--color-blue);
    text-align: center;
    font-size: 1.3em;
    z-index: 20;
}

.about__swiper-btns button:first-child {
    translate: -50%;
}

.about__swiper-btns button:last-child {
    translate: 50%;
}



/* --------------------------------------Services-------------------------------------- */

.services {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    padding: 0 8rem 7rem 8rem;
    gap: 6rem;
}

.services h1 {
    grid-column: 1 / 3;
    text-align: center;
    font-size: 17vw;
    font-weight: 600;
}

.services h1.zh {
    font-size: 15vw;
}

.serv__info h3 {
    margin: 2rem 0;
    font-size: 2em;
    font-weight: 500;
}

.serv__info p {
    font-size: 1.3em;
    font-weight: 500;
    opacity: 0.25;
}

.serv__grid {
    display: grid;
    grid-template-columns: 240px 240px;
    gap: 1rem;
    width: 100%;
}

.serv__grid a {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 45px auto 45px;
    align-items: center;
    padding: 1rem;
    width: 100%;
    height: min-content;
    aspect-ratio: 1 / 1;
    border-radius: 35px;
    color: var(--color-white);
}

.serv__grid a:nth-child(1) {
    background-color: var(--color-aqua);
    color: var(--color-dark);
}

.serv__grid a:nth-child(2) {
    background-color: var(--color-mid);
}

.serv__grid a:nth-child(3) {
    background-color: var(--color-purple);
}

.serv__grid a:nth-child(4) {
    background-color: var(--color-blue);
}

.serv__grid a:nth-child(5) {
    background-color: var(--color-dark-blue);
}

.serv__grid a:nth-child(6) {
    background-color: var(--color-green);
    color: var(--color-dark);
}

.serv__grid span {
    justify-self: end;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    aspect-ratio: 1 / 1;
    background-color: var(--color-dark);
    border-radius: 50%;
    color: var(--color-white);
    font-size: 1.3em;
}

.serv__grid p {
    padding: 0 1rem;
    text-align: center;
    font-size: 1.2em;
    line-height: 1.4em;
}

/* Services List */
.serv__back {
    display: grid;
    grid-template-columns: 3rem auto;
    align-items: center;
    font-size: 2em;
    font-weight: 500;
}

.serv__list-cont {
    display: grid;
    grid-template-columns: 22fr 47fr;
    align-items: start;
    column-gap: 8rem;
    row-gap: 4rem;
    padding: 0 6rem 7rem 8rem;
}

.serv__list-cont &gt; p {
    margin-top: 10rem;
    font-size: 1.05em;
    line-height: 1.55em;
    opacity: 0.5;
}

.serv__list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    width: 100%;
}

.serv__training {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4rem 6rem 4rem;
    width: 100%;
    min-height: calc(100vh - 160px);
}

.serv__list div,
.serv__training div {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 4rem 4rem 2rem 4rem;
    background-color: var(--color-white);
    box-shadow: 0px 15px 40px #1C1C1C14;
    border-radius: 45px;
}

.serv__training div {
    width: 100%;
    max-width: 750px;
}

.serv__list h4 {
    font-size: 1.3em;
    font-weight: 500;
    line-height: 1.3em;
}

.serv__list p,
.serv__training p {
    font-size: 1.05em;
    line-height: 1.4em;
}

.serv__list a,
.serv__training a {
    display: flex;
    align-items: center;
    margin-left: auto;
    padding: 0 2rem;
    width: max-content;
    height: 60px;
    background-color: var(--color-red);
    border-radius: 20px;
    color: var(--color-white);
    font-size: 1.05em;
    translate: 2rem;
}

/* --------------------------------------Thank You-------------------------------------- */
.thank-you {
    display: grid;
    grid-template-columns: 7fr 4fr;
    grid-template-rows: calc(50% - 0.5rem) calc(50% - 0.5rem);
    gap: 1rem;
    padding: 4rem 6rem;
    height: 100vh;
}

.thank-you &gt; img {
    width: 100%;
    height: 100%;
    border-radius: 45px;
    object-fit: cover;
}

.ty__message {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 4rem 2rem 2rem 4rem;
    width: 100%;
    height: 100%;
    background-color: var(--color-white);
    box-shadow: 0px 15px 40px #1C1C1C14;
    border-radius: 45px;
}

.ty__message h1 {
    margin-bottom: 2rem;
    width: 100%;
    max-width: 400px;
    font-size: 2.2em;
    text-align: center;
}

.ty__message p {
    width: 100%;
    text-align: center;
    font-size: 1.2em;
}

.ty__message img {
    height: 30px;
}

.ty__message a:first-child {
    margin-right: auto;
}

.ty__message a:last-child {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-left: auto;
    padding: 0 1.5rem;
    width: 230px;
    height: 75px;
    background-color: var(--color-dark);
    border-radius: 25px;
    color: var(--color-white);
    font-size: 1.3em;
}

.ty__contact {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background-color: var(--color-green);
    border-radius: 45px;
    font-size: 1.05em;
}

.ty__contact div {
    display: grid;
    grid-template-columns: 30px 1fr;
    column-gap: 0.65rem;
    row-gap: 1rem;
    padding: 3rem;
    width: 100%;
}

.ty__contact span {
    font-size: 1.4em;
}

.ty__contact span.red {
    color: var(--color-red);
}

.ty__contact span.blue {
    color: var(--color-blue);
}



/* --------------------------------------Error 404-------------------------------------- */
.error-404 {
    gap: 2rem;
    padding: 3rem;
}

.error-404 img {
    position: absolute;
    top: 0;
    left: 50%;
    height: 65vh;
    translate: -50% -20%;
    z-index: -1;
}

.error-404 h1 {
    font-size: 12em;
    line-height: 1em;
}

.error-404 h2 {
    margin-bottom: 1rem;
    text-align: center;
    font-size: 1.7em;
}

.error-404 p {
    width: 100%;
    max-width: 750px;
    text-align: center;
    font-size: 1.05em;
    line-height: 1.7em;
}

.error-404 p a {
    color: var(--color-blue);
    text-decoration: underline;
}

.error__contact-links {
    display: flex;
    gap: 2rem;
}

.error__contact-links a {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    column-gap: 0.8rem;
    padding: 0 2rem;
    width: 200px;
    height: 60px;
    background-color: var(--color-dark);
    border-radius: 20px;
    color: var(--color-white);
    text-align: center;
}

.error__contact-links a p {
    text-align: start;
}

.error__contact-links a span {
    font-size: 1.2em;
}

.error__contact-links a span.red {
    color: var(--color-red);
}

.error__contact-links a span.blue {
    color: var(--color-blue);
}

.error__back-home {
    display: flex;
    align-items: center;
    gap: 3rem;
    padding: 0 2rem;
    height: 60px;
    background-color: var(--color-green);
    color: var(--color-dark);
    border-radius: 20px;
    font-size: 1.05em;
    font-weight: 500;
}



/* ----------------------------------Presentation Card---------------------------------- */
.card__cont {
    display: block;
    padding: 6rem 0;
    width: 100%;
    background-color: #F8FAFC;
}

.card {
    justify-content: start;
    margin: 0 auto;
    width: 100%;
    max-width: 480px;
    background-color: #FFFFFF;
    box-shadow: 0px 15px 40px #1C1C1C14;
    border-radius: 30px;
    overflow: hidden;
}

/* Intro */
.card__intro {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto 59px 59px;
    width: 100%;
}

.card__banner {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
    display: flex;
    align-items: start;
    justify-content: space-between;
    padding: 1.5rem;
    width: 100%;
    aspect-ratio: 13 / 8;
    background: linear-gradient(180deg, #54C0CCCC 0%, #3D68ED66 49%, #9668C499 100%);
    background-size: cover;
}

.card__banner h4 {
    margin: 0.65rem 0;
    color: var(--color-light);
    text-align: end;
    font-size: 15px;
    font-weight: 900;
}

.card__banner img {
    height: 30px;
}

.card__banner-img {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
    width: 100%;
    height: min-content;
    aspect-ratio: 13 / 8;
    object-fit: cover;
}

.card__photo {
    grid-column: 1 / 1;
    grid-row: 2 / 4;
    justify-self: center;
    position: relative;
    display: block;
    padding: 3px;
    height: 118px;
    aspect-ratio: 1 / 1;
    background-color: #D6E8EE;
    border-radius: 50%;
}

.card__photo img {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    object-position: top center;
}

.card__photo button {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    right: 0;
    bottom: 0;
    width: 33px;
    height: 33px;
    background-color: #A7B2BD;
    outline: none;
    border: none;
    border-radius: 50%;
    color: var(--color-light);
    transition: background-color 0.3s ease;
}

/* Contact */
.card__director {
    margin: 1.2rem 0;
    text-align: center;
    font-weight: 900;
    line-height: 1.5em;
}

.card__director h1 {
    margin: 0;
    color: var(--color-red);
    font-size: 1.1em;
}

.card__director h2 {
    color: var(--color-dark);
    font-size: 1.1em;
}

.card__links {
    display: flex;
    justify-content: center;
    gap: 1.6rem;
    align-items: center;
}

.card__links a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 70px;
    height: 70px;
    border-radius: 15px;
    transition: opacity 0.3s ease;
    color: var(--color-white);
}

.card__links .tel {
    background-color: #3D68ED;
}

.card__links .email {
    background-color: #96A0AA;
}

.card__links .website {
    background-color: #9668C4;
}

.card__links .address {
    background-color: #3E6285;
}

.card__links i {
    font-size: 1.4em;
}

.card__links span {
    font-size: 0.7em;
}

.card__links a:hover {
    opacity: 0.75;
}

.card__save {
    display: block;
    margin-top: 2.3rem;
    height: 55px;
    width: calc(100% - 4rem);
    background-color: var(--color-blue);
    outline: none;
    border: none;
    border-radius: 27.5px;
    color: var(--color-light);
    font-size: 1.1em;
    font-weight: 900;
}

.card__spacer {
    display: block;
    margin: 3rem 0;
    width: calc(100% - 2rem);
    height: 2px;
    background-color: #D6E8EE;
    border-radius: 1px;
}

/* About */
.card__about {
    display: flex;
    flex-direction: column;
    padding: 0 1.33rem;
    width: 100%;
    line-height: 1.5em;
}

.card__about h2 {
    margin: 0;
    color: #A7B2BD;
    text-align: center;
    font-size: 1.1em;
}

.card__about h3 {
    margin: 1rem 0 0.6rem 0;
    color: #3E6285;
    font-size: 1em;
}

.card__about &gt; div {
    display: block;
    padding: 1.5rem;
    width: 100%;
    background-color: #F8FAFC;
    box-shadow: 2px 2px 5px #00000014;
    border-radius: 15px;
}

.card__about div.img {
    display: grid;
    grid-template-columns: 50px 1fr;
    align-items: center;
    gap: 1.5rem;
}

.card__about img {
    display: block;
    width: 100%;
    object-fit: contain;
}

.card__about .large {
    min-height: 160px;
}

.card__about p {
    font-size: 1em;
    opacity: 0.75;
}

.card__about p.bold {
    font-weight: 500;
    opacity: 1;
}

.card__about span {
    font-size: 0.9em;
    opacity: 0.75;
}

/* Atlantian */
.card__atlantian {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 2.3rem 0 3.3rem 0;
}

.card__powered-by span {
    color: #96A0AA;
    font-size: 1.1em;
}

.card__atlantian img {
    height: 22px;
}



/* -------------------------------------Responsive------------------------------------- */

@media screen and (max-width: 1200px) {

    /* General */
    header {
        padding: 4rem 3rem;
    }

    .nav__sm {
        margin: 2rem 0 3rem 0;
    }

    .contact {
        padding: 6rem 3rem 4rem 3rem;
    }

    .contact__form {
        padding: 3rem;
    }

    .contact__form button {
        translate: 1.5rem;
    }

    .contact__location {
        padding: 1.5rem;
    }

    /* Home */
    .home__hero {
        grid-template-columns: 1fr 220px;
        padding: 0 3rem;
    }

    .home__hero h1 {
        font-size: 2.2em;
    }

    .home__hero h2 {
        font-size: 1.95em;
    }

    .home__hero-grid {
        grid-template-columns: 160fr auto 265px;
        height: 545px;
    }

    .home__hero-grid .img-up {
        height: 265px;
    }

    .home__hero-grid .img-down {
        height: 280px;
    }

    .home__hero-grid .dark-up {
        font-size: 1.6em;
    }

    .home__hero-grid .dark-down img {
        width: 125px;
        height: 50px;
    }

    .home__hero-grid .dark-down {
        padding: 1.5rem;
    }

    .home__hero-grid .dark-down a {
        padding: 0 1.5rem;
        height: 55px;
        font-size: 1.15em;
    }

    .home__hero-explore {
        padding: 1.2rem;
    }

    .home__hero-explore p {
        margin: 1.2rem;
        font-size: 1.6em;
    }

    .home__hero-explore a {
        padding: 1.2rem;
        font-size: 1.15em;
    }

    .home__hero-services {
        grid-template-columns: 1fr 220px;
    }

    .home__emporia {
        padding: 5rem 5rem 3rem 5rem;
    }

    .home__emporia p {
        font-size: 1.8em;
    }

    .home__emporia span {
        font-size: 1.2em;
    }

    /* About Us */
    .about {
        padding: 0 3rem 6rem 3rem;
    }

    .about h1 {
        font-size: 4.8em;
    }

    .about p {
        font-size: 1.2em;
    }

    .about__l-content-top img {
        width: 300px;
    }

    .about__swiper-btns button {
        width: 50px;
    }

    /* Services */
    .services {
        padding: 0 3rem 7rem 3rem;
    }

    .services h1 {
        font-size: 19.2vw;
    }

    .serv__grid {
        grid-template-columns: 220px 220px;
    }

    header.service {
        padding: 4rem 0 3rem 3rem;
    }

    .serv__list-cont {
        column-gap: 6rem;
        padding: 0 4rem 7rem 6rem;
    }

    /* Thank You */
    .thank-you {
        padding: 3rem;
    }
}

@media screen and (max-width: 900px) {

    /* General */
    .contact__grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto 75px;
    }

    .contact__location {
        grid-column: 1 / 2;
        grid-row: 2 / 3;
        flex-direction: row;
    }

    .contact__location p {
        padding: 3rem 0 0 0;
        max-width: 250px;
    }

    .contact__location iframe {
        width: 250px;
    }

    .contact__info {
        grid-column: 1 / 2;
        grid-row: 3 / 4;
        gap: 0.6rem;
    }

    /* Home */
    .home__hero {
        grid-template-columns: 1fr 200px;
        row-gap: 2rem;
    }

    .home__hero h1 {
        font-size: 1.8em;
    }

    .home__hero h2 {
        font-size: 1.55em;
        line-height: 1.3em;
    }

    .home__hero h3 {
        padding-left: 0.8rem;
        font-size: 1.4em;
    }

    .home__hero-grid {
        grid-template-columns: 160fr auto 200px;
        height: 415px;
    }

    .home__hero-grid .img-up {
        height: 200px;
    }

    .home__hero-grid .img-down {
        height: 215px;
    }

    .home__hero-explore {
        grid-column: 1 / 3;
    }

    .home__hero-explore p {
        margin: 1.2rem 1.2rem 3.5rem 1.2rem;
        max-width: 400px;
    }

    .home__hero-explore a {
        margin-left: auto;
        width: 240px;
    }

    .home__hero-services {
        grid-template-columns: 1fr;
        padding-left: 0;
    }

    /* About Us */
    .about h1 {
        font-size: 4.2em;
    }

    .about h3 {
        font-size: 2.1em;
    }

    .about p {
        font-size: 1.15em;
    }

    .about__l-content-top img {
        width: 240px;
    }

    .about__l-content-right {
        padding: 8rem 4rem;
    }

    .swiper-slide {
        padding: 5rem 3rem 3rem 3rem;
    }

    .swiper-slide h4 {
        font-size: 1.7em;
    }

    /* Services */
    .services {
        grid-template-columns: 1fr;
        justify-items: center;
    }

    .services h1 {
        grid-column: 1 / 2;
    }

    .serv__grid {
        grid-template-columns: 240px 240px;
    }

    header.service {
        padding: 4rem 0 3rem 2rem;
    }

    .serv__list-cont {
        column-gap: 4rem;
        padding: 0 3rem 7rem 5rem;
    }

    .serv__list div,
    .serv__training div {
        padding: 3rem 3rem 2rem 3rem;
    }

    .serv__list a,
    .serv__training a {
        translate: 1rem;
    }

    /* Thank You */
    .thank-you {
        grid-template-columns: 4fr 5fr;
        grid-template-rows: 1fr auto;
        height: unset;
    }

    .ty__message {
        grid-column: 1 / 3;
        grid-row: 1 / 2;
        gap: 6rem;
        padding: 2.5rem;
    }

    /* Error 404 */
    .error-404 img {
        height: 45vh;
    }
}

@media screen and (max-width: 760px) {

    /* General */
    header {
        padding: 3rem 2rem;
    }

    header &gt; div {
        display: grid;
        grid-template-columns: repeat(3, auto);
    }

    header a img {
        height: 35px;
    }

    header .select,
    .header__start span {
        display: none;
    }

    .header__start {
        padding: 0;
        width: 45px;
    }

    .nav__cont {
        grid-column: 3 / 4;
        grid-row: 1 / 2;
    }

    nav {
        position: fixed;
        top: 0;
        right: 0;
        padding: 3rem 2rem;
        width: 100%;
        height: 100%;
    }

    nav div {
        margin-bottom: 2rem;
    }

    nav .select {
        display: block;
    }

    .contact {
        padding: 4rem 2rem 4rem 2rem;
        gap: 4rem;
    }

    .contact h2 {
        font-size: 2.2em;
    }

    .contact__form {
        grid-template-columns: 1fr;
    }

    .contact__form-time,
    .contact__form span {
        grid-column: 1 / 2;
        grid-row: unset;
    }

    .contact__form button {
        grid-column: 1 / 2;
        grid-row: 8 / 9;
    }

    .contact__grid {
        grid-template-rows: auto auto auto;
    }

    .contact__location {
        flex-direction: column;
        align-items: center;
        padding: 2rem;
    }

    .contact__location iframe {
        width: 100%;
        max-width: 240px;
    }

    .contact__location p {
        padding: 0;
        max-width: 250px;
    }

    .contact__info div {
        height: 65px;
    }

    .contact__info p {
        font-size: 1.6em;
    }

    footer {
        align-items: center;
        text-align: center;
    }

    footer &gt; img {
        margin: 0 0 2rem 0;
        height: 32px;
    }

    /* Home */
    .home__hero {
        grid-template-columns: 1fr;
        padding: 0 2rem;
    }

    .home__hero h1 {
        font-size: 4.3vw;
    }

    .home__hero h2 {
        font-size: 4vw;
    }

    .home__hero-simplify span {
        max-width: 330px;
    }

    .home__hero-grid {
        grid-template-columns: 7fr 4fr;
        grid-template-rows: auto 15px auto 15px auto;
        height: auto;
    }

    .home__hero-grid img {
        border-radius: 15px;
        width: 100%;
    }

    .home__hero-grid .img-up {
        grid-column: 2 / 3;
        grid-row: 3 / 4;
        height: unset;
    }

    .home__hero-grid .img-down {
        grid-column: 2 / 3;
        grid-row: 5 / 6;
        padding: 0;
        height: unset;
    }

    .home__hero-grid .dark-up {
        grid-column: 1 / 3;
        grid-row: 1 / 2;
        padding: 2.5rem 2rem;
        border-radius: 20px 20px 20px 0px;
        font-size: 1.4em;
    }

    .home__hero-grid .dark-down {
        grid-column: 1 / 2;
        grid-row: 2 / 6;
        border-radius: 0 0 20px 20px;
    }

    .home__hero-grid .dark-down::before {
        right: -20px;
        width: 20px;
        border-top-left-radius: 20px;
    }

    .home__hero-grid .dark-down div {
        grid-template-columns: 1fr;
        justify-items: start;
        row-gap: 1rem;
    }

    .home__hero-grid .dark-down a {
        padding: 1rem;
        border-radius: 15px;
        font-size: 1em;
    }

    .home__hero-simplify p {
        height: unset;
    }

    .home__hero-explore {
        grid-column: 1 / 2;
        border-radius: 20px;
    }

    .home__hero-explore p {
        font-size: 1.4em;
    }

    .home__hero-explore a {
        width: 180px;
        border-radius: 15px;
        font-size: 1em;
    }

    .home__hero-tags {
        grid-column: 1 / 2;
    }

    .home__hero-tags a {
        padding: 0 1rem;
    }

    .home__hero-tags p {
        width: min-content;
    }

    .home__hero-tags a:nth-child(2) p {
        width: 150px;
    }

    .home__emporia {
        grid-template-columns: 1fr;
        padding: 5rem 3rem 4rem 3rem;
    }

    .home__emporia img {
        grid-column: 1 / 2;
        grid-row: 2 / 3;
        justify-self: start;
        width: 60%;
    }

    .home__emporia span:first-child {
        margin-bottom: 3rem;
    }

    .home__emporia p {
        margin: 3rem 0 2rem 0;
        font-size: 1.6em;
    }

    .home__emporia br {
        display: none;
    }

    /* About Us */
    .about {
        grid-template-columns: 1fr;
        grid-template-rows: unset;
        row-gap: 3rem;
    }

    .about h1 {
        grid-column: 1 / 2;
        grid-row: 1 / 2;
    }

    .about__us {
        grid-row: 2 / 3;
        translate: 0;
    }

    .about__l-frame.top {
        grid-column: 1 / 2;
        grid-row: 3 / 5;
        border-radius: 45px;
    }

    .about__l-content-top {
        grid-column: 1 / 2;
        grid-row: 3 / 4;
        flex-direction: column;
        gap: 3rem;
        padding: 3rem 3rem 0 3rem;
    }

    div.about__l-content-top p {
        padding: 0;
    }

    .about__l-content-top img {
        margin: 0 auto;
    }

    .about__l-frame.right {
        display: none;
    }

    .about__l-content-right {
        grid-column: 1 / 2;
        grid-row: 4 / 5;
        padding: 1rem 3rem 3rem 3rem;
    }

    div.about__l-content-right p {
        text-align: right;
    }

    .about__mission-vision {
        grid-row: 5 / 6;
    }

    .about__passion {
        grid-column: 1 / 2;
        grid-row: 6 / 7;
    }

    .about__values-title {
        grid-row: 7 / 8;
        margin-bottom: 0;
    }

    .about__values-p {
        grid-row: 8 / 9;
    }

    .about__swiper-cont,
    .about__swiper-btns {
        grid-column: 1 / 2;
        grid-row: 9 / 10;
        margin-top: 0;
        padding-top: 0;
    }

    /* Services */
    .services {
        gap: 3rem;
        padding: 0 2rem 7rem 2rem;
    }

    .services h1 {
        justify-self: start;
        font-size: 4em;
    }

    .serv__info h3 {
        font-size: 1.65em;
    }

    .serv__info p {
        font-size: 1.2em;
    }

    .serv__grid {
        grid-template-columns: 190px 190px;
    }

    .serv__grid p {
        padding: 0;
    }

    .serv__back {
        font-size: 1.7em;
    }

    .serv__list-cont {
        grid-template-columns: 1fr;
    }

    .serv__list-cont {
        padding: 0 2rem 7rem 2rem;
    }

    .serv__list-cont &gt; p {
        margin: 2rem 0 0 3rem;
    }

    /* Thank You */
    .thank-you {
        grid-template-columns: 1fr;
        padding: 2rem;
    }

    .thank-you &gt; img {
        border-radius: 25px;
    }

    .ty__message {
        grid-column: 1 / 2;
        border-radius: 25px;
    }

    .ty__message h1 {
        font-size: 1.8em;
    }

    .ty__message p {
        font-size: 1.1em;
    }

    .ty__message a {
        width: 190px;
        height: 65px;
        font-size: 1.15em;
    }

    .thank-you &gt; img {
        aspect-ratio: 16 / 9;
    }

    .ty__contact {
        border-radius: 25px;
    }

    /* Error 404 */
    .error-404 h1 {
        font-size: 8em;
    }

    .error__contact-links a {
        padding: 0 1.6rem;
        width: 170px;
    }
}

@media screen and (max-width: 480px) {

    /* General */
    header &gt; div {
        gap: 0.8rem;
    }

    header a img {
        height: 28px;
    }

    .contact__form {
        padding: 2rem;
    }

    .contact__form-time input,
    .contact__form-time .select {
        width: 65px;
        height: 55px;
    }

    .contact__form button {
        translate: 1rem;
    }

    .contact__info {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(3, 70px);
    }

    footer {
        padding: 3rem 2rem;
    }

    /* Home */
    .home__hero h1 {
        font-size: 5.15vw;
    }

    .home__hero h2 {
        margin-bottom: 10px;
        padding-right: 2rem;
        font-size: 1.3em;
        line-height: 1.2em;
    }

    .home__hero h3 {
        padding-left: 0;
        font-size: 1.3em;
    }

    .home__hero-simplify {
        margin-bottom: 1rem;
    }

    .home__hero-tags:not(.zh) {
        display: grid;
        grid-template-columns: auto 1fr;
    }

    .home__hero-tags a {
        padding: 0 0.8rem;
    }

    .home__hero-tags a:nth-child(1) {
        grid-column: 1 / 3;
        grid-row: 3 / 4;
        justify-self: center;
    }

    .home__hero-tags a:nth-child(2) {
        grid-column: 1 / 3;
        grid-row: 4 / 5;
        justify-self: center;
    }

    .home__hero-tags a:nth-child(3) {
        grid-column: 2 / 3;
        grid-row: 1 / 2;
    }

    .home__hero-tags a:nth-child(4) {
        grid-column: 1 / 2;
        grid-row: 2 / 3;
    }

    .home__hero-tags a:nth-child(5) {
        grid-column: 1 / 2;
        grid-row: 1 / 2;
    }

    .home__hero-tags a:nth-child(6) {
        grid-column: 1 / 3;
        grid-row: 5 / 6;
        justify-self: center;
    }

    .home__hero-tags a:nth-child(7) {
        grid-column: 1 / 3;
        grid-row: 6 / 7;
        justify-self: center;
    }

    .home__hero-tags a:nth-child(8) {
        grid-column: 1 / 3;
        grid-row: 7 / 8;
        justify-self: center;
    }

    .home__hero-tags a:nth-child(9) {
        grid-column: 2 / 3;
        grid-row: 2 / 3;
    }

    .home__hero-tags span {
        font-size: 1.1em;
    }

    .home__hero-tags p {
        width: 100%;
        font-size: 0.95em;
    }

    .home__hero-tags a:nth-child(2) p {
        width: 100%;
    }

    /* About Us */
    .about {
        padding: 0 2rem 6rem 2rem;
    }

    .about h1 {
        font-size: 3.6em;
    }

    .about__l-content-top {
        padding: 2.5rem 2.5rem 0 2.5rem;
    }

    .about__l-content-right {
        padding: 0 2.5rem 2.5rem 2.5rem;
    }

    div.about__l-content-right p {
        text-align: left;
    }

    /* Presentation card */
    .card__cont {
        padding: 0;
    }

    .card {
        border-radius: 0;
    }

    /* Services */
    .serv__grid {
        grid-template-columns: 1fr 1fr;
    }

    .services h1 {
        font-size: 3.6em;
    }

    .serv__info h3 {
        font-size: 1.55em;
    }

    .serv__grid a {
        grid-template-rows: 30px auto 30px;
    }

    .serv__grid p {
        font-size: 1.1em;
    }

    .serv__grid span {
        font-size: 1.2em;
    }

    .serv__training {
        padding: 0 2rem 6rem 2rem;
    }

    /* Error 404 */
    .error-404 {
        padding: 1.5rem;
    }

    .error-404 img {
        height: 35vh;
    }

    .error__contact-links {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
        width: 100%;
    }

    .error__contact-links a {
        padding: 0 1rem;
        width: 100%;
    }

    .error__back-home {
        justify-content: space-between;
        gap: 1.6rem;
        width: 100%;
    }
}

/* IPhone SE */
@media screen and (max-width: 376px) and (max-height: 668px) {

    /* About Us */
    .about__l-content-top img {
        width: 100%;
        max-width: 200px;
    }

    .swiper-slide img {
        width: 100%;
        min-width: unset;
        max-width: 175px;
    }

    /* Services */
    .serv__grid p {
        font-size: 0.9em;
    }
}



/* -------------------------------------Animations------------------------------------- */

nav.appear {
    animation: fade-in 0.3s;
}

nav.disappear {
    animation: fade-out 0.3s forwards;
}


/* Keyframes */
@keyframes fade-in {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 100%;
    }
}

@keyframes fade-out {
    0% {
        opacity: 100%;
    }

    100% {
        opacity: 0;
    }
}

@keyframes loader-animation {
    0% {
        top: 96px;
        left: 96px;
        width: 0;
        height: 0;
        opacity: 1;
    }

    100% {
        top: 78px;
        left: 78px;
        width: 36px;
        height: 36px;
        opacity: 0;
    }
}

@keyframes loader-text {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0.5;
    }
}

#countdown-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 1);
    color: white;
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

#countdown {
    text-align: center;
}

#countdown h1 {
    font-size: 2em;
    margin-bottom: 20px;
}

#countdown-timer {
    font-size: 1.5em;
}</pre></body></html>