/* CSS RESET */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img, picture, video, canvas, svg {
    display: block;
    max-width: 100%;
}

a {
    text-decoration: none;
    color: inherit;
}

ul, ol {
    list-style: none;
}

/* ROOT VARIABLES */
:root {
    --brand-primary: #662c91;
    --color-white: #fff;
    --color-black: #000;
    --color-dark: #333;
    --color-gray: #666;
    --color-light-gray: #999;
    --color-bg-gray: #f5f5f5;
    --color-navbar-scroll: #DBDBDB;
    --overlay-mobile-menu: rgba(0, 0, 0, 0.95);
}

body {
    background: var(--color-bg-gray);
}

/* NAVBAR */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: background-color 0.3s ease;
    background-color: var(--color-white);
}

.navbar.scrolled {
    background-color: var(--color-navbar-scroll);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 70px;
    /* background-color: var(--color-white); */
    /* padding: 5px; */
    border-radius: 50%;
}

.nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
}

.nav-links a {
    color: var(--color-dark);
    text-decoration: none;
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0.5px;
    transition: opacity 0.3s ease;
    text-transform: uppercase;
}

.nav-links a:hover {
    opacity: 0.7;
}

.nav-links a.active {
    background-color: var(--brand-primary);
    color: var(--color-white);
    padding: 8px 12px;
    border-radius: 7px;
}

/* Dropdown Styles */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}

.dropdown-arrow {
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--color-white);
    min-width: 220px;
    padding: 12px 0;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 100;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 12px 24px;
    color: var(--color-dark);
    font-size: 13px;
    transition: background-color 0.2s ease;
}

.dropdown-menu a:hover {
    background-color: var(--color-bg-gray);
    opacity: 1;
}

.navbar.scrolled .dropdown-menu a {
    color: var(--color-dark);
}

/* Mobile Dropdown */
@media (max-width: 768px) {
    .dropdown-menu {
        position: static;
        background: rgba(255, 255, 255, 0.1);
        box-shadow: none;
        border-radius: 0;
        opacity: 1;
        visibility: visible;
        transform: none;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        padding: 0;
    }

    .dropdown-menu.active {
        max-height: 200px;
        padding: 12px 0;
    }

    .dropdown-menu a {
        color: var(--color-white);
        padding: 10px 24px;
    }

    .dropdown-menu a:hover {
        background-color: rgba(255, 255, 255, 0.1);
    }

    .dropdown-arrow {
        stroke: var(--color-white);
    }
    
    .nav-links a {
        color: var(--color-white);
    }
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    width: 30px;
    height: 24px;
    justify-content: space-between;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--color-dark);
    transition: all 0.3s ease;
    transform-origin: center;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(10.5px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-10.5px) rotate(-45deg);
}

/* MAIN CONTENT */
.main-content {
    min-height: calc(100vh - 400px);
    padding-top: 110px;
}

/* TEAM HERO SECTION */
.team-hero-section {
    background: #e8e8e8;
    padding: 100px 0 80px 0;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.team-hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
    display: grid;
    grid-template-columns: 1fr 0.8fr;
    align-items: center;
    gap: 100px;
}

.team-hero-left {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.section-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: var(--color-white);
    background-color: var(--brand-primary);
    padding: 8px 16px;
    width: fit-content;
    border-radius: 7px;
    text-transform: uppercase;
}

.team-hero-heading {
    font-size: 72px;
    font-weight: 400;
    line-height: 1.1;
    color: var(--color-dark);
    letter-spacing: -1px;
}

.team-hero-right {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding-top: 60px;
}

.team-hero-text {
    font-size: 13px;
    line-height: 1.8;
    color: var(--color-dark);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.read-more-btn {
    padding: 14px 32px;
    background: transparent;
    border: 1px solid var(--brand-primary);
    border-radius: 25px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--brand-primary);
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    width: fit-content;
}

.read-more-btn:hover {
    opacity: 0.8;
}

/* IMAGE SECTION */
.image-section {
    background: #e8e8e8;
    padding: 0 0 100px 0;
}

.image-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
}

.featured-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

