/* Core Styles */
:root {
    font-size: 16px;
    --primary-color: #fff;
    --secondary-color: #181A22;
    --dark-color: #000000;
    --light-color: #fff;
    --grey-color: #D5CDCD;
    --heading-color: #000;
    --text-color: #181A22;
    --background-color: #fff;
    --btn-bg-color: var(--secondary-color);
    --btn-text-color: var(--secondary-color);
    --btn-border-color: var(--secondary-color);

    --heading1-font-size: 2.25rem; /* 36px */
    --heading2-font-size: 1.875rem; /* 30px */
    --heading3-font-size: 1.5rem; /* 24px */
    --heading4-font-size: 1.25rem; /* 20px */
    --heading5-font-size: 1.125rem; /* 18px */
    --heading6-font-size: 1rem; /* 16px */

    --xtra_large-font-size: 1.5rem; /* 24px */
    --large-font-size: 1.25rem; /* 20px */
    --medium-font-size: 1.125rem; /* 18px */
    --regular-font-size: 1rem; /* 16px */
    --small-font-size: 0.875rem; /* 14px */
    --xsmall-font-size: 0.75rem; /* 12px */
    --body-font-size: 1rem; /* 16px */

    --styled-heading1-font-size: 3.75rem; /* 60px */
    --styled-heading2-font-size: 3rem; /* 48px */
    --styled-heading3-font-size: 2.25rem; /* 36px */
    --styled-heading4-font-size: 1.75rem; /* 28px */
    --styled-heading5-font-size: 1.5rem; /* 24px */
    --styled-heading6-font-size: 1.25rem; /* 20px */
}

@media only screen and (max-width: 468px) {
    :root {
        --styled-heading1-font-size: 3rem; /* 60px */
        --styled-heading2-font-size: 2.25rem; /* 48px */
        --styled-heading3-font-size: 1.75rem; /* 36px */
        --styled-heading4-font-size: 1.5rem; /* 28px */
        --styled-heading5-font-size: 1.25rem; /* 24px */
        --styled-heading6-font-size: 1rem; /* 20px */
    }
}


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

/* Body styles */
body {
    line-height: 1.6;
    font-size: var(--body-font-size);
    color: var(--text-color);
    background-color: var(--background-color);
}

/* Heading styles */
h1, h2, h3, h4, h5, h6 {
    font-weight: bold;
    padding-bottom: 30px;
}

h1 {
    font-size: var(--heading1-font-size);
}

h2 {
    font-size: var(--heading2-font-size);
}

h3 {
    font-size: var(--heading3-font-size);
}

h4 {
    font-size: var(--heading4-font-size);
}

h5 {
    font-size: var(--heading5-font-size);
}

h6 {
    font-size: var(--heading6-font-size);
}

.h1s {
    font-size: var(--styled-heading1-font-size);
    line-height: calc(var(--styled-heading1-font-size) + 10px);
}

.h2s {
    font-size: var(--styled-heading2-font-size);
    line-height: calc(var(--styled-heading2-font-size) + 10px);
}

.h3s {
    font-size: var(--styled-heading3-font-size);
    line-height: calc(var(--styled-heading3-font-size) + 10px);
}

.h4s {
    font-size: var(--styled-heading4-font-size);
    line-height: calc(var(--styled-heading4-font-size) + 10px);
}

.h5s {
    font-size: var(--styled-heading5-font-size);
    line-height: calc(var(--styled-heading5-font-size) + 10px);
}

.h6s {
    font-size: var(--styled-heading6-font-size);
    line-height: calc(var(--styled-heading6-font-size) + 10px);
}

/* Link styles */
a {
    color: var(--secondary-color);
    text-decoration: none;
    font-size: var(--regular-font-size);
    position: relative;
    width: auto;
    transition: all 0.4s ease-in-out;
}

a:after {
    content: '';
    position: absolute;
    width: 0px;
    height: 1px;
    visibility: hidden;
    background-color: var(--secondary-color);
    bottom: -1px;
    left: 0px;
    cursor: pointer;
    transition: all 0.4s ease-in-out;
}

a.underline:after {
    width: calc(100% - 45px);
    height: 1px;
    visibility: visible;
}

@media only screen and (min-width: 468px) {
    a:not(.btn):hover {
        opacity: 0.8;
        margin-left: 2px;
    }
    
    a:not(.btn):not(.underline):hover:after {
        opacity: 0.8;
        width: 100%;
        visibility: visible;
    }
}


a.icon-link {
    position: relative;
    padding-right: 45px;
    font-weight: 700;
    margin-bottom: 5px;
}

a.icon-link:before {
    content: '';
    position: absolute;
    background-image: url('/assets/images/arrow-circle-right.svg');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    width: auto;
    height: 100%;
    aspect-ratio: 1;
    right: 0px;
    top: 0px;
}

a:not(.icon-link).underline:after {
    width: calc(100%);
}

/* image style */
img {
    max-width: 100%;
    height: auto;
}

