/**
 * OGK25 Custom Stylesheet
 * 
 * This stylesheet is for custom styles and overrides
 * Theme: OGK
 * Created: 2025
 */

/* ==========================================================================
   Custom Styles
   ========================================================================== */

/* Add your custom styles below */
::selection {
    background-color: #FF7900; /* Your chosen color */
    color: white; /* Text color when highlighted */
}

/* Firefox compatibility */
::-moz-selection {
    background-color: #FF7900;
    color: white;
}


section.accordion-list-section .accordion-item-list-wrap ol li {
    color: #000!important;
}
.blog .post-info p,.blog-bottom-bar .share h4 {
    color: #ffffffd8;
}
.butt{
    position: relative;
    display: inline-flex;
    padding-right:23px;
    align-items: center;
}
.butt:after{
    content: '';
    position: absolute;
    right: 0;
    width: 12px;
    height: 12px;
    background: url(/wp-content/themes/OGK/images/angle-arrow.svg);
    background-size: contain;
    background-position: center;
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}
.butt:hover:after {
    transform: rotate(45deg);
}
.up-next h2 {
    white-space: nowrap;
}

.container-small{
    width: 100%;
    max-width: 1170px!important;
}
.job-openings .container {
    max-width: 850px;

}
.open-position .description {
    width: unset;
}
.open-position .position-title {
    width: unset;
}

.blog-articles .btn-load-more.btn {
    margin-left:auto;
    margin-right:auto;
}


.blog-content .featured-image img {
    width: 100%;
    height: auto;
    max-width: 1170px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 5px;
}
 
.blog-content .container-small { 
    max-width: 1350px !important;
    
    background: #131313e0;
    width: calc(100% - 40px)!important;
    border-radius: 5px; 
}
.blog-content .container-small.text-content.first{
    margin-top: -66px;
}
.blog-content p strong {
    color: #fff;
}
.blog-content .quote {
    border-top:5px solid #d7d7d71a;
}
.project-info-toggle {
    padding-bottom: 0!important;
    
}
.project-info-toggle h1{
    display: flex;
    padding: 10px;
    background: #ffffff0d;
    width: max-content;
    border-radius: 5px;
    padding-left: 40px;
    padding-right: 20px;
    transition: .3s ease-in-out all; 
    margin-left:20px;
}
.project-info-toggle h1:hover {
    background: #000000b6;
}
.project-info-toggle.active h1 {
    background: #000000b6;
}
.project-intro.copy-section {
    padding-top:0px;
}

.lottie-lg {
    max-width: 23%;
    justify-content: center;
}

.container {
    overflow:unset; 
}

.service-bucket {
    top: 10px;
    position: sticky;
    z-index: 2;
    background: #131313;
    min-height: 66vh;
    display:flex;
    flex-direction: column;
    justify-content: center;
    /* border-top: 1px solid #232323cc; */
}

.project-info-wrap .long-column { 
    color:#aba3a6;
}

.service-wrap {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    flex-grow: 1;
}

.service-wrap p {
    font-size: clamp(18px, 1.5vw, 24px);
    line-height: clamp(23px, 2vw, 32px);
}
.service-wrap h2 {
    font-size: clamp(32px, 3.8vw, 50px);
    line-height: clamp(35px, 4vw, 55px);
}

.service-bucket-head {
    cursor: pointer;
}
.service-bucket-head:hover a.angle-arw::after{ 
        transform: rotate(45deg);
}


/* Custom cursor circle */
.cursor-circle {
    position: fixed;
    top: 0;
    left: 0;
    width: 10px;
    height: 10px;
    background: #000000c5;
    /* background: #FF7900; */
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transition: width 0.4s ease, height 0.4s ease, opacity 0.4s ease, background .4s ease, color 0.4s ease; 
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 12px;
    font-weight: 300;
    white-space: nowrap;
    opacity: 0;
    /* mix-blend-mode: difference; */
    overflow: hidden;
}
.cursor-circle.link-hover, .cursor-circle.default-circle.active {
    width: 80px;
    height: 80px;
    background: #0000001e;
}
.cursor-circle.inverted {
    background: black;
    color: white;
}

