* {
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
}

/* Thin */
@font-face {
    font-family: "SF Pro Display";
    src: url("../fonts/SF-Pro-Display-Thin.woff") format("woff");
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: "SF Pro Display";
    src: url("../fonts/SF-Pro-Display-ThinItalic.woff") format("woff");
    font-weight: 300;
    font-style: italic;
}

/* Regular */
@font-face {
    font-family: "SF Pro Display";
    src: url("../fonts/SF-Pro-Display-Regular.woff") format("woff");
    font-weight: 400;
    font-style: normal;
}

/* Regular Italic */
@font-face {
    font-family: "SF Pro Display";
    src: url("../fonts/SF-Pro-Display-RegularItalic.woff") format("woff");
    font-weight: 400;
    font-style: italic;
}

/* Medium */
@font-face {
    font-family: "SF Pro Display";
    src: url("../fonts/SF-Pro-Display-Medium.woff") format("woff");
    font-weight: 500;
    font-style: normal;
}

/* Medium Italic */
@font-face {
    font-family: "SF Pro Display";
    src: url("../fonts/SF-Pro-Display-MediumItalic.woff") format("woff");
    font-weight: 500;
    font-style: italic;
}

/* Semibold */
@font-face {
    font-family: "SF Pro Display";
    src: url("../fonts/SF-Pro-Display-Semibold.woff") format("woff");
    font-weight: 600;
    font-style: normal;
}

/* Semibold Italic */
@font-face {
    font-family: "SF Pro Display";
    src: url("../fonts/SF-Pro-Display-SemiboldItalic.woff") format("woff");
    font-weight: 600;
    font-style: italic;
}

/* Bold Italic */
@font-face {
    font-family: "SF Pro Display";
    src: url("../fonts/SF-Pro-Display-Bold.woff") format("woff");
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: "SF Pro Display";
    src: url("../fonts/SF-Pro-Display-BoldItalic.woff") format("woff");
    font-weight: 700;
    font-style: italic;
}


body {
    margin: 0;
    font-family: "SF Pro Display";
    color: #111827;
    background: #ffffff;
    overflow-x: hidden;
}

input,
textarea,
button {
    font-family: "SF Pro Display";
    outline: none;
}

button,
input[type="submit"],
input[type="reset"] {
    cursor: pointer;
}

.btn-primary {
    font-weight: 600;
    font-size: 14px;
    line-height: 16px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #FBFBFB;
    width: 210px;
    height: 50px;
    background: #61CE70;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 32px;
    border: 2px solid #61ce70;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #111827;
    margin: 0;
    padding: 0;
} 

input,
select {
    outline: none;
}

a {
    text-decoration: none;
    color: #1b2642;
    transition: all 0.2s ease;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    display: block;
}

.transition {
    transition: all 0.2s ease;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
}

.list-none {
    margin: 0;
    padding: 0;
    list-style: none;
}

fieldset {
    border: none;
    padding: 0;
}

#wrapper {
    position: relative;
    /* overflow: hidden; */
}

ol,
ul,
li {
    margin: 0;
    padding: 0;
    list-style: none;
}

p {
    margin: 0;
    padding: 0;
}

img {
    padding: 0;
    margin: 0;
    display: block;
    max-width: 100%;
}

html {
    scroll-behavior: smooth;
}

.container {
    width: 100%;
    max-width: 1368px;
    margin: 0 auto;
    padding: 0px 20px;
}

/* Home Page */
.header-flex {
    margin-top: 16px;
    padding: 18px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 24px;
    background: #FFF;
    box-shadow: 0 4px 68px 0 #F1F1F1;
    transition: 0.4s;
}

.header-pages {
    display: flex;
    align-items: center;
    gap: 48px;
}

