.hero {
    background-image: url('/static/img/offshore_home.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
    height: 300px;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(6, 32, 33, 0) 0%, rgba(6, 32, 33, 0.30) 100%);
    pointer-events: none;
    z-index: 1;
}

.hero-top {
    position: absolute;
    top: 10px;
    left: 20px;
    color: #F7F7F7;
    font-size: 12px;
    font-weight: 500;
    font-family: "Poppins";
}

.hero-content {
    margin-top: 70px;
    padding: 0 30px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.hero-content h1 {
    color: #FFFFFF;
    font-size: 18px;
    font-weight: 900;
    font-family: "Playfair Display SC";
    -webkit-text-stroke: 0.3px #E5BE4A;
}

.hero-content p {
    color: #FFFFFF;
    font-size: 12px;
    font-weight: 400;
    font-family: "Poppins";
    margin-bottom: 30px;
}

.hero-content-buttons {
    display: flex;
    gap: 20px;
}

.hero-content-buttons-btn {
    background-color: #DDC086;
    border-radius: 4px;
    border: 0.6px solid #DBC390;
    padding: 5px;
    color: #33333A;
    font-size: 10px;
    font-weight: 700;
    font-family: "Poppins";
    cursor: pointer;
    transition: background-color 0.25s ease, color 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
}

.hero-content-buttons-btn:hover {
    background-color: #c9a85c;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(221, 192, 134, 0.45);
}

.hero-content-buttons-btn:active {
    transform: translateY(0);
    box-shadow: none;
}

.page {
    padding: 20px 30px;
    background: linear-gradient(#0D1917, #041E1D, #0A2B24, #173630, #235146, #225045, #4F7C6A, #8CB79B);
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.blog {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.blog-categories-mobile {
    background-color: #3B7062;
    display: flex;
    flex-direction: row;
    gap: 0;
    padding: 5px 10px;
    border-radius: 4px;
    box-shadow: 0 4px 10px 0 rgba(119, 178, 162, 0.40);
}

.blog-categories-item {
    border-radius: 8px;
    flex: 1;
    height: 36px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.blog-categories-item p {
    color: #C7DBCE;
    font-size: 12px;
    font-family: "Poppins";
    font-weight: 600;
}

.blog-categories-item-selected {
    background-color: #183932;
}

.blog-articles {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
    align-items: stretch;
}

.blog-articles-article {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.blog-articles-row {
    display: contents;
}

.blog-articles-article {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 0 0 calc(50% - 10px);
}

.blog-articles-article-img {
    height: 156px;
    border-radius: 4.54px;
    object-fit: cover;
    width: 100%;
}

.blog-articles-article-content {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.blog-articles-article-content-author {
    color: #E5BE4A;
    font-size: 10px;
    font-family: "Inter";
    font-weight: 600;
}

.blog-articles-article-content-heading {
    display: flex;
    justify-content: space-between;
}

.blog-articles-article-content-heading img {
    width: 13.6px;
    height: 13.6px;
}

.blog-articles-article-content-heading p {
    color: #FFFFFF;
    font-size: 18px;
    font-family: "Inter";
    font-weight: 600;
}

.blog-articles-article-content-text {
    color: #C0C5D0;
    font-size: 14px;
    font-family: "Inter";
    font-weight: 400;
}

.blog-articles-article-content-categories {
    margin-top: 10px;
    display: flex;
    gap: 5px;
}

.blog-articles-article-content-categories-badge {
    border-radius: 9.08px;
    padding: 2px 5px;
    background-color: #F9F5FF;
    color: #6941C6;
    font-size: 10px;
    font-family: "Inter";
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.blog-articles-article-content-categories-badge:hover {
    background-color: #EDE9FE;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(105, 65, 198, 0.20);
}

.blog-articles-article-content-categories-badge--leadership {
    color: #6941C6;
}

.blog-articles-article-content-categories-badge--management {
    color: #363F72;
}

.blog-articles-article-content-categories-badge--presentation {
    color: #C01574;
}

.calculator {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.calculator-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.calculator-title {
    color: #FFFFFF;
    font-size: 18px;
    font-family: "Poppins";
    font-weight: 600;
}

.calculator-content-title {
    display: flex;
    gap: 20px;
    align-items: center;
}

.calculator-content-title p {
    color: #EDEDED;
    font-size: 18px;
    font-family: "Poppins";
    font-weight: 400;
}

.calculator-content-title img {
    width: 3px;
    height: 26px;
}

.calculator-content-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.calculator-content-content-row {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.calculator-content-content-row-heading {
    color: #FFFFFF;
    font-size: 14px;
    font-family: "Poppins";
    font-weight: 300;
}

.calculator-content-content-row-container {
    display: flex;
    justify-content: space-between;
    padding: 10px;
    border: solid 0.3px #E6C9C9;
    border-radius: 7.6px;
    background-color: #183932;
    align-items: center;
}

.calculator-content-content-row-container p,
.calculator-content-content-row-container input {
    color: #EDEDED;
    font-size: 12px;
    font-family: "Poppins";
    font-weight: 500;
}

.calculator-content-content-row-container input {
    background-color: transparent;
    border: none;
    outline: none;
}

.calculator-content-content-row-container img {
    width: 18px;
    height: 18px;
}

.calculator-content-content-row-container-country {
    position: relative;
    cursor: pointer;
}

.country-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    right: 0;
    background-color: #183932;
    border: solid 0.3px #E6C9C9;
    border-radius: 7.6px;
    z-index: 10;
    overflow: hidden;
}

.country-dropdown.country-dropdown-open {
    display: block;
}

.country-dropdown-item {
    padding: 10px;
    color: #EDEDED;
    font-size: 12px;
    font-family: "Poppins";
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease, padding-left 0.2s ease;
}

.country-dropdown-item:hover {
    background-color: #1f4d42;
    color: #E5BE4A;
    padding-left: 16px;
}

.calculator-content-btn {
    display: flex;
    justify-content: center;
    gap: 15px;
    align-items: center;
    background-color: #E5BE4A;
    border-radius: 15.2px;
    box-shadow: 0 3.04px 3.04px 0 rgba(184, 184, 99, 0.30);
    height: 36.5px;
    cursor: pointer;
    transition: background-color 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
}

.calculator-content-btn:hover {
    background-color: #c9a835;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(229, 190, 74, 0.45);
}

.calculator-content-btn:active {
    transform: translateY(0);
    box-shadow: 0 3.04px 3.04px 0 rgba(184, 184, 99, 0.30);
}

.calculator-content-btn p {
    color: #33333A;
    font-size: 14px;
    font-family: "Inter";
    font-weight: 700;
}

.calculator-content-btn img {
    width: 16px;
    height: 16px;
}

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

.results-title {
    display: flex;
    justify-content: space-between;
}

.results-title h2 {
    color: #EDEDED;
    font-size: 18px;
    font-family: "Poppins";
    font-weight: 400;
}

.results-title p {
    color: #EDEDED;
    font-size: 12px;
    font-family: "Poppins";
    font-weight: 400;
}

.results-container {
    display: flex;
    align-items: stretch;
    gap: 5px;
}

.results-container-frame {
    display: flex;
    flex-direction: column;
    gap: 5px;
    justify-content: space-between;
}

.results-container-frame-text {
    color: #FFFFFF;
    font-size: 12px;
    font-family: "Poppins";
    font-weight: 300;
}

.results-container-frame-heading {
    color: #FFCB3C;
    font-size: 20px;
    font-family: "Poppins";
    font-weight: 700;
}

.results-container-frame-footer {
    color: #EDEDED;
    font-size: 10px;
    font-family: "Poppins";
    font-weight: 300;
    text-align: center;
}

.results-container-frame img {
    width: 118.6px;
    height: 2px;
}

.results-information {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.results-information-title {
    color: #EDEDED;
    font-size: 18px;
    font-family: "Poppins";
    font-weight: 400;
}

.results-information-frame {
    display: flex;
    align-items: center;
    gap: 0;
}

.results-information-frame-left,
.results-information-frame-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.results-information-frame-left {
    width: 299.008056640625px;
    height: 34.63806915283203px;
    background-color: #34C759;
    overflow: hidden;
    transition: width 1.2s ease-out;
}

.results-information-frame-right {
    width: 80.99195861816406px;
    height: 34.63806915283203px;
    background-color: #6C6C78;
    overflow: hidden;
    transition: width 1.2s ease-out;
}

.results-information-frame-left-top {
    color: #EDEDED;
    font-size: 12px;
    font-family: "Poppins";
    font-weight: 400;
}

.results-information-frame-left-down {
    color: #EDEDED;
    font-size: 14px;
    font-family: "Poppins";
    font-weight: 400;
}

.banner {
    background-image: url('/static/img/offshore_banner.jpg');
    background-size: cover;
    background-position: center;
    width: 100%;
    box-sizing: border-box;
    min-height: 254px;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.banner-text {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.banner-text h1 {
    color: #FFF;
    font-size: 18px;
    font-family: "Playfair Display SC";
    font-weight: 900;
    -webkit-text-stroke: 0.29px #E5BE4A;
    text-stroke: 0.29px #E5BE4A;
    overflow-wrap: break-word;
    word-break: break-word;
    text-align: center;
}

.banner-text p {
    color: #EDEDED;
    font-size: 14px;
    font-family: "Poppins";
    font-weight: 400;
    text-align: center;
}

.banner-btn {
    background-color: #E5BE4A;
    border-radius: 2.32px;
    width: 192px;
    height: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 1.16px 1.16px 0 rgba(184, 184, 99, 0.6);
}

.banner-btn p {
    color: #000000;
    font-size: 12px;
    font-family: "Inter";
    font-weight: 700;
}

.follow {
    display: flex;
    gap: 10px;
}

.icons {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.icons-frame {
    display: flex;
    flex-direction: column;
    gap: 0;
    align-items: center;
}

.icons-frame-icon {
    width: 43px;
    height: 43px;
    background-color: #183932;
    border: solid 1.08px #BF9A3E;
    border-radius: 43px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 2.15px 24.62px 0 rgba(191, 154, 62, 0.5);
}

.icons-frame-icon img {
    width: 20.962501525878906px;
    height: 18.63163185119629px;
}

.icons-frame-vertical_line {
    height: 242px;
    width: 1.08px;
}

.icons-frame-vertical_line2 {
    height: 492px;
    width: 1.08px;
}

.icons-frame-vertical_line3 {
    height: 338px;
    width: 1.08px;
}

.icons-frame-vertical_line4 {
    height: 409px;
    width: 1.08px;
}

.frames {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.frames-frame {
    background-color: #3B7062;
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    border-radius: 4px;
    padding: 30px 10px 10px;
}

.frames-frame-last {
    padding-top: 12px;
}

.frames-frame-text {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.frames-frame-text h1 {
    color: #FFFFFF;
    font-size: 14px;
    font-family: "Poppins";
    font-weight: 600;
}

.frames-frame-text p {
    color: #EDEDED;
    font-size: 12px;
    font-family: "Inter";
    font-weight: 400;
}

.frames-frame-questions {
    padding: 3px 5px 10px;
    background-color: #245448;
    border-radius: 3.79px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.frames-frame-questions h1 {
    color: #E5BE4A;
    font-size: 12px;
    font-family: "Poppins";
    font-weight: 300;
    letter-spacing: 14%;
    line-height: 14px;
}

.frames-frame-questions-frame {
    display: flex;
    gap: 5px;
}

.frames-frame-questions-frame-column {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.frames-frame-questions-frame-column-item {
    display: flex;
    gap: 1px;
    align-items: center;
}

.frames-frame-questions-frame-column-item img {
    width: 6.6666717529296875;
    height: 6.6666717529296875;
}

.frames-frame-questions-frame-column-item p {
    color: #EDEDED;
    font-size: 8px;
    font-family: "Inter";
    font-weight: 400;
}

.frames-card {
    background-color: #245448;
    border-radius: 2.52px;
    padding: 5px 10px 20px;
    border-left: solid 2px #E5BE4A;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.frames-card-title {
    display: flex;
    gap: 5px;
    align-items: center;
}

.frames-card-title h1 {
    color: #EDEDED;
    font-size: 12px;
    font-family: "Inter";
    font-weight: 600;
}

.frames-card-title img {
    width: 18.621261596679688px;
    height: 5.681063175201416px;
}

.frames-card-text p {
    color: #EDEDED;
    font-size: 10px;
    font-family: "Inter";
    font-weight: 400;
}

.frames-card-text li {
    margin-left: 20px;
    color: #EDEDED;
    font-size: 8px;
    font-family: "Inter";
    font-weight: 400;
}

.frames-card-title-badge {
    color: #33333A;
    font-size: 3.16px;
    font-family: "Poppins";
    font-weight: 500;
    background-color: #EEE60F;
    border-radius: 2.52px;
    width: 18.621261596679688px;
    height: 5.681063175201416px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.frames-footer {
    color: #EDEDED;
    font-size: 12px;
    font-family: "Inter";
    font-weight: 400;
    padding: 0 15px;
}

.frames-materials {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.frames-materials-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 5px;
    border-radius: 4.14px;
    background-color: #3B7062;
    transition: background-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
    cursor: default;
}

.frames-materials-item:hover {
    background-color: #4e9c89;
    transform: translateX(6px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.frames-materials-item img {
    width: 18px;
    height: 18px;
}

.frames-materials-item h2 {
    color: #EDEDED;
    font-size: 14px;
    font-family: "Inter";
    font-weight: 400;
}

.frames-frame-dark {
    background-color: #245448;
}

.frames-frame-footer {
    background-color: #3B7062;
    border-radius: 7.89px;
    padding: 5px;
    display: flex;
    flex-direction: column;
    gap: 2px;
    align-items: center;
}

.frames-frame-footer h2 {
    color: #E5BE4A;
    font-size: 18px;
    font-family: "Inter";
    font-weight: 400;
}

.frames-frame-footer h3,
.frames-frame-footer p {
    color: #EDEDED;
    font-size: 12px;
    font-family: "Inter";
    font-weight: 400;
    text-align: center;
}

.frames-frame-card {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.frames-frame-card-image {
    width: 32px;
    height: 32px;
    background-color: #183932;
    border-radius: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.frames-frame-card-image img {
    width: 20px;
    height: 20px;
}

.frames-frame-card-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.frames-frame-card-content h2 {
    color: #FFFFFF;
    font-size: 14px;
    font-family: "Poppins";
    font-weight: 600;
}

.frames-frame-card-content p {
    color: #EDEDED;
    font-size: 12px;
    font-family: "Inter";
    font-weight: 400;
}

.frames-frame-text-badge {
    width: 76px;
    height: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #01010180;
    border-radius: 5.46px;
    box-shadow: 0 2.73px 2.73px 0 #00000040, inset 0 2.73px 50.83px 0 #FFE9E966;
}

.frames-frame-text-badge p {
    color: #FFFFFF;
    font-size: 10px;
    font-family: "Poppins";
    font-weight: 500;
}

.frames-frame-btn {
    background-color: #E5BE4A;
    padding: 5px 8px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: center;
    border-radius: 12.99px;
    cursor: pointer;
    transition: background-color 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
}

.frames-frame-btn:hover {
    background-color: #f0cc5a;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(229, 190, 74, 0.45);
}

.frames-frame-btn p {
    color: #33333A;
    font-size: 12px;
    font-family: "Inter";
    font-weight: 700;
}

.frames-frame-btn img {
    width: 15.893109321594238px;
    height: 16.875px;
}

.blog-categories-desktop {
    display: none;
}

.blog-categories-mobile {
    display: flex;
}

@media (min-width: 1024px) {
    .blog-categories-desktop {
        display: flex;
        align-items: center;
        gap: 40px;
    }

    .blog-categories-desktop-categories {
        background-color: #3B7062;
        display: flex;
        gap: 0;
        padding: 5px 10px;
        border-radius: 4px;
        box-shadow: 0 4px 10px 0 rgba(119, 178, 162, 0.40);
        flex: 1;
    }

    .blog-categories-mobile {
        display: none;
    }

    .blog-categories-desktop-text {
        display: flex;
        flex-direction: column;
        gap: 5px;
    }

    .blog-categories-desktop-text h2 {
        color: #F7F7F7;
        font-size: 30px;
        font-family: "Poppins";
        font-weight: 600;
    }

    .blog-categories-desktop-text h3 {
        color: #F7F7F7;
        font-size: 20px;
        font-family: "Poppins";
        font-weight: 400;
    }

    /* Hero */
    .hero-top {
        font-size: 15px;
    }

    .hero-content h1 {
        font-size: 42px;
    }

    .hero-content p {
        font-size: 17px;
    }

    .hero-content-buttons-btn {
        font-size: 14px;
    }

    /* Blog */
    .blog-categories-item p {
        font-size: 15px;
    }

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

    .blog-articles-article {
        flex: 1;
        min-width: 0;
    }

    .blog-articles-article-content-author {
        font-size: 13px;
    }

    .blog-articles-article-content-heading p {
        font-size: 22px;
    }

    .blog-articles-article-content-text {
        font-size: 16px;
    }

    .blog-articles-article-content-categories-badge {
        font-size: 13px;
    }

    /* Calculator */
    .calculator-title {
        font-size: 24px;
    }

    .calculator-content-title p {
        font-size: 20px;
    }

    .calculator-content-content-row-heading {
        font-size: 16px;
    }

    .calculator-content-content-row-container p,
    .calculator-content-content-row-container input {
        font-size: 15px;
    }

    .country-dropdown-item {
        font-size: 15px;
    }

    .calculator-content-btn p {
        font-size: 16px;
    }

    /* Results */
    .results-title h2 {
        font-size: 22px;
    }

    .results-title p {
        font-size: 15px;
    }

    .results-container-frame-text {
        font-size: 15px;
    }

    .results-container-frame-heading {
        font-size: 28px;
    }

    .results-container-frame-footer {
        font-size: 13px;
    }

    .results-information-title {
        font-size: 22px;
    }

    .results-information-frame-left-top {
        font-size: 15px;
    }

    .results-information-frame-left-down {
        font-size: 16px;
    }

    /* Banner */
    .banner-text h1 {
        font-size: 40px;
    }

    .banner-text p {
        font-size: 18px;
    }

    .banner-btn p {
        font-size: 15px;
    }

    /* Frames */
    .frames-frame-text h1 {
        font-size: 20px;
    }

    .frames-frame-text p {
        font-size: 16px;
    }

    .frames-frame-questions h1 {
        font-size: 15px;
    }

    .frames-frame-questions-frame-column-item p {
        font-size: 13px;
    }

    .frames-card-title h1 {
        font-size: 16px;
    }

    .frames-card-text p {
        font-size: 14px;
    }

    .frames-card-text li {
        font-size: 13px;
    }

    .frames-card-title-badge {
        font-size: 10px;
    }

    .frames-footer {
        font-size: 15px;
    }

    .frames-materials-item h2 {
        font-size: 17px;
    }

    .frames-frame-footer h2 {
        font-size: 22px;
    }

    .frames-frame-footer h3,
    .frames-frame-footer p {
        font-size: 15px;
    }

    .frames-frame-card-content h2 {
        font-size: 18px;
    }

    .frames-frame-card-content p {
        font-size: 15px;
    }

    .frames-frame-text-badge p {
        font-size: 13px;
    }

    .frames-frame-btn p {
        font-size: 15px;
    }

    .hero {
        background-image: url('/static/img/offshore_desktop.jpg');
        padding: 20px 140px;
    }

    .hero-top {
        margin: 20px 120px;
    }

    .hero-content-buttons-btn {
        border: solid 2px #FFFEFD;
        background-color: #D8AF6C;
        color: #000000;
        padding: 5px 10px;
    }
}