/*
 Theme Name:   Marilyn Child
 Theme URI:    https://example.com/
 Description:  Child theme for YourTheme
 Author:       Swapithub
 Author URI:   https://example.com
 Template:     marylin-1
 Version:      1.0.0
*/

/* Add your custom CSS below */
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

*,
*::after,
*::before {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
:root {
    --primary_color: #fff;
    --secondar_color: #222222;
    --primary_font: "Inter", sans-serif;
    --secondary_font: "Inter", sans-serif;
}
body {
    font-family: var(--primary_font);
    color: var(--primary_color);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
background-color: var(--secondar_color);
}
body,
body p {
    color: #ffffffe6;
    font-family: 'Inter' !important;
}
h1,
h2,
h3,
h4,
h5 {
    font-weight: 700;
    line-height: 1.2;
}
h1 {
    font-size: 96px;
}
p:not(:last-child) {
    margin: 0 0 22px;
}
h2,
h3 {
    font-size: 50px;
}

img {
    vertical-align: bottom;
}
.container {
    max-width: 1240px;
    margin-inline: auto;
    width: calc(100vw - 40px);
}

/**** Bg background ****/

.charcoal-gray {
    background-color: var(--secondar_color);
}

/********* Header Section Start Here *********/

.header {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    padding: 30px 0 30px 0;
    z-index: 99;
    background: transparent;
}
.header .container {
    max-width: 1775px;
}
.header_inner nav ul li {
    list-style: none;
}
.header_inner nav ul li a {
    font-size: 16px;
    text-decoration: none;
    font-weight: 700;
    color: var(--primary_color);
    text-transform: uppercase;
}
.header_inner nav ul {
    display: flex;
    justify-content: end;
    gap: 37px;
}
.header .toggle-btn {
    display: none;
}
/********* Header Section End Here *********/


/********* Banner Section Start Here *********/

.banner-seciton {
    position: relative;
    padding: 100px 0;
    min-height: 100vh;
    display: grid;
    align-content: center;
    isolation: isolate;
}
.banner-seciton::after {
    content: "";
    background: #333333;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 50%;
}
.banner-seciton .banner-content {
    position: relative;
    text-align: center;
    z-index: 9;
}
.banner-seciton .banner-heading h1 {
    color: var(--primary_color);
}
.banner-seciton .banner-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.banner-seciton .banner-img img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
}
.banner-seciton .disclaimer-text {
    position: absolute;
    z-index: 9;
    bottom: 11px;
    width: 100%;
    left: 0;
    text-align: center;
}
.banner-seciton .disclaimer-text a {
    text-decoration: none;
    color: var(--primary_color);
    font-size: 14px;
}

/********* Banner Section End Here *********/

/********* Kevin Ulrich start Here *********/

.main-section-spacing {
    padding: 170px 0 100px;
}
.left-right-main {
    display: flex;
    justify-content: space-between;
}
.left-right-main .left-col {
    flex: 0 0 51%;
    max-width: 51%;
}
.left-right-main .right-col {
    flex: 0 0 45%;
    max-width: 45%;
}
.left-right-main .right-col img {
    width: 100%;
}
.left-right-main .left-col .heading-wrapper,
.left-right-main .left-col h2 + p {
    margin: 0 0 50px;
}

.left-col .heading-wrapper p,
.left-right-main .left-col h2 + p  {
    font-weight: 200;
    font-style: italic;
    font-size: 20px;
}
.left-right-main .text-col p {
    font-size: 16px;
}

/********* Kevin Ulrich start Here *********/

/********* Investment Team start Here *********/

.page-team .disclaimer-content h2  {
    margin: 0 0 100px;
}
.page-team .disclaimer-content h3 {
    margin-top: 33px;
}
.page-team .disclaimer-content h3 a:hover {
    text-decoration: underline;
}
.investment-wrapper .link a {
    color: var(--primary_color);
    text-decoration: none;
    display: block;
}
.investment-wrapper .link-main {
    display: flex;
    flex-direction: column;
    gap: 31px;
}
.investment-wrapper .link a h3,
.page-team .disclaimer-content h3 {
    font-size: 30px;
}
.investment-wrapper .link a p,
.page-team .disclaimer-content h3 ~ p  {
    font-weight: 200;
    font-style: italic;
    font-size: 20px;
}

.back-btn {
    margin: 0 0 50px;
}
.back-btn a {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    gap: 9px;
    color: var(--primary_color);
    position: relative;
}
.back-btn a span.img {
    display: flex;
}
.back-btn1::before {
    content:"";
    width: calc(100% - 14px);
    height: 1px;
    background: var(--primary_color);
    position: absolute;
    bottom: 0;
    right: 0;
    opacity: 0;
}
.back-btn1:hover::before {
    opacity: 1;
}

.disclaimer-content  a {
    text-decoration: none;
    color: var(--primary_white);
}

.left-right-main a {
    text-decoration: none;
    color: var(--primary_white);
}
/********* Investment Team End Here *********/



