.site-inner>.wrap {
    max-width: 100%;
}

#hero {
    position: relative;
    background: var(--style-sec);
    padding: 250px 0;
}

/* Images as Background Images */

.octane-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.octane-background img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.octane-content {
    position: relative;
    height: 100%;
}

.octane-position {
    position: relative;
}

#hero .octane-background {
    background: var(--style-main);
}

#hero .octane-background img {
    mix-blend-mode: multiply;
}

.hero-title {
    text-align: center;
    color: var(--white);
    font-size: 4rem;
    font-weight: 500;
    text-wrap: balance;
    text-shadow: 0px 3px 8px rgba(0, 0, 0, 0.24);
    text-transform: capitalize;
    line-height: 1.1;
}


.ootwc-title {
    font-size: 3.3rem;
    color: var(--style-main);
    font-weight: 600;
    line-height: 1;
	text-wrap: balance;
    text-align: center;
}

.pad {
    padding: 100px 0px;
}

/* profiles */

#profiles {
    background: rgb(255,255,255);
    background: linear-gradient(0deg, rgba(255,255,255,1) 50%, rgba(245,241,212,1) 50%);
}

.profiles {
    display: flex;
    gap: 20px;
    justify-content: center;
    text-align: center;
    line-height: 1;

     perspective: 2000px;
  transform-style: preserve-3d;
}

.profile-title {
    padding: 20px 0px;
    padding-bottom: 0px;
}

/* gallery */

#gallery {
    background: rgb(255,255,255);
    background: linear-gradient(180deg, rgba(255,255,255,1) 50%, rgba(245,241,212,1) 50%);
}

.gallery {
    display: flex;
    overflow: visible;
    padding: 0px 10px;
    justify-content: center;
    gap: 10px;
}

.gallery img {
    border: 0px!important;
    padding: 0px;
    box-shadow: var(--shadow);
}

.gallery img:hover {
    transform: translatey(-20px);
}

/* text area */

.text-area ul {
    padding-left: 30px;
    margin-bottom: 20px;
}

.text-area li {
    list-style-type: disc;
}

.text-area h3 {
    font-weight: bold;
    color: var(--style-main);
}

.text-area strong {
    color: var(--style-main);
}

/* upgrades */

.upgrades-image {
    position: relative;
    margin-top: 50px;
}

.upgrades-image::before {
	margin: 10px;
    content: "";
    height: 100px;
    width: auto;
    display: block;
    aspect-ratio: 1 / 1;
    position: absolute;
    top: -10px;
    left: -10px;
    background: transparent;
    border-left: 10px solid var(--style-main);
    border-top: 10px solid var(--style-main);
}

.upgrades-image::after {
    content: "";
    height: 100px;
    width: auto;
    display: block;
    aspect-ratio: 1 / 1;
    position: absolute;
    bottom: -10px;
    right: -10px;
    background: transparent;
    border-bottom: 10px solid var(--style-main);
    border-right: 10px solid var(--style-main);
}


/* solutions */

#solutions ul {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

#solutions li {
    font-size: 1.4rem;
    width: 47%;
    flex-grow: 1;
    color: var(--style-main);
}

#solutions li::before {
    content: "\f0a9";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    margin-right: 10px;
}

#solutions p {
    font-size: 1.4rem;
    color: var(--black)
}

.sol-link {
    background: var(--style-main);
    color: var(--white);
    font-size: 1.7rem;
    padding: 5px 20px;
    border-radius: var(--radius);
    display: block;
    width: fit-content;
    margin-inline: auto;
    margin-top: 30px;
    border: 5px solid var(--style-main);
}

.sol-link:hover {
    background: transparent;
    color: var(--style-main);
}



/* breadcrumbs */

.sub-header {
    display:none;
}

.breadcrumbs {
    background: var(--style-sec);
    padding: 5px 0;
}

.breadcrumbs a {
    font-weight: bold;
    color: var(--style-main);
}

.breadcrumbs p {
    color: var(--style-main);
}









@media(max-width: 1920px) {
    #hero {
        padding: 150px 0px;
    }

    .hero-title {
        font-size: 3.3rem;
    }
}

@media(max-width: 1250px) {
    .ootwc-title {
        font-size: 2.5rem;
    }
}

@media(max-width: 1024px) {
    #hero {
        padding: 120px 0px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .ootwc-title {
        font-size: 1.9rem;
    }

     .pad {
        padding: 70px 0px;
    }

    #solutions li {
        font-size: 1rem;
    }
    
    #solutions p {
        font-size: 1rem;
    }

    .sol-link {
        font-size: 1.2rem;
    }
    
}


@media(max-width: 768px) {
    #hero {
        padding: 70px 0px;
    }

    .hero-title {
        font-size: 1.7rem;
    }

    .pad {
        padding: 40px 0px;
    }

    /* text area */

    .text-area p {
        font-size: .9rem;
    }

    .text-area li {
        text-align: left;
    }

    /* upgrades */

    .upgrades-image::before {
    	margin: 0px;
        height: 50px;
        width: auto;
        top: -7px;
        left: -7px;
        border-left: 7px solid var(--style-main);
        border-top:7px solid var(--style-main);
    }
    
    .upgrades-image::after {
        height: 50px;
        bottom: -7px;
        right: -7px;
        border-bottom: 7px solid var(--style-main);
        border-right: 7px solid var(--style-main);
    }

    #solutions li {
        text-align: left;
        font-size: .9rem;
    }

}

@media(max-width: 550px) {
    .profiles {
        flex-wrap: wrap;
    }

    .profile {
        width: 40%;
        flex-grow: 1;
    }
}