.cursor-circle .play-icon {
    font-size: 16px;
}

.cursor-circle.active {
    width: 90px;
    height: 90px;
    opacity: 1;
    background-color: #000000c5;
}

.cursor-circle.visible {
    opacity: 1;
}

.not-a-link {
    cursor: auto!important;
}

.vid-control-inline.is_muted:after {
    transition:.3s ease-in-out all;
    background-color: rgba(0, 0, 0, 0);
} 

 .vid-control-inline.is_muted:hover:after {
    background-color: rgba(0, 0, 0, 0.3) !important;
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: url(/wp-content/themes/OGK/images/mute-icon-white.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 45px 45px;
    background-position: 98% 97%;
    z-index: 1;
} 

.vid-control-inline:not(.is_muted):after {
    background-color: rgba(0, 0, 0, 0.0) !important;
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: url(/wp-content/themes/OGK/images/muted.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 45px 45px;
    background-position: 98% 97%;
    z-index: 1;
    opacity:1;
}

.bg-white p {
    color: #676264;
}

.team-member .images-wrapper {
    cursor: default!important;
}

.services-list h5 a { 
    color: #aba3a6;
}
.launch-site a {
    color: #fff;
}
/* body.page-template-capabilities  { 
    padding-top:0; 
} */

.page-template-capabilities .simple-hero, .capabilities-template-default .simple-hero{
    position: absolute;
    z-index: 2;
    padding-top: clamp(30px, 4vw, 175px);
    padding-bottom: 0px;
}
/* .page-template-blog .simple-hero{
    position: absolute;
    z-index: 2;
} */

.page-template-capabilities .internal-hero-image, .capabilities-template-default .internal-hero-image{
    width: 100%;
    height: auto;
    opacity: 0.3;
    filter: grayscale(1); 
    max-height: 600px;
    border-radius: 8px;
    
}

.page-template-capabilities .background-video {
    border-radius: 8px;
   
}
.page-template-capabilities .internal-hero-image {
    transform: scale(.5);
    margin-top: clamp(200px, 20vw, 400px);
    /* transition: transform 1.5s ease-in-out;  */
    /* opacity: 0; */
    
}
/* .page-template-capabilities .internal-hero-image.loaded {
   transform:scale(1);
    opacity: 1;
} 
    */

/* .page-template-capabilities .internal-hero-image video, .capabilities-template-default .internal-hero-image video {
    
    
} */

.capabilities-template-default .simple-hero {
    position:static;
}
.capabilities-template-default .simple-hero.single-capabilities .container-large{
    display: flex;
    align-items: center;
    overflow:visible;
}

.capabilities-template-default .internal-hero-image video {
    width: 115%;
    position: absolute;
    left: -15%;
    top: 0;
    border-radius: 8px;
    transform-origin: bottom right;
}

.capabilities-template-default .background-video {
    padding-top:65%;
}
.capabilities-template-default .internal-hero-image {
    overflow: visible;
}

.capabilities-template-default .hero-cap-title {
    z-index: 1;
}


.blog-content {
    text-align: left;
}
.up-next {
    max-width: 400px;
    width: 100%;
}
.blog-bottom-bar {

}
.share svg {
    height: 20px;
    width:auto;
    margin-left:2px;
    margin-right:2px;
}
.share svg path{
    transition:.3s ease-in-out all;
}
.share svg:hover path{
    
    fill:#FF7900;
}
.container-small.left {
    overflow: visible;
}
.blog-content .featured-image img {
    position: relative;
} 

.blog-articles .articles-wrap {
    column-gap: 1.5%;
    justify-content: flex-start;
}


.single-industry .portfolio-item .copy-wrap h3 {
    margin-top:0!important;
    margin-bottom:3px;
} 

.single-industry .blog-articles .container-large {
    margin-left: auto;
    margin-right: auto;
    padding-left: 1%;
    padding-right: 1%;
}
.single-industry .portfolio-item .copy-wrap {
    padding: clamp(20px, 2vw, 60px);
}
    
.blog-feature.portfolio-item {
    cursor: pointer;
}
.logo {
    margin-left:0!important;
}

.category-nav-toggle .hidden-cat-nav {
    opacity: .2;
}
#menu-footer-menu {
    display: flex;
    flex-wrap: wrap;
}
#menu-footer-menu li {
    margin-right:10px;
}
.category-filter.industry-filter .filter-list .filter-wrap{
    display: flex;
    justify-content: space-evenly;
    padding-bottom: 20px;
    flex-wrap: wrap; 
    column-gap: 10px;

}
.image-text .text-wrap {
    flex-direction: column;
    align-items: flex-start;
}

