/* ------------------------------------------------------------
   BaseTheme (Bootstrap-first) main.css
------------------------------------------------------------ */
/* 

font-family: "sofia-pro", sans-serif;
font-family: "new-rubrik-edge", sans-serif;

*/
.pum-content.popmake-content *:focus {
	outline: none !important;
	box-shadow: none !important;
}

.pum-content.popmake-content *:focus-visible {
	outline: 2px solid #000;
	outline-offset: 2px;
}
.pum-content.popmake-content:focus {
	outline: none !important;
	box-shadow: none !important;
}
.sociallogo {width:24px; height:auto;}

iframe {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
}

.btn-logout {
  background: transparent;
  color: #fff;
  border: 1px solid #fff;
}

.btn-logout:hover {
  background: #fff;
  color: #000;
}


.offcanvas .btn {
  border-radius: 6px;
  padding: 12px;
}

.btn-login {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.4);
  color: #fff;
}

.btn-logout {
  background: transparent;
  border: 1px solid #fff;
  color: #fff;
}


/* Offcanvas background */
.offcanvas {
  background-color: #000; /* or your brand colour */
  color: #fff;
}

/* Ensure text is readable */
.offcanvas .nav-link {
  color: #fff;
}

.offcanvas .nav-link:hover {
  color: rgba(255,255,255,0.7);
}


.offcanvas .btn-close {
  filter: invert(1);
}

.mobile-cta {
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 20px;
}

.mobile-cta .btn {
  display: block;
  width: 100%;
  padding: 14px;
  border-radius: 6px;
  font-weight: 500;
}

/* Login */
.btn-login {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.4);
  color: #fff;
}

.btn-login:hover {
  background: #fff;
  color: #000;
}

/* Join */
.btn-join {
  background: #fff;
  color: #000;
  border: none;
}

.btn-join:hover {
  background: rgba(255,255,255,0.8);
}

/* Logout */
.btn-logout {
  background: transparent;
  border: 1px solid #fff;
  color: #fff;
}

.offcanvas .navbar-nav {
  gap: 10px;
}

