@import url('https://fonts.googleapis.com/css2?family=Sora:wght@100..800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Darker+Grotesque:wght@300..900&display=swap');
/*Global Styling*/
@font-face {
    font-family: Merriweather;
    src: url(../font/Merriweather.ttf);
}
* {
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
}

body {
    padding: 0;
    margin: 0;
    width: 100%;
    overflow-x: hidden;
    font-family: "Darker Grotesque", sans-serif;
    position: relative;
    background-color: #fff;
    scroll-behavior: smooth;
}

html {
    height: 100%;
    width: 100%;
    overflow-x: hidden;
    scroll-behavior: smooth;
    scroll-padding-top: 40px;
}

ol,
ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

a,
a:hover,
a:focus {
    outline: none;
    text-decoration: none;
    color: #fff;
    font-family: "Darker Grotesque", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    transition: all ease .3s;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    font-family: "Sora", sans-serif;
    color: #000;
}

.background-position {
    background-position: center;
    background-size: cover !important;
    background-repeat: no-repeat !important;
}

button {
    font-family: "Montserrat", sans-serif;
    cursor: pointer;
    transition: all ease .3s;
}

/* colors */

.black {
    color: #000;
}

/* Global font size */

.up {
    text-transform: uppercase;
}

h1,
.h1 {
    font-size: 64px;
    font-style: normal;
    font-weight: 600;
    line-height: 85px;
    /* 132.813% */
    text-transform: capitalize;
}

h2,
.h2 {
    font-size: 48px;
    font-style: normal;
    font-weight: 600;
    line-height: 64px;
    /* 133.333% */
    text-transform: capitalize;
}

h3,
.h3 {
    font-size: 36px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

h4,
.h4 {
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

h5,
.h5 {
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 28px;
}

h6,
.h6 {
    font-size: 18px;
}

p {
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin: 0;
    color: #000;
}

input:focus {
    outline: none;
    box-shadow: none;
}

/* Global  margin  and padding */

.padding-main {
    padding: 100px 0;
}

.justify-space {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.align-center {
    align-items: center;
}

.justify-space-center {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
    margin-top: -70px;
}

textarea {
    resize: none;
}

input:focus,
textarea:focus,
select:focus {
    outline: none;
    box-shadow: none;
}

/*transisition*/

ul.nav>li a {
    -moz-transition: all .4s ease-in;
    -webkit-transition: all .4s ease-in;
    -o-transition: all .4s ease-in;
    transition: all .4s ease-in;
}

.container-fluid {
    width: 100%;
    padding-right: 60px;
    padding-left: 60px;
    margin-right: auto;
    margin-left: auto;
}

.container {
    padding-right: 15px;
    padding-left: 15px;
    max-width: 1250px;
    width: 100%;
    margin: 0 auto;
}

header#header {
    position: block;
    top: 0;
    width: 100%;
    z-index: 999;
    border-bottom: 1px solid transparent;
}

.inner-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav#nav ul {
    display: flex;
    gap: 32px;
}

nav#nav ul li {
    display: inline-block;
}

nav#nav ul li a {
    transition: all ease .3s;
}

.logo img {
    max-width: 100%;
}


section.main-banner {
    min-height: 122vh;
    background-color: #F5F5DC;
    position: relative;
    padding: 20px 0;
}

section.main-banner::after {
    position: absolute;
    content: "";
    background-image: url(../images/back-banner.svg);
    background-position: right;
    background-repeat: no-repeat;
    background-size: contain;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
}
.logo a {
    color: #000;
    font-family: "Darker Grotesque";
    font-size: 28px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    display: flex;
    align-items: center;
    justify-content: center;
}
.banner-flex {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: flex-start;
}

.banner-width {
    width: 50%;
}
.right-data ul li a {
    display: inline-flex
;
    justify-content: center;
    align-items: center;
    font-family: "Darker Grotesque";
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    color: #000;
    padding-bottom: 5px;
    border-bottom: 1px solid transparent;
}
.banner-width h1 {
    font-size: 2rem; 
    font-weight: bold;
    margin-bottom: 24px;
    color: #000;
    white-space: nowrap; 
}
nav#nav ul li a:hover {
    border-bottom: 1px solid black;
}

@media (max-width: 768px) {
    .banner-width h1 {
        font-size: 2rem;
        white-space: normal; 
    }
}

