/******** Global CSS ********/

@import url('https://fonts.googleapis.com/css2?family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: "Work Sans", sans-serif;
    font-weight: normal;
    font-style: normal;
    font-display: swap;
    color: #323232;
    font-size: 16px;
    line-height: 1.2;
}

header .logo img {
    max-width: 150px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Work Sans", sans-serif;
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

a {
    transition: all 300ms ease 0s;
    -webkit-transition: all 300ms ease 0s;
    -moz-transition: all 300ms ease 0s;
}

.copyright a{
    text-decoration: none;
    color: #8A5323;
}

.text-light {
    color: #fff;
}

.text-dark {
    color: #312216;
}

.text-darker {
    color: #323232;
}

.list-none {
    list-style: none;
}

.d-flex {
    display: flex;
}

.flex-wrap {
    flex-wrap: wrap;
}

.justify-content-between {
    justify-content: space-between;
}

.justify-content-end {
    justify-content: flex-end;
}

.align-items-center {
    align-items: center;
}

.align-items-end {
    align-items: flex-end;
}

.justify-content-center {
    justify-content: center;
}

.text-center {
    text-align: center;
}

.wrapper {
    width: 100%;
    max-width: 1040px;
    padding: 0 20px;
    margin: 0 auto;
    position: relative;
}

.section {
    position: relative;
}

.section:before {
    content: '';
    position: absolute;
    left: 0px;
    right: 0px;
    top: 0px;
    bottom: 0px;
    background-color: rgba(0, 0, 0, 0.4);
    width:100%;
    height:100%;
    z-index: 0;
}

/******** Header CSS ********/
header {
    background-color: rgba(212, 210, 204, 0.9);
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    z-index: 999;
}

header .wrapper {
    max-width: 1720px;
}

header .logo {
    line-height: 0;
}

header .navigation li {
    padding: 26px 0 26px;
}

.hamburger {
    display: none;
}

.closeMenu {
    display: none;
}

.navigation li a {
    font-family: 'Work Sans';
    font-weight: normal;
    font-style: normal;
    color: #000000;
    font-size: 14px;
    line-height: 1.2;
    text-decoration: none;
    display: block;
}

.navigation li a:hover,
.navigation li.active a,
.navigation li a.active {
    color: #8A5324;
    text-decoration: underline;
}

.navigation li.menu-item-has-children>a::after {
    background-image: url('https://magit.blob.core.windows.net/renders/KeturahGlobal/website/assets/images/drop-drown-icon.svg');
    background-position: center;
    background-size: 12px;
    background-repeat: no-repeat;
    width: 12px;
    height: 7px;
    content: "";
    display: inline-block;
    margin-left: 8px;
}

.navigation .menu {
    display: flex;
    gap: 25px;
}

.navigation .submenu {
    display: none;
    position: absolute;
    width: 200px;
    background-color: #d4d2cc;
    top: 100%;
}

.navigation .submenu li {
    padding: 0;
}

.navigation .submenu li a {
    display: block;
    padding: 15px;
    border-bottom: 1px solid #bbb7ac;
}

.navigation .submenu li:last-child a {
    border-bottom-color: transparent;
}

.navigation li:hover .submenu {
    display: block;
}

.menu-item-has-children .slide-down {
    display: none;
}

/******** Banner ********/
.inner-content {
    max-width: 460px;
}

.inner-content h2 {
    letter-spacing: 2.5px;
    margin-bottom: 50px;
    font-size: 25px;
    line-height: 1.2;
    text-transform: uppercase;
}

.height100 {
    height: 100vh;
}

.heroSlider {
    overflow: hidden;
}

.heroSlider .wrapper {
    height: 100%;
}

.heroSlider .inner-content {
    padding-bottom: 80px;
    max-width: 500px;
}

.heroSlider .swiper-slide {
    background-image: url('https://magit.blob.core.windows.net/renders/KeturahGlobal/website/assets/images/slide-1.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.heroSlider .swiper-slide.slide2 {
    background-image: url('https://magit.blob.core.windows.net/renders/KeturahGlobal/website/assets/images/banner-4.jpg');
}

.heroSlider .swiper-slide.slide3 {
    background-image: url('https://magit.blob.core.windows.net/renders/KeturahGlobal/website/assets/images/banner-5.jpg');
}



.hero-pagination .swiper-pagination {
    bottom: 50px !important;
}

.hero-pagination .swiper-pagination .swiper-pagination-bullet {
    height: 10px;
    width: 10px;
    background-color: rgba(255, 255, 255, 0.8);
}

.hero-pagination .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: #ffffff;
}

/******** About Section ********/
.inner-content p {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 20px;
}

.inner-content p:last-child {
    margin-bottom: 0;
}

.section {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    align-items: center;
}

.aboutSec {
    background-image: url('https://magit.blob.core.windows.net/renders/KeturahGlobal/website/assets/images/banner-2.jpg');
}

/******** Our Story Section ********/
.ourStory {
    padding-top: 0px;
    background-image: url('https://magit.blob.core.windows.net/renders/KeturahGlobal/website/assets/images/banner-6.jpg');
}

.ourStory .inner-content {
    max-width: 360px;
}

/******** The Creations of Keturah Section ********/
.section ul li {
    font-size: 18px;
    line-height: 1.2;
    color: #fff;
    background-image: url('https://magit.blob.core.windows.net/renders/KeturahGlobal/website/assets/images/white-right-arrow.svg');
    background-position: top 4px right;
    background-size: 15px;
    background-repeat: no-repeat;
    padding-right: 25px;
}

.section ul li:not(:last-child) {
    margin-bottom: 25px;
}

.creationsSec {
    background-image: url('https://magit.blob.core.windows.net/renders/KeturahGlobal/website/assets/images/banner-3.jpg');
    background-position: left center;
}

.creationsSec .inner-content h2 {
    color: #fff;
}

.creationsSec .inner-content {
    max-width: 265px;
}

/******** The Essence OF Keturah Section ********/
.keturah-essence {
    padding-top: 0px;
    background-image: url('https://magit.blob.core.windows.net/renders/KeturahGlobal/website/assets/images/banner-4.jpg');
}

/******** Body Space Section ********/
.bodySpace {
    padding-top: 0px;
    background-image: url('https://magit.blob.core.windows.net/renders/KeturahGlobal/website/assets/images/banner-6.jpg');
}


.bodySpace .inner-content {
    max-width: 470px;
}


/******** Mind Space Section ********/
.mindSpace {
    padding-top: 0px;
    background-image: url('https://magit.blob.core.windows.net/renders/KeturahGlobal/website/assets/images/banner-5.jpg');
}

.mindSpace {
    background-image: url('https://magit.blob.core.windows.net/renders/KeturahGlobal/website/assets/images/banner-5.jpg');
}

.mindSpace2 {
    padding-top: 0px;
    background-image: url('https://magit.blob.core.windows.net/renders/KeturahGlobal/website/assets/images/banner-5-2.jpg');
}

.mindSpace2 {
    background-image: url('https://magit.blob.core.windows.net/renders/KeturahGlobal/website/assets/images/banner-5-2.jpg');
}

.mindSpace .inner-content {
    max-width: 470px;
}

/******** Soul Space Section ********/
.soulSpace {
    padding-top: 0px;
    background-image: url('https://magit.blob.core.windows.net/renders/KeturahGlobal/website/assets/images/banner-7.jpg');
}

.soulSpace .inner-content {
    max-width: 470px;
}

/******** Soul Space Section ********/
.originsKeturah {
    background-image: url('https://magit.blob.core.windows.net/renders/KeturahGlobal/website/assets/images/banner-8.jpg');
    padding-bottom: 0px;
}

/******** Contact Section ********/
.coontactSec {
    background-color: #cac8bf;
    position: relative;
    z-index: 111;
}

.coontactSec .leftCol {
    width: 55%;
    background-image: url('https://magit.blob.core.windows.net/renders/KeturahGlobal/website/assets/images/contact-image.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.coontactSec .leftCol p {
    color: #fff;
    font-size: 24px;
    line-height: 1.2;
    text-transform: uppercase;
    font-family: 'Work Sans';
    font-weight: 500;
    padding-top: 30px;
}

.contactForm {
    width: 45%;
    padding: 130px 65px;
}

#creationsSec a {
    text-decoration: none;
    color: #fff;
}

.contactForm label {
    color: #323232;
    font-size: 20px;
    line-height: 1.2;
    font-family: 'Work Sans';
    display: block;
    padding-bottom: 10px;
}

.contactForm .input, .contactForm select {
    border: none;
    border-bottom: 1px solid #111;
    background: none !important;
    background: #fff;
    border-radius: 0px;
    height: 50px;
    width: 100%;
    font-family: 'Work Sans';
    font-size: 12px;
    color: #323232;
    padding: 10px 15px;
}

input:focus-visible, select:focus-visible {
    outline: none;
}

.contactForm select {
     -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url('https://magit.blob.core.windows.net/renders/KeturahGlobal/website/assets/images/select-down-arrow.svg');
    background-size: 16px;
    background-repeat: no-repeat;
    background-position: right 15px center;
}

.contactForm .input::placeholder {
    color: #323232;
}
.contactForm .input-row {
    gap: 30px;
    margin-bottom: 20px;
}

.contactForm .input-row .inputCol {
    width: calc(100% / 2);
}

.contactForm .input-row textarea {
    height: 120px;
    resize: none;
    width: 100%;
    border: 0.5px solid #9D8475;
    border-radius: 6px;
    font-family: 'Work Sans';
    color: #323232;
    font-size: 16px;
    padding: 20px;
}

.contactForm input[type="submit"] {
    background-color: #9D8475;
    border-radius: 0;
    color: #FFFFFF;
    font-size: 20px;
    text-transform: uppercase;
    font-family: 'Work Sans';
    border: 0;
    font-weight: 600;
    padding: 15px 20px;
    cursor: pointer;
    transition: all 300ms ease 0s;
    -webkit-transition: all 300ms ease 0s;
    -moz-transition: all 300ms ease 0s;
}

.contactForm input[type="submit"]:hover {
    background-color: #8A5324;
}

/*.contactForm .radio {*/
/*    margin-left: 30px;*/
/*}*/

.contactForm .radio label {
    position: relative;
    display: flex;
    align-items: center;
    cursor: pointer;
    color: #323232;
    text-align: center;
    line-height: 100%;
    border-radius: 5px;
    -webkit-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
     padding: 0 !important;
    width: 100%;
    justify-content: center;
    font-size: 16px;
}

.contactForm .radio input[type="radio"]:checked+label {
    background: #9D8475;
    color: #fff;
}

/*.contactForm .radio label:before {*/
/*    height: 24px;*/
/*    width: 24px;*/
/*    background-color: #fff;*/
/*    display: inline-block;*/
/*    content: "";*/
/*    margin-right: 15px;*/
/*}*/

/*.contactForm .radio label:after {*/
/*    background-image: url('https://magit.blob.core.windows.net/renders/KeturahGlobal/website/assets/images/check-dark.svg');*/
/*    background-position: center;*/
/*    background-size: 17px;*/
/*    background-repeat: no-repeat;*/
/*    position: absolute;*/
/*    left: 2px;*/
/*    top: 1px;*/
/*    height: 20px;*/
/*    width: 20px;*/
/*    content: "";*/
/*    display: none;*/
/*}*/

.contactForm .radio input[type="radio"] {
    display: none;
}

/*.contactForm .radio input[type="radio"]:checked+label::after {*/
/*    display: block;*/
/*}*/

.contactForm .input-row.input-radio-row {
    padding-bottom: 10px;
}

.contactForm .input-row.input-row-submit {
    padding-bottom: 0px;
}

.contactForm p {
    color: #fff;
    font-size: 29px;
    line-height: 1.2;
    font-family: 'Work Sans';
    font-weight: 300;
    font-style: normal;
}

.contactForm p a {
    color: #fff;
    text-decoration: none;
}

.contactForm p a:hover {
    text-decoration: underline;
}

.form-switch__wrapper {
    position: relative;
    max-width: 150px;
    height: 38px;
    border-radius: 6.957px;
    border: 1px solid #9D8475;
    padding: 4px;
}

.form-switch__wrapper .form-switch__item {
    width: 50%;
    justify-content: center;
}

.contactForm .input-radio-row label {
    padding: 0;
}

/******** Footer Section ********/
.footer {
    padding-top: 100px;
    padding-bottom: 50px;
    background-color: #ebe9dc;
    position: relative;
    z-index: 11;
}

.footer .wrapper {
    max-width: 1720px;
}

.footer-logo p {
    font-size: 19px;
    font-weight: 500;
    font-family: 'Work Sans';
    color: #8B7D58;
    margin-top: 20px;
}

.footer-logo img {
    max-width: 150px;
}

.footer-menu li {
    padding: 0 20px;
    position: relative;
}

.footer-menu li::after {
    position: absolute;
    left: 0;
    top: 1px;
    width: 1px;
    height: 20px;
    background-color: #707070;
    content: "";
}

.footer-menu li:first-child:after {
    display: none;
}

.footer-menu li a {
    color: #8B7D58;
    font-size: 16px;
    line-height: 1.2;
    font-family: 'Work Sans';
}

.social-links p {
    color: #8A5323;
    text-transform: uppercase;
    font-size: 16px;
    line-height: 1.2;
    font-family: 'Work Sans';
    font-weight: normal;
    margin-bottom: 20px;
}

.social-links {
    margin-top: -40px;
    padding-right: 90px;
}

.social-links ul {
    gap: 15px;
}

.social-links li a:hover {
    opacity: 0.8;
}

.copyright {
    padding-top: 70px;
}

.copyright p {
    color: #8A5323;
    font-size: 14px;
    font-family: 'Work Sans';
}

/******** Line Animation ********/
.animation-line {
    position: fixed;
    left: 0;
    right: 0;
    z-index: 11;
    top: 0;
    height: 100%;
    pointer-events: none;
}

.animation-line .wrapper {
    max-width: 1080px;
}

.animation-line span {
    position: fixed;
    top: 0;
    bottom: 0;
    width: 1px;
    background-color: rgba(255, 255, 255, 0.4);
    content: "";
}

.animation-line span {
    font-size: 0;
}

.animation-line .line {
    height: 160px;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(255, 255, 255, 1) 22%, rgba(255, 255, 255, 1) 50%, rgba(255, 255, 255, 1) 75%, rgba(0, 0, 0, 0) 100%);
    width: 1px;
    animation: line 6s infinite;
    animation-fill-mode: forwards;
    animation-timing-function: cubic-bezier(.4, .26, .16, .98);
}

