@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600&display=swap');

*,
*::before,
*::after {
    box-sizing: border-box;
}

body, main {
    font-family: 'Inter', sans-serif;
    box-sizing: border-box;
    margin: 0;
}

/* Hero Section */

.home-hero {
    width: 100%;
    max-width: 100%;
    display: flex;
    background: #fcfcfc;
    animation: slideUp 0.8s ease-out forwards;
    gap: 30px;
}

.home-hero-left {
    width: 100%;
    display: flex;
    flex-direction: column;
    color: black;
    padding: 30px 20px;
    gap: 20px;
}

.home-hero-left h1 {
    font-size: 32px;
    font-weight: 800;
    line-height: 1.6;
    margin: 0;
}

.underline-yellow {
    text-decoration: underline 4px #FFD700;
    text-underline-offset: 3px;
}

.home-hero-btn {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
}

.strategy-call-btn {
    display: inline-flex;
    background: black;
    padding: 6px 16px;
}

.strategy-call-btn a {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: white;
    text-decoration: none;
    margin: 0;
}

.see-work-btn {
    display: inline-flex;
    background: none;
}

.see-work-btn a {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: black;
    text-decoration: underline;
    text-underline-offset: 3px;
    margin: 0;
}

.home-hero-btn {
    display: flex;
    flex-direction: row;
    gap: 20px;
}

.home-hero-right {
    display: none;
}

/* Service Introduction */

