/*
Theme Name:     Wryta Designs Theme Dos
Theme URI:      https://www.wrytadesigns.com
Author:         Wryta Designs
Author URI:     https://www.wrytadesigns.com
Description:    A hybrid WordPress theme built for a modern tech company website, featuring dynamic product pages, responsive design, and modular templates.
Version:        1.1.0
License:        GNU General Public License v2 or later
License URI:    https://www.gnu.org/licenses/gpl-2.0.html
Tags:           hybrid, responsive, custom-post-types, modular, ACF, tech
Text Domain:    techcorp-hybrid
Requires at least: 5.8
Tested up to:   6.5
Requires PHP:   7.4
*/


:root{
    /* Colors */
    --color-background-dark: #101010;
    /* --color-background-dark: #f2f2f2; */
    --color-primary: #18D162;
    --color-secondary: #0091ef;
    --color-accent: #18D162;
    --color-body: #f2e8de;
    --color-body-dark: #c0c0c0;
    --color-link: #adadad;
    --color-link-hover: #0091ef;
    --color-text-dark: #d7d7d7;
    --color-primary-dark: #15B756;


    /* Spacing & Margins */
    --desktop-window-spacing:128px;
    --mobile-window-spacing: 16px;

    --desktop-section-spacing: 128px;
    --mobile-section-spacing: 24px;

    --desktop-heading-spacing: 64px;
    --mobile-heading-spacing:16px;

    --desktop-margin-small:8px;
    --desktop-margin-medium:16px;
    --desktop-margin-large:24px;


    --body-extra-small: 14px;
    --body-small:14px;
    --body-normal: 16px;
    --body-large: 18px;


    --tagline-left-a:  #15B756;
    --tagline-left-b: #006EB8;
    --tagline-right: #e2e2e2;

    --about-left:  #fafafa;
    --about-right: #2e2e2e;
}


*{
    margin: 0;
    padding: 0;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Open Sans', sans-serif;
    background: var(--color-background-dark);
    
    
    color: var(--color-body);
    overflow-x: hidden;
    box-sizing: border-box;
}

body.blog{
    background-color: white;
}


h1,h2,h3,h4{
    font-family: "Bebas Neue", sans-serif;
    letter-spacing: -1px;
}

p{
    font-family: 'Open Sans', sans-serif;
    margin: 0px;
    padding: 0px;
    font-size: var(--body-normal);
}


.move-cursor{
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}

line {
  stroke: linear-gradient(
        90deg,
        var(--color-accent) 100%,
        var(--color-secondary) 70%,
        purple 20%
    );;
  stroke-width: 4;
}





/*----------------------------------------------------------------------------*/
/*
    Header 
*/



    .wryta-header {
        height: 72px;

        position: sticky;
        top: 24px;
        left: 0;
        right: 0;

        z-index: 100;
        display: flex;
        align-items: center;
        justify-content: center;

        transition: top 0.5s ease 0s; 

        margin-top: 36px;
    }
    .wryta-header-container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        max-width: 1200px;
        width: 50%;

        margin: 12px 24px 24px 0px;
        padding: 8px 24px 4px 24px;

        background: rgba(255, 255, 255, 0.05);
        
        /* box-shadow: 0 2px 4px rgba(255, 255, 255,0.15); */
        opacity: 1;
        
        border-radius: 64px;

        backdrop-filter: blur(24px);
        -webkit-backdrop-filter: blur(24px);

        mix-blend-mode: difference; 


    }
    .wryta-header-container .logo {
        width: 110px;
        font-weight: bold;
        letter-spacing: 2px;
    }

    .wryta-header-container .logo img{
        width: 100%;
        height: 100%;
    }

    .wryta-header-container .nav {
        display: flex;
        gap: 32px;
    }
    .wryta-header-container a {
        text-decoration: none;
        color: var(--color-link);
        font-weight: 600;
        transition: color 0.2s;

        font-size: 13px;
    }
    .wryta-header-container a:hover {
        color: var(--color-primary-dark);
    }

    nav a.active {
        color: var(--light);
    }


    /* Responsive style for Header*/
    @media (max-width: 900px) {

        .wryta-header{
            border-bottom: 0px;

            height: 72px;
            top: 24px;
            margin-top: 0px;
            
        }

        .wryta-header-container {
            flex-direction: row;
            align-items: center;
            width: 100%;
            margin: 0px;
            
            padding: 12px 24px;

            border-radius: 24px;
        }
        .wryta-header-container .logo {
            margin-bottom: 0px;
            text-align: center;
        }
        .wryta-header-container .nav {
            flex-wrap: wrap;
            justify-content: center;
            gap: 16px;
            width: 100%;
            padding: 8px 0px;

            border-left:8px solid rgb(255, 234, 211);
            border-top: 2px solid rgb(255, 234, 211);
            border-right: 2px solid rgb(255, 234, 211);
            border-bottom: 2px solid rgb(255, 234, 211);
        }
        .wryta-header-container .nav a {
            flex: 1 1 auto;
            text-align: center;
            padding: 4px 0;
            box-sizing: border-box;
        }
    }

/*----------------------------------------------------------------------------*/

/*
    Nav Bar Open
*/

.sidecar{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;

    position: absolute;
    top: 0px;
    bottom: 0;
    right:0;
    left: 0;

    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(8px);

    height: 100vh;
    width: 100vw;

    display: none;
    visibility: hidden;
}

.sidecar .logo-container{
    display: flex;
    flex: 2;
}



.sidecar .nav-logo{
    height: 72px;
    margin-top: 16px;
}
.sidecar .nav-logo img{
    height: 100%;
    width: 100%;
    object-fit: contain;
}

.nav-bar{

    flex: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
    background: black;
    justify-content: center;
        
    padding: var(--desktop-margin-medium);
}

.nav-bar .close-icon{
    font-size: 36px;
}



.nav-bar ul{
    display: flex;
    flex-direction: column;

    list-style: none;
    gap: 16px;

    margin-top: 24px;
    
}

.nav-bar ul li{
    font-size: 20px;
    font-weight: 600;
    line-height: 130%;
    border-bottom: 2px solid rgba(255,255,255,0.1);
    padding: 0px 0px 16px 12px;

    color: #acacac;

    transition: font-size 0.1s ease-in;
}

.nav-bar ul li:hover{
    color: var(--color-body);
    cursor: pointer;

    font-size: 21px;

    
}




/*
    End Header 
*/

/*----------------------------------------------------------------------------*/


/*
    Start Hero 
*/