@keyframes line {
    0% {
        transform: translateY(-4vh);
    }

    100% {
        transform: translateY(115vh);
    }
}



/******** Media CSS ********/
@media only screen and (max-width: 1900px) {

    header .wrapper,
    .footer .wrapper {
        max-width: 1400px;
    }

    .ourStory,
    .keturah-essence {
        padding-top: 0px;
    }

    .bodySpace {
        padding-top: 0px;
    }

    .soulSpace {
        padding-top: 0px;
    }

    .contactForm label {
        font-size: 18px;
    }

    .contactForm p {
        font-size: 24px;
    }

    .footer-logo p {
        font-size: 16px;
        margin-top: 15px;
    }

    .social-links a img {
        width: 24px;
        height: 24px;
    }

    .social-links ul {
        gap: 10px;
    }

    .footer {
        padding-top: 100px;
        padding-bottom: 40px;
    }

    .social-links {
        padding-right: 0;
    }

    .copyright {
        padding-top: 50px;
    }
}

@media only screen and (max-width: 1279px) {
    .wrapper {
        max-width: 700px;
    }

    .animation-line .wrapper {
        max-width: 735px;
    }

    .coontactSec .leftCol {
        width: 53%;
    }

    .contactForm {
        width: 47%;
        padding: 100px 40px 30px 40px;
    }

    .coontactSec .leftCol p {
        font-size: 20px;
    }

    .contactForm .input,
    .contactForm .input-row textarea {
        padding: 15px;
    }

    .contactForm .input-row {
        margin-bottom: 30px;
    }

    .footer-logo img {
        max-width: 270px;
    }

    .footer-menu li a {
        font-size: 16px;
    }

    .footer-menu li {
        padding: 0 15px;
    }

    .footer-menu li::after {
        height: 25px;
        top: -2px;
    }

    .social-links a img {
        width: 30px;
        height: 30px;
    }
}