.offcanvas .nav-link {
  font-size: 1.2rem;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.offcanvas-header {
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.offcanvas-body {
  padding-top: 20px;
}


iframe.lazyloaded {
  width: 100% !important;
  aspect-ratio: 16 / 9 !important;
  height: auto !important;
}


/* ============================================================
   1) TOKENS (Design System)
============================================================ */

:root {

	--white: #ffffff;
	--black: #000000;
	--blue: #0080FF;
	--green: #A3F04D; 
	--grey: #d9d9d9;
	--midgrey:#b3b3b3;
	--lightgrey: #f1f1f1;	
}
.blue {color:var(--blue);}
.green {color:var(--green);}
.black {color:var(--black);}
.white {color:var(--white);}

.bg_green {background-color:var(--green);}
.bg_blue {background-color:var(--blue);}
.bg_grey {background-color:var(--grey);}
.bg_midgrey {background-color:var(--midgrey);}
.bg_lightgrey {background-color:var(--lightgrey);}	
.bg_black {background-color:var(--black);}	
.bg_white {background-color:var(--white);}		
	

/* ============================================================
   2) BASE 
============================================================ */
a {color:var(--blue); transition: all 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);}
a:hover {color:var(--midgrey);}



html, body { height: 100%; }

body {
font-family: "sofia-pro", sans-serif;

  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;

    font-size: clamp(16px, 1.2vw, 20px);
    line-height: 140%;
}

img, svg, video { max-width: 100%; height: auto; }
iframe { border: 0; }

*, *::before, *::after { box-sizing: border-box; }


/* ============================================================
   Screen reader text (WordPress standard)
============================================================ */

.screen-reader-text {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Allow screen-reader-text to be visible when focused (keyboard users) */
.screen-reader-text:focus {
  position: static !important;
  width: auto;
  height: auto;
  margin: 0;
  padding: 0.75rem 1rem;
  overflow: visible;
  clip: auto;
  white-space: normal;
  background: #000;
  color: #fff;
  z-index: 100000;
}

.visually-hidden {
  composes: screen-reader-text;
}

/* ============================================================
   3) GLOBAL INTERACTIONS
============================================================ */

a,
button,
.btn,
input,
select,
textarea {

}


/* ============================================================
   4) ACCESSIBILITY
============================================================ */

/* Skip to content (place after wp_body_open()) */
.skip-link {
  position: absolute;
  top: 0;
  left: 0;
  padding: 0.75rem 1rem;
  background: #000;
  color: #fff;
  z-index: 10000;
  text-decoration: none;
  
}
.skip-link:focus { }

/* Visible focus for non-Bootstrap elements */
:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(13,110,253,.35);
}

.btn:focus-visible,
a:focus-visible {
  box-shadow: 0 0 0 3px rgba(13,110,253,.35);
}


.blackbutton{
    background: var(--black);
    color: var(--white) !important;
    font-weight:600;
    font-size:0.85rem;
    padding:6px 20px;
    border-radius:20px;
    text-decoration:none;
    display:inline-block;
	    margin-top:4px;

}

.whitebutton{
    background: var(--white);
    color: var(--black);
    font-weight:600;
    font-size:0.85rem;
    padding:6px 20px;
    border-radius:20px;
    text-decoration:none;
    display:inline-block;
	border: 1px solid black;
	    margin-top:4px;

}


/* ============================================================
   5) TYPOGRAPHY 
============================================================ */

h1, h2, h3, h4, h5, h6 {
  margin-bottom: 0.6em;
}

h2 {margin-bottom:30px;
}
/* Base body */
p {
    font-family: "sofia-pro", sans-serif;
    font-size: clamp(16px, 1.2vw, 20px);
    line-height: 140%;
}


.twocols1 p {    font-size: clamp(22px, 2vw, 28px);
line-height: 140%;
  font-family: "sofia-pro", sans-serif;

}

h4.titlehero {  font-size:clamp(36px, 6vw, 72px);
    font-family: "new-rubrik-edge", sans-serif;
    font-weight: 600;
    line-height: 120%; margin-bottom:0px; color: var(--blue);}



/* Headings */
h1 {
    font-size: clamp(28px, 3vw, 40px);
    font-family: "new-rubrik-edge", sans-serif;
    font-weight: 600;
    line-height: 120%;
}

h2.h2big

{
    font-size: clamp(28px, 3vw, 40px);
    font-family: "new-rubrik-edge", sans-serif;
    font-weight: 600;
    line-height: 120%;
}



h2 {
    font-size: clamp(24px, 2.4vw, 32px);
    font-family: "new-rubrik-edge", sans-serif;
    font-weight: 600;
    line-height: 120%;
}

h3 {
    font-size: clamp(20px, 1.8vw, 24px);
    font-family: "new-rubrik-edge", sans-serif;
    font-weight: 600;
    line-height: 120%;
}

h4 {
    font-size: clamp(18px, 1.5vw, 20px);
    font-family: "new-rubrik-edge", sans-serif;
    font-weight: 600;
    line-height: 120%;
}

h5 {
    font-size: clamp(16px, 1.4vw, 20px);
    font-family: "new-rubrik-edge", sans-serif;
}

h6 {
    font-size: clamp(15px, 1.2vw, 18px);
    font-family: "new-rubrik-edge", sans-serif;
}

/* Utility text */
.subheading {
    font-size: clamp(18px, 1.5vw, 20px);
    font-family: "new-rubrik-edge", sans-serif;
    line-height: 120%;
}

.bodysmall {
    font-size: clamp(13px, 1vw, 14px);
    font-family: "sofia-pro", sans-serif;
    line-height: 140%;
}

.bodysmall b,
.bodysmall strong {
    font-weight: 500;
    line-height: 140%;
}

.quote {
    font-size: clamp(16px, 1.3vw, 18px);
    font-family: "new-rubrik-edge", sans-serif;
    font-weight: 500;
}

p a {color: black;}


 ul,
 ol {
  padding-left: 2rem;
  margin-bottom: 20px;
}

li {  margin-bottom: 4px; margin-top: 4px;}


/* Classic WP content rhythm  */
.entry-content > *:first-child { margin-top: 0; }
.entry-content > *:last-child  { margin-bottom: 0; }

.entry-content p { margin-bottom: 20px;; }

.entry-content ul,
.entry-content ol {
  padding-left: 1.25rem;
  margin-bottom: 20px;
}

.entry-content blockquote {

}

.entry-content a { text-underline-offset: 0.15em; }
.entry-content a:hover { opacity: 0.85; }







/* ============================================================
   DESKTOP NAV
============================================================ */

.desktop-nav{
    width:100%;
    border-top:1px solid var(--midgrey);
}

.desktop-nav .container{
    padding-top:20px;
	  padding-bottom:28px;
}

/* Menu layout */
.desktop-nav .nav{
    gap:2rem;
}

/* Menu links */
.desktop-nav .nav-link{
    color:var(--white);
    font-weight:500;
    padding:0;
}

/* Hover */
.desktop-nav .nav-link:hover{
    color:var(--grey);
}

/* Dropdown toggles */
.desktop-nav .dropdown-toggle{
    color:var(--white);
}








.footerlogo img {max-height:140px; width:auto;}
.footertext {font-size:16px; padding-top:50px;}
.verybottom {width:100%;
    border-top:1px solid var(--grey);}

.footer-nav{
    width:100%;
 
}

.footer-nav .container{
    padding-top:28px;
	  padding-bottom:28px;
}

/* Menu layout */
.footer-nav .nav{
    gap:2rem;
}

/* Menu links */
.footer-nav .nav-link{
    color:var(--white);
    font-weight:500;
    padding:0;
}

/* Hover */
.footer-nav .nav-link:hover{
    color:var(--grey);
}

/* Dropdown toggles */
.footer-nav .dropdown-toggle{
    color:var(--white);
}



.footer-nav {
    background-image: url('https://jointventure-msk.com/wp-content/uploads/2026/03/Line.png');
    background-repeat: no-repeat;
    background-position: top center;
    background-size: 100% auto;
}




@media (max-width: 768px) {

    .footer-nav .nav {
        flex-direction: column;
        gap: 1rem; /* tighter spacing for vertical */
    }

    .footer-nav .nav-link {
        display: block;
        width: 100%;
    }

}

@media (max-width: 768px) {

    .footer-nav .nav {
        align-items: center;
        text-align: center;
    }

}

/* Join button */

.btn-join{
    background: var(--white);
    color: var(--black);
    font-weight:600;
    font-size:0.85rem;
    padding:10px 26px;
    border-radius:20px;
    text-decoration:none;
    display:inline-block;
	    margin-top:4px;

}

.btn-join:hover{
    background: var(--lightgrey);
    color: var(--black);
}

/* Mobile burger */

.navbar-toggler{
    border:0;
    padding:4px;
}

.navbar-toggler:focus{
    box-shadow:none;
}

/* White hamburger icon */
.site-header .navbar-toggler-icon{
    width:1.5rem;
    height:1.5rem;
    background-image:url("data:image/svg+xml,%3csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3e%3cpath stroke='rgba%28255,255,255,0.95%29' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}


.site-header {
    background-image: url('https://jointventure-msk.com/wp-content/uploads/2026/03/Line.png');
    background-repeat: no-repeat;
    background-position: bottom center;
    background-size: 100% auto;
}


/* Offcanvas close button */

.offcanvas .btn-close{
    filter:none;
}
.site-logo img, .footerlogo img{
    height:140px;
}

/* Smaller logo on mobile */

@media (max-width: 991px){

.site-logo img, .footerlogo img{
    height:74px;
}
	
	.footerlogo img {margin-top:40px;}

}



/* ============================================================
   7) WORDPRESS CORE ALIGNMENTS 
============================================================ */

.alignleft   { float: left;  margin: 0.25rem 1.5rem 1rem 0; }
.alignright  { float: right; margin: 0.25rem 0 1rem 1.5rem; }
.aligncenter { display: block; margin: 0 auto 1rem; }

/* Wide/full support  */
.alignwide {
  max-width: 1200px; /* adjust per project */
  margin-left: auto;
  margin-right: auto;
}

.alignfull {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.entry-content::after,
.bt-wysiwyg::after {
  content: "";
  display: table;
  clear: both;
}


/* ============================================================
   8) HEADER / NAV 
============================================================ */

.navbar-brand img {
  max-height: 48px;
  width: auto;
  display: block;
}


/* ============================================================
   9) MODULE SYSTEM
============================================================ */



/* ============================================================
   10) UTILITIES 
============================================================ */

.hidden     { display: none !important; }





/* ============================================================
   11) COMPONENTS 
============================================================ */

/* Buttons */



.gform_wrapper .gform_button,
.gform_wrapper button.gform_button {
    background: var(--black);
    color: var(--white);
    font-weight: 600;
    font-size: 0.85rem;
    padding: 6px 20px;
    border-radius: 20px;
    text-decoration: none;
    display: inline-block;
    margin-top: 4px;

    border: none;
    cursor: pointer;
}









/* Slick slider helpers */

.my-slider .slide { padding-inline: 20px; }
.my-slider { margin-inline: 20px; }


/* ============================================================
   12) RESPONSIVE VIDEO
============================================================ */

.responsive-video {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  margin: 20px 0;
}

.responsive-video iframe,
.responsive-video object,
.responsive-video embed,
.responsive-video video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}


/* ============================================================
   13) REDUCED MOTION 
============================================================ */

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}


/* ============================================================
   14) BREAKPOINT PLACEHOLDERS
============================================================ */

@media (min-width: 992px) {
  /* lg+ tweaks here */
}


/* ============================================================
   15) DEBUG (uncomment when building layouts)
============================================================ */

/*
.module { outline: 1px dashed rgba(255,0,0,0.3); }
*/