/* TEAM MEMBERS SECTION */
.team-members-section {
    background: var(--color-white);
    padding: 100px 0;
}

.team-members-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
}

.team-members-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 80px;
    gap: 60px;
}

.team-members-title {
    font-size: 48px;
    font-weight: 400;
    line-height: 1.2;
    color: var(--color-dark);
    max-width: 500px;
}

.team-members-subtitle {
    font-size: 15px;
    line-height: 1.8;
    color: var(--color-gray);
    max-width: 350px;
    padding-top: 10px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.team-card {
    background: var(--color-white);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.team-card:hover {
    transform: translateY(-8px);
}

.team-image {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 12px;
}

.team-info {
    padding: 25px 0 0 0;
}

.team-name {
    font-size: 20px;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 8px;
}

.team-role {
    font-size: 14px;
    color: var(--color-gray);
    margin-bottom: 15px;
    font-weight: 500;
}

.team-bio {
    font-size: 13px;
    line-height: 1.6;
    color: var(--color-light-gray);
}

/* INVESTMENT STRATEGY SECTION */
.investment-strategy-section {
    background: #f5f5f5;
    padding: 100px 0;
}

.investment-strategy-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
}

.strategy-header {
    margin-bottom: 80px;
}

.strategy-title {
    font-size: 56px;
    font-weight: 400;
    line-height: 1.2;
    color: var(--color-dark);
    margin-bottom: 20px;
    font-family: Georgia, 'Times New Roman', serif;
}

.strategy-subtitle {
    font-size: 18px;
    color: var(--color-gray);
    line-height: 1.6;
}

.strategy-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
}

.strategy-card {
    position: relative;
    padding: 40px 0;
}

.strategy-number {
    position: absolute;
    top: 0;
    left: 0;
    font-size: 140px;
    font-weight: 300;
    color: rgba(0, 0, 0, 0.05);
    line-height: 1;
    z-index: 1;
    font-family: Georgia, 'Times New Roman', serif;
}

.strategy-card-title {
    font-size: 22px;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 16px;
    position: relative;
    z-index: 2;
    margin-top: 80px;
}

.strategy-card-description {
    font-size: 15px;
    line-height: 1.7;
    color: var(--color-gray);
    position: relative;
    z-index: 2;
}

/* ABOUT COMPANY SECTION */
.about-company-section {
    background: #e8e8e8;
    padding: 100px 0;
}

.about-company-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-company-left {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.about-company-heading {
    font-size: 56px;
    font-weight: 400;
    line-height: 1.1;
    color: var(--color-dark);
    letter-spacing: -1px;
}

.about-company-btn {
    width: fit-content;
    padding: 16px 40px;
    background: transparent;
    border: 2px solid var(--color-dark);
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--color-dark);
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.about-company-btn:hover {
    background: var(--color-dark);
    color: var(--color-white);
}

.about-company-right {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.about-company-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: var(--color-dark);
    text-transform: uppercase;
}

.about-company-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--color-gray);
}

/* SCROLL ANIMATIONS */
.scroll-fade-in {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.scroll-fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.scroll-fade-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.scroll-fade-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.scroll-fade-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.scroll-fade-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Stagger animation delays */
.scroll-fade-in:nth-child(1) { transition-delay: 0.1s; }
.scroll-fade-in:nth-child(2) { transition-delay: 0.2s; }
.scroll-fade-in:nth-child(3) { transition-delay: 0.3s; }
.scroll-fade-in:nth-child(4) { transition-delay: 0.4s; }

/* MODAL STYLES */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    display: flex;
    opacity: 1;
}