@media only screen and (max-width: 1023px) {
    header {
        padding: 20px 0;
    }

    .navigation .menu-wrapper {
        background-color: #d4d2cc;
        width: 300px;
        height: 100%;
        position: fixed;
        top: 0;
        right: 0;
        -webkit-transform: translateX(350px);
        -ms-transform: translateX(350px);
        transform: translateX(350px);
        -webkit-transition: -webkit-transform 0ms ease .3s;
        transition: -webkit-transform 0ms ease .3s;
        z-index: 99;
        opacity: 1;
        padding-top: 40px;
        padding-bottom: 40px;
        -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.4);
        box-shadow: 0 0 15px rgba(0, 0, 0, 0.4);
        overflow: auto;
        transition: all 0.3s ease 0s;
        -webkit-transition: all 0.3s ease 0s;
        flex-direction: column;
        gap: 0;
    }

    .navigation .menu li {
        padding: 0;
        position: relative;
    }

    .navigation .menu li a {
        padding: 20px 30px;
        border-bottom: 1px solid #bbb7ac;
    }

    .navigation .hamburger {
        display: block;
        cursor: pointer;
        background-position: center;
        background-repeat: no-repeat;
        background-size: contain;
        height: 21px;
        width: 27px;
        font-size: 0;
        background-image: url('https://magit.blob.core.windows.net/renders/KeturahGlobal/website/assets/images/hamburger-icon.svg');
    }

    .navigation .menu {
        flex-direction: column;
        gap: 0;
    }

    .closeMenu {
        display: block;
        cursor: pointer;
        background-position: center;
        background-repeat: no-repeat;
        background-size: 30px;
        height: 30px;
        width: 30px;
        font-size: 0;
        background-image: url('https://magit.blob.core.windows.net/renders/KeturahGlobal/website/assets/images/menu-close.svg');
        position: absolute;
        right: 10px;
        top: 10px;
    }

    .menu-item-has-children .slide-down {
        font-size: 0;
        background-image: url('https://magit.blob.core.windows.net/renders/KeturahGlobal/website/assets/images/drop-drown-icon.svg');
        background-position: center;
        background-size: 12px;
        background-repeat: no-repeat;
        width: 40px;
        height: 40px;
        content: "";
        display: inline-block;
        position: absolute;
        right: 10px;
        top: 10px;
        cursor: pointer;
        transition: all 300ms ease 0s;
        -webkit-transition: all 300ms ease 0s;
        -moz-transition: all 300ms ease 0s;
    }

    .menu-item-has-children .slide-down.menu-active {
        rotate: -90deg;
        top: 8px;
    }

    .navigation li.menu-item-has-children>a::after {
        display: none;
    }

    .navigation .submenu {
        position: relative;
        width: 100%;
    }

    .navigation li:hover .submenu {
        display: none;
    }

    .navigation .submenu li:last-child a {
        border-bottom-color: #bbb7ac;
    }

    .navigation .submenu li a {
        padding-left: 50px;
    }

    .creationsSec .inner-content h2,
    .creationsSec .inner-content ul li {
        color: #fff;
    }

    .coontactSec {
        flex-direction: column;
    }

    .coontactSec .leftCol {
        width: 100%;
        padding: 200px 50px;
    }

    .contactForm {
        width: 100%;
    }

    .footerTop {
        flex-direction: column;
    }

    .social-links {
        margin-top: 50px;
    }

    .footer-menu {
        margin-top: 30px;
    }

    .copyright {
        justify-content: space-around;
    }

}

