/*
Theme Name: Rodan Energy Solutions
Author: pulsion
Description: Custom theme developed for Rodan Energy Solutions
Version: 1.0
*/

pre {
    font-family: Menlo,Monaco,Consolas,"Courier New",monospace;
    background-color: #1D1F21;
    color: #F0C674 !important;
    padding: 30px;
    margin: 15px;
    border-radius: 8px;
    word-break: break-all;
    word-wrap: break-word;
    overflow: auto;
    position: relative;
    z-index: 9;
}

* { scroll-behavior: smooth; }

img {
    max-width: 100%;
    height: auto;
}

a {
    transition-property: color,background-color,border-color,text-decoration-color,fill,stroke;
    transition-timing-function: cubic-bezier(.4,0,.2,1);
    transition-duration: .15s;
}
.link .arrow,
.btn .arrow {
    transition-property: transform;
    transition-timing-function: cubic-bezier(.4,0,.2,1);
    transition-duration: .15s;
    display: inline-block;
}
.card:focus .link .arrow,
.card:hover .link .arrow,
.btn:focus .arrow,
.btn:hover .arrow {
    transform: translateX(.5rem);
}
.btn-link:not(:hover):not(:focus) {
    text-decoration: none;
}

a.card {
    transition-property: all;
    transition-timing-function: cubic-bezier(.4,0,.2,1);
    transition-duration: .5s;
}
a.card:focus,
a.card:hover {
    box-shadow: 0 20px 25px -5px rgb(0 0 0 / .1), 0 8px 10px -6px rgb(0 0 0 / .1);
}

.text ul {
    padding-left: 1rem;
}
.text ul > li::marker {
    color: var(--bs-primary);
}
.text ul > li:not(:last-child) {
    margin-bottom: .5rem;
}

.text ol {
    padding-left: 1.75rem;
}
.text ol > li:not(:last-child) {
    margin-bottom: .5rem;
}

.text ul.check-list {
    padding-left: 0;
    list-style: none;
}
.text ul.check-list > li {
    font-size: 1rem;
    color: var(--bs-primary);
    display: flex;
    align-items: flex-start;
    gap: .75rem;
}
.text ul.check-list > li::before {
    content: "";
    display: block;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%2380ad1f' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='lucide lucide-circle-check-big w-5 h-5 text-accent mt-0.5 flex-shrink-0'%3E%3Cpath d='M21.801 10A10 10 0 1 1 17 3.335'%3E%3C/path%3E%3Cpath d='m9 11 3 3L22 4'%3E%3C/path%3E%3C/svg%3E");
    flex: 1 0 1.25rem;
    max-width: 1.25rem;
    height: 1.25rem;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}
.text ul.check-list > li:not(:last-child) {
    margin-bottom: 1rem;
}

.text hr {
    margin: 1.5rem 0;
}

.item {
    opacity: 0;
    transform: translateY(100px);
    transition: transform 0.6s ease-out, opacity 0.6s ease-out;
}
.item.is-visible {
    opacity: 1;
    transform: translateY(0);
}
.item:nth-child(2) {
    transition-delay: 0.2s;
}
.item:nth-child(3) {
    transition-delay: 0.4s;
}
.item:nth-child(4) {
    transition-delay: 0.6s;
}
.item:nth-child(5) {
    transition-delay: 0.8s;
}
.item:nth-child(6) {
    transition-delay: 1s;
}

.wpcf7-form label {
    display: block;
}

/*Responsive Videos*/
iframe[src*="youtu.be"],
iframe[src*="youtube"],
iframe[src*="vimeo"],
video {
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
}

.fs-xsmall,
.text-xs {
    font-size: .75rem;
    line-height: 1rem;
}

.fs-small,
.text-sm {
    font-size: .875rem;
    line-height: 1.25rem;
}

.fs-large,
.text-lg {
    font-size: 1.125rem;
    line-height: 1.75rem;
}

.fs-xlarge,
.text-xl {
    font-size: 1.25rem;
    line-height: 1.75rem;
}

.fs-2xlarge,
.text-2xl {
    font-size: 1.5rem;
    line-height: 2rem;
}

.fs-3xlarge,
.text-3xl {
    font-size: 2.25rem;
    line-height: 2.5rem;
}

.lead {
    font-size: 1.125rem;
    line-height: 1.75rem;
    font-weight: 400;
}

.tracking-wider {
    letter-spacing: .05em;
}

.main-title > span,
.text-accent {
    color: var(--accent-green) !important;
}

.eyebrow .badge {
    color: var(--bs-primary);
    font-size: .875rem;
    line-height: 1.25rem;
    font-weight: 600;
    padding: .375rem 1rem;
    background-color: rgba(var(--bs-primary-rgb),.1);
    margin-bottom: 1rem;

    display: inline-flex;
    gap: .5rem;
    align-items: center;

    white-space: normal;
}

ul.badge-list {
    list-style: none;
    padding: 0 !important;
    margin-bottom: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
}
ul.badge-list > li {
    color: var(--bs-primary);
    padding: .25rem .75rem;
    background-color: var(--secondary-blue);
    border-radius: 9999px;
    margin: 0 !important;
    display: inline-flex;
    align-items: center;
    gap: .25rem;
}
ul.badge-list > li svg {
    width: .75rem;
    height: .75rem;
}

.text-bg-light {
    color: var(--bs-body) !important;
}
.text-bg-blue {
    color: #2563eb !important;
    background-color: #dbeafe !important;
}
.text-bg-yellow {
    color: #d97706 !important;
    background-color: #fef3c7 !important;
}
.text-bg-purple {
    color: #7c3aed !important;
    background-color: #ede9fe !important;
}
.text-bg-green {
    color: #059669 !important;
    background-color: #d1fae5 !important;
}

.modal-body .embed iframe {
    width: 100%;
}

.py-6 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
}
.py-7 {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
}
.py-8 {
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
}




/*Flex Settings*/
@media (min-width: 1400px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        max-width: 1376px;
    }
}

section.flex-content,
section.flex-content .container { position: relative; }
section.flex-content .overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; mix-blend-mode: multiply; }
section.flex-content .bg,
section.flex-content > video.embeded-video { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: -1; }
section.flex-content > .embeded-youtube { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 177.78vh; height: 100vh; min-width: 100vw; min-height: 56.25vw; pointer-events: none; z-index: -1; }
section.flex-content img.bg,
section.flex-content > video.embeded-video { object-fit: cover; object-position: center; }


.screen-reader-shortcut {
    position: absolute;
    top: -1000em;
    left: 6px;
    height: auto;
    width: auto;
    display: block;
    font-size: 14px;
    font-weight: 600;
    padding: 15px 23px 14px;
    background: #f0f0f1;
    color: #2271b1;
    z-index: 100000;
    line-height: normal;
    text-decoration: none;
}
.screen-reader-shortcut:focus {
    top: 7px;
    background: #f0f0f1;
    box-shadow: 0 0 2px 2px rgba(0,0,0,.6);
}



@media (max-width: 767px) {
    .fs-3xlarge, .text-3xl, .fs-2xlarge, .text-2xl {
        font-size: 1.25rem;
        line-height: 1.75rem;
    }
}