.modal-content {
    background: var(--color-white);
    padding: 50px;
    border-radius: 12px;
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.modal-overlay.active .modal-content {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.modal-close:hover {
    transform: rotate(90deg);
}

.modal-close::before,
.modal-close::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background: var(--color-dark);
}

.modal-close::before {
    transform: rotate(45deg);
}

.modal-close::after {
    transform: rotate(-45deg);
}

.modal-title {
    font-size: 32px;
    font-weight: 400;
    color: var(--color-dark);
    margin-bottom: 30px;
    letter-spacing: -0.5px;
}

.modal-text {
    font-size: 15px;
    line-height: 1.9;
    color: var(--color-gray);
    margin-bottom: 20px;
}

/* FOOTER SECTION */
.footer-section {
    background: #1a1a1a;
    color: var(--color-white);
    padding: 80px 0 30px 0;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 80px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo {
    height: 80px;
    width: 80px;
    background: var(--color-white);
    padding: 8px;
    border-radius: 50%;
    object-fit: contain;
}

.footer-tagline {
    font-size: 14px;
    line-height: 1.7;
    color: #b0b0b0;
    max-width: 300px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-heading {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-white);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.footer-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-list a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-list a:hover {
    color: var(--color-white);
}

.footer-contact {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
    display: inline-block;
}

.footer-contact:hover {
    color: var(--color-white);
}

.footer-address {
    font-size: 14px;
    line-height: 1.7;
    color: #b0b0b0;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
}

.footer-copyright {
    font-size: 13px;
    color: #808080;
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-legal a {
    color: #808080;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--color-white);
}

.footer-legal .separator {
    color: #808080;
}

/* SCROLL TO TOP BUTTON */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--brand-primary);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1000;
    color: var(--color-white);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(102, 44, 145, 0.4);
}

.scroll-top svg {
    stroke: var(--color-white);
}

/* RESPONSIVE BREAKPOINTS */
@media (max-width: 1024px) {
    .navbar-content {
        padding: 20px 40px;
    }

    .team-hero-container {
        padding: 0 40px;
        gap: 80px;
    }

    .team-hero-heading {
        font-size: 60px;
    }

    .image-container {
        padding: 0 40px;
    }

    .team-members-container {
        padding: 0 40px;
    }

    .investment-strategy-container {
        padding: 0 40px;
    }

    .strategy-cards {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-company-container {
        padding: 0 40px;
        gap: 60px;
    }

    .footer-container {
        padding: 0 40px;
    }

    .modal-content {
        padding: 40px;
    }

    .modal-title {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .navbar-content {
        padding: 15px 30px;
    }

    .logo img {
        height: 60px;
    }

    .hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 70%;
        max-width: 300px;
        background: var(--overlay-mobile-menu);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        transition: right 0.3s ease;
        padding: 40px;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        color: var(--color-white);
        font-size: 16px;
    }

    .main-content {
        padding-top: 90px;
    }

    .team-hero-section {
        padding: 80px 0 60px 0;
        min-height: 60vh;
    }

    .team-hero-container {
        grid-template-columns: 1fr;
        padding: 0 30px;
        gap: 50px;
    }

    .team-hero-heading {
        font-size: 48px;
    }

    .team-hero-right {
        padding-top: 0;
    }

    .read-more-btn {
        width: 100%;
        text-align: center;
    }

    .image-section {
        padding: 0 0 60px 0;
    }

    .image-container {
        padding: 0 30px;
    }

    .featured-image {
        height: 400px;
        border-radius: 16px;
    }

    .team-members-section {
        padding: 80px 0;
    }

    .team-members-container {
        padding: 0 30px;
    }

    .team-members-header {
        flex-direction: column;
        gap: 30px;
        margin-bottom: 60px;
    }

    .team-members-title {
        font-size: 40px;
    }

    .team-grid {
        gap: 30px;
    }

    /* Investment Strategy Section */
    .investment-strategy-section {
        padding: 80px 0;
    }

    .investment-strategy-container {
        padding: 0 30px;
    }

    .strategy-header {
        margin-bottom: 60px;
    }

    .strategy-title {
        font-size: 42px;
    }

    .strategy-subtitle {
        font-size: 16px;
    }

    .strategy-cards {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .strategy-number {
        font-size: 100px;
    }

    .strategy-card-title {
        margin-top: 60px;
    }

    /* About Company Section */
    .about-company-section {
        padding: 80px 0;
    }

    .about-company-container {
        grid-template-columns: 1fr;
        padding: 0 30px;
        gap: 50px;
    }

    .about-company-heading {
        font-size: 42px;
    }

    .about-company-text {
        font-size: 15px;
    }

    .about-company-btn {
        width: 100%;
        text-align: center;
    }

    /* Footer Section */
    .footer-section {
        padding: 60px 0 25px 0;
    }

    .footer-container {
        padding: 0 30px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 50px;
        padding-bottom: 40px;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-legal {
        justify-content: center;
    }

    .modal-content {
        padding: 30px;
    }

    .modal-title {
        font-size: 24px;
    }

    .modal-text {
        font-size: 14px;
    }

    .scroll-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 480px) {
    .navbar-content {
        padding: 12px 20px;
    }

    .logo img {
        height: 50px;
    }

    .main-content {
        padding-top: 80px;
    }

    .team-hero-section {
        padding: 60px 0 50px 0;
        min-height: auto;
    }

    .team-hero-container {
        padding: 0 20px;
        gap: 40px;
    }

    .team-hero-heading {
        font-size: 36px;
    }

    .team-hero-text {
        font-size: 11px;
        line-height: 1.7;
    }

    .section-label {
        font-size: 10px;
        padding: 6px 14px;
    }

    .read-more-btn {
        padding: 12px 28px;
        font-size: 11px;
    }

    .image-section {
        padding: 0 0 50px 0;
    }

    .image-container {
        padding: 0 20px;
    }

    .featured-image {
        height: 300px;
        border-radius: 12px;
    }

    .team-members-section {
        padding: 60px 0;
    }

    .team-members-container {
        padding: 0 20px;
    }

    .team-members-header {
        flex-direction: column;
        gap: 25px;
        margin-bottom: 50px;
    }

    .team-members-title {
        font-size: 32px;
    }

    .team-members-subtitle {
        font-size: 14px;
    }

    .team-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .team-image {
        height: 400px;
    }

    .team-name {
        font-size: 18px;
    }

    .team-role {
        font-size: 13px;
    }

    .team-bio {
        font-size: 12px;
    }

    .investment-strategy-section {
        padding: 60px 0;
    }

    .investment-strategy-container {
        padding: 0 20px;
    }

    .strategy-header {
        margin-bottom: 50px;
    }

    .strategy-title {
        font-size: 36px;
    }

    .strategy-subtitle {
        font-size: 15px;
    }

    .strategy-cards {
        gap: 50px;
    }

    .strategy-number {
        font-size: 90px;
    }

    .strategy-card {
        padding: 30px 0;
    }

    .strategy-card-title {
        font-size: 20px;
        margin-top: 50px;
    }

    .strategy-card-description {
        font-size: 14px;
    }

    .about-company-section {
        padding: 60px 0;
    }

    .about-company-container {
        padding: 0 20px;
        gap: 40px;
    }

    .about-company-heading {
        font-size: 36px;
    }

    .about-company-label {
        font-size: 11px;
    }

    .about-company-text {
        font-size: 14px;
    }

    .about-company-btn {
        padding: 14px 36px;
        font-size: 12px;
    }

    .footer-section {
        padding: 50px 0 20px 0;
    }

    .footer-container {
        padding: 0 20px;
    }

    .footer-content {
        gap: 40px;
        padding-bottom: 35px;
    }

    .footer-logo {
        height: 70px;
        width: 70px;
    }

    .footer-tagline {
        font-size: 13px;
    }

    .footer-links {
        gap: 30px;
    }

    .footer-heading {
        font-size: 13px;
    }

    .footer-list a,
    .footer-contact,
    .footer-address {
        font-size: 13px;
    }

    .footer-bottom {
        padding-top: 25px;
        gap: 15px;
    }

    .footer-copyright,
    .footer-legal a {
        font-size: 12px;
    }

    .modal-content {
        padding: 25px;
        max-height: 85vh;
    }

    .modal-title {
        font-size: 22px;
        margin-bottom: 20px;
    }

    .modal-text {
        font-size: 13px;
        line-height: 1.7;
    }

    .modal-close {
        width: 35px;
        height: 35px;
        top: 15px;
        right: 15px;
    }

    .modal-close::before,
    .modal-close::after {
        width: 20px;
    }

    .scroll-top {
        bottom: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
    }

    .scroll-top svg {
        width: 18px;
        height: 18px;
    }
}