/********* Contact Team Start Here *********/

.contact-heading {
    margin: 0 0 34px;
}

.contact-details p i {
    font-weight: 200;
}
.contact-details p:not(:last-child) {
    margin: 0 0 30px;
}
.contact-details p {
    line-height: 1.2;
}


/********* Contact Team End Here *********/


/********* Disclaimer Start Here *********/

.disclaimer-sec {
    padding: 200px 0;
    min-height: 100vh;
}
.disclaimer-content h2 {
    margin: 0 0 34px;
}
.back-btn1 {
    position: relative;
    padding-left: 14px;
}
.back-btn1::after {
    content: "";
    background: url(https://kasventurepartners.chhs.org/wp-content/uploads/2025/11/arrow.png);
    position: absolute;
    top: 4px;
    left: 0;
    width: 20px;
    height: 11px;
    background-repeat: no-repeat;
    background-size: contain;
}

/********* Disclaimer End Here *********/

/********* Portfolio Start Here *********/

.page-portfolio .disclaimer-content > .wp-block-columns:first-child {
    margin: 0 0 60px;
}
.page-portfolio .disclaimer-content h1 {
    font-size: 50px;
    line-height: 1.2;
}
.page-portfolio .disclaimer-content h1 strong {
     font-weight: 700;
}
.page-portfolio .disclaimer-content > .wp-block-columns:first-child p {
    font-weight: 200;
    font-style: italic;
    font-size: 20px;
}
.page-portfolio .disclaimer-content > .wp-block-columns:not(:first-child,:last-child) {
    margin: 0 0 70px;
}
.page-portfolio .disclaimer-content .wp-block-image {
    margin: 0 0 6px;
}

/********* Portfolio End Here *********/

/********* Footer Start Here *********/

.footer {
    padding: 17px 15px;
}
.footer .copyright-col p {
    text-align: center;
    font-size: 14px;
    border-top: 1px solid var(--primary_color);
    padding-top: 8px;
    letter-spacing: 0.7px;
}
.footer .copyright-col p a {
    color: var(--primary_white);
}
.footer .copyright-col {
    max-width: 952px;
    margin-inline: auto;
}

/********* Footer End Here *********/


/*********** Responsive **************/

@media(max-width:1441px) {
    h1 {
        font-size: 65px;
    }
}

@media(max-width:1199px) {
    h1 {
        font-size: 50px;
    }
}

@media(max-width:767px) {
    h1 {
        font-size: 38px;
    }

    h2,
    h3,
    .page-portfolio .disclaimer-content h1 {
        font-size: 32px;
    }

    /*** toggle btn ***/
    .toggle-btn {
        width: 27px;
        height: 27px;
        position: absolute;
        top: 15px;
        right: 19px;
        display: flex;
        align-items: center;
        cursor: pointer;
    }
    .toggle-btn span {
        display: block;
        background: var(--primary_color);
        width: 100%;
        height: 2px;
        position: absolute;
        border-radius: 100vmax;
    }
    .toggle-btn span:first-child {
        transform: translatey(-8px);
    }
    .toggle-btn span:last-child {
        transform: translateY(8px);
    }
    .header_inner nav,
    .active-toggle span:nth-child(2) {
        display: none;
    }
    .active-toggle span:first-child {
        transform: rotate(45deg);
    }
    .active-toggle span:last-child {
        transform: rotate(-45deg);
    }
    .header_inner .active-menu {
        display: block;
    }
    .header_inner nav {
        position: absolute;
        top: 100%;
        background: var(--secondar_color);
        left: 0;
        width: 100%;
        padding: 20px;
    }
    .header_inner nav ul {
        flex-direction: column;
        gap: 10px;
    }
.header .toggle-btn {
    display:block;
}
    /*** toggle end ***/

    /*** Left right section ***/

    .main-section-spacing {
        padding: 90px 0 51px;
    }
    .left-right-main {
        flex-direction: column;
        gap: 40px;
    }
    .left-right-main .left-col,
    .left-right-main .right-col {
        flex: 0 0 100%;
        max-width: 100%;
    }
    .left-right-main .left-col .heading-wrapper,
    .left-right-main .left-col h2 + p {
        margin: 0 0 36px;
    }

    /*** Investment Team ***/

    .investment-wrapper .heading-wrapper,
    .page-team .disclaimer-content h2 {
        margin: 0 0 40px;
    }
    .page-team .disclaimer-content h3{
        font-size: 25px;
    }

    /*** End Investment Team ***/

    /*** disclaimer start***/

    .disclaimer-sec {
        padding: 95px 0 50px;
        min-height: unset;
    }
    .disclaimer-content h2 {
        margin: 0 0 26px;
    }

    /*** disclaimer end ***/

     /*** portfolio start***/

      .page-portfolio .disclaimer-content > .wp-block-columns:not(:first-child,:last-child) {
          margin: 0 0 25px;
      }

     /*** portfolio end***/
}