#gform_page_3_4 .span-input-wrap {
max-width: 960px;
}

.footer-right .footer-menu ul li a, .footer-bottom .gform_description {
    font-size: clamp(16px, 2vw, 18px);
}
.footer-menu h4, .footer-bottom .gform_title {
    font-size: 22px;
}

.footer-left .logo-wrap-circle{
   
}

.footer-bottom .gform_heading {

}

.home-about .copy-wrap {
    margin-left: auto;
    margin-right: auto;
}
.footer-bottom .footer-left .form-wrap {
    margin-top:0;
}


#gform_2 select {
    background-color: #1f1f1f!important;
}

#gform_2 input[type="file"] {
    padding-left: 15px!important;
}
#gfield_upload_rules_2_6 {
    padding-left: 15px!important;
}
/* #gform_2 .gform-field-label {
    background: #1f1f1f!important;
    color: #fff!important;
} */

.main-menu ul li a {
  font-size: clamp(12px, .7vw, 14px)!important;
  text-transform: uppercase;
}
.butt.oj {
    text-transform: uppercase;
    font-size:clamp(12px, .7vw, 14px)!important;
    align-items: center;
    display: inline-flex;
}
.butt.oj:after {
    height:14px;
    width:14px;
    background: url(/wp-content/themes/OGK/images/angle-arrow-oj.svg);
    background-size: contain;
    background-repeat:no-repeat;
}

.responsive-spacer {
    margin-top:80px; 
    width:100%;
}

a.btn.btn-sm{
    width: 175px;
    height: 48px;
}

#input_8_5:-webkit-autofill,
#input_8_5:-webkit-autofill:hover,
#input_8_5:-webkit-autofill:focus,
#input_8_5:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 1000px #1a1a1a inset !important;
    -webkit-text-fill-color: #ffffff !important;
}

#gform_wrapper_1{
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 50px;
}

@keyframes pulseSmooth {
            0%, 100% {
                transform: scale(1);
                opacity: 1;
            }
            50% {
                transform: scale(1.3);
                opacity: 0.7;
            }
        }

@media screen and (max-width: 991px) {
    .open-position .description {
        width: unset;
        display: inline-block;
    }
    .open-position .position-title {
        width: unset;
        display: inline-block;
    }
    .capabilities-template-default .simple-hero.single-capabilities .container-large {
        flex-wrap:wrap
    }

    .capabilities-template-default .internal-hero-image video {
        max-width: 100%;
        width: 100%;
        left:7%;
    }
    .capabilities-template-default .background-video {
        /* padding-top:56.66%; */
    }
    header .logo {
        margin-left:0!important;
    }
    .responsive-spacer {
        margin-top:35px; 
    }
}

@media screen and (max-width: 785px) {

    

    .header-right.not-active {
        opacity: 1 !important;
    }
     .mobile-menu .mobile-toggle {
        right: 20px;
        position: relative;
    } 
    .header-right {
        margin-right: 0;
    }

    .footer-menus-container ul {
        max-width: 100%;
        column-count: 4;
        display: flex;
        justify-content: center;
        column-gap: 20px;
    }
}

@media screen and (max-width: 600px) {
    .page-template-capabilities .simple-hero, .capabilities-template-default .simple-hero{
        position:static;
        padding-top:0; 
    }
      .footer-top .social {
        flex-direction:row;
        flex-wrap: wrap;
        justify-content: center;
        column-gap: 15px;
    }
}


@media (hover: none) and (pointer: coarse) {
    /* Styles for touch-only devices */
    .cursor-circle {
        display: none!important;
    }
}