.join-btn a {
    color: #FFF;
    font-family: "SF Pro Display";
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 16px;
    border-radius: 16px;
    background: var(--Primary-Blue, #0052AE);
    padding: 14px 30px;
    border: 2px solid #0052AE;
    transition: 0.4s;
}

.join-btn a:hover {
    color: #0052AE;
    background: transparent;
}

.header-pages ul {
    display: flex;
    align-items: center;
    gap: 48px;
}

.header-pages ul li a {
    color: var(--Neutral-900, #111827);
    font-family: "SF Pro Display";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 16px;
    text-transform: capitalize;
    position: relative;
}

.header-pages ul li a::before {
    position: absolute;
    content: "";
    background: #0052AE;
    width: 0%;
    height: 2px;
    bottom: -2px;
    transition: 0.4s;
}

.header-pages ul li a:hover::before {
    width: 100%;
}

.header-pages ul li a:hover {
    color: #0052AE;
}

.home-banner-content h1 {
    color: var(--Neutral-900, #111827);
    text-align: center;
    font-family: "SF Pro Display";
    font-size: 56px;
    font-style: normal;
    font-weight: 600;
    line-height: 64px;
    /* 114.286% */
    padding-bottom: 16px;
}

.home-banner-content h1 span {
    color: var(--Brand-Primary, var(--Primary-Blue, #0052AE));
    display: inline-block;
    text-align: center;
    font-style: italic;
}

.home-banner-content p {
    color: var(--Neutral-500, #6B7280);
    text-align: center;
    font-family: "SF Pro Display";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    /* 150% */
    max-width: 962px;
    margin: auto;
    padding-bottom: 40px;
}

.app-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 64px;
}

.banner-image {
    display: flex;
    justify-content: center;
}

.home-banner-content {
    position: relative;
    z-index: 99;
}

section.home-banner {
    padding-top: 196px;
    margin-bottom: 120px;
    position: relative;
}

section.home-banner::after {
    position: absolute;
    content: "";
    background: radial-gradient(113.49% 70.1% at 100% 100%, rgba(108, 167, 218, 0.60) 0%, rgba(247, 252, 255, 0.00) 100%), radial-gradient(105.79% 68.95% at -6.81% 106.75%, rgba(108, 148, 218, 0.50) 0%, rgba(247, 252, 255, 0.50) 100%);
    width: 100%;
    height: 100%;
    bottom: 0;
    right: 0;
    left: 0;
    z-index: 1;
}

header#header {
    position: fixed;
    width: 100%;
    left: 0;
    right: 0;
    top: 0;
    z-index: 999;
}

.connections-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.connections-sub1 {
    width: 41%;
}

.connections-sub2 {
    width: 57%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 16px;
}

.connections-sub1 h2 {
    color: var(--Neutral-900, #111827);
    font-family: "SF Pro Display";
    font-size: 40px;
    font-style: normal;
    font-weight: 600;
    line-height: 48px;
    /* 120% */
    max-width: 450px;
    margin-bottom: 24px;
}

.connections-sub1 h2 span {
    color: var(--Brand-Primary, var(--Primary-Blue, #0052AE));
}

/* .connections-sub1 a {
    margin-bottom: 56px;
} */
.join-btn-bt1 {
    margin-bottom: 70px;
}

/* .connections-sub1 a:hover {
    color: #0052AE;
    background: transparent;
} */
  
.connection-img {
    width: 100%;
    height: 359px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 18px;
    display: flex;
    align-items: end;
    border-radius: 16px;
}

.connection-img-content {
    padding: 16px;
    display: flex;
    align-items: center;
    border-radius: 8px;
    gap: 6px;
    position: relative;
}

.connection-img-content p {
    color: #FFF;
    font-family: "SF Pro Display";
    font-size: 16px;
    font-style: italic;
    font-weight: 300;
    line-height: 24px;
    /* 150% */
    letter-spacing: 0.32px;
    text-transform: capitalize;
    position: relative;
    z-index: 9;
}

.connections-tab {
    width: 48.8%;
    padding: 32px;
    border-radius: 16px;
    background: #F9FAFB;
    transition: 0.7s;
    border: 2px solid #F9FAFB;
}

.connections-icon {
    padding: 10px;
    border-radius: 12px;
    background: #FFF;
    max-width: max-content;
    margin-bottom: 24px;
}

.connections-tab h3 {
    color: var(--Neutral-900, #111827);
    font-family: "SF Pro Display";
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 26px;
    /* 130% */
    padding-bottom: 10px;
    transition: 0.6s;
}

.connections-tab p {
    color: var(--Neutral-500, #6B7280);
    font-family: "SF Pro Display";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    /* 21px */
    transition: 0.6s; 
}
.experience-tab-4 a:hover {
    background: #0052AE;
    color: #fff;
}

section#professional-connections {
    margin-bottom: 120px;
}

.connection-img-content::before {
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    border-radius: 8px;
    z-index: -0;
    background: rgba(0, 0, 0, 0.0);
    /* Optional dark overlay */
    backdrop-filter: blur(10px);
    /* MAIN BLUR */
    /* For Safari */
    right: 0;
    top: 0;
}

.connection-img-content img {
    position: relative;
    z-index: 9;
}

.advisors-header h2 {
    color: var(--Neutral-900, #111827);
    text-align: center;
    font-family: "SF Pro Display";
    font-size: 56px;
    font-style: normal;
    font-weight: 600;
    line-height: 72px;
    /* 128.571% */
    max-width: 865px;
    margin: auto;
    padding-bottom: 65px;
}

.advisors-header h2 img {
    display: inline-block;
    position: relative;
    top: 5px;
}

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

.advisors-sub2 {
    width: 55%;
}

.advisors-sub1 {
    width: 41.3%;
    background: radial-gradient(113.49% 70.1% at 100% 100%, rgba(108, 167, 218, 0.60) 0%, rgba(247, 252, 255, 0.00) 100%), radial-gradient(105.79% 68.95% at -6.81% 106.75%, rgba(108, 148, 218, 0.50) 0%, rgba(247, 252, 255, 0.50) 100%);
    display: flex;
    justify-content: center;
    padding: 70px 70px 0px 70px;
    border-radius: 16px;
}

.adcontent-tab1 h3 {
    color: var(--Neutral-900, #111827);
    font-family: "SF Pro Display";
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 115%;
    /* 23px */
    padding-bottom: 8px;
}

.adcontent-tab1 p {
    color: var(--Neutral-500, #6B7280);
    font-family: "SF Pro Display";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    /* 21px */
    max-width: 570px;
}

.adcontent-tab1 {
    margin-bottom: 38px;
    padding-bottom: 44px;
    border-bottom: 1px solid #E5E7EB;
}

.connect-flex {
    padding-top: 40px;
    display: flex;
    justify-content: space-between;
}

.connect-sub1 {
    padding: 32px;
    border-radius: 16px;
    background: #F9FAFB;
    border: 2px solid #F9FAFB;
    transition: 0.6s;
}

.connect-icon {
    padding: 14px 10px;
    border-radius: 12px;
    background: #FFF;
    max-width: max-content;
}

.connect-sub1-img {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-bottom: 40px;
}

.connect-sub1-img h4 {
    color: var(--Brand-Primary, var(--Primary-Blue, #0052AE));
    font-family: "SF Pro Display";
    font-size: 28px;
    font-style: normal;
    font-weight: 600;
    line-height: 115%;
    /* 32.2px */
}

.connect-sub1 h5 {
    color: var(--Neutral-900, #111827);
    font-family: "SF Pro Display";
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 115%;
    /* 23px */
    padding-bottom: 10px;
}

.connect-sub1 span {
    color: var(--Neutral-500, #6B7280);
    font-family: "SF Pro Display";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    /* 21px */
}

section.advisors-connect {
    padding-bottom: 120px;
}

.experience-inflows-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 58px;
}

.experience-inflows-header-text {
    width: 50%;
    display: flex;
    align-items: center;
    gap: 25px;
}

.experience-inflows-header h2 {
    color: var(--Neutral-900, #111827);
    font-family: "SF Pro Display";
    font-size: 40px;
    font-style: normal;
    font-weight: 600;
    line-height: 48px;
    max-width: 664px;
}

.experience-inflows-header-icon {
    max-width: 100px;
}

.experience-inflows-header-text p {
    color: var(--Neutral-500, #6B7280);
    font-family: "SF Pro Display";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    /* 150% */
}

.experience-inflows-header-icon img {
    max-width: 100px;
}

.advisors-sub1 {
    position: relative;
    overflow: hidden;
}

img.advisor-back {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

img.advisor-main {
    position: relative;
    z-index: 9;
}

.experience-inflows-header h2 span {
    color: var(--Brand-Primary, var(--Primary-Blue, #0052AE));
}

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

.experience-sub1 {
    width: 65.7%;
    display: flex;
    justify-content: space-between;
}

.experience-sub2 {
    width: 32.6%;
}

.experience-tab1 {
    width: 48.6%;
    padding: 24px;
    border-radius: 32px;
    background: #F6E6FB;
}

.experience-tab1-image {
    padding-bottom: 24px;
}

.experience-tab1 h4 {
    color: var(--Neutral-900, #111827);
    font-family: "SF Pro Display";
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 28px;
    /* 140% */
    max-width: 340px;
}

.experience-tab1:nth-child(2) {
    background: #FCEFD2;
}

.experience-tab3 {
    margin-bottom: 24px;
}

.experience-tab-4 {
    padding: 46px 0px;
    text-align: center;
    border-radius: 32px;
    border: 1px solid var(--Primary-Blue, #0052AE);
    background: #FFF;
}

.experience-tab-4 h3 {
    color: var(--Brand-Primary, var(--Primary-Blue, #0052AE));
    text-align: center;
    font-family: "SF Pro Display";
    font-size: 28px;
    font-style: normal;
    font-weight: 600;
    line-height: 40px;
    /* 142.857% */
    max-width: 280px;
    margin: auto;
    padding-bottom: 32px;
}

.experience-tab-4 a {
    color: var(--Brand-Primary, var(--Primary-Blue, #0052AE));
    font-family: "SF Pro Display";
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 16px;
    /* 114.286% */
    padding: 16px 40px;
    border-radius: 16px;
    border: 1px solid var(--Primary-Blue, #0052AE);
    max-width: max-content;
    margin: auto;
}

section.experience-inflows {
    margin-bottom: 120px;
}

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

.design-sub2 {
    border-radius: 24px;
    width: 42.2%;
    background: radial-gradient(113.49% 70.1% at 100% 100%, rgba(108, 167, 218, 0.60) 0%, rgba(247, 252, 255, 0.00) 100%), radial-gradient(105.79% 68.95% at -6.81% 106.75%, rgba(108, 148, 218, 0.50) 0%, rgba(247, 252, 255, 0.50) 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: end;
}

.design-sub1 {
    width: 27.6%;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.design-sub-tab {
    padding: 24px 32px;
    border-radius: 20px;
    background: var(--grey-scale-f-6-f-7-f-8, #f6f7f8);
    border: 2px solid #f6f7f8;
    transition: 0.6s;
}

.design-sub-tab h3 {
    color: var(--Neutral-900, #111827);
    font-family: "SF Pro Display";
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 28px;
    /* 140% */
    padding-top: 24px;
    max-width: 240px;
}

.design-sub2 img {
    width: 100%;
    z-index: 9;
    position: relative;
}

section.design-today {
    margin-bottom: 120px;
}

.design-today-header h2 {
    color: var(--Neutral-900, #111827);
    font-family: "SF Pro Display";
    font-size: 40px;
    font-style: normal;
    font-weight: 600;
    line-height: 48px;
    text-align: center;
}

.design-today-header h2 span {
    color: var(--Brand-Primary, var(--Primary-Blue, #0052AE));
}

.design-today-header {
    padding-bottom: 48px;
}

.design-today-header p {
    color: var(--Neutral-500, #6B7280);
    text-align: center;
    font-family: "SF Pro Display";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    padding-top: 12px;
}

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

.work-sub1 {
    padding: 32px;
    width: 32.6%;
    border-radius: 16px;
    background: #F9FAFB;
    border: 2px solid #F9FAFB;
    transition: 0.6s;
}

section.inflows-work {
    margin-bottom: 24px;
}

.work-sub1 span {
    color: #FFF;
    font-size: 42px;
    font-style: normal;
    font-weight: 600;
    line-height: 115%;
    /* 48.3px */
    border-radius: 100px;
    background: var(--Primary-Blue, #0052AE);
    width: 80px;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 32px;
}

.work-sub1 h3 {
    color: var(--Neutral-900, #111827);
    font-family: "SF Pro Display";
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 26px;
    /* 130% */
    padding-bottom: 10px;
}

.work-sub1 p {
    color: var(--Neutral-500, #6B7280);
    font-family: "SF Pro Display";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    /* 21px */
}

/* faqs */
.faqs-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    gap: 40px;
    justify-content: space-between;
}

/* FAQ ITEM */
.faq-item {
    cursor: pointer;
    transition: 0.3s ease;
    border-radius: 16px;
    border: 1px solid rgba(170, 170, 170, 0.18);
    background: #FFF;
    padding: 18px 24px 18px 32px;
    height: min-content;
}

.faq-item.active {
    border-color: #3A82F7;
}

/* QUESTION ROW */
.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

/* Icons */
.faq-question img {
    width: 24px;
    height: 24px;
    position: absolute;
    right: 0;
    transition: 0.2s ease;
}

.icon-up {
    opacity: 0;
    /* transform: rotate(180deg); */
}

.faq-item.active .icon-up {
    opacity: 1;
}

.faq-item.active .icon-down {
    opacity: 0;
}

/* ANSWER */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: 0.3s ease;
    padding-right: 25px;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    margin-top: 6px;
    opacity: 1;
}

.faq-question h3 {
    color: var(--Neutral-900, #111827);
    font-family: "SF Pro Display";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    /* 133.333% */
    letter-spacing: 0.5px;
}

.faq-answer p {
    color: rgba(40, 40, 40, 0.60);
    font-family: "SF Pro Display";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 160%;
    /* 22.4px */
    letter-spacing: 0.14px;
}

.faq-item.active h3 {
    color: var(--Brand-Primary, var(--Primary-Blue, #0052AE));
}

section.faqs {
    padding: 120px 0px 75px 0px;
    margin-bottom: 62px;
    background: radial-gradient(113.49% 70.1% at 100% 100%, rgba(108, 167, 218, 0.42) 0%, rgba(247, 252, 255, 0.00) 100%), radial-gradient(105.79% 68.95% at -6.81% 106.75%, rgba(108, 148, 218, 0.30) 0%, rgba(247, 252, 255, 0.30) 100%);
}

.faqs-main {
    display: flex;
    justify-content: space-between;
    align-items: start;
}

.faqs-column {
    width: 48%;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.design-today-header.h-left h2 {
    text-align: left;
}

.member-tab {
    padding: 32px;
    border-radius: 16px;
    background: #F9FAFB;
}

.member-tab p {
    color: var(--Neutral-500, #6B7280);
    font-family: "SF Pro Display";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    padding-bottom: 32px;
    min-height: 160px;
}

.member-detail {
    display: flex;
    align-items: center;
    gap: 12px;
}

.member-name h4 {
    color: var(--Neutral-900, #111827);
    font-family: "SF Pro Display";
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 115%;
    /* 20.7px */
    padding-bottom: 6px;
}

.member-name span {
    color: var(--Brand-Primary, var(--Primary-Blue, #0052AE));
    font-family: "SF Pro Display";
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    /* 18px */
    display: block;
}

.member-detail img {
    width: 44px !important;
    height: 44px !important;
    display: block;
}

.container-left {
    width: 1404px;
    padding-left: 20px;
    margin-left: auto;
}

section.our-members {
    max-width: 1440px;
    margin: auto;
    padding-bottom: 120px;
}

.member-1 .owl-nav {
    position: absolute;
    right: 56px;
    top: -110px;
}

.owl-nav button:hover {
    background: transparent !important;
}

.network-flex {
    border-radius: 32px;
    display: flex;
    justify-content: space-between;
    background: radial-gradient(113.49% 70.1% at 100% 100%, rgba(108, 167, 218, 0.60) 0%, rgba(247, 252, 255, 0.00) 100%), radial-gradient(105.79% 68.95% at -6.81% 106.75%, rgba(108, 148, 218, 0.50) 0%, rgba(247, 252, 255, 0.50) 100%);
    overflow: hidden;
}

.network-sub1 {
    width: 38.5%;
    padding: 72px 0px 72px 72px;
}

.network-sub2 {
    display: flex;
}

.network-sub1 h3 {
    color: var(--Neutral-900, #111827);
    font-family: "SF Pro Display";
    font-size: 44px;
    font-style: normal;
    font-weight: 600;
    line-height: 52px;
    padding-bottom: 12px;
}

.network-sub1 h3 span {
    color: var(--Brand-Primary, var(--Primary-Blue, #0052AE));
}

.network-sub1 p {
    color: var(--Neutral-500, #6B7280);
    font-family: "SF Pro Display";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    /* 150% */
    margin-bottom: 86px;
    max-width: 420px;
}

.network-qr {
    border-radius: 16px;
    background: var(--Primary-Blue, #0052AE);
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 10px;
    max-width: 343px;
}

.qr-contnet {
    color: #FFF;
    font-family: "SF Pro Display";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    /* 133.333% */
    max-width: 171px;
}

.qr-img img {
    display: block;
}

section.building-network {
    padding-bottom: 120px;
}

.network-img1 {
    margin-top: 22px;
    position: relative;
    right: -60px;
}

.footer-flex {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
}

.footer-sub1 {
    width: 37%;
}

.footer-sub2 {
    width: 63%;
    display: flex;
    justify-content: space-between;
}

.footer-logo {
    padding-bottom: 16px;
}

.footer-sub1 p {
    color: #6B7280;
    font-family: "SF Pro Display";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    /* 22.4px */
    letter-spacing: 0.24px;
    max-width: 330px;
}

.footer-pages1 h3 {
    color: var(--Neutral-900, #111827);
    font-family: "SF Pro Display";
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    padding-bottom: 16px;
}

.footer-pages1 ul li a {
    color: #6B7280;
    font-family: "SF Pro Display";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 16px;
}

.footer-pages1.f-social a {
    display: flex;
    align-items: center;
    gap: 14px;
}

.s-content h5 {
    color: rgba(17, 24, 39, 0.40);
    font-family: "SF Pro Display";
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 6px;
}

.s-content h3 {
    color: #6B7280;
    font-family: "SF Pro Display";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    padding: 0px;
}

.s-icon {
    width: 40px;
    height: 40px;
    border-radius: 50.4px;
    border: 1px solid var(--Primary-Blue, #0052AE);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.6s;
} 

.footer-pages1.f-social a:nth-child(2) {
    margin-bottom: 28px;
}

.footer-pages1 ul li:last-child a {
    margin: 0px;
}

.footer-last {
    padding: 20px 0px;
    border-top: 1px solid #E5E7EB;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-last-sub2 {
    display: flex;
    align-items: center;
    gap: 16px;
}

.footer-last-sub2 p {
    color: #6B7280;
    font-family: "SF Pro Display";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    /* 21px */
    letter-spacing: 0.21px;
}

.footer-last-sub2 a {
    width: 40px;
    height: 40px;
    border-radius: 32px;
    border: 1px solid rgba(17, 24, 39, 0.30);
    display: flex;
    justify-content: center;
    align-items: center;
}

img.d-back1 {
    position: absolute;
    bottom: 0;
    z-index: 1 !important;
    left: 0;
    height: 100%;
}

section.site-banner {
    margin-bottom: 120px;
    padding: 188px 0px 88px 0px;
    background: radial-gradient(113.49% 70.1% at 100% 100%, rgba(108, 167, 218, 0.60) 0%, rgba(247, 252, 255, 0.00) 100%), radial-gradient(105.79% 68.95% at -6.81% 106.75%, rgba(108, 148, 218, 0.50) 0%, rgba(247, 252, 255, 0.50) 100%);
}

.site-banner-headline {
    text-align: center;
}

.site-banner-headline h1 {
    color: var(--Neutral-900, #111827);
    text-align: center;
    font-family: "SF Pro Display";
    font-size: 56px;
    font-style: normal;
    font-weight: 600;
    line-height: 64px;
    /* 114.286% */
    padding-bottom: 16px;
}

.site-banner-headline ul {
    display: flex;
    justify-content: center;
    gap: 6px;
}

.site-banner-headline ul li {
    color: var(--Brand-Primary, var(--Primary-Blue, #0052AE));
    font-family: "SF Pro Display";
    font-size: var(--sds-typography-body-size-medium);
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
    /* 22.4px */
    letter-spacing: 0.16px;
}

.site-banner-headline ul li a {
    color: #6B7280;
}

.site-banner-headline span {
    color: #6B7280;
    font-family: Poppins;
    font-size: var(--sds-typography-body-size-medium);
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    /* 22.4px */
    letter-spacing: 0.16px;
}

.mission-flex {
    display: flex;
    align-items: self-start;
    justify-content: space-between;
    padding-top: 20px;
}

.mission-content {
    width: 41%;
}

.mission-img1 img {
    width: 100%;
    border-radius: 24px;
}

.mission-img {
    width: 52.5%;
    position: relative;
}

.mission-img1 {
    padding-right: 40px;
    padding-bottom: 40px;
}

.mission-reveiew-tab p {
    color: var(--Neutral-600, #4B5563);
    font-family: "SF Pro Display";
    font-size: 16px;
    font-style: italic;
    font-weight: 300;
    line-height: 24px;
    /* 150% */
    letter-spacing: 0.32px;
    text-transform: capitalize;
}

.mission-reveiew-tab {
    max-width: 312px;
    padding: 32px;
    border-radius: 16px;
    background: #FFF;
    box-shadow: 0 4px 24px 0 rgba(0, 0, 0, 0.05);
    position: absolute;
    bottom: 0;
    right: 0;
}

section.about-mission {
    margin-bottom: 120px;
}

.mission-reveiew-tab img {
    margin-bottom: 14px;
}

.mission-content h3 {
    color: var(--Neutral-900, #111827);
    font-family: "SF Pro Display";
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 26px;
    /* 108.333% */
}

.mission-content-1 p {
    color: var(--Neutral-500, #6B7280);
    font-family: "SF Pro Display";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    /* 24px */
}

.mission-content-1 h3 {
    padding-bottom: 16px;
}

.mission-content-tabs h3 {
    padding-bottom: 40px;
}

.mission-content-1 {
    padding-bottom: 32px;
}

/* tabs */

.mission-tabs__tab.mission-tabs__tab--active {
    outline: none !important;
    color: var(--Brand-Primary, var(--Primary-Blue, #0052AE));
    font-weight: 600;
    border-bottom: 3px solid #0052AE;
    padding-bottom: 14px;
}

nav.mission-tabs__nav {
    margin-bottom: 32px;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #23242a36;
    cursor: pointer;
}

.mission-tabs__panel p {
    color: var(--Neutral-500, #6B7280);
    font-family: "SF Pro Display";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    /* 24px */
}

.our-story-header h2 {
    text-align: center;
    color: var(--Neutral-900, #111827);
    font-family: "SF Pro Display";
    font-size: 40px;
    font-style: normal;
    font-weight: 600;
    line-height: 48px;
    /* 120% */
    padding-bottom: 40px;
}

.our-story-header h2 span {
    color: var(--Brand-Primary, var(--Primary-Blue, #0052AE));
}

.story-img img {
    width: 100%;
    border-radius: 24px;
}

section.our-story {
    padding-top: 56px;
    position: relative;
    margin-bottom: 120px;
}

section.our-story::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 420px;
    background: #F9FAFB;
    z-index: 1;
    top: 0;
    right: 0;
}

.our-story-header {
    position: relative;
    z-index: 9;
    padding-bottom: 32px;
}

.our-story-flex {
    display: flex;
    justify-content: space-between;
    padding-bottom: 24px;
}

.our-story-sub1 {
    max-width: 96px;
    margin-top: 7px;
}

.our-story-sub2 {
    width: 45%;
}

.our-story-sub3 {
    width: 41.5%;
}

section.our-story p {
    color: var(--Neutral-500, #6B7280);
    font-family: "SF Pro Display";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    /* 150% */
}

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

.core-sub1 {
    width: 48.8%;
}

.core-sub2 {
    padding: 24px 32px;
    width: 48.8%;
    border-radius: 24px;
    border: 1px solid #E5E7EB;
    background: #FFF;
    box-shadow: 0 0 48.9px 0 rgba(209, 209, 209, 0.26);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.core-sub2-content p {
    color: var(--Neutral-500, #6B7280);
    font-family: "SF Pro Display";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
    /* 162.5% */
}

.core-sub2-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.core-link a {
    padding: 24px 32px;
    border-radius: 24px;
    border: 1px solid var(--Primary-Blue, #0052AE);
    background: #E6EEF7;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: 0.4s;
}

.core-link-name h4 {
    color: var(--Neutral-900, #111827);
    font-family: "SF Pro Display";
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 28px;
    /* 116.667% */
    padding-bottom: 12px;
}

.core-link-icon {
    display: flex;
    width: 40px;
    height: 40px;
    justify-content: center;
    align-items: center;
    border-radius: 426.667px;
    border: 1px solid var(--Primary-Blue, #0052AE);
    background: var(--Primary-Blue, #0052AE);
    transition: 0.4s;
}

.core-link-name p {
    color: var(--Neutral-500, #6B7280);
    font-family: "SF Pro Display";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    /* 24px */
}

.core-img img {
    width: 100%;
    border-radius: 24px;
}

.core-img {
    margin-bottom: 24px;
}

.core-quite-icon {
    display: flex;
    justify-content: right;
}

section.core-team {
    margin-bottom: 120px;
}

.core-team-header h2 {
    color: var(--Neutral-900, #111827);
    font-family: "SF Pro Display";
    font-size: 40px;
    font-style: normal;
    font-weight: 600;
    line-height: 48px;
    /* 120% */
    padding-bottom: 32px;
}

.core-team-header h2 span {
    color: var(--Brand-Primary, var(--Primary-Blue, #0052AE));
}

.insight-icon1 {
    display: flex;
    justify-content: center;
    padding-bottom: 24px;
}

.insight-banner-content p {
    color: var(--Neutral-500, #6B7280);
    text-align: center;
    font-family: "SF Pro Display";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    /* 150% */
    max-width: 1106px;
    margin: auto;
    padding-bottom: 80px;
}

.popular-insight-img img {
    border-radius: 16px;
}

.popular-insight-sub a {
    display: flex;
    justify-content: space-between;
}

.popular-insight-sub {
    padding: 24px;
    border-radius: 24px;
    background: #FFF;
    box-shadow: 0 0 48.9px 0 rgba(209, 209, 209, 0.26);
    border: 2px solid transparent;
}

.popular-insight-content {
    width: 46%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.popular-insight-img {
    width: 49%;
}

.popular-insight-content h6 {
    color: var(--Neutral-900, #111827);
    font-family: "SF Pro Display";
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    /* 142.857% */
    display: flex;
    padding: 6px 20px;
    justify-content: center;
    align-items: center;
    max-width: max-content;
    border-radius: 400px;
    background: #E6EEF7;
}

.popular-insight-content h3 {
    color: var(--Neutral-900, #111827);
    font-family: "SF Pro Display";
    font-size: 32px;
    font-style: normal;
    font-weight: 500;
    line-height: 44px;
    /* 137.5% */
    max-width: 90%;
    padding-bottom: 16px;
}

.popular-insight-content p {
    color: var(--Neutral-500, #6B7280);
    font-family: "SF Pro Display";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    /* 24px */
}

.popular-insight-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.popular-info1 {
    display: flex;
    align-items: center;
    gap: 32px;
}

.popular-insight-author {
    color: var(--Brand-Primary, var(--Primary-Blue, #0052AE));
    font-family: "SF Pro Display";
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    /* 142.857% */
}

.popular-insight-date {
    color: var(--6D6E76, #6D6E76);
    font-family: "SF Pro Display";
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    /* 142.857% */
}

section.popular-insight {
    margin-bottom: 80px;
}

.popular-insight-all {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.feature-insight-header h2 {
    color: var(--Neutral-900, #111827);
    font-family: "SF Pro Display";
    font-size: 40px;
    font-style: normal;
    font-weight: 600;
    line-height: 44px;
    /* 110% */
    padding-bottom: 32px;
}

.feature-insight-header h2 span {
    color: var(--Brand-Primary, var(--Primary-Blue, #0052AE));
}

section.feature-insight {
    padding: 56px 0px;
    margin-bottom: 120px;
    background: #E6EEF7;
}

.feature-insight-all {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 24px 0px;
}

.feature-insight-sub1 {
    width: 49.1%;
    padding: 32px;
    border-radius: 24px;
    box-shadow: 0 0 48.9px 0 rgba(209, 209, 209, 0.26);
    background: rgba(255, 255, 255, 0.40);
}

.feature-insight-img img {
    width: 100%;
    border-radius: 14px;
}

.feature-insight-img {
    padding-bottom: 20px;
}

.feature-insight-content h3 {
    color: var(--Black, #333);
    font-family: "SF Pro Display";
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 160%;
    /* 38.4px */
    letter-spacing: 0.12px;
    padding-bottom: 24px;
}

.feature-insight-sub1:hover {
    background: #FFF;
}

section.recent-insight {
    margin-bottom: 120px;
}

.recent-insight-header h2 {
    color: var(--Neutral-900, #111827);
    font-family: "SF Pro Display";
    font-size: 40px;
    font-style: normal;
    font-weight: 600;
    line-height: 44px;
    /* 110% */
}

.recent-insight-header h2 span {
    color: var(--Brand-Primary, var(--Primary-Blue, #0052AE));
}

.recent-insight-header {
    margin-bottom: 40px;
}

.recent-insight-all {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 24px 15px;
}

.recent-insight-sub {
    width: 49.1%;
    border-radius: 24px;
    background: #FFF;
    box-shadow: 0 0 48.9px 0 rgba(209, 209, 209, 0.26);
    height: 0px;
    border: 2px solid transparent;
}

.recent-insight-img img {
    border-radius: 14px;
}

.recent-insight-sub a {
    display: flex;
    justify-content: space-between;
}

.recent-insight-img {
    width: 53%;
}

.recent-insight-content {
    width: 42%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.recent-content-healine h3 {
    color: var(--Neutral-900, #111827);
    font-family: "SF Pro Display";
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 28px;
    /* 140% */
    letter-spacing: 0.1px;
    padding-bottom: 24px;
}

.load-more {
    padding: 14px 46px;
    border-radius: 16px;
    background: var(--Primary-Blue, #0052AE);
    color: #FFF;
    font-family: "SF Pro Display";
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 16px;
    max-width: max-content;
    margin: auto;
    margin-top: 40px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: 0.4s;
}

/* load more */

.recent-insight-sub {
    opacity: 0;
    transform: translateY(10px);
    transition: 0.4s ease;
    visibility: hidden;
}

/* Visible animation */
.recent-insight-sub.show {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
    height: 100%;
    padding: 24px;
}

section.insight-detail {
    padding-top: 132px;
    padding-bottom: 80px;
}

.insight-back a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--Neutral-900, #111827);
    font-family: "SF Pro Display";
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
    /* 19.6px */
    letter-spacing: 0.14px;
    padding-bottom: 50px;
}

.insight-detail-header {
    display: flex;
    justify-content: space-between;
    align-items: end;
    margin-bottom: 48px;
}

.insight-tags-flex {
    display: flex;
    align-items: center;
    gap: 40px;
    padding-bottom: 32px;
}

.insight-detail-share h3 {
    color: var(--Neutral-900, #111827);
    font-family: "SF Pro Display";
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    /* 150% */
    margin-bottom: 16px;
}

.detail-share-flex {
    display: flex;
    gap: 16px;
}

span.insight1-popular {
    color: var(--Neutral-900, #111827);
    font-family: "SF Pro Display";
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    /* 142.857% */
    border-radius: 400px;
    background: #E6EEF7;
    padding: 6px 20px;
}

.insight-tags-flex span {
    display: block;
}

span.insight1-author {
    color: var(--Brand-Primary, var(--Primary-Blue, #0052AE));
    font-family: "SF Pro Display";
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    /* 142.857% */
}

span.insight1-daate {
    color: var(--6D6E76, #6D6E76);
    font-family: "SF Pro Display";
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    /* 142.857% */
}

.insight-detail-title h1 {
    color: var(--Neutral-900, #111827);
    font-family: "SF Pro Display";
    font-size: 32px;
    font-style: normal;
    font-weight: 500;
    line-height: 44px;
    /* 137.5% */
}

.insight-detail-image img {
    border-radius: 24px;
}

.insight-detail-image {
    margin-bottom: 48px;
}

.insight-des-flex {
    display: flex;
    justify-content: space-between;
}

.insight-main-des {
    width: 74.8%;
}

.insight-main-des h2 {
    color: var(--Neutral-900, #111827);
    font-family: "SF Pro Display";
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 26px;
    /* 108.333% */
    padding-bottom: 16px;
}

.insight-main-des p {
    color: var(--Neutral-500, #6B7280);
    font-family: "SF Pro Display";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    /* 24px */
    margin-bottom: 8px;
}
.all-insight-detail div[id^="tab-"] {
    margin-bottom: 40px;
}
.insight-join-discussion a {
    color: #FFF;
    font-family: "SF Pro Display";
    font-size: 14px;
    padding: 14px 30px;
    font-style: normal;
    font-weight: 500;
    line-height: 16px;
    border-radius: 16px;
    background: var(--Primary-Blue, #0052AE);
    transition: 0.4s;
    border: 2px solid #0052AE;
}
.insight-join-discussion a:hover {
    background: transparent;
    color: #0052AE;
}

.insight-detail-video.video-box {
    width: 100%;
    height: 450px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 24px;
    margin: 8px 0px 48px 0px;
}

.recent-insight-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.recent-insight-header a {
    color: #FFF;
    font-family: "SF Pro Display";
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 16px;
    padding: 14px 46px;
    border-radius: 16px;
    background: var(--Primary-Blue, #0052AE);
    transition: 0.4s;
    border: 2px solid #0052AE;
}
.recent-insight-header a:hover {
    background: transparent;
    color: #0052AE;
}


.contact-main-flex {
    display: flex;
    justify-content: space-between;
}

.contact-main-sub1 h2 {
    color: var(--Neutral-900, #111827);
    font-family: "SF Pro Display";
    font-size: 40px;
    font-style: normal;
    font-weight: 500;
    line-height: 48px;
    /* 120% */
    padding-bottom: 16px;
}

.contact-main-sub1 span {
    display: block;
    color: var(--Brand-Primary, var(--Primary-Blue, #0052AE));
}

.contact-main-sub1 p {
    color: var(--Neutral-500, #6B7280);
    font-family: "SF Pro Display";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    /* 24px */
    padding-bottom: 48px;
}

.email-link a {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    border-radius: 16px;
    background: #E6EEF7;
    max-width: 344px;
    transition: 0.6s;
}

.email-link span {
    display: block;
    padding: 12px;
    border-radius: 12px;
    background: #FFF;
}

.email-text h6 {
    color: rgba(17, 24, 39, 0.70);
    font-family: "SF Pro Display";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    padding-bottom: 6px;
}

.email-text h4 {
    color: var(--Neutral-900, #111827);
    font-family: "SF Pro Display";
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.contact-main-sub2 {
    width: 58%;
}

.form-row-custom {
    display: flex;
    justify-content: space-between;
    padding-bottom: 24px;
}

.contact-form-custom label {
    display: block;
    color: var(--Neutral-900, #111827);
    font-family: "SF Pro Display";
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    /* 142.857% */
    text-transform: capitalize;
    padding-bottom: 6px;
}

.form-group-custom {
    width: 48%;
}

.form-group-custom input {
    width: 100%;
    padding: 14px 16px;
    border-radius: 12px;
    border: 1px solid #E0E0E0;
    background: #F9FAFB;
}

.form-group-custom.full-width-custom {
    width: 100% !important;
}

.form-group-custom.full-width-custom textarea {
    padding: 14px 16px;
    border-radius: 12px;
    border: 1px solid #E0E0E0;
    background: #F9FAFB;
    width: 100%;
    height: 120px;
    resize: none;
    margin-bottom: 24px;
}

.terms-row-custom span {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--6D6E76, #6D6E76);
    font-family: "SF Pro Display";
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 18px;
    /* 150% */
}

.terms-row-custom span a {
    color: var(--Brand-Primary, var(--Primary-Blue, #0052AE));
    font-weight: 500;
}

.terms-row-custom {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

input.submit-btn {
    color: #FFF;
    font-family: "SF Pro Display";
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 16px;
    /* 114.286% */
    display: flex;
    padding: 14px 30px;
    justify-content: center;
    align-items: center;
    gap: 12px;
    align-self: stretch;
    width: 100%;
    border-radius: 16px;
    background: var(--Primary-Blue, #0052AE);
    border: none;
    border: 2px solid #0052AE;
    transition: 0.4s;
}

section.contact-main {
    margin-bottom: 120px;
}

.terms-row-custom input {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    border-radius: 4px;
    border: 1px solid #E0E0E0;
    background: #FFF;
}

.form-group-custom input::placeholder {
    color: #868EAE;
    font-family: "SF Pro Display";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
}

.form-group-custom textarea::placeholder {
    color: #868EAE;
    font-family: "SF Pro Display";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
}

section.\34 04-page {
    padding: 160px 0px 120px 0px;
}

.\34 04-image {
    display: flex;
    justify-content: center;
    margin-bottom: 64px;
}

.\34 04-text h1 {
    color: var(--Neutral-900, #111827);
    font-family: "SF Pro Display";
    font-size: 40px;
    font-style: normal;
    font-weight: 500;
    line-height: 48px;
    text-align: center;
    padding-bottom: 16px;
}

.\34 04-text h1 span {
    color: var(--Brand-Primary, var(--Primary-Blue, #0052AE));
}

.\34 04-text p {
    color: var(--Neutral-500, #6B7280);
    text-align: center;
    font-family: "SF Pro Display";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    /* 24px */
    margin-bottom: 32px;
}

.\34 04-text {
    text-align: center;
}

.\34 04-text a {
    color: var(--Brand-Primary, var(--Primary-Blue, #0052AE));
    font-family: "SF Pro Display";
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 16px;
    /* 114.286% */
    padding: 16px 32px;
    border-radius: 16px;
    border: 1px solid var(--Primary-Blue, #0052AE);
    max-width: max-content;
    margin: auto;
}

section.contact-main.advertise .contact-main-sub1 h2 span {
    display: inline-block;
}

.contact-main-sub1 {
    width: 40%;
}

section.contact-main.advertise .contact-main-sub1 p {
    padding-bottom: 16px;
}

section.contact-main.advertise .email-link {
    margin-top: 24px;
}

section.contact-main.advertise .contact-main-sub2 {
   width: 45.6%;
}

section.contact-main.advertise .contact-main-sub1 {
    width: 40.8%;
}

.contact-form-custom {
    padding: 40px 40px 32px 40px;
    border-radius: 24px;
    background: #FFF;
    box-shadow: 0 0 48.9px 0 rgba(209, 209, 209, 0.26);
}

.advertise-table {
    display: flex;
    padding: 24px 32px;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 24px;
    align-self: stretch;
    border-radius: 24px;
    border: 1px solid var(--Primary-Blue, #0052AE);
    background: #F9FAFB;
    margin-top: 32px;
}

.advertise-table-content h3 {
    color: var(--Neutral-900, #111827);
    font-family: "SF Pro Display";
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 26px;
    /* 130% */
    padding-bottom: 24px;
}

.advertise-table-content li {
    display: flex;
    gap: 8px;
    color: var(--Neutral-500, #6B7280);
    font-family: "SF Pro Display";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    /* 24px */
}

.advertise-table-content ul {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.advertise-table-content span {
    display: block;
}

.advertise-table.a-tab2 h3 {
    padding-bottom: 3px;
}

.advertise-table-content p {
    color: var(--Neutral-500, #6B7280);
    font-family: "SF Pro Display";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    /* 24px */
    margin-bottom: 24px;
    max-width: 600px;
}

.advertise-table-content h4 {
    color: var(--Neutral-900, #111827);
    font-family: "SF Pro Display";
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 150%;
    /* 24px */
    padding-bottom: 4px;
}

.advertise-table-content p:last-child {
    margin: 0px !important;
}

.hamburger {
    display: none;
    width: 28px;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.hamburger span {
    width: 100%;
    height: 3px;
    background: #0052ae;
    border-radius: 3px;
    transition: 0.3s;
}

.mission-tabs__tab {
    color: var(--6D6E76, #6D6E76);
    font-family: "SF Pro Display";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
}

.footer-newsletter {
    max-width: 400px;
    margin-top: 24px;
}

.subscribe-box {
    display: flex;
    border-radius: 16px;
    border: 1px solid #E5E7EB;
    background: #FFF;
    margin-bottom: 10px;
    overflow: hidden;
} 

.subscribe-box input {
    display: flex;
    padding: 12px 10px 12px 16px;
    align-items: center;
    gap: 8px;
    flex: 1 0 0;
    align-self: stretch;
    background: #F9FAFB;
    border: none;
    min-height: 48px;
}

.subscribe-box button {
    color: var(--Brand-Primary, var(--Primary-Blue, #0052AE));
    text-align: center;
    font-size: var(--sds-typography-body-size-medium);
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    /* 150% */
    letter-spacing: 0.24px;
    display: flex;
    align-items: center;
    gap: 10px;
    border: none;
    padding: 0px 16px;
    background: transparent;
}

.footer-newsletter p {
    color: #6B7280;
    font-family: "SF Pro Display";
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    /* 16.8px */
    letter-spacing: 0.18px;
    max-width: 100%;
}
.connections-tab:hover {
    border-color: #0052AE;
}

.connect-sub1:hover {
    border-color: #0052AE;
}

.design-sub-tab:hover {
    border-color: #0052AE;
}

.work-sub1:hover {
    border-color: #0052AE;
}

.footer-pages1 ul li a:hover {
    color: #0052AE;
}
.footer-last-sub2 a:hover svg path {fill: #fff;}

.footer-last-sub2 a:hover {
    background: #0052AE;
}
.footer-pages1.f-social a:hover svg path {
    fill: #FFF;
}

.footer-pages1.f-social a:hover .s-icon {
    background: #0052AE;
}
.faq-item:hover .faq-question h3 {
    color: #0052AE;
}

.faq-item:hover {
    border-color: #0052AE;
}
.mission-tabs__tab:hover {
    color: #0052AE;
}
.core-link a:hover {
    background: #0052AE;
}

.core-link a:hover h4, .core-link a:hover p {
    color: #fff;
}

.core-link a:hover .core-link-icon {
    background: #fff;
}

.core-link a:hover .core-link-icon svg path {
    fill: #0052AE;
}
.popular-insight-sub:hover {
    border-color: #0052AE !important;
}

.recent-insight-sub:hover {
    border-color: #0052AE;
}

.load-more:hover {
    background: transparent;
    color: #0052AE;
    border-color: #0052AE;
}
.email-link a:hover {
    background: #0052AE;
}

.email-link a:hover h6, .email-link a:hover h4 {
    color: #fff;
}

input.submit-btn:hover {
    color: #0052AE;
    background: transparent;
}
.\34 04-text a:hover {color: #fff;background: #0052AE;}
.contact-main-sub2 br {
    display: none;
}

span.wpcf7-list-item label {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--6D6E76, #6D6E76);
    font-family: "SF Pro Display";
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 18px;
}
.site-banner-headline p {
    max-width: 1106px;
    margin: auto;
    padding-bottom: 16px;
    color: #6B7280;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
}
.recent-insight-img img {
    min-height: 340px;
    object-fit: cover;
}
.detail-popular-flex {
    display: flex;
    justify-content: space-between;
    margin-bottom: 32px;
}
.detail-popular-flex .popular-insight-content h3 {
    font-size: 32px;
    margin-top: 20px;
}
.popular-insight-content2 h4 {
    color: var(--Neutral-900, #111827);
    font-family: "SF Pro Display";
    font-size: 22px;
    font-style: normal;
    font-weight: 500;
    line-height: 26px;
    padding-bottom: 20px;
}
.popular-insight-author a {
    color: #0052AE;
}
h3.table-headline {
    color: var(--Neutral-900, #111827);
    font-family: "SF Pro Display";
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px; /* 150% */
    padding-bottom: 16px;
}

.insight-header-main li a {
    color: #6B7280;
    font-family: "SF Pro Display";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px; /* 125% */
    display: block;
    padding: 9px 0px;
    position: relative;
}
.insight-header-main ul {
    border-left: 4px solid #F6F6F6;
    padding-left: 16px;
}
.flex-insight-des {
    display: flex;
    justify-content: space-between;
}

.insight-header-flex {
    max-width: 326px;
    position: sticky;
    top: 120px;
    height: max-content;
}   

.all-insight-detail {
    max-width: 66.3%;
}

.all-insight-detail .advertise-table {
    margin-bottom: 32px;
    margin-top: 0px;
}
.insight-main-des.inight-des2 {
    width: 100%;
}
.detail-popular-flex .popular-insight-img {
    width: 49.4%;
}
.detail-popular-flex .popular-insight-img img {
    width: 100%;
}
.active-link {
    font-weight: 700 !important;
    color: #0052AE !important;
}
.insight-header-main li a::before {
    position: absolute;
    content: "";
    background-color: transparent;
    width: 4px;
    height: 100%;
    border-radius: 5px;
    left: -20px;
    transition: 0.4s;
    top: 0;
}   

a.active-link::before {
    background-color: #0052AE !important;
}
.insight-detail-share {
    margin-top: 40px;
}
.insight-header-main li:nth-child(1) a {
    padding-top: 0px;
}
.insight-header-main li:last-child a {
    padding-bottom: 0px;
} 
 .flex-insight-des .advertise-table-content h3 {
    color: #0052AE;
}
.samaple-content {
    margin-bottom: 60px;
}
.app-link img {
    max-width: 170px;
}

.banner-image img {
    max-width: 1096px;
}
.network-img1 img {
    max-width: 430px;
}

.network-img2 img {
    max-width: 391px;
}  
.samaple-content-main {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.samaple-content-main p {
    color: var(--Neutral-500, #6B7280);
    font-family: "SF Pro Display";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 24px */
}

.samaple-content-main ul {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.samaple-content-main li {
    color: var(--Neutral-500, #6B7280);
    font-family: "SF Pro Display";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 24px */
    margin-left: 20px;
}

.samaple-content-main ul li {
    list-style: disc;
}

.samaple-content-main ol li {
    list-style: auto;
}

.samaple-content-main a {
    color: #0052AE;
    text-decoration: underline;
    display: inline;
}  
.samaple-content-main li p {
    margin-top: 10px;
}
.samaple-content-main ul ul {
    margin-top: 10px;
}
.samaple-content-main li p:nth-child(1) {
    margin: 0px;
}

.core-quite-icon img {
    max-width: 56px;
}
.form-group-custom.full-width-custom.f-gc2 select {
    width: 100%;
    padding: 14px 16px;
    border-radius: 12px;
    border: 1px solid #E0E0E0;
    background: #F9FAFB;
    margin-bottom: 24px;
    color: #868EAE;
    font-family: "SF Pro Display";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px; /* 142.857% */
}
.contact-main-sub1-adver1 {
    width: 49.4%;
}

.contact-main-sub1-con2 h2 {
    color: var(--Neutral-900, #111827);
    font-family: "SF Pro Display";
    font-size: 40px;
    font-style: normal;
    font-weight: 500;
    line-height: 48px;
    padding-bottom: 16px;
}

.contact-main-sub1-con2 h2 span {
    color: var(--Brand-Primary, var(--Primary-Blue, #0052AE));
}

.contact-main-sub1-con2 p {
    color: var(--Neutral-500, #6B7280);
    font-family: "SF Pro Display";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    padding-bottom: 16px;
}

.contact-main-sub1-con2 {
    margin-bottom: 0px;
}
.advise-form-hubsopt {
    margin-left: -40px;
}

.contact-main-sub2.contact-m2 {
    border-radius: 24px;
    background: #FFF;
    box-shadow: 0 0 48.9px 0 rgba(209, 209, 209, 0.26);
}
.active-header .active-header {
    margin-top: 0px !important;
}

.active-header .header-flex {
    margin-top: 0px;
}
.insight-main-des > div {
    scroll-margin-top: 100px; /* header height ke hisaab se adjust */
}
.current-menu-item a {
    color: #0052AE !important;
}

.header-pages ul li.current-menu-item a::before {
    width: 100% !important;
}
.Join-mobile {
	display:none;
}
.catagories-all {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
}
.all-insight-detail p a {
    color: #0052AE;
    text-decoration: underline;
    display: inline-block;
    font-weight: bold;
}
p:empty {
    display: none;
}
.insight-des-flex li {
    color: var(--Neutral-500, #6B7280);
    font-family: "SF Pro Display";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    margin-bottom: 10px;
    margin-left: 20px;
}

.insight-des-flex ul li {
    list-style: disc;
}

.insight-des-flex ol li {
    list-style: auto;
}

.insight-des-flex ul , .insight-des-flex ol {
    margin-bottom: 16px;
}
.detail-share-flex a {
    cursor: pointer;
    display: block;
}
.all-insight-detail :is(b,strong) {
    color: var(--Neutral-900, #111827) !Important;
}
.all-insight-detail li:has(strong,b){
	 color: var(--Neutral-900, #111827) !Important;
}
.print-video-thumb {
    display: none;
}
/* For Print */

@media print {

  /* Screen-only cheezen hide */
  header,
  footer,
  nav,
  .hamburger,
  .page-print {
    display: none !important;
  }

  /* Body reset */
  body {
    margin: 0;
    padding: 0;
    background: #fff !important;
    color: #000 !important;
  }

  /* Container full width */
  .container,
  .wrapper,
  .main-content {
    width: 100% !important;
    max-width: 100% !important;
  }

  /* Fonts fix */
  * {
    box-shadow: none !important;
  }

  /* Images scaling */
  img {
    max-width: 100% !important;
    height: auto !important;
  }
	section.insight-detail {
    padding-top: 20px !important;
}

.insight-back {
    display: none;
}  

.insight-header-flex {
    display: none;
}
    
section.recent-insight {
    display: none !important;
}
	.popular-insight-content h6 {
    padding: 0px !important;
	background: transparent !important;
}
.page-break {
    page-break-before: always;
  }	
	@page {
    margin-top: 30px;
	margin-bottom: 20px;
	}
	.insight-join-discussion-b2.btn-r1 {
    display: none !important;
}
.insight-detail-video.video-box {
    display: none !important;
}
.insight-main-des h2 {
    margin-top: 30px !important;
}	    

	
/* 	New for 1 colum */

.detail-popular-flex {
    flex-wrap: wrap !important;
    gap: 40px;
}

.popular-insight-img {
    width: 100% !important;
}

.popular-insight-content {
    width: 100% !important;
}

.all-insight-detail {
    width: 100% !important;
    max-width: 100% !important;
}

.flex-insight-des {
    flex-wrap: wrap !important;
} 
.termsfeed-pc1-notice-banner-layout {
    display: none !important;
}
.insight-detail-video.video-box {
    display: none;
}
.print-video-thumb {
    display: block;
	position: relative;
    border-radius: 24px;
    overflow: hidden;
}
.print-video-thumb a img:last-child {
    position: absolute;
    inset: 0;
    margin: auto;
}
.all-insight-detail div[id^="tab-"] {
    margin-bottom: 20px;
}
	
}
  



/* Responsive */ 
 

@media (max-width: 1401px) {
    .connect-flex {
        gap: 12px;
    }

    .network-sub1 {
        padding: 56px 0px 56px 72px;
    }

    .member-1 {
        max-width: 100vw;
    }

    .mission-reveiew-tab {
        padding: 22px
    }

    .mission-content {
        width: 45%;
    }
	
	
	

}

@media (max-width: 1301px) {

.network-sub1 h3 {
    font-size: 34px;
    line-height: 42px;
}

	
	
}



@media (max-width: 1201px) {
    .home-banner-content p {
        max-width: 70%;
    }

    .connections-flex {
        flex-wrap: wrap;
        gap: 16px;
    }

    .connections-sub1 {
        width: 100%;
    }

    .connections-sub1 h2 {
        max-width: 50%;
        margin-bottom: 15px;
    }

    .connections-sub2 {
        width: 100%;
        gap: 20px;
    }

    .connect-sub1 {
        width: 48%;
        padding: 22px;
    }

    .connect-sub1-img h4 {
        font-size: 20px;
    }

    .connect-icon {
        padding: 10px 6px;
    }

    .connect-sub1 h5 {
        font-size: 18px;
    }

    .connect-sub1-img {
        gap: 14px;
        padding-bottom: 20px;
    }

    .connect-flex {
        gap: 12px;
        padding-top: 0px;
    }

    .adcontent-tab1 {
        margin-bottom: 30px;
        padding-bottom: 30px;
    }

    .experience-inflows-header h2 {
        width: 50%;
        font-size: 35px;
    }

    .experience-tab-4 {
        padding: 30px 0px
    }

    .design-sub2 {
        align-items: center;
    }

    .network-sub2 {
        width: 60%;
    }

    .network-sub1 h3 {
        font-size: 38px;
    }

    .network-sub1 {
        padding: 36px 0px 36px 52px;
    }

    .network-sub1 p {
        margin-bottom: 30px;
    }

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

    .footer-sub1 {
        width: 80%;
        padding-bottom: 50px;
    }

    .footer-sub2 {
        width: 100%;
    }

    .footer-sub1 p {
        max-width: 380px;
    }

    .core-sub2-content p {
        font-size: 14px;
    }

    .popular-insight-content h3 {
        font-size: 28px;
    }

    .feature-insight-content h3 {
        font-size: 22px;
    }

    .recent-content-healine h3 {
        font-size: 18px;
    }

    .insight-banner-content p {
        max-width: 80%;
        padding-bottom: 60px;
    }

    .insight-detail-title {
        width: 70%;
    }

    .contact-main-sub1 h2 {
        font-size: 36px;
    }
.recent-insight-img img {
    min-height: 250px;
    object-fit: cover;
}
.detail-popular-flex .popular-insight-content h3 {
    font-size: 30px;
    line-height: 140%;
}
.network-img2 img {
    max-width: 100%;
}
.network-img1 img {
    max-width: 100%;
}
.network-img1 {
    margin-top: 50px;
	right: -40px;
	}
	.banner-image img {
        max-width: 85% !important;
    }
	.popular-insight-content2 h4 {
    font-size: 20px;
	}
	

}




@media (max-width: 901px) {

    /* Menu hidden default for mobile */
    .header-pages {
        display: flex;
        justify-content: end;
        align-items: center;
        width: 100%;
    }

    nav ul.menu-list {
        position: absolute;
        top: 0px;
        right: 0;
        width: 100%;
        height: 100vh;
        background: #fff;
        padding: 100px 0;
        flex-direction: column;
        gap: 20px;
        text-align: center;
        z-index: 999;
        box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.1);
        transform: translateX(-120%);
        transition: 0.8s;
    }

    nav ul.menu-list.show {
        transform: translateX(0%);
    }

    /* hide desktop button alignment fix */
    .join-btn {
        position: relative;
        z-index: 999;
    }

    /* Show hamburger */
    .hamburger {
        display: flex;
        position: relative;
        z-index: 999;
        right: 0px;
    }

    /* Animation to cross icon */
    .hamburger.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    header#header {
        z-index: 999;
    }

    .header-logo {
        position: relative;
        z-index: 9999;
    }

    .header-pages ul li a {
        font-size: 25px;
        margin-bottom: 25px;
    }

    .home-banner-content h1 {
        font-size: 44px;
        line-height: 54px;
    }

    .home-banner-content p {
        max-width: 90%;
    }

    .connections-sub1 h2 {
        max-width: 80%;
        margin-bottom: 15px;
    }

    .connections-tab {
        width: 48.5%;
    }

    .connections-flex {
        gap: 35px;
    }

    .advisors-header h2 {
        font-size: 46px;
        line-height: 62px;
        padding-bottom: 45px;
    }

    .connections-sub1 a {
        margin-bottom: 40px;
    }

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

    .advisors-sub1 {
        width: 100%;
        margin-bottom: 40px;
    }

    .advisors-sub2 {
        width: 100%;
    }

    .experience-inflows-header {
        flex-wrap: wrap;
    }

    .experience-inflows-header h2 {
        width: 80%;
        font-size: 35px;
        margin-bottom: 30px;
    }

    .experience-inflows-header-text {
        width: 100%;
    }

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

    .experience-sub1 {
        width: 100%;
    }

    .experience-sub2 {
        margin-top: 20px;
        width: 100%;
        display: flex;
        justify-content: space-between;
    }

    .experience-tab3 {
        width: 48.6%;
        margin: 0px;
    }

    .experience-tab-4 {
        padding: 30px 0px;
        width: 48.6%;
    }

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

    .design-sub2 {
        order: -1;
        width: 100%;
    }

    .design-sub1 {
        margin-top: 30px;
        width: 48.5%;
        gap: 24px;
    }

    .work-sub1 {
        padding: 15px;
    }

    .work-sub1 span {
        font-size: 32px;
        width: 60px;
        height: 60px;
        margin-bottom: 22px;
    }

    section.faqs {
        padding: 80px 0px 75px 0px;
    }

    .design-today-header h2 {
        font-size: 35px;
    }

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

    .network-sub1 {
        width: 100%;
        padding: 40px;
    }

    .network-sub2 {
        width: 100%;
        margin-left: auto;
    }

    .design-today-header {
        padding-bottom: 32px;
    }

    .site-banner-headline h1 {
        font-size: 52px;
    }

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

    .mission-img {
        width: 100%;
    }

    .mission-content {
        width: 100%;
    }

    nav.mission-tabs__nav {
        max-width: 80%;
    }

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

    .our-story-sub2 {
        width: 83%;
    }

    .our-story-sub3 {
        width: 100%;
        margin-top: 24px;
    }

    .core-flex {
        flex-wrap: wrap;
        gap: 40px;
    }

    .core-sub1 {
        width: 100%;
    }

    .core-sub2 {
        padding: 24px 32px;
        width: 100%;
    }

    .insight-banner-content p {
        max-width: 90%;
        padding-bottom: 50px;
    }

    .popular-insight-sub a {
        flex-wrap: wrap;
        gap: 30px;
    }

    .popular-insight-img {
        width: 100%;
    }

    .popular-insight-content {
        width: 100%;
    }

    .popular-insight-img img {
        border-radius: 12px;
        width: 100%;
    }

    .feature-insight-sub1 {
        width: 49.1%;
        padding: 22px;
    }

    .recent-insight-sub {
        width: 100%;
    }

    .recent-insight-content {
        width: 48%;
    }

    .load-more {
        margin-top: 0px
    }

    .insight-detail-header {
        flex-wrap: wrap;
    }

    .insight-detail-title {
        width: 100%;
    }

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

    .insight-main-des {
        width: 100%;
    }

    .insight-join-discussion {
        margin-bottom: 50px;
    }

    .insight-detail-video.video-box {
        width: 100%;
        height: 280px;
    }

    .insight-detail-video.video-box img {
        width: 80px;
    }

    .recent-insight-header {
        flex-wrap: wrap;
        gap: 20px;
    }

    .recent-insight-header h2 {
        width: 100%;
    }

    .recent-insight-header a {
        margin-left: auto;
    }

    section.insight-detail {
        padding-top: 132px;
        padding-bottom: 40px;
    }

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

    .contact-main-sub1 {
        width: 100%;
        margin-bottom: 40px;
    }

    .contact-main-sub2 {
        width: 100%;
    }

    section.contact-main.advertise .contact-main-sub1 {
        width: 100%;
    }

    section.contact-main.advertise .contact-main-sub2 {
        width: 100%;
    }

    section.site-banner {
        margin-bottom: 80px;
    }
.recent-insight-img img {
    min-height: 350px;
    object-fit: cover;
    max-width: 320px;
}
.detail-popular-flex .popular-insight-img {
    width: 100%;
}
.detail-popular-flex {
    flex-wrap: wrap;
    gap: 30px;
}
.flex-insight-des {
    flex-wrap: wrap;
    gap: 30px;
}
.insight-header-flex {
    max-width: 100%;
}
.all-insight-detail {
    max-width: 100%;
}
.insight-header-flex {
    position: static;
}
.contact-main-sub1-adver1 {
    width: 100%;
}
.insight-join-discussion-b2.btn-r1 {
    margin-bottom: 50px;
}
	
	section.our-members {
    padding-top: 20px;
	padding-bottom: 60px;	
}
	.member-1 .owl-nav {
    top: -95px;
}
	.mission-content-tabs {
    min-height: 185px;
}
	
	



}




@media (max-width: 701px) {
    .join-btn {
        display: none;
    }

    .hamburger {
        right: 0px;
    }

    .home-banner-content h1 {
        font-size: 30px;
        line-height: 40px;
    }

    .home-banner-content p {
        max-width: 100%;
        padding-bottom: 30px;
    }

    section.home-banner {
        padding-top: 120px;
        margin-bottom: 60px;
    }

    .connections-sub1 h2 {
        max-width: 100%;
        font-size: 28px;
        line-height: 38px;
        margin-bottom: 15px;
    }

    .connections-sub1 a {
        margin-bottom: 30px;
    }

    .connection-img {
        width: 100%;
        height: 220px;
    }

    .connection-img-content p {
        font-size: 14px;
        line-height: 20px;
    }

    .connections-flex {
        gap: 30px;
    }

    .connections-tab {
        width: 100%;
    }

    section#professional-connections {
        margin-bottom: 60px;
    }

    .advisors-header h2 {
        font-size: 32px;
        line-height: 48px;
        padding-bottom: 30px;
    }

    .advisors-sub1 {
        padding: 30px 30px 0px 30px;
        border-radius: 12px;
    }

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

    .connect-sub1 {
        width: 100%;
        padding: 20px;
    }

    section.advisors-connect {
        padding-bottom: 60px;
    }

    .experience-inflows-header h2 {
        width: 100%;
        font-size: 28px;
        margin-bottom: 20px;
        line-height: 42px;
    }

    .experience-inflows-header-text {
        flex-wrap: wrap;
    }

    .experience-inflows-header-icon {
        display: none;
    }

    .experience-inflows-header {
        padding-bottom: 40px;
    }

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

    .experience-sub1 {
        flex-wrap: wrap;
        gap: 20px;
    }

    .experience-tab1 {
        width: 100%;
        padding: 20px;
        border-radius: 18px;
    }

    .experience-tab1-image {
        padding-bottom: 15px;
    }

    .experience-tab1 h4 {
        font-size: 18px;
        line-height: 24px;
        max-width: 100%;
    }

    .experience-sub2 {
        flex-wrap: wrap;
        gap: 20px;
    }

    .experience-tab3 {
        width: 100%;
        margin: 0px;
    }

    .experience-tab-4 {
        padding: 20px 0px;
        width: 100%;
        border-radius: 20px;
    }

    .experience-tab-4 h3 {
        font-size: 26px;
        line-height: 34px;
        max-width: 280px;
        padding-bottom: 22px;
    }

    .experience-tab-4 a {
        font-size: 14px;
        line-height: 16px;
        padding: 14px 30px;
    }

    section.experience-inflows {
        margin-bottom: 60px;
    }

    .design-today-header h2 {
        font-size: 26px;
        line-height: 34px;
    }

    .design-today-header {
        padding-bottom: 20px;
    }

    .design-sub2 {
        border-radius: 14px;
    }

    .design-sub1 {
        margin-top: 30px;
        width: 100%;
        gap: 20px;
    }

    .design-sub-tab {
        padding: 18px 26px;
    }

    section.design-today {
        margin-bottom: 60px;
    }

    .work-flex {
        flex-wrap: wrap;
        gap: 20px;
    }

    .work-sub1 {
        padding: 15px;
        width: 100%;
    }

    section.faqs {
        padding: 50px 0px 60px 0px;
        margin-bottom: 50px;
    }

        .faqs-main {
        flex-wrap: wrap;
        gap: 16px;
    }
  
    .faqs-column {
        width: 100%;
    }

    .faq-item {
        border-radius: 10px;
        padding: 14px 16px 14px 22px;
    }

    .faq-question h3 {
        max-width: 92%;
    }

    .container-left {
        width: 100%;
        padding-left: 0px;
        margin-left: auto;
        padding: 0px 20px;
    }

    .member-1 .owl-nav {
        position: absolute;
        top: auto;
        right: 0;
        width: 100%;
    }

    .member-1 .owl-nav button {
        width: 40px;
    }

    .member-tab {
        padding: 22px;
        border-radius: 12px;
    }

    .network-sub1 {
        width: 100%;
        padding: 25px;
    }

    .network-sub1 h3 {
        font-size: 30px;
        line-height: 40px;
        padding-bottom: 10px;
    }

    .qr-contnet {
        font-size: 14px;
        line-height: 20px;
        max-width: 100%;
    }

    .network-img1 {
        margin-top: 22px;
        position: relative;
        right: -20px;
    }

    section.building-network {
        padding-bottom: 60px;
    }

    .footer-sub1 {
        width: 100%;
        padding-bottom: 40px;
    }

    .footer-sub1 p {
        max-width: 100%;
    }

    .footer-sub2 {
        flex-wrap: wrap;
        gap: 40px 20px;
    }

    .footer-last {
        flex-wrap: wrap;
        gap: 15px;
    }

    .footer-last-sub2 a {
        width: 30px;
        height: 30px;
    }

    .network-flex {
        border-radius: 18px;
    }

    .header-pages ul li a {
        font-size: 22px;
        margin-bottom: 15px;
    }

    .app-link {
        gap: 12px;
        margin-bottom: 40px;
    }

    .design-today-header.h-left h2 {
        text-align: center;
    }

    .site-banner-headline h1 {
        font-size: 35px;
        padding-bottom: 8px;
        line-height: 50px;
    }

    section.site-banner {
        margin-bottom: 60px;
        padding: 180px 0px 110px 0px;
    }  

    .mission-img1 {
        padding-right: 0px;
        padding-bottom: 0px;
    }

    .mission-reveiew-tab {
        position: relative;
        top: -20px;
        right: -10px;
        border-radius: 10px;
        padding: 15px;
    }

    .mission-content h3 {
        font-size: 20px;
        font-weight: 500;
        line-height: 20px;
        padding-bottom: 22px;
    }

    .mission-flex {
        gap: 20px;
    }

    nav.mission-tabs__nav {
        max-width: 100%;
        margin-bottom: 22px;
    }

    section.about-mission {
        margin-bottom: 60px;
    }

    section.our-story {
        padding-top: 40px;
        position: relative;
        margin-bottom: 60px;
    }

    .our-story-header h2 {
        font-size: 30px;
        line-height: 38px;
        padding-bottom: 30px;
    }

    section.our-story::before {
        width: 100%;
        height: 160px;
    }

    .our-story-sub1 {
        display: none;
    }

    .our-story-sub2 {
        width: 100%;
    }

    .core-team-header h2 {
        font-size: 30px;
        line-height: 38px;
        padding-bottom: 20px;
    }

    .core-img img {
        width: 100%;
        border-radius: 14px;
    }

    .core-link a {
        padding: 20px 12px;
        border-radius: 14px;
    }

    .core-link-name h4 {
        font-size: 22px;
        line-height: 24px;
        padding-bottom: 6px;
    }

    .core-link-name p {
        font-size: 14px;
    }

    .core-sub2 {
        padding: 14px 22px;
        width: 100%;
        border-radius: 12px;
    }

    .core-flex {
        gap: 30px;
    }

    section.core-team {
        margin-bottom: 60px;
    }

    .insight-banner-content p {
        max-width: 100%;
        padding-bottom: 50px;
    }

    .popular-insight-sub {
        padding: 14px;
        border-radius: 14px;
    }

    .popular-insight-content h3 {
        font-size: 22px;
        max-width: 100%;
        line-height: 32px;
        padding: 10px 0px;
    }

    .popular-insight-sub a {
        gap: 20px;
    }

    .popular-insight-content p {
        padding-bottom: 20px;
    }

    section.popular-insight {
        margin-bottom: 60px;
    }

    section.feature-insight {
        padding: 40px 0px;
        margin-bottom: 60px;
    }

    .feature-insight-header h2 {
        font-size: 30px;
        line-height: 34px;
        padding-bottom: 20px;
    }

    .feature-insight-all {
        flex-wrap: wrap;
    }

    .feature-insight-sub1 {
        width: 100%;
        border-radius: 14px;
    }

    .feature-insight-content h3 {
        font-size: 20px;
        line-height: 140%;
    }

    .recent-insight-header h2 {
        font-size: 30px;
        line-height: 34px;
    }

    .recent-insight-sub.show {
        padding: 14px;
    }

    .recent-insight-sub {
        width: 100%;
        border-radius: 14px;
    }

    .recent-insight-sub a {
        flex-wrap: wrap;
        gap: 20px;
    }

    .recent-insight-img {
        width: 100%;
    }

    .recent-insight-content {
        width: 100%;
    }

    .recent-content-healine h3 {
        font-size: 20px;
    }

    section.recent-insight {
        margin-bottom: 80px;
    }

    .recent-insight-header {
        margin-bottom: 20px;
    }

    .insight-tags-flex {
        flex-wrap: wrap;
        gap: 20px;
        justify-content: space-between;
    }

    .insight-back a {
        padding-bottom: 30px;
    }

    .insight-detail-title h1 {
        font-size: 26px;
        line-height: 38px;
        padding-bottom: 10px;
    }

    .insight-detail-image img {
        border-radius: 14px;
    }

    .insight-detail-header {
        margin-bottom: 40px;
    }

    .insight-detail-image {
        margin-bottom: 30px;
    }

    .insight-main-des h2 {
        font-size: 22px;
        line-height: 26px;
        padding-bottom: 12px;
    }

    .all-insight-detail div[id^="tab-"] {
       margin-bottom:30px;
    }

    .insight-join-discussion {
        margin-bottom: 40px;
    }

    .insight-detail-video.video-box {
        width: 100%;
        height: 200px;
        margin: 0px 0px 40px 0px;
    }

    .recent-insight-header h2 {
        font-size: 28px;
        line-height: 34px;
        max-width: 90%;
        margin: auto;
        text-align: center;
    }

    .recent-insight-header a {
        margin: 0 auto;
    }

    .contact-main-sub1 h2 {
        font-size: 32px;
        line-height: 34px;
    }

    .contact-main-sub1 p {
        font-size: 16px;
        padding-bottom: 30px;
    }

    .contact-form-custom {
        padding: 30px 20px;
        border-radius: 14px;
    }

    .form-row-custom {
        flex-wrap: wrap;
    }

    .form-group-custom {
        width: 100%;
        margin-bottom: 24px;
    }

    .form-row-custom {
        padding-bottom: 0px;
    }

    .form-group-custom.full-width-custom textarea {
        margin-bottom: 0px;
    }

    .terms-row-custom {
        flex-wrap: wrap;
        gap: 8px;
    }

    .terms-row-custom span {
        font-size: 9px;
    }

    section.contact-main {
        margin-bottom: 60px;
    }

    .advertise-table {
        padding: 12px;
        gap: 14px;
        border-radius: 12px;
    }

    .advertise-table-content li {
        font-size: 14px;
    }

    .advertise-table-content ul {
        gap: 14px;
    }

    .advertise-table-content li br {
        display: none;
    }

    .member-tab p {
        min-height: 100%;
    }

    .footer-newsletter p {
        font-size: 10px;
    }
	.join-btn-bt1 {
    margin-bottom: 20px;
}

	.join-btn-b2-btn.btn-r1 {
    display: none !important;
}
  
    .\34 04-text h1 {
        font-size: 24px;
        line-height: 32px;
        padding-bottom: 10px;
    }

    .\34 04-text p {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .\34 04-image {
        margin-bottom: 44px;
    }

    section.\34 04-page {
        padding: 120px 0px 80px 0px;
    }
    .detail-popular-flex .popular-insight-content h3 {
        font-size: 22px;
        line-height: 140%;
    }
	.banner-image img {
    max-width: 100%;
}
.banner-image img {
        max-width: 105% !important;
    }	
	.Join-mobile {
	 display:block;
}
.Join-mobile a {
    font-family: "SF Pro Display";
    font-weight: 500;
    font-size: 14px;
    line-height: 16px;
    background-color: #0052AE;
    padding: 16px 32px;
    border-radius: 16px;
    color: #fff !important;
} 
	.mission-content-tabs {
    min-height: 170px;
}  
.popular-insight-content2 h4 {
        font-size: 18px;
    }
	
  

}