.home-service {
    width: 100%;
    display: flex;
    flex-direction: column;
    animation: slideUp 1.6s ease-out forwards;
    padding: 50px 20px;
    gap: 10px;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(60px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.home-service h2 {
    font-size: 26px;
    font-weight: 400;
    line-height: 1.2;
    margin: 0;
}

.extra-bold {
    font-weight: bold;
}

.home-service > p {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.5;
    color: #919191;
    margin: 0;
    padding-bottom: 20px;
}

.home-service-all {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.home-service-box {
    width: 100%;
    display: flex;
    flex-direction: row;
    border-top: 0.1px solid rgba(145, 145, 145, 0.5);
    border-bottom: 0.1px solid rgba(145, 145, 145, 0.5);
    justify-content: start;
    align-items: start;
    padding: 20px 0;
    gap: 15px;
}

.home-service-number p {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.5;
    color: #919191;
    margin: 0;
}

.home-service-name {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.home-service-name a {
    font-size: 16px;
    font-weight: bold;
    line-height: 1.5;
    text-decoration: none;
    color: black;
    cursor: pointer;
    margin: 0;
}

.home-service-name p {
    font-size: 14px;
    font-weight: 300;
    line-height: 1.5;
    color: #919191;
    margin: 0;
}

.home-service-description {
    display: none;
}

/* Selling Points Section */

.home-selling-point {
    width: 100%;
    display: flex;
    flex-direction: column;
    animation: slideUp 0.8s ease-out forwards;
    border-bottom: 0.1px solid rgba(145, 145, 145, 0.15);
    padding: 50px 20px;
    gap: 10px;
}

.home-selling-left {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.home-selling-left h2 {
    font-size: 26px;
    font-weight: bold;
    line-height: 1.2;
    margin: 0;
}

.home-selling-left p {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.5;
    color: #919191;
    padding-bottom: 20px;
    margin: 0;
}

.home-selling-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.home-selling-box {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.home-selling-box h4 {
    font-size: 20px;
    font-weight: bold;
    color: black;
    margin: 0;
}

.home-selling-box p {
    font-size: 14px;
    font-weight: 300;
    line-height: 1.5;
    color: #919191;
    margin: 0;
}

.home-selling-right {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    background: black;
    justify-content: space-between;
    padding: 20px;
    gap: 40px;
}

.home-selling-right h5 {
    font-size: 14px;
    font-weight: 300;
    line-height: 1.5;
    color: #919191;
    padding-bottom: 20px;
    margin: 0;
}

.yellow-hilight {
    color: #FFD700;
}

.home-selling-right p {
    font-size: 12px;
    font-weight: 300;
    line-height: 1.5;
    color: white;
    margin: 0;
}

.fade-text {
    color: #919191;
}

/* CTA Section */

.home-cta {
    width: 100%;
    display: flex;
    flex-direction: column;
    animation: slideUp 0.8s ease-out forwards;
    border-bottom: 0.1px solid rgba(145, 145, 145, 0.5);
    padding: 50px 20px;
    gap: 10px;
}

.home-cta h2 {
    font-size: 32px;
    font-weight: 800;
    line-height: 1.6;
    margin: 0;
}

.home-cta-btn {
    width: fit-content;
    display: inline-flex;
    background: black;
    padding: 6px 16px;
}

.home-cta-btn a {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: white;
    text-decoration: none;
    margin: 0;
}

@media (min-width: 768px) {
/* Hero Section */
.home-hero {
    display: flex;
    justify-content: start;
    padding: 30px;
}

.home-hero-left {
    padding: 0;
}

.home-hero-left h1 {
    font-size: 34px;
}

/* Service Introduction */
.home-service {
    padding: 30px;
}

.home-service h2 {
    font-size: 28px;
}

/* Selling Points Section */
.home-selling-point {
    padding: 30px;
}

.home-selling-left h2 {
    font-size: 28px;
}

/* CTA Section */
.home-cta {
    padding: 30px;
}

.home-cta h2 {
    width: 90%;
    font-size: 34px;
}
}

@media(min-width: 1024px) {
/* Hero Section */
.home-hero {
    width: 100%;
    max-width: 100%;
    display: grid;
    grid-template-columns: repeat(2,1fr);
    background: #fcfcfc;
    animation: slideUp 0.8s ease-out forwards;
    padding: 40px;
    gap: 20px;
}

.home-hero-left {
    display: flex;
}

.home-hero-left h1 {
    font-size: 36px;
}

.strategy-call-btn:hover {
    background: none;
    border: solid 1px black;
}

.strategy-call-btn a:hover {
    color: black;
}

.see-work-btn a:hover {
    font-weight: 500;
}

.home-hero-right {
    width: 100%;
    display: flex;
}

.home-hero-right img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Service Introduction */
.home-service {
    padding: 60px 40px;
}

.home-service-box {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    text-align: left;
    gap: 30px;
}

.home-service-name p {
    display: none;
}

.home-service-description {
    display: block;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.5;
    color: #919191;
    margin: 0;
}

.home-service-box:hover {
    background: rgba(145, 145, 145, 0.05);
}

/* Selling Point */
.home-selling-point {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    padding: 0 40px 60px 40px;
}

.home-service-box {
    cursor: pointer;
    padding: 20px;
}

/* CTA Section */
.home-cta {
    padding: 60px 40px;
    gap: 20px;
}
.home-cta h2 {
    max-width: 70%;
    font-size: 36px;
}

.home-cta-btn:hover {
    background: none;
    border: solid 1px black;
}

.home-cta-btn a:hover {
    color: black;
}
}

@media(min-width: 1440px) {
/* Hero Section */
.home-hero {
    grid-template-columns: 1fr 1.5fr;
    padding: 50px;
    gap: 60px;
}

.home-hero-left h1 {
    font-size: 40px;
}

/* Service Introduction */
.home-service {
    padding: 80px 50px 0 50px;
}

/* Selling Point */
.home-selling-point {
    padding: 100px 50px;
    gap: 80px;
}

/* CTA Section */
.home-cta {
    padding: 100px 50px;
}

.home-cta h2 {
    max-width: 50%;
    font-size: 40px;
}
}

@media(min-width: 2560px) {
/* Hero Section */
.home-hero {
    grid-template-columns: 1fr 1.2fr;
    padding: 100px 80px 100px 80px;
    gap: 100px;
}

.home-hero-left {
    gap: 40px;
}

.home-hero-left h1 {
    font-size: 80px;
}

.home-hero-btn {
    gap: 60px;
}

.strategy-call-btn {
    padding: 10px 30px;
}

.strategy-call-btn a {
    font-size: 24px;
}

.see-work-btn {
    display: inline-flex;
    background: none;
}

.see-work-btn a {
    font-size: 24px;
}

/* Service Introduction */
.home-service {
    padding: 100px 80px 100px 80px;
}

.home-service h2 {
    font-size: 60px;
}

.home-service > p {
    font-size: 30px;
}

.home-service-box {
    gap: 60px;
}

.home-service-number > p {
    font-size: 26px;
}

.home-service-name > a {
    font-size: 26px;
}

.home-service-description > p {
    font-size: 26px;
}

/* Selling Point */
.home-selling-point {
    padding: 100px 80px 100px 80px;
}

.home-selling-left h2 {
    font-size: 60px;
}

.home-selling-left > p {
    font-size: 30px;
    padding-bottom: 40px;
}

.home-selling-box h4 {
    font-size: 40px;
}

.home-selling-box p {
    font-size: 26px;
}

.home-selling-right {
    padding: 40px;
}

.home-selling-right h5 {
    font-size: 24px;
}

.home-selling-right p {
    font-size: 22px;
}

/* CTA Section */
.home-cta {
    padding: 100px 80px 100px 80px;
    gap: 40px;
}

.home-cta h2 {
    font-size: 80px;
}

.home-cta-btn {
    padding: 10px 30px;
}

.home-cta-btn a {
    font-size: 24px;
}
}

@media(min-width: 3440px) {
/* Hero Section */
.home-hero {
    padding: 100px;
    gap: 120px;
}

.home-hero-left {
    gap: 60px;
}

.home-hero-left h1 {
    font-size: 100px;
}

.home-hero-btn {
    gap: 80px;
}

.strategy-call-btn {
    padding: 18px 38px;
}

.strategy-call-btn a {
    font-size: 30px;
}

.see-work-btn a {
    font-size: 30px;
}

/* Service Introduction */
.home-service {
    padding: 100px;
}

.home-service h2 {
    font-size: 70px;
}

.home-service > p {
    font-size: 36px;
    padding-bottom: 60px;
}

.home-service-box {
    gap: 80px;
}

.home-service-number > p {
    font-size: 28px;
}

.home-service-name > a {
    font-size: 28px;
}

.home-service-description > p {
    font-size: 28px;
}

/* Selling Point */
.home-selling-point {
    padding: 100px;
}

.home-selling-left h2 {
    font-size: 70px;
}

.home-selling-left > p {
    font-size: 30px;
    padding-bottom: 60px;
}

.home-selling-box h4 {
    font-size: 50px;
}

.home-selling-box p {
    font-size: 28px;
}

.home-selling-right h5 {
    font-size: 28px;
}

.home-selling-right p {
    font-size: 24px;
}

/* CTA Section */
.home-cta {
    padding: 100px;
    gap: 60px;
}

.home-cta h2 {
    font-size: 100px;
}

.home-cta-btn {
    padding: 18px 38px;
}

.home-cta-btn a {
    font-size: 30px;
}
}

@media(min-width: 3840px) {
/* Hero Section */
.home-hero {
    padding: 100px 120px;
}

.home-hero-left h1 {
    font-size: 140px;
}

.underline-yellow {
    text-decoration: underline 10px #FFD700;
    text-underline-offset: 3px;
}

.strategy-call-btn {
    padding: 22px 42px;
}

.strategy-call-btn a {
    font-size: 32px;
}

.see-work-btn a {
    font-size: 32px;
}

/* Service Introduction */
.home-service {
    padding: 200px 120px;
}
.home-service h2 {
    font-size: 80px;
}

.home-service > p {
    font-size: 40px;
}

.home-service-number > p {
    font-size: 32px;
}

.home-service-name > a {
    font-size: 32px;
}

.home-service-description > p {
    font-size: 32px;
}

/* Selling Point */
.home-selling-point {
    padding: 200px 120px;
}
.home-selling-left h2 {
    font-size: 80px;
}

.home-selling-left > p {
    font-size: 32px;
}

.home-selling-box h4 {
    font-size: 60px;
}

.home-selling-box p {
    font-size: 32px;
}

.home-selling-right h5 {
    font-size: 32px;
}

.home-selling-right p {
    font-size: 28px;
}

/* CTA Section */
.home-cta {
    padding: 200px 120px;
}

.home-cta h2 {
    font-size: 140px;
}

.home-cta-btn {
    padding: 22px 42px;
}

.home-cta-btn a {
    font-size: 32px;
}
}