@media (max-width: 480px) {
    .banner-width h1 {
        font-size: 1.8rem;
    }
}

.main-text {
    font-family: 'Merriweather', serif;
    font-size: 22px; 
    font-weight: 400;
    line-height: 1.6;
    color: #000;
    margin-bottom: 32px;
}

.main-text p {font-weight: 100 ;
    margin-top: 1.5rem; 
    opacity: 0.8;
}



.warning-text {
    font-family: 'Merriweather', serif;
    font-size: 18px;
    margin-top: 16px;
}

.warning-text p {
    margin-bottom: 4px;
    color: #000;
    opacity: 1;
}

.innr-img {
    text-align: center;
    margin-bottom: 32px;
}

.innr-img img {
    width: 120%; 
    height: auto;
    max-width: none;
    transform: scale(1.2); 
}

.button-section {
    text-align: center;
}

.custtom-bttn a {
    display: inline-flex;
    padding: 12px 26px 16px;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    background: #000;
    color: #fff;
    text-decoration: none;
    font-size: 22px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin-bottom: 0; 
}

.note {
    font-family: 'Merriweather', serif;
    font-size: 16px;
    color: #000;
    opacity: 0.7;
    margin-top: 8px; 
    max-width: 400px; 
    margin-left: auto;
    margin-right: auto;
}

.note p {
    margin: 0;
}

/* Second Section */
section.second-section {
padding: 60px 0px 100px;
    background-image: url(../images/orange-color-background.jpg);
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: cover;
    position: relative;
    z-index: 1;
    top: -104px;
    margin-bottom: -120px;
    background-color: #EFF2F4;
}

section.main-banner .container *,
section.fourth-section .container *,
section.sixth-section .container * {
    position: relative;
    z-index: 2;
}

.left-heading h2 {
    color: #000000; 
    max-width: 607px;

}

.second-flex {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: flex-start;
    margin-top: 54px;
}

.second-width {
    width: 32%;
    border-radius: 24px;
    background: #262626;
    padding: 46px 28px;
}

.second-width * {
    color: #fff; 
}

.second-width span {
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 1.92px;
}

.second-width h3 {
    margin: 12px 0;
}

.second-width p {
    opacity: 0.9;
    line-height: 1.5;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .banner-flex {
        flex-direction: column;
    }
    
    .banner-width {
        width: 100%;
        margin-bottom: 20px;
    }
    
    .second-flex {
        flex-direction: column;
        gap: 20px;
    }
    
    .second-width {
        width: 100%;
    }
}

.marquee-container {
    height: 30px;
    overflow: hidden;
    line-height: 30px;
    .marquee {
        top: 0;
        left: 100%;
        width: 100%;
        overflow: hidden;
        position: absolute;
        white-space: nowrap;
        animation: marquee 30s linear infinite;
        display: flex;
        justify-content: space-around;
        gap: 20px;
    }
    .marquee2 {
        animation-delay: 15s;
    }
    b {
        padding-left: 10px;
    }
    ;
    position: relative;
}

@keyframes marquee {
    0% {
        left: 100%;
    }
    100% {
        left: -100%
    }
}

.marquee-container .marquee p {
    color: #FFF;
    font-family: Sora;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    display: block;
    margin-left: 20px;
    width: fit-content;
}

section.third-section {
    background: #262626;
    padding: 30px 0;
}

section.fourth-section {
    padding: 75px 0 261px;
    position: relative;
    background: #EFF2F4;
}

section.fourth-section::after {
    position: absolute;
    content: "";
    background-image: url(../images/transform-back.png);
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: contain;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
}

.transform-flex {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
}

.transform-width {
    width: 48%;
}

.transform-width:first-child {
    width: 46.6%;
}

.transform-width img {
    width: 100%;
}

.transform-width p {
    opacity: .6;
    margin-top: 25px;
}

.transform-width h2 {
    margin-top: 63px;
}

section.fifth-section {
    background: #000;
    padding: 80px 0;
}

section.fifth-section .container * {
    position: relative;
    color: #ffff;
}

.fifth-flex {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
}

.fifth-width {
    width: 50%;
}

.fifth-width p {
    opacity: 0.6;
    margin: 25px 0 56px;
    max-width: 543px;
}

.fifth-width .custtom-bttn a {
    color: #000;
    background: #fff;
}

.fifth-img {
    position: relative;
    top: -300px;
    margin-bottom: -380px;
}