/* Button styles */
.btn {
    display: flex;
    text-align: center;
    padding: 12px 30px;
    font-size: var(--regular-font-size);
    line-height: var(--regular-font-size);
    font-weight: 500;
    border: 1px solid var(--btn-bg-color);
    border-radius: 30px;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--dark-color);
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: var(--light-color);
}

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

.btn:hover {
    background-color: var(--secondary-color);
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    color: var(--light-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--dark-color);
}

.btn-outline:hover {
    background-color: var(--secondary-color);
    color: var(--light-color);
}

.btn .btn-icon {
    width: 12px;
    height: 12px;
    margin-left: 16px;
}

.btn:hover .btn-icon svg path {
    stroke: var(--light-color);
}

/* Form styles */
input[type="text"],
input[type="email"],
input[type="password"],
textarea,
select {
    display: block;
    width: 100%;
    padding: 22px 10px;
    margin-bottom: 10px;
    border-bottom: 1px solid var(--grey-color);
    border-top-width: 0px;
    border-left-width: 0px;
    border-right-width: 0px;
    border-radius: 0px;
    box-sizing: border-box;
    font-size: var(--medium-font-size);
}

textarea {
    height: 100px;
    resize: none;
}

.text-w700 {
    font-weight: 700;
}

.text-w500 {
    font-weight: 500;
}

.text-w400 {
    font-weight: 400;
}

.text-w300 {
    font-weight: 300;
}

.text-regular {
    font-size: var(--regular-font-size);
}

.text-medium {
    font-size: var(--large-font-size);
}

.text-large {
    font-size: var(--large-font-size);
}

.text-x-large {
    font-size: var(--xtra_large-font-size);
}

.text-small {
    font-size: var(--small-font-size);
}

.text-x-small {
    font-size: var(--xsmall-font-size);
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

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

.bdr-t {
    border-top: 1px solid #181A2280;
}

.bdr-b {
    border-bottom: 1px solid #181A2280;
}

.bdr-l {
    border-left: 1px solid #181A2280;
}

.bdr-r {
    border-right: 1px solid #181A2280;
}

/* Container styles */
section,
.section-wrapper {
    width: 100%;
    overflow: hidden;
    text-align: center;
}

.container-large,
.container-medium,
.container-small {
    max-width: 100%;
    margin: 0 auto;
    overflow: hidden;
}

.container-large {
    width: 1400px;
}

@media only screen and (max-width: 1480px) {
    .container-large {
        padding: 0px 40px;
    }
}

.container-medium {
    width: 1165px;
}

@media only screen and (max-width: 1245px) {
    .container-medium {
        padding: 0px 40px;
    }
}

.container-small {
    width: 720px;
}

@media only screen and (max-width: 800px) {
    .container-small {
        padding: 0px 40px;
    }
}

@media only screen and (max-width: 468px) {
    .container-large {
        padding: 0px 20px;
    }

    .container-medium {
        padding: 0px 20px;
    }

    .container-small {
        padding: 0px 20px;
    }
}

.d-flex {
    display: flex !important;
}

.flex-row {
    flex-direction: row !important;
}

.flex-column {
    flex-direction: column !important;
}

.flex-wrap {
    flex-wrap: wrap;
}

.flex-nowrap {
    flex-wrap: nowrap;
}

.align-start {
    align-items: flex-start !important;
}

.align-center {
    align-items: center !important;
}

.align-end {
    align-items: flex-end !important;
}

.justify-start {
    justify-content: flex-start !important;
}

.justify-center {
    justify-content: center !important;
}

.justify-end {
    justify-content: flex-end !important;
}

.justify-between {
    justify-content: space-between !important;
}

.justify-around {
    justify-content: space-around !important;
}

.justify-evenly {
    justify-content: space-evenly !important;
}

.flex {
    flex: 1 1 auto !important;
}

.flex-g {
    flex-grow: 1;
}

.flex-s {
    flex-shrink: 1;
}

.flex-0 {
    flex: 0;
}

.flex-g-0 {
    flex-grow: 0;
}

.flex-s-0 {
    flex-shrink: 0;
}

.gap-10 {
    gap: 10px;
}

.gap-20 {
    gap: 20px;
}

.gap-30 {
    gap: 30px;
}

.gap-40 {
    gap: 30px;
}

.gap-50 {
    gap: 30px;
}

.gap-60 {
    gap: 30px;
}

.mx-auto {
    margin-top: auto;
    margin-right: auto;
}

.my-auto {
    margin-left: auto;
    margin-right: auto;
}

.p-0 {
    padding-top: 0px;
    padding-left: 0px;
    padding-bottom: 0px;
    padding-right: 0px;
}

.sp-y-l {
    padding-top: 110px;
    padding-bottom: 110px;
}

.sp-y-m {
    padding-top: 95px;    
    padding-bottom: 95px;
}

.sp-y-s {
    padding-top: 65px;    
    padding-bottom: 65px;
}

.sp-y-xs {
    padding-top: 30px;    
    padding-bottom: 30px;
}

.hidden {
    display: none;
}