.hero{
    /* background-image:url("assets/images/wrytahero-background.webp");
    background-size: cover;
    background-repeat: no-repeat; */

    
    background-image: 
        linear-gradient(rgba(0, 255, 127, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 127, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    
    align-items: center;
    justify-content: center;

}

.hero-home{
    position: relative;
}



.hero-top {
    
    /* padding: 8rem 64px 4rem 64px; */
    padding: 64px 64px 128px 64px;
    text-align: center;

    display: flex;
    flex-direction: column;

    align-items: center;
    margin-top: 64px;
    position: relative;
}

.hero-top::after{
    content:'';
    position: absolute;
    height: 1000px;
    width: 1000px;
    border-radius: 500px;
    filter: blur(5px);
    z-index: -2;
    opacity: 0.05;
}

.hero-title {
    font-size: 80px;
    
    margin-bottom:0px;
    position: relative;

    display: flex;
    flex-direction: row;
    color: var(--color-text-dark);
    text-align: center;
    font-family: "Bebas Neue", sans-serif;
    letter-spacing: -0.05px;
    line-height: 110%;
    width: 70%;
}


    .hero-intro-text-parent-container{
        display: flex;
        flex-direction: column;
        overflow: hidden;
    }

    .hero-intro-text-parent-container div{
        top: 0;
        left: 0;
        font-size: 2rem;
        z-index: 1;
        position: absolute;

        margin-bottom: 1rem;
    }


    .hero-subtitle{
        font-size: 1.65rem;
        letter-spacing: -0.05px;
        font-weight: 400;
    }

.hero-desc {
    display: none;
    visibility:hidden;
}

.hero-cta-container{
    display: flex;
    flex-direction: row;
    gap: 12px;

    margin-top: 48px;
}


.hero-cta {
    color: #fff;

    
    position: relative;
    z-index: 20;
    
}

.hero-cta a{
    text-decoration: none;
    /* color: white; */
    color: var(--color-body);
    /* background: rgba(16, 16, 16,0.85); */
    background: var(--color-background-dark);
    /* border: 1px solid rgb(49, 49, 49);; */
    padding: 12px 20px;
    border-radius: 32px;
    font-weight: 600;
    font-size: var(--body-normal);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);

    border: 2px solid var(--color-primary-dark);
}

.hero-cta-two a{
    text-decoration: none;
    /* color: white; */
    color: var(--color-body);
    /* background: rgba(16, 16, 16,0.85); */
    background: #00497a;
    border: 2px solid #00497a;
    /* border: 1px solid rgb(49, 49, 49);; */
    padding: 12px 20px;
    font-weight: 600;
    font-size: var(--body-normal);

    border-radius: 32px;
}

.hero-cta-two a:hover{
    background: #083d45;
}

/* .hero-cta::after{
    content:'';
    position:absolute;
    inset: 0;
    background: linear-gradient(90deg, var(--color-primary),var(--color-secondary));
    z-index: -1;
    border-radius: 24px;
    background-size: 200%;
    filter: blur(24px);
    transform: translateY(50%) scale(0.96);
    display: inline;
} */

.hero-cta:hover a{
    background: var(--color-primary-dark);
    color: var(--color-background-dark);
    border: 2px solid var(--color-background-dark);
}


.rotated-span{
    /* background: #e5b803; */
    background: var(--color-accent);
    color: var(--color-background-dark);
    display: inline-block;
    padding: 2px 4px 0px 4px;
    border-radius: 2px;
    transform: rotate(-1deg);
    line-height: 100%;
    letter-spacing: -0.05px;
}





.hero-images-parent {
    position: relative;
    height: 80vh;
    overflow: visible;
    display: flex;
    align-items: center;
    justify-content: center;

    padding:24px 128px;
}

.hero-images-center {
    z-index: 5;
    border-radius: 24px;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: start;
    justify-content: center;
    overflow: hidden;

}

.hero-images-center img{
    height: 70%;
    width: 70%;
    object-fit: cover;

    border-radius: 24px;
    opacity: 1;
}

.hero-images-center video {
    height: 80%;
    width: 70%;
    object-fit: cover;
    border-radius: 1.5rem;
}

.hero-tagline-container{
    padding: 64px 128px 24px 128px;
}   

.hero-tagline-text{
    display: flex;
    flex-direction: column;
}

.hero-tagline-text{ 
    text-align: center; 
    font-size: 5rem; 
    letter-spacing: 0.25px;
    font-family: "Bebas Neue", sans-serif;

    font-weight: 600; 
    margin:0;
    color: #888888;
    width: fit-content;
    background-image:linear-gradient(
        90deg,
        var(--tagline-left) 0%,
        var(--tagline-left) 0%,
        var(--tagline-right) 0%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-images-float{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    
}

.hero-images-float div {
    position: absolute;

    background: #23232a;
    border-radius: 1rem;
    box-shadow: 0 4px 24px rgba(0,0,0,0.18);
    display: flex;
    align-items: center;
    justify-content: center;

    opacity: 1;
    overflow: hidden;
    transition: box-shadow 0.3s;

    
}
.hero-images-float img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 1rem;
}
/* Initial positions for floating elements */
.hero-image-float-1 { 
    width: 350px;
    height: 200px;
    opacity: 0.75;

}
.hero-image-float-2 { 
    width: 275px;
    height: 350px; 
    opacity: 0.75;

}

.hero-image-float-3 { 
    width: 150px;
    height: 200px;
    background-color: green;
    opacity: 0.75;

}


.cursor{
    color: #29ff00;
}

@media (max-width: 900px) {
    .hero-top {
        padding: 0rem 24px 4rem 24px;
        margin-top: 0px !important;
        height: 80vh;
        align-items: center;
        justify-content: center;
    }

    .hero-title { 
        font-size: 64px; 
        text-align: center;
        letter-spacing: -0.2px;
        opacity: 0.98;

        width: 100%;
    }

    .hero-desc{
        margin-bottom: var(--desktop-margin-medium);
        font-size: 0.9rem;
        line-height: 1.25rem;
        letter-spacing: -0.2px;
        margin-top: 12px;
        width: 100%;
        text-align: center;
        visibility: visible;
        display: inline-block;
        opacity: 0.75;
    }


    .hero-images-parent{
        padding:0px 16px; 
        height: 50vh;
    }
    .hero-images-center { width: 100vw; height: 400px; padding: 0px var(--mobile-window-spacing);}
    .hero-images-center img{
        height: 90%;
        width: 90%;
    }
    .hero-images-float { width: 80px; height: 60px; font-size: 0.9rem; }

    .about-section { padding: 2rem 1rem; }
    .hero-images-float { width: 120px; height: 120px; font-size: 1rem; }

    .hero-tagline-container{
        padding: 64px 24px 0px 24px;
    }

    .hero-tagline-text{
        font-size: 56px;
        display: inline-block;
        letter-spacing: -0.2px;
        
    }

    .hero-images-float div{
        display: none;
        visibility: hidden;
    }

    .hero-cta-container{
        margin-top: 12px;

        flex-direction: column;
        gap: 48px;
    }

    .hero-cta{
        margin-top: 0px;
    }

    
}



/* Marquee Content */


.marquee-parent{
    /* margin: -164px -128px 0px -128px; */
    margin: 64px 8px 0px 8px;
    backdrop-filter: blur(20px);
    overflow: hidden;

    display: flex;
    align-items: center;
    justify-content: center;
    width: 60%;
    align-self: center;
}
.marquee-row {
            display: flex;
            align-items: center;
            margin: 18px 0;
            white-space: nowrap;
            height: 24px;
            width: 90%;
            overflow: hidden;
            position: relative;
    }

    .marquee-content {
            display: flex;
            gap: 24px;
            animation: marquee 240s linear infinite;
            opacity: 0.5;
        }

    .marquee-text{
        font-size: 0.9rem;
        font-family: "Open Sans", sans-serif;
        color: var(--color-text-dark);
        letter-spacing: 0.5px;
        font-weight: 400;
        
    }

    @keyframes marquee {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }

.marquee-parent::after {
            content: '';
            position: absolute;
            right: 16px;
            z-index: 1;
            
            background: linear-gradient(90deg, #101010, #101010);
            height: 2.5rem;
            width: 2.5rem;
            filter: blur(8px);          
            opacity: 1;         
} 

.marquee-parent::before {
            content: '';
            position: absolute;
            left: 16px;
            z-index: 1;
            
            background: linear-gradient(90deg,#101010, #101010);
            height: 2.5rem;
            width: 2.5rem;
            border-radius: 32px;
            filter: blur(8px);          
            opacity: 1;
} 

@media (max-width: 900px){
    .marquee-parent{
    margin: 128px 8px 0px 8px;
    width: 100%;
    }

    .marquee-parent::after {
            content: '';
            position: absolute;
            right: 16px;
            z-index: 1;
    
            background: linear-gradient(90deg, #101010, #101010);
            height: 1rem;
            width: 1rem;
            filter: blur(8px);          
            opacity: 1;         
} 

    .marquee-parent::before {
                content: '';
                position: absolute;
                left: 16px;
                z-index: 1;
                background: linear-gradient(90deg,#101010, #101010);
                height: 1rem;
                width: 1rem;
                border-radius: 32px;
                filter: blur(8px);          
                opacity: 1;
    } 

    .marquee-text{
        color: var(--color-accent);
    }


}
 


    






    .hero-features-container{
        padding: var(--desktop-margin-medium) var(--desktop-window-spacing) var(--desktop-section-spacing) var(--desktop-window-spacing);

        display: flex;
        gap: 64px;

        flex-direction: row;
        align-items: center;
        justify-content: center;
        margin-top: 36px;
    }

    .hero-feature-card{
        max-height: 300px;

        aspect-ratio: 6/7;
        background:rgba(39, 35, 50, 0.2);
        
        
        display: flex;
        flex-direction: column;

        border-radius: 15px;
        border: 4px solid transparent;

    /* 3. Apply a solid background for the content area (padding-box) */
        background:
        linear-gradient(rgb(13, 12, 17), rgb(13, 12, 17)) padding-box,
        /* 4. Apply the gradient background for the border area (border-box) */
        linear-gradient(75deg, var(--color-accent), var(--color-secondary)) border-box;
        
        background-size: 200%;
        background-position: left;
        
        padding: 16px 8px;
        box-shadow: 2px 2px 12px rgba(82, 255, 66, 0.5);

        transition: background-position 1s ease-in;

    }

    .hero-feature-card:hover,
    .hero-feature-card:focus
    {
            
            box-shadow: 0px 0px 5px rgba(66, 255, 75, 0.5);
            background-position: right;
            
    }


    .hero-feature-card h2{
        font-size: 24px;
        font-family: 'Open Sans', sans-serif;
        font-weight: 700;
        letter-spacing: 0.1px;
        color: var(--color-body);
    }

    .hero-feature-card p{
        padding: 8px 0px;
        color: var(--color-body);
        opacity: 0.7;
    }

    .feature-card-uno{
       
    }

    .feature-card-dos{
        
    }

    .feature-card-tres{
        
    }

    .feature-span{
        color: var(--color-accent);
    }

    @media (max-width: 900px){
        .hero-features-container{
            padding: var(--mobile-window-spacing)  20px;

            display: flex;
            gap: 24px;

            flex-direction: column;
            align-items: center;
            justify-content: center;
    }

    .hero-feature-card{
        height: 200px;

        aspect-ratio: auto;
        
        box-shadow: 2px 2px 12px rgba(0,0,0,0.25);

        display: flex;
        flex-direction: column;
        justify-content: start;

        border-radius: 16px;
        padding: 16px 8px;

        

    }

    .hero-feature-card h2{
        font-size: 22px;
        font-family: 'Open Sans', sans-serif;
        font-weight: 700;
        letter-spacing: 0.1px;

    }

    .hero-feature-card p{
        padding: 0px;
    }
    .feature-card-uno{
            transform: rotate(0deg);
            
        }

        .feature-card-dos{
            transform: rotate(0deg);
            
        }

        .feature-card-tres{
            transform: rotate(0deg);
            
        }

    }



/*
    End Hero
*/

/*----------------------------------------------------------------------------*/

/*
    Start Our Services
*/


.services-parent-container{
        display: flex;
        flex-direction: column;
        align-items: start;
        justify-content: center;
        color: whitesmoke;
        height: 100vh;
        margin-top: var(--desktop-section-spacing);
        padding: 24px var(--desktop-window-spacing);
        /* background-color: var(--color-background-dark); */

         background-color: #03000c;
        
    }

    .section-title{
        font-size: 40px;
        text-align: start;
        margin: 0px;
        padding: 8px 0px;
        letter-spacing: 0.25px;
        color: rgb(210, 210, 210);

        font-family: "Bebas Neue", sans-serif;
    }

   

    .section-description{
        font-size: var(--body-small);
        text-align: start;
        width: 50%;
        color: grey;
        
    }
    

    .services-parent {
        display: flex;
        width: 100vw;
        max-width: 1200px;
        margin: 64px auto;
        height: 60vh;
        
        overflow: hidden;
        gap: 24px;
        
    }

    .services-child {
        flex: 1 1 0;
        min-width: 0;
        display: flex;
        flex-direction: column;
        align-items: start;
        justify-content: flex-start;
        /* transition: flex 0.5s cubic-bezier(.77,0,.18,1); */
        transition: flex 0.5s ease-in-out;
        cursor: pointer;
        padding: 36px 20px;

        overflow: hidden;
        
        border-radius: 16px;

        
    }

    .services-child h3{
        z-index: 3;
        color: #f0f8ff;
    }


    .services-child .title {
        font-size: 24px;
        font-weight: 600;
        margin-bottom: 8px;
        text-align: start;
        transition: font-size 0.4s;
        z-index: 2;
        color: whitesmoke;

        font-family: 'Montserrat', sans-serif;
        height: 10%;
    }

    .services-child .subheading {
        font-size: 18px;
        font-family: 'Open Sans', sans-serif;
        color: var(--color-accent);

        margin-bottom: 12px;
        text-align: start;
        opacity:0;
        letter-spacing: 0.25px;
        z-index: 2;

        
    }

    .services-child .extra {
        font-size: 16px;
        color: rgb(229, 229, 229);
        margin-top: 12px;
        text-align: start;
        pointer-events: none;
        z-index: 2;
        opacity: 0;
        width: 85%;

        
    }


    .services-child .service-content-container{
        display: flex;
        flex-direction: row;
    }



        .services-child:hover, .services-child:focus {
        flex: 2.2 1 0;
        background: black;
        z-index: 2;
        transition: flex 2s "ease-out";
    }

    .open-content{
        display: flex;
        visibility: hidden;
        opacity: 0;
        
        align-items: start;
        justify-content: space-around;
        margin-top: 24px;
        height: 100%;

        transition: opacity 2s ease 0s; 

    }


    .open-content .services-image-container{
        flex: 1;
        overflow: hidden;
        height: 200px;
        width: 200px;
        align-self: flex-end;
        justify-content: flex-end;
        border-radius: 16px;

        position: absolute;
        bottom: 0;
        right: 0;
        
    }

    .open-content img{
        width: 100%;
        height: 100%;

        object-fit: cover;
    }

    
    .services-parent:hover .services-child:hover .open-content{
    
        visibility: visible;
        opacity: 1;
        transition: opacity 2s ease 0.25s; 
        /* transform: translateX(0px); */        
    }


    .services-parent:hover .services-child:hover .open-content *{
        opacity: 1;

        transition-property: visibility, opacity;
        
    }


    /* It is somehow working */



    .services-parent:hover .services-child:not(:hover) {
        flex: 0.6 1 0;
        opacity: 0.9;
        transition: flex 2s "ease-out";
    }


    .child-one{
        background-image: url("assets/images/wryta-website-development.jpg");
        background-size: cover;
        background-repeat: no-repeat;

        position: relative;
    }

    .child-two{
        background-image: url("assets/images/wryta-business-essentials.jpg");
        background-size: cover;
        background-repeat: no-repeat;

        position: relative;
        
    }

    .child-three{
        background-image: url("assets/images/wryta-branding.jpg");
        background-size: cover;
        background-repeat: no-repeat;

        position: relative;
        
    }

    .child-four{
        background-image: url("assets/images/wryta-marketing.jpg");
        background-size: cover;
        background-repeat: no-repeat;
    
        position: relative;
    }
    
    .child-one:hover{
        background-color: #16224e;  
    }

    .child-two:hover{
        background-color: #4b0d3f;
    }

    .child-three:hover{
        background-color: #3c1975;
    }

    .child-four:hover{
        background-color: #12506d;
    }



    .services-desktop .section-title{
        margin-left: var(--desktop-window-spacing);
    }

    .services-desktop .section-description{
        margin-left: var(--desktop-window-spacing);
    }


    /* Mobile CSS */

    .services-mobile-parent-container{
            display: flex;
            flex-direction: column;
            background-color: var(--color-background-dark);
            padding: 24px;
            margin-top: var(--mobile-section-spacing);
    }

    .services-mobile-parent{
        display: flex;
        flex-direction: column;
        row-gap: 24px;
        margin-top: 36px;
        overflow: hidden;
    }

    .services-mobile-child{
        display: flex;
        flex-direction: column;
        padding: 24px 8px;
        border-radius: 16px;

        height: 360px;
        overflow: hidden;
    }
    .services-mobile-image-container{
        height: 100px;
        overflow: hidden;
        object-position: bottom;
    }

    .services-mobile-image-container img{
        height: 100%;
        width: 100%;
        object-fit: cover;
        object-position: bottom;
    }


    .child-one-mobile{
        background-image: url("assets/images/wryta-website-development.jpg");
        background-size: cover;
        background-repeat: no-repeat;
        object-position:bottom;

    }

    .child-two-mobile{
        background-image: url("assets/images/wryta-business-essentials.jpg");
        background-size: cover;
        background-repeat: no-repeat;
        object-position: center bottom;

        
        
    }

    .child-three-mobile{
        background-image: url("assets/images/wryta-marketing.jpg");
        background-size: cover;
        background-repeat: no-repeat;

              
    }

    .child-four-mobile{
        background-image: url("assets/images/wryta-branding.jpg");
        background-size: cover;
        background-repeat: no-repeat;
    
    }

    .services-mobile-child .title{
        font-size: 22px;
        padding: 8px 0;
        font-family: 'Open Sans', sans-serif;
        font-weight: 700;
        opacity: 0.98;
        color: var(--color-accent);
    }

    .services-mobile-child .subheading{
        font-size: 18px;
        padding: 16px 0px 4px 0px;

        font-family: 'Open Sans', sans-serif;
        opacity: 0.65;
        font-weight: 600;
    }

    .services-mobile-child .extra{
        font-size: 16px;
        padding: 8px 0 64px 0px;
        opacity: 0.9;
    }



    @media (max-width: 900px) {

       
        .services-parent-container{
            display: none;
            visibility: hidden;
            background: var(--color-background-dark);
            padding: 24px var(--mobile-window-spacing);
        }

        .section-description{
            width: 80%;
        }
    }

        

    @media (min-width: 901px){
        .services-mobile-parent-container{
            display: none;
            visibility: hidden;
        }
    }





        








/*
    End Our Services
*/

/*----------------------------------------------------------------------------*/

/* Services Updated */

.services-updated-parent-container{
        display: flex;
        flex-direction: column;
        align-items: start;
        justify-content: center;
        color: var(--color-body);
        height: 100vh;
        margin: 0px 0px;
        padding: 0px 128px;
        /* background: var(--color-background-dark); */
        background-color: #03000c;
}

.services-container{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;

    position: relative;

    width: 100%;
    height: 100%;

    background: var(--color-background-dark);
    margin: 0px;
    padding: 20px;
}

.service-parent{
    display: flex;
    align-items: center;
    justify-content: center;
    
}

.service-back{
    background: rebeccapurple;
    z-index: 10;
    position: absolute;
    

    height: 400px;
    width: 350px;
}

.service-front{
    background: red;
    z-index: 20;
    position: absolute;

    height: 400px;
    width: 350px;
    left: 10px;
}


/*-----------------------------------------------------------------------------*/




/*
    Start About Us
*/

#hero-about{
    background-color: #03000c;
}


.about-us-container {
    display: flex;
    height: 100vh;
    align-items: center;
    justify-content: center;
    padding: 0px var(--desktop-section-spacing);
    gap: 0px;
    max-width: 1200px;
    
    
    
}
.about-us-content {
    flex: 4;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;

     backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border-radius: 24px;
    padding: 24px;
}

.about-us-infinity-logo {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;

    height: 100%;
}

/* .about-us-content .title {
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: 0.25px;
    color: var(--color-accent);
    padding-bottom: var(--desktop-margin-small);
    font-family: "Bebas Neue", sans-serif;
} */

.about-text {
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding: 0px 24px 0px 0px;
    
}

.about-text-span{
    text-decoration: underline;
    text-decoration-style: wavy;

    text-underline-offset: 2px;
}

.infinity-svg {
    width: 320px;
    height: 320px;
    display: block;
}

.about-text{ 
    text-align: start; 
    font-size: 36px; 
    margin:0;
    color: rgba(3, 3, 3, 0.9);
    /* width: fit-content; */
    width: fit-content;
    background-image:linear-gradient(
        182deg,
        var(--about-left) 0%,
        var(--about-left) 0%,
        var(--about-right) 0%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
        background-clip: text;

        font-weight: 600;
        line-height: 150%;
        letter-spacing: 0.5px;
}




#infinity{
    position: absolute;
    bottom: 0;
    height: 120px;
    right: 0;
}

.cls-1 {
    fill: none;
    stroke: url(#linear-gradient);
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-miterlimit: 10;
    stroke-width: 85.86px;
}

.about-us-background-images{
    position: absolute;
    height: 100%;
    width: 100%;
}

.about-us-background-images .images{
    position: absolute;
    height: 250px;
    width: 200px;
    border-radius: 8px;
    opacity: 1;
    overflow: hidden; 
}

.about-us-background-images .images img{
    height: 100%;
    width: 100%;
    object-fit: cover;
    opacity: 0.5;
    /* filter: grayscale(70%); */

}

.image-one{
    right: 100px;
    top: -100px;
}

.image-two{
    left: 20px;
    top: 0px;
}

.image-three{
    right:400px;
    top: 200px
}

.image-four{
    left:400px;
    top: 500px
}

.image-five{
    right: 100px;
    top: 650px;
}

.image-six{
    left: 20px;
    top: 1000px;
}

.image-seven{
    right:100px;
    top: 1900px
}

.image-eight{
    right:400px;
    top: 1000px
}

.image-nine{
    right: 700px;
    top: 1300px;
}

.image-ten{
    left: 20px;
    top: 1700px;
}

   

@media (max-width: 900px) {
    .about-us-container {
        flex-direction: column;
        align-items: stretch;
        gap: 0px;
        padding: 24px 0px;
        height: 95vh;
    }

    .about-us-content{
        padding-top: 64px;

    }
    .about-us-infinity-logo {
        min-width: 0;
    }

    .about-text{ 
        font-size: 28px;
        line-height: 40px;
        letter-spacing: -0.2px;
        font-family: 'Open Sans', 'sans-serif';
    }

    .infinity-svg {
        width: 120px;
        height: 120px;
    }

    .about-us-background-images{
        display: none;
        visibility: hidden;
    }

    .about-us-background-images .images{
        display: none;
        visibility: hidden;
    }
}


/*
    End About Us
*/

/*----------------------------------------------------------------------------*/

/*
    Start How We Differ
*/

.how-we-differ{
    padding: 128px;

    /* background-image:url("assets/images/wrytaArtboard\ 4\ copy\ 2-100.jpg"); */
     background-color: #03000c;
    background-size: cover;
    background-repeat: no-repeat;
    }

    .how-we-differ-container{
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        align-items: center;
        gap: 32px;
        margin-top: var(--desktop-heading-spacing);
        
    }

    .how-we-differ-card{
        display: flex;
        flex-direction: column;
        align-items: start;
        padding: 24px 16px 16px 16px;

        /* color: var(--color-background-dark); */
        color: var(--color-body);
        border-radius: 24px;
        
        overflow: hidden;
        min-height: 200px;

        background-color: rgba(0, 145, 239,0.1);
        border: 2px solid #0091ef;

        backdrop-filter: blur(4px);

        box-shadow: 2px 2px 8px rgba(0, 145, 239,0.5);

        
    }


    .how-we-differ-card:hover{
        background-position: 10% 0%;
        cursor: pointer;
    }

    .how-we-differ-card .title-content{
        display: flex;
        width: 100%;
        flex-direction: row;
        justify-content: space-between;
        padding: 0px;
        margin: 0px;

    }

    .how-we-differ-card .title-content h1{
        font-family: 'Open Sans', sans-serif;
        letter-spacing: 0.25px;
        font-size: 24px;

        color: var(--color-accent);
    }

    .how-we-differ-card .title-content div{
        height: 24px;
        width: 24px;

        padding: 6px;
        border: 1px solid white;
        border-radius: 50%;

        color: var(--color-body);
        overflow: hidden;

        align-self: flex-end;
        
    }

    .how-we-differ-card .title-content div img{
        width: 100%;
        height: 100%;
        object-fit: cover;
    }


    .how-we-differ-card .images{
        flex: 1;
        position: relative;
        align-items: center;
        justify-content: center;
    }



    .how-we-differ-card p{
        width: 90%;
        padding: 8px 0px;
        font-size: var(--body-normal);
        line-height: 130%;
    }

    .card-one{
        /* background-image: url("./assets/images/contact-bg-trial.jpg"); */
        background-repeat: no-repeat;
        background-size: cover;


        background-size: 110%;
        background-position: 50% 0%;
        transition: background-position 1s ease-in-out;
    }
        .card-two{
        /* background-image: url("./assets/images/contact-bg-trial.jpg"); */
        background-repeat: no-repeat;
        background-size: cover;
        background-size: 110%;
        background-position: 0% 100%;
        transition: background-position 1s ease-in-out;
    }
        .card-three{
        /* background-image: url("./assets/images/contact-bg-trial.jpg"); */
        background-repeat: no-repeat;
        background-size: cover;

        background-size: 110%;
        background-position: 0% 50%;
        transition: background-position 1s ease-in-out;
    }
        .card-four{
        /* background-image: url("./assets/images/contact-bg-trial.jpg"); */
        background-repeat: no-repeat;
        background-size: cover;

        background-size: 110%;
        background-position: 50% 50%;
        transition: background-position 1s ease-in-out;
    }

@media (max-width: 900px){
    .how-we-differ{
        padding: 64px 24px;
    }   

    .how-we-differ-card{
        padding: 24px 8px 8px 8px;
    }

    .how-we-differ-container{
        grid-template-columns: repeat(1, 1fr);
    }

    .how-we-differ-card p{
        margin: 8px 0px 0px 0px;
        font-size: 16px;
    }

    .how-we-differ-card .title-content h1{
        font-size: 22px;
    }
}











/*
    End How We Differ
*/

/*----------------------------------------------------------------------------*/

/*
    Start Our Process
*/

        .process-container{
            display: flex;
            flex-direction: column;

            background-image: url("./assets/images/process-background-updated.jpg");
            
            background-repeat: no-repeat;
            background-size: cover;
            height: 100vh;

            position: relative;
        }

        .process-container::before{
            content: '';
            inset: 0;
            position: absolute;
            background: rgba(0, 145, 239,0.25);
        }


    .process-container .section-title{
            /* background: #022663;  */
            background: var(--color-background-dark);
            color: white;
            padding: 12px 64px 12px 64px;
            border-bottom: 2px solid rgb(48, 80, 102);
            justify-self: end;

            font-size: 40px !important;
        }

    .process-container .section-title h1{
        font-size: 40px !important;

        transform: none !important;
        zoom: normal !important;
    }


        .process-parent-container{
            overflow: hidden;
            width: 200vw;
            display: flex;
            flex-direction: row;
            align-items: center;
            justify-content: center;
            height: 100%;
            /* background-color: rgba(0, 145, 239,0.05); */
            background: transparent;
            /* backdrop-filter: blur(2px); */
        }

        .process-section{
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 24px 0px;
            height:100%;
            background: transparent;
        }
        
    

        .process-section-image-container{
            
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            padding: 0px 16px;
            height: 60%;
            
        }

        

        .process-section-image-container img{
            height: 360px;
            width: 360px;
            border-radius: 8px;
            object-fit: cover;

            filter: grayscale(0.25);
        }

        .process-section-content-container{
            display: flex;
            flex-direction: column;
            /* background-color: rgba(8, 45, 69, 0.5); */
            color: var(--color-text-dark);
            height: 40%;
            gap: 4px;
            padding: 8px 16px;

            border-top: 2px solid var(--color-accent);

            border-image: linear-gradient(to right, var(--color-accent) 30%, transparent 30%) 70% 1;

            backdrop-filter: blur(12px);
        }

        .process-section-content-container h2{
            font-size: 24px;
            font-weight: 700;
            letter-spacing: 0.1px;
            padding: 0px;
            text-align: start;
            margin: 0px;
            /* color: rgb(255, 208, 0); */
            color: var(--tagline-left-a);
            font-family: 'Open Sans', sans-serif;
        }  
        
         .process-section-content-container p{
            font-size: var(--body-normal);
            font-weight: 400;
            letter-spacing: 0.1px;
            line-height: 130%;
            padding: 0px;
            width: 90%;
        }   

        .title-number{
            padding: 4px;
            color: rgb(236, 236, 236);
            background-color: black;
            border-radius: 24px;
            font-size: 20px;
            font-weight: 700;
            margin: 0px 4px;
        }


        .process-section-1 { 
        /* background: #022663;  */
        background-color: rgba(8, 45, 69, 0.25);
        /* backdrop-filter: blur(4px); */
        border-right: 2px solid rgb(48, 80, 102);

        
        }
        .process-section-2 { 
            /* background: #250054;  */
            background-color: rgba(8, 45, 69, 0.25);
            /* backdrop-filter: blur(4px); */
        border-right: 2px solid rgb(48, 80, 102);
        }
        .process-section-3 { 
            background-color: rgba(8, 45, 69, 0.25);
            /* backdrop-filter: blur(4px); */
            border-right: 2px solid rgb(48, 80, 102);
        }
        .process-section-4 { 
            background-color: rgba(8, 45, 69, 0.25);
            /* backdrop-filter: blur(4px); */
            border-right: 2px solid rgb(48, 80, 102);
        }

        .process-section-5 { 
            background-color: rgba(8, 45, 69, 0.25);
            /* backdrop-filter: blur(4px); */
        }


        .process-section-labels{
            display: flex;
            flex-direction: row;
            align-items: center;
            justify-content: flex-start;
            gap: 8px;
            margin-top: 24px;
        }

        .process-section-labels p{
            font-size: var(--body-extra-small);
            font-weight: 600;
            padding: 4px 8px;
            background: rgba(3, 0, 12,0.5);
            color: var(--color-body-dark);
            text-align: center;
            border-radius: 16px;

            flex: 0 1 auto;

            
        }


        @media (max-width:900px) {
        .process-section-title{
            /* font-size: 24px; */
            background: #022663;
            color: whitesmoke;
            padding: 12px 24px;

            border-bottom: 2px solid white;
        }

        .process-parent-container{
            overflow: hidden;
            width: 600vw;
            display: flex;
            flex-direction: row;
            align-items: center;
            justify-content: center;
            height: 100%;
            
        }

        .process-container .section-title{

            padding: 24px var(--mobile-window-spacing);
          
        }

        .process-section{
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 24px 8px;
            height:100%;
            width: 100vw;
        }

        .process-section-image-container{
            height: 60%;
        }
        .process-section-content-container{
            height: 40%;
        }

        .process-section-content-container p{
            font-size: 16px;
        }

        .process-section-labels{
            flex-wrap: wrap;
        }

        .process-section-labels p{
            font-weight: 500;
            font-size: 12px;
        }

        }



/*
    End Our Process
*/

/*----------------------------------------------------------------------------*/

/*
    Start Blog
*/

    .blog-section-home {
        padding: var(--desktop-section-spacing);
        background: var(--color-background-dark);

    }
    .blog-section-home-title {
        font-size: 40px;
        font-weight: 600;
        margin-bottom: var(--desktop-heading-spacing);
        color: var(--color-text-dark);
        letter-spacing: 0.25px;
        font-family: "Bebas Neue", sans-serif;
        
    }
    .blog-grid {
        display: grid;
        grid-template-columns: repeat(4,1fr);
        /* grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); */
        gap: 16px;
        margin: 16px 0px;

    }
    .blog-card {
        position: relative;
        overflow: hidden;
        border-radius: 18px;
        min-height: 340px;
        box-shadow: 0 4px 24px rgba(0,0,0,0.07);
        cursor: pointer;
        background: #fff;
        transition: box-shadow 0.2s;

        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: space-around;

    }
    .blog-card:hover {
        box-shadow: 0 8px 32px rgba(0,0,0,0.13);
    }
    .blog-image {
        position: absolute;
        width: 100%;
        height: 100%;
    }

    .blog-image img{
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: 0;
    }

    .blog-image::before{
        content: ''; /* Required for pseudo-elements */
        position: absolute; /* Positions the gradient relative to the wrapper */
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, rgba(21, 183, 86,0.9),rgba(0, 110, 184, 0.9));
        z-index: 1; /* Places the gradient above the image */
        backdrop-filter: blur(1px);
    }




    .blog-content{
        display: flex;
        flex-direction: column;
        padding: 16px 16px;
        height: 100%;
        z-index: 10;
    }

    .blog-title {
        color: #fff;
        font-size: 24px;
        font-weight: 600;
        padding: 0px;
        font-family: 'Open Sans', sans-serif;
        
    }
    .blog-description {
        color: #fff;
        font-size: 18px;
        line-height: 1.5;
        padding: 8px 0px;

    }

    .blog-arrow {
        width: 48px;
        height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        border: 2px solid #fff;
        color: #fff;
        font-size: 24px;
        transform: scale(0.85);
        box-shadow: 0 2px 8px rgba(0,0,0,0.10);
        pointer-events: none;

        
    }

    .blog-arrow-container{
            z-index: 100;
            padding: 16px 16px;
    }

    .grid-two{
        margin-top: 24px;
    }

    @media (max-width: 600px) {

        .blog-section-home {
        padding: 24px;
        
        }

        .blog-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 16px;
        }


        .blog-section-home-title {
            font-size: 24px;
        }
        .blog-card {
            min-height: 220px;
        }
        .blog-title, .blog-description {
            left: 12px;
            right: 60px;
            top: 12px;
            bottom: 12px;
            padding: 8px 12px;
        }
        .blog-arrow {
            width: 38px;
            height: 38px;
            font-size: 20px;
            bottom: 12px;
            right: 12px;
        }
    }

/*
    End Blog
*/

/*----------------------------------------------------------------------------*/

/*
    Start FAQs

*/

    .faq-parent-container{
        display: flex;
        background-color: #03000c;
    }   

    .faq-parent{
        margin: var(--desktop-section-spacing);
        display: flex;
        border-radius: 24px;
        
        justify-content: space-between;
        
        padding: 0px 24px;
        background-color: var(--color-background-dark);
    }



    .faq-parent .faq-title-container{
        width: 30%;
        flex-shrink: 0;

        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .faq-parent .faq-question-container{
        width: 60%;

        display: flex;
        flex-direction: column;

        gap: 36px;

        margin:24px 0px;

        align-items: start;
        justify-content: center;
        
    }

        .faq-title{
        display: flex;
        flex-direction: column;
        align-items: flex-start;

        height: 350px;   

        background: #00497a;
        padding: 24px 16px;

        border-radius: 0px 0px 12px 12px;

    }

    .faq-title h2{
        font-size: 64px;
        color: var(--color-body);
        letter-spacing: 0.1px;
    }

    .faq-title>div{
        padding: 4px 8px;
        background: rgba(3, 0, 12,0.5);
        color: var(--color-body);

        font-size: var(--body-extra-small);
        border-radius: 16px;
    }

    .faq-item{
        display: flex;
        gap: 15px; 
    }
    .faq-item .faq-icon{
        
        color: var(--color-accent);
        margin-top: 20px;
    }
    


    .faq-item .faq-content{
        flex: 1;
        

        display: flex;
        flex-direction: column;

        gap: 0px;
    }

    .faq-heading{
        font-family: 'Open Sans', sans-serif;
        font-size: 18px;
        font-weight: 600;


        color: var(--color-primary);
    }

    .faq-answer{
        font-size: var(--body-normal);
        letter-spacing: 0.1px;
        line-height: 130%;
        opacity: 0.9;
    }

    @media (max-width: 900px) {

        .faq-parent{
            margin: var(--mobile-window-spacing);
            flex-direction: column;

            padding: 0px 8px;
            overflow: hidden;
        }

         .faq-parent .faq-title-container{
            width: 100%;
            flex-shrink: 0;

         }

         .faq-item {
            gap: 4px;
         }

         .faq-item .faq-content{
            gap: 12px;
         }

         .faq-title-container{
            width: 100%;


         }

         .faq-item .faq-icon{
            margin-top: 2px;
         }

        .faq-title{
            height: 200px;
            padding: 8px;
            
            align-items: start;
            justify-content: center;

            gap: 24px;

        }

        .faq-title h2{
            font-size: 40px;
        }


        .faq-parent .faq-question-container{
            width: 100%;
        }
    }




/*
    End FAQs
*/

/*----------------------------------------------------------------------------*/


/*
    Start Case Study
*/

    .case-studies-container{
        height: 100vh;
        /* background: #022663; */
        /*background-image:url("assets/images/wrytaArtboard\ 4\ copy\ 2-100.jpg");*/
        background-size: cover;
        background-repeat: no-repeat;

        position: relative;
        align-items: center;
        justify-content: center;

        padding: var(--desktop-window-spacing);
    }

    .case-studies-container .section-title{
        
        text-align: center;
        align-items: center;

        
        padding-top: var(--desktop-margin-large);
    }

    .case-study-item{
        background: rgb(16, 16, 16, 0.5);
        width: 80vw;
        height: 50vh;

        position: absolute;

        left: 50%;
        bottom: -100%;
        transform: translateX(-50%) translateY(-100%);
        

        display: flex;
        flex-direction: row;
        align-items: center;

        justify-content: flex-start;

        padding: 24px;

        border-radius: 24px;

         backdrop-filter: blur(24px);
        -webkit-backdrop-filter: blur(24px);
        
    }

    .case-study-left{
        flex: 1 1;
        height: 100%;

        display: flex;
        flex-direction: column;
        align-items: start;

        justify-content:  space-around;

        flex-grow: 1;

        padding: 24px;
    }



    .case-study-right{
        flex: 1 1;
    }

    .case-study-left .company-info{
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        justify-content: start;

        

        width: 100%;
        
        gap: 12px;
        
    }

   


    .company-label{
        height: 64px;

        align-items: start;
        justify-content: start;
        overflow: hidden;
        
    }

    .company-label img{
        width: 100%;
        height: 100%;

        object-fit: contain;
    }

    .case-study-left .services{
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;

        gap: 12px;
    }

    .company-credentials{
        display: flex;
        flex-direction: column;
        align-items: start;

        gap: 12px;
    }

    .services .service-label{
        padding: 4px 8px;
        background:  var(--color-secondary);

        border-radius: 12px;
        font-size: var(--body-extra-small);

        font-weight: 500;
        color: var(--color-background-dark);
    }

    .company-name{
        font-size: 24px;
        font-family: 'Open Sans', sans-serif;
        color: var(--color-primary);
    }

    .company-details{
        font-size: var(--body-normal);
    }

    .case-study-left .testimonial{
        background: #03000c;
        border-radius: 16px;
        padding: 12px 8px;
    }

    .case-study-right .project-images{
        height: 50%;
        overflow: hidden;
        border-radius: 8px;
        opacity: 0.7;
    }

    .case-study-right .project-images img{
        height: 100%; 
        width:100%; 
        object-fit:cover;
    }

    .case-studies-container-updated{
        height: 100vh;
        /* background: #022663; */
        /*background-image:url("assets/images/wrytaArtboard\ 4\ copy\ 2-100.jpg");*/
        background-size: cover;
        background-repeat: no-repeat;

        display: flex;
        flex-direction: column;
        gap: 36px;

        align-items: center;
        justify-content: center;

        padding: var(--desktop-window-spacing);
    }


    .case-studies-children-container-updated{
        display: flex;
        flex-direction: row;
        align-items: flex-start;

        padding: var(--desktop-window-spacing);

        gap: 24px;        

        /* width: 100%; */
        /* max-width: 100vw;         */
        box-sizing: border-box; 

        overflow-x: scroll;
        flex-wrap: nowrap;


    }

    .case-study-item-updated{
        display: flex;
        flex-direction: column;

        flex: 0 0 auto;

        align-items: center;
        justify-content: center;
        gap: 12px;

        overflow: hidden;

        width: 600px;
        height: 70vh;

        background: rgb(16, 16, 16, 0.85);

        padding: 0px 12px;

        border-radius: 24px;

        flex: 0 0 auto;
    }

    .case-study-item-updated .project-images{
        width: 100%;
    }

    .case-study-item-updated .project-images img{
        height: 100%;
        width: 100%;

        object-fit: contain;
    }

    #move-forward{
        z-index: 200;
    }

    #move-forward:hover{
        cursor: pointer;
    }

    #move-backward{
        z-index: 200;
    }

    #move-backward:hover{
        cursor: pointer;
    }

    @media (max-width:900px) {

        .case-studies-container{
            display: flex;
            flex-direction: column;
            overflow: hidden;

            background: green;
        }

        .case-study-item{
            flex-direction: column;
            height: 70vh;
            gap: 20px;
            align-items: center;
            justify-content: start;

            padding: 8px;
            position: relative;

            transform: translateX(0%) translateY(0%);
        }

        .case-studies-children-container{
            display: flex;
            flex-direction: row;
            align-items: center;
            justify-content: center;
            overflow: hidden;

            background: blueviolet;
        }

        .case-study-left, .case-study-right{
            padding: 8px;
        }


        .services .service-label{
            font-size: 13px;
        }

        .case-study-right .project-images{
            height: 100%;
        }

        .case-study-right .project-images img{
            object-fit:contain;
        }




    }




/*
    End Case Study
*/

/*----------------------------------------------------------------------------*/



/*
    Start Contact Us
*/

.contact-section{
    height: 80vh;
    padding: 0px 128px;
    color: black;
    
}

.contact-container{
    background: linear-gradient(45deg, rgba(21, 183, 86,1),rgba(0, 110, 184, 1));
    background-size: cover;
    background-clip: content-box;
    border-radius: 0px;
    overflow: hidden;

    display: flex;
    flex-direction: column;
    justify-content: space-around;
    
}



.contact-values{ 
    display: flex;
    flex-direction: row;
    gap: 24px;
    justify-content: center;
    align-items: center;
}

.home .contact-values{
    padding-bottom: 64px;
}

.contact-values div{
    font-size: 64px;
    white-space: nowrap;
    font-weight: 500;
    color: rgb(202, 202, 202);
    font-family: "Bebas Neue", sans-serif;
    text-align: center;
    align-items: center;
    justify-content: center;
}



.contact-cta{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 24px 0px;
    border-top: 2px solid rgb(202, 202, 202);

}

.contact-content-container{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1;
    background: linear-gradient(45deg, rgba(21, 183, 86,1),rgba(0, 110, 184, 1));
    color: whitesmoke;
    
}

.contact-content-container h1{
    font-size: 40px;
    width: 70%;
    margin-bottom: 16px;
}

.contact-content-container > div{
    width: 70%;
    margin-top: 16px;
}

.contact-element{
    margin: 16px 0px;
}

.contact-element h2{
    font-size: 24px;
    letter-spacing: 0.15px;
     color: #ffe8e8;
}

.contact-element p{
    font-size: 18px;
}

.contact-element a{
    text-decoration: none;
    color: #ffe8e8;
    cursor: pointer;
}


.form-container{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    

    flex: 1;
}



.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 textarea
{
    background-color: #fff;
    color: #082438;
    width: 100%;

    margin-bottom: 8px;
    font-size: 18px;
    padding: 8px;
    border-radius: 4px;
    border: none;
}

.wpcf7 label{
    font-size: 16px;
    margin-bottom: 4px;
}


.wpcf7 input[type=submit]:hover{
    background: var(--color-accent);
    cursor: pointer;
    color: #03000c;
}

.wpcf7-form label{
    color: #dcdcdc;
}

.wpcf7-not-valid{
    color: #ffe8e8;
}


@media (max-width:900px) {

    .contact-section{
        padding: 0px 24px;
        height: 120vh;
    }

    .contact-container{
        padding-bottom: 0px;
        margin-top: 8px;
    }

    .content{
        padding: 24px 16px;
    }

    .contact-page-right .contact-title{
        color: var(--color-accent);
    }

    .contact-cta{
        flex-direction: column;
    }

    .contact-values div{
        font-size: 64px;
        align-items: center;
        justify-content: center;
    }

    .dot-man{
        align-items: center;
        justify-content: center;
    }

    .contact-content-container{
        width: 100%;
        align-items: center;
        justify-content: center;
        padding: 16px;
    }

    .contact-content-container h1{
        width: 90%;
        text-align: center;
    }

    .contact-content-container > div{
        width: 90%;
        text-align: center;
    }

    .form-container{
        margin: 16px 0px;
        align-items: center;
        justify-content: center;
        padding: 16px;
    }

    .wpcf7 input[type="text"],
    .wpcf7 input[type="email"],
    .wpcf7 textarea{
        width: 95%;
    }

    .home .contact-values{
    padding-bottom: 0px;
}
}




/*
    End Contact Us
*/

/*----------------------------------------------------------------------------*/





/* Foooter Elemets */


.footer-container{
    display: flex; 
    flex-direction: column;
    justify-content: center; 
    align-items: center; 
    padding: 12px 128px 32px 128px;
    background: var(--color-background-dark);

   
    
}

.footer-container .footer-logo{
    flex: 1;
    align-items: center;
    justify-content: center;
}

.footer-container .footer-logo img{
    max-width: 150px;
}

.footer-container .footer-slogan{
    flex: 2; 
    text-align: center;
}

.footer-info h2{
    margin-bottom: 8px;
    font-size: 24px;
    letter-spacing: 0.15px;
    color: var(--color-primary);
}

.footer-info p{
    padding: 2px 0px;
}

.footer-container .footer-slogan{
    flex: 1; 
    text-align: right;
}




@media (max-width:900px) {
    .footer-container{
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .footer-info{
        display: none;
        visibility: hidden;
    }
}





/* Contact Page CSS*/


.contact-section-content-container{
    display: flex;
    flex-direction: row;

    padding: 0px var(--desktop-section-spacing);
    background: var(--color-background-dark);
    /* filter: drop-shadow(0px -1px 12px var(--color-accent)); */

    /* background-image: url("assets/images/Artboard\ 4.jpg"); */
    /* background-size: cover;
    background-repeat: no-repeat; */

    align-items: center;
    justify-content: center;

    height: 100%;
}


.contact-page-container-parent{
    height: 80vh;
}

.contact-page-content-container{
    display: flex;
    flex-direction: row;

    padding: 0px var(--desktop-section-spacing);
    background: var(--color-background-dark);
    /* filter: drop-shadow(0px -1px 12px var(--color-accent)); */

    /* background-image: url("assets/images/Artboard\ 4.jpg"); */
    /* background-size: cover;
    background-repeat: no-repeat; */

    align-items: center;
    justify-content: center;

    height: 100%;
    
}

.contact-section-container-parent{
    height: 70vh;
}

.contact-page-left{
    flex: 2;

    gap: 24px;
}

.contact-page-right{
    flex: 3;

    display: flex;
    flex-direction: column;
    align-items: end;
}

.contact-page-left h1{
        font-size: 64px;
        font-weight: 500;
}

.contact-page-right table{
    border-collapse: collapse;
    width: 90%;
    vertical-align: top;
}

.contact-page-right table tr{
    
    vertical-align: top;
}

.contact-page-right table td{
    padding: 16px 8px;
    vertical-align: top;
    border-top: 1px solid white;
    border-bottom: 1px solid white;

    font-size: var(--body-normal);
}

.contact-page-right .left-data{
    text-align: start;
}
.contact-page-right .right-data{
    text-align: end;
}

.contact-page-right a{
    color: var(--color-body-dark);
    text-decoration: none;
}

.contact-page-right a:hover{
    cursor: pointer;
    color: var(--color-primary-dark);
}

.contact-page-right .table-title{
    color: var(--color-accent);
}

.contact-page-right a:hover{
    cursor: pointer;
    color: var(--color-primary);
}

.contact-page-left .footer-logo{
    margin-bottom: 16px;
}

.contact-page-left .footer-logo img{
    max-width: 150px;
}


.contact-page-right-desktop{
    display: table;
    visibility: visible;
}

.contact-page-right-mobile{
    display: none;
    visibility:hidden;
}

  .contact-section-content-container .hero-cta{
        margin-top: 0px;
    }

    .contact-section-content-container .hero-cta a{
        margin-top: 16px;
    }

.contact-page-content-container .hero-cta{
    margin-top: 24px;
}

.contact-page-right-desktop{
    z-index: 100;
}

.contact-page-right-desktop .right-data a:hover{
    cursor: pointer;
    color: var(--color-primary-dark);
}


@media (max-width:900px){

    .contact-page-parent-class{
        
        padding-top: 0px;
        height: 90vh;
    }

    .contact-section-container-parent{
        margin-top: var(--mobile-section-spacing);
    }

    .contact-page-content-container{
        display: flex;
        flex-direction: column;

        padding: 24px var(--mobile-window-spacing);
    }

    .contact-section-content-container{
        display: flex;
        flex-direction: column;

        padding: var(--mobile-section-spacing) var(--mobile-window-spacing);
        height: 100%;

        justify-content: space-between;

        
        gap: 36px;
    }

    .contact-section-container-parent{
        height: 80vh;
    }


  

.contact-page-left{
    flex: 1;

    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 20px;
    align-items: start;
    justify-content: center;
}

.contact-page-right{
    flex: 1;

    display: flex;
    flex-direction: row;
    align-items: start;

    padding: 0px;
}

.contact-page-right table{
    border-collapse: collapse;
    width: 100%;
    vertical-align: top;
    margin-top: 24px;
}

    .contact-page-right table td{
        border: 0px;
    }

.contact-page-left h1{
        font-size: 64px;
}

.contact-page-right-desktop{
    display: none;
    visibility:hidden;
}

.contact-page-right-mobile{
    display: table;
    visibility: visible;
    width: 100%;
}

.contact-page-right a{
    text-decoration: underline;
}

    

}



vault 8 com
1235789