.fifth-img img {
    width: 100%;
}

section.sixth-section {
    padding: 95px 0 232px;
    position: relative;
    /* 	background: linear-gradient(180deg, #FFF 0%, rgba(255, 255, 255, 0.00) 100%); */
    background: linear-gradient(180deg, #E7E6E0 0%, #DEDDD8 100%);
}

section.sixth-section::after {
    position: absolute;
    content: "";
    background-image: url(../images/newsetter-back.png);
    background-position: center top -110px;
    background-repeat: no-repeat;
    background-size: cover;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
}

.newsletter {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: flex-start;
}

.news-width {
    width: 47.2%;
}

.news-width p {
    opacity: 0.6;
    margin-bottom: 60px;
}

.news-letter-form form p {
    margin: unset;
    opacity: 1;
}

.news-letter-form input {
    color: #000;
    font-family: "Darker Grotesque";
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    padding-bottom: 18px;
    width: 100%;
    border: none !important;
    border-bottom: 1px solid #000 !important;
    background: transparent !important;
    outline: none !important;
    border-radius: 0px !important;
}

.news-letter-form input::placeholder {
    opacity: .3;
}

.form-wdth {
    margin-bottom: 24px;
}

.news-letter-form button {
    display: flex;
    width: 400px;
    padding: 12px 26px 16px;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    background: #000;
    font-size: 22px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    color: #fff;
    font-family: "Darker Grotesque";
    margin-top: 16px;
    display: inline-block;
    border: none;
}

.news-width:nth-child(2) {
    width: 46%;
}

.news-width img {
    width: 100%;
}

.news-width h2 {
    margin-bottom: 32px;
}

.news-width p,
.news-width .news-letter-form {
    max-width: 400px;
    width: 100%;
}

section.seventh-section {
    padding: 70px 0 33px;
    background: linear-gradient(180deg, #E7E6E0 0%, #DEDDD8 100%);
}

.seventh-flex {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: flex-start;
}

.seven-width {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.seven-img a.button {
    height: 100%;
    display: block;
}

.seven-img img {
    width: 100%;
    height: 100%;
}

.seven-img {
    position: relative;
    top: -160px;
    margin-bottom: -160px;
    width: 21.1%;
}

.svn-inner {
    max-width: 448px;
    margin: 0 auto;
}

.svn-inner p {
    margin: 21px 0 48px;
    opacity: 0.6;
}

.svn-inner a {
    font-size: 22px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    padding: 12px 27px 16px;
}

footer.last-footer {
    padding: 10px 0;
    background: #D4D1C7;
    text-align: center;
}

footer.last-footer p {
    font-size: 23px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
}

.custtom-bttn a {
    border: 1px solid #000;
}

/* nav#nav ul li a{
    border: 1px solid #000;
} */



.fifth-width .custtom-bttn a:hover {
    color: #fff;
    background: transparent;
    border-color: #ffff;
}

.transform-width img {
    position: relative !important;
}

.transform-width:nth-child(1)::after {
    position: absolute;
    content: "";
    background-color: rgba(0, 0, 0, 0.1);
    width: 100%;
    height: 100%;
    top: 5px;
    left: 10px;
    border-radius: 24px;
}

section.sixth-section:before {
    content: "";
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #FFF 0%, rgba(255, 255, 255, 0.00) 100%);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.uper-flx {
    display: none;
}

/* Popup Styles */

.contact-popup {
    /*     display: none; 
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.8); 
    justify-content: center;
    align-items: center;
    z-index: 9999; 
    padding: 2% 10%; */
    background: #EFF2F4;
    padding: 80px 0;
}

.popup-content {
    width: 100%;
    /*     height: 100%; */
    background-color: #fff;
    box-sizing: border-box;
    overflow-y: auto;
    /* Scroll if content overflows */
    position: relative;
    border-radius: 24px;
    padding: 80px;
    max-width: 1064px;
    margin: 0 auto;
}

.close-btn {
    position: absolute;
    top: 30px;
    right: 30px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
}

/* Basic form styling */

.popup-content form {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.form-content {
    width: 49%;
    display: flex;
    flex-direction: column;
    margin-bottom: 16px;
}

.form-content label {
    font-size: 18px;
    color: #000;
    font-weight: 500;
}

.form-content.full-length-content {
    width: 100%;
}

.form-content textarea,
.form-content input {
    border-radius: 24px;
    background: #F8F7F3;
    border: none;
    outline: none;
    height: 48px;
    padding-left: 20px;
    color: #000;
    font-size: 18px;
    font-weight: 500;
    margin-top: 12px;
    width: 100%;
}

.popup-content button[type="submit"] {
    padding: 12px 26px 15px;
    color: #fff;
    border-radius: 50px;
    background: #000;
    width: 100%;
    border: 1px solid black;
    font-size: 22px;
    font-weight: 600;
    font-family: "Darker Grotesque";
}

.button-wrapper {
    margin: 25px auto 0;
    /*     max-width: 226px; */
    width: 100%;
}

.form-content textarea {
    height: 168px;
    padding-top: 10px;
}

.popup-content form br {
    display: none;
}

.popup-content form span {
    display: block;
    width: 100%;
}

.popup-content h2 {
    text-align: center;
    margin-bottom: 32px;
}

.right-download-button.custtom-bttn a:hover {
    background: transparent;
    color: #000;
}

.btn2 {
    position: absolute;
    width: 60px;
    height: 60px;
    top: 0px;
    right: 0px;
    transition-duration: 0.5s;
}

.btn2 .icon {
    transition-duration: 0.5s;
    position: absolute;
    height: 4px;
    width: 40px;
    top: 30px;
    background-color: #212121;
}

.btn2 .icon:before {
    transition-duration: 0.5s;
    position: absolute;
    width: 40px;
    height: 4px;
    background-color: #212121;
    content: "";
    top: -12px;
}

.btn2 .icon:after {
    transition-duration: 0.5s;
    position: absolute;
    width: 40px;
    height: 4px;
    background-color: #212121;
    content: "";
    top: 12px;
}

.btn2.open .icon {
    transition-duration: 0.5s;
    background: transparent;
}

.btn2.open .icon:before {
    transform: rotateZ(45deg) translate(8px, 5px);
}

.btn2.open .icon:after {
    transform: rotateZ(-45deg) translate(12px, -10px);
}

.btn2:hover {
    cursor: pointer;
}

.menu.btn2 {
    display: none;
}

inner-header {
    position: relative;
}

/*css for contact page */

.page-id-138 header,
.page-id-140 header {
    background-color: #EFF2F4;
}

.page-id-138 section.sixth-section,
.page-id-140 section.sixth-section {
    padding-bottom: 100px;
}

section.black-banner-section {
    padding: 196px 0 124px;
    background-color: #000;
    position: relative;
}

section.black-banner-section:before {
    content: "";
    background-image: url(https://wp.jaidenshannon.com/will-warren/wp-content/uploads/2024/09/banner-section-bg-vector.svg);
    position: absolute;
    right: 0;
    z-index: 0;
    width: 40%;
    height: 100%;
    top: 0;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0.1;
}

.banner-content h1 {
    color: #fff;
    font-size: 56px;
    font-weight: 500;
    line-height: 151%;
    text-transform: capitalize;
}

.banner-content p {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    opacity: 0.6
}

/* css for about page */

section.about-section {
    padding: 80px 0 50px;
    background: #E5E4DE;
    position: relative;
}

.about-section-content {
    text-align: center;
}

.about-section-content p {
    max-width: 703px;
    width: 100%;
    margin: 32px auto 0;
}

section#about-section:before {
    content: "";
    background-image: url(https://wp.jaidenshannon.com/will-warren/wp-content/uploads/2024/09/about-bg-vector.svg);
    position: absolute;
    left: 0;
    bottom: -52px;
    width: 30%;
    height: 450px;
    background-repeat: no-repeat;
    background-size: contain;
    z-index: 1;
}

section.mission-section {
    background-color: #E5E4DE;
    position: relative;
    padding: 154px 0 100px;
}

section.mission-section:before {
    content: "";
    background-image: url(https://wp.jaidenshannon.com/will-warren/wp-content/uploads/2024/09/mission-bg-img.png);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-repeat: no-repeat;
    background-size: cover;
}

.mv-seciton-content {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
}

.statement-content {
    width: 41.85%;
    padding: 46px 28px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.15);
}

.statement-content h3 {
    color: #fff;
    margin: 24px 0 12px;
}

.statement-content p {
    color: #fff;
    opacity: 0.6;
    font-weight: 600;
    min-height: 124px;
    max-width: 454px;
    width: 100%;
}