@media only screen and (max-width: 767px) {
    header .logo img {
        max-width: 150px;
    }

    .inner-content h2 {
        font-size: 22px;
        margin-bottom: 30px;
    }

    .inner-content p {
        font-size: 16px;
    }

    .hero-pagination .swiper-pagination {
        bottom: 20px !important;
    }

    .inner-content {
        padding-left: 15px;
    }

    .coontactSec .leftCol {
        width: 100%;
        padding: 150px 30px;
    }

    .contactForm {
        padding: 80px 30px 30px 30px;
    }

    .contactForm label {
        font-size: 16px;
        padding-bottom: 10px;
    }

    .contactForm .input-row {
        flex-direction: column;
    }

    .contactForm .input-row .inputCol {
        width: 100%;
        justify-content: flex-start;
        text-align: center;
    }

    /*.contactForm .radio {*/
    /*    margin-left: 0;*/
    /*    margin-right: 30px;*/
    /*}*/

    .contactForm p {
        font-size: 20px;
    }

    .contactForm input[type="submit"] {
        font-size: 18px;
    }

    .contactForm .input {
        height: 50px;
    }

    .contactForm .input-row textarea {
        height: 150px;
    }

    .contactForm .input-row {
        gap: 25px;
    }

    .contactForm .input-row.input-radio-row {
        gap: 5px;
        flex-direction: row;
    }

    .contactForm .input-row {
        margin-bottom: 25px;
        text-align: center;
    }

    .footer {
        padding-top: 80px;
    }

    .footer-menu li {
        padding: 0 10px;
    }

    .wrapper {
        padding: 0 15px;
    }

    .copyright {
        text-align: center;
        padding-top: 40px;
    }
    
    
    .footer-menu .navigation ul {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .footer-menu .navigation ul li {
        margin: 5px 0;
    }
    
    .footer-menu li::after {
        height: 20px;
        top: 0px;
    }
    
    .contactForm select {
        background-size: 14px;
    }
    .heroSlider .swiper-slide{
        background-image: url('https://magit.blob.core.windows.net/renders/KeturahGlobal/website/assets/images/slide-1-mobile.jpg');
    }
    .aboutSec{
        background-image: url('https://magit.blob.core.windows.net/renders/KeturahGlobal/website/assets/images/banner-2-mobile.jpg');
    }
    .creationsSec{
        background-image: url('https://magit.blob.core.windows.net/renders/KeturahGlobal/website/assets/images/banner-3-mobile.jpg');
    }
    .keturah-essence{
        background-image: url('https://magit.blob.core.windows.net/renders/KeturahGlobal/website/assets/images/banner-4-mobile.jpg');
    }
    .mindSpace {
        background-image: url('https://magit.blob.core.windows.net/renders/KeturahGlobal/website/assets/images/banner-5-mobile.jpg');
    }
    .mindSpace2 {
        background-image: url('https://magit.blob.core.windows.net/renders/KeturahGlobal/website/assets/images/banner-5-2-mobile.jpg');
    }
    .bodySpace{
        background-image: url('https://magit.blob.core.windows.net/renders/KeturahGlobal/website/assets/images/banner-6-mobile.jpg');
    }
    .soulSpace{
        background-image: url('https://magit.blob.core.windows.net/renders/KeturahGlobal/website/assets/images/banner-7-mobile.jpg');
    }
    .originsKeturah{
        background-image: url('https://magit.blob.core.windows.net/renders/KeturahGlobal/website/assets/images/banner-8-mobile.jpg');
    }
    .section{
        padding-top: 120px;
        padding-bottom: 0;
        align-items: flex-start;
    }
}