@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400&family=Spicy+Rice&display=swap');

* {
    margin: 0;
    padding: 0;
    letter-spacing: 1px;
    font-weight: 400;
    font-family: 'Open Sans', sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Spicy Rice', cursive;

}

.header nav {
    height: 6rem;
    width: 100%;
    display: flex;
    position: absolute;
    z-index: 10;
    top: 0;
    /* box-shadow: 0 3px 20px rgba(0,0,0,0.2); */
}

/* Styling Logo*/

.logo {
    padding: 3vh 3vw;
    text-align: left;
    width: 20vw;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo img {
    height: auto;
    width: 230px;
}

.bg-move {
    position: absolute;
    left: -100px;
}

/* Styling Navigation Links*/

.nav-links {
    width: 80vw;
    display: flex;
    padding: 0 3vw;
    justify-content: end;
    align-items: center;
    text-transform: uppercase;
    list-style: none;
    font-weight: 600;
    margin: 0;
}

.nav-links li a {
    margin: 0 0.7vw;
    text-decoration: none;
    transition: all ease-in-out 350ms;
    padding: 0px 10px;
    color: #fff;
}

.nav-links li a:hover {
    color: #000;
    background-color: #fff;
    border-radius: 50px;
}

.nav-links li {
    position: relative;
    opacity: 1 !important;
}

.nav-links li a:hover::before {
    width: 80%;
}


/*Buttons Styling*/

.login-button {
    padding: 0.6rem 0.8rem;
    margin-left: 2vw;
    font-size: 1rem;
    cursor: pointer;
    background-color: transparent;
    border: 1.5px solid #f2f5f7;
    border-radius: 2em;
}

.login-button:hover {
    color: #fff;
    background-color: #FFA126;
    border: 1.5px solid #FFA126;
    transition: all ease-in-out 350ms;
}

/*Navigation Icon Styling*/

.hamburger div {
    width: 30px;
    height: 3px;
    background: #f2f5f7;
    margin: 5px;
    transition: all 0.3s ease;
}

.hamburger {
    display: none;
}


/*Responsive Adding Media Queries*/

@media screen and (max-width: 800px) {
    nav {
        position: fixed;
        z-index: 3;
    }

    .hamburger {
        display: block;
        position: absolute;
        cursor: pointer;
        right: 5%;
        top: 50%;
        transform: translate(-5%, -50%);
        z-index: 2;
        transition: all 0.7s ease;
    }

    .nav-links {
        background: #FFA126;
        position: fixed;
        justify-content: space-evenly;
        opacity: 1;
        height: 100vh;
        width: 100%;
        flex-direction: column;
        clip-path: circle(50px at 90% -20%);
        -webkit-clip-path: circle(50px at 90% -10%);
        transition: all 1s ease-out;
        pointer-events: none;
    }

    .nav-links.open {
        clip-path: circle(1000px at 90% -10%);
        -webkit-clip-path: circle(1000px at 90% -10%);
        pointer-events: all;
    }

    .nav-links li {
        opacity: 0;
    }

    .nav-links li:nth-child(1) {
        transition: all 0.5s ease 0.2s;
    }

    .nav-links li:nth-child(2) {
        transition: all 0.5s ease 0.4s;
    }

    .nav-links li:nth-child(3) {
        transition: all 0.5s ease 0.6s;
    }

    .nav-links li:nth-child(4) {
        transition: all 0.5s ease 0.7s;
    }

    .nav-links li:nth-child(5) {
        transition: all 0.5s ease 0.8s;
    }

    .nav-links li:nth-child(6) {
        transition: all 0.5s ease 0.9s;
        margin: 0;
    }

    .nav-links li:nth-child(7) {
        transition: all 0.5s ease 1s;
        margin: 0;
    }

    .login-button {
        margin-left: 0;
    }

    li.fade {
        opacity: 1;
    }

    /* Navigation Bar Icon on Click*/

    .toggle .bars1 {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .toggle .bars2 {
        transition: all 0s ease;
        width: 0;
    }

    .toggle .bars3 {
        transform: rotate(45deg) translate(-5px, -6px);
    }

}

footer {
    background-image: url(../images/form-bg.webp);
    background:
        radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.15), transparent 60%),
        linear-gradient(135deg, #925273, #d07a7a, #7b68ee);

    background-position: unset;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 80px 0 40px;
}

footer .footer-details,
footer p {
    color: #fff;
}

.icon-list-items li {
    list-style-type: none;
    margin-bottom: 10px;
    font-size: 17px;
    font-weight: 600;
    line-height: 1.3em;
}

.footer-form {
    padding: 60px 50px 70px 50px;
    background-color: #FFFFFF;
    border-radius: 10px 10px 10px 10px;
    box-shadow: 0px 50px 80px 0px rgba(30.000000000000025, 34.00000000000006, 74.00000000000006, 0.15);

}

footer .form-control {
    height: 60px;
}

footer form .eael-creative-button {
    display: block;
}

.footor-bottom {
    padding: 20px 0 0;
    color: #fff;
    text-align: center;
}


/* hero section */
.hero-wrap {
    background-color: #FFFFFF;
    background-image: url(../images/new-hero.webp);
    background-position: bottom center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 300px 0px 500px 0px;
    position: relative;
}

.hero-wrap .heading-title {
    font-size: 48px;
    font-weight: 400;
    line-height: 1.6em;
    color: #fff;
}

/* button */
.eael-creative-button {
    display: inline-block;
    color: #FFFFFF !important;
    background-color: #FFA126;
    border-radius: 100px;
    border: 0px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    min-width: 150px;
    text-align: center;
    vertical-align: middle;
    position: relative;
    z-index: 1;
    font-size: 16px;
    text-decoration: none !important;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    overflow: hidden;
}

.eael-creative-button::before {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 100px;
    width: 100%;
    height: 100%;
    font-size: 18px;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 13px 0px 13px 0px;
    background-color: #DE847D;
    -webkit-transition: -webkit-transform .3s;
    transition: -webkit-transform .3s;
    transition: transform .3s;
    transition: transform .3s, -webkit-transform .3s;
    -webkit-transition-timing-function: cubic-bezier(.75, 0, .125, 1);
    transition-timing-function: cubic-bezier(.75, 0, .125, 1);
}

.creative-button-inner {
    padding: 13px 30px 13px 30px;
    -webkit-transition: -webkit-transform .3s;
    transition: -webkit-transform .3s;
    transition: transform .3s;
    transition: transform .3s, -webkit-transform .3s;
    -webkit-transition-timing-function: cubic-bezier(.75, 0, .125, 1);
    transition-timing-function: cubic-bezier(.75, 0, .125, 1);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.eael-creative-button-icon-left {
    margin-right: 5px;
}

.eael-creative-button .cretive-button-text {
    font-size: 18px;
    font-weight: 400;
}

.eael-creative-button:hover::before {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.eael-creative-button:hover {
    background-color: #FFA126;
}

.eael-creative-button:hover>.creative-button-inner {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
}

.wp-img-pumpkin {
    width: 300px;
    left: 15px;
    position: absolute;
    bottom: 10px;
}

.about-wrap {
    position: relative;
    padding: 100px 0 50px;
}

.heading-title {
    color: #252525;
    font-size: 50px;
    font-weight: 400;
    line-height: 1.3em;
}

p {
    color: #707070;
    font-family: "Open Sans", Sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 2em;
}

.eael-creative-button.read-more-btn {
    background-color: transparent;
    border: 2px solid #FFA126;
    color: #000 !important;
}

.eael-creative-button.read-more-btn::before {
    background-color: #FFA126;
}

.spider-img {
    position: absolute;
    top: -65px;
    left: 114px;
    z-index: 2;
    width: 42px;
}



.gallary-wrap {
    position: relative;
    padding: 150px 0 50px;
    background-image: url(../images/bg.webp);
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
}

.pmk-img {
    position: absolute;
    width: 490px;
    right: -72px;
    top: 0;
    z-index: 0;

}

.gallery-grid-items {
    z-index: 7;
    position: relative;
    justify-content: space-between;
}

.gallery-grid-items .figure {
    background: #FFA126CC;
    text-align: center;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
    display: inline-block;
    margin: 10px;
    border-radius: 10px;
    max-width: 30%;
    min-width: 230px;
    overflow: hidden;
    position: relative;
    text-align: center;
    width: 100%;
    height: 300px;
}

.figure * {
    -webkit-transition: all 0.35s ease;
    transition: all 0.35s ease;
}

.gallery-grid-items .figure img {
    vertical-align: top;
    max-width: 100%;
}

.gallery-grid-items .figure div {
    position: absolute;
    top: 50%;
    left: 50%;
    display: table;
    padding: 0 20px;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.gallery-grid-items .figure div:before,
.gallery-grid-items .figure div:after {
    position: absolute;
    display: block;
    width: 0%;
    height: 100%;
    content: '';
    background-color: #FFA126CC;
    opacity: 0.8;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-tranisition: all 0.35s ease-in-out;
    transition: all 0.35s ease-in-out;
}

.gallery-grid-items .figure div:before {
    right: -150%;
}

.gallery-grid-items .figure div:after {
    left: -150%;
}

.gallery-grid-items .figure h3 {
    color: #fff;
    text-transform: uppercase;
    margin: 0;
    opacity: 0;
}

.gallery-grid-items .figure:hover img,
.gallery-grid-items .figure.hover img {
    opacity: 0.3;
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
}

.gallery-grid-items .figure:hover h3,
.gallery-grid-items .figure.hover h3 {
    opacity: 1;
}

.gallery-grid-items .figure:hover div,
.gallery-grid-items .figure.hover div {
    opacity: 1;
}

.gallery-grid-items .figure:hover div:before,
.gallery-grid-items .figure.hover div:before,
.gallery-grid-items .figure:hover div:after,
.gallery-grid-items .figure.hover div:after {
    width: 150%;
}

.meet-host-wrap {
    position: relative;
    padding: 250px 0 0px;
    background-color: #FFFFFF;
    background-image: url(../images/gallery-bg.webp);
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
}

.overlay-img {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
}

.eael-team-item-inner {
    text-align: center;
    position: relative;
    z-index: 7;
}

.eael-team-image {
    margin: 20px auto;
}

.eael-team-item-inner.middle-team {
    margin-top: 150px;
}

.eael-team-member-social-profiles li {
    display: inline-block;
    list-style: outside none none;
    margin-right: 10px;
    text-align: center;
}

.eael-team-member-social-profiles a {
    color: #ABABAB !important;
    font-size: 18px;
    transition: all .3s cubic-bezier(.19, 1, .22, 1) 0s;
    line-height: 1.5em;
}

.eael-team-member-social-profiles a:hover {
    color: #FFA126 !important;
}

@media (max-width: 1024px) {
    .heading-title {
        font-size: 42px;
    }

    form h2 {
        font-size: 28px;
    }

    .logo {
        width: 30vw;
    }

    .hero-wrap .heading-title {
        font-size: 54px;
    }

    .hero-wrap {
        padding: 200px 0 300px;
    }

    .pmk-img {
        width: 397px;
        right: -176px;
    }

}

@media (max-width: 991px) {
    .about-wrap {
        padding: 70px 0 40px;
    }

    .heading-title {
        font-size: 30px;
    }

    p {
        font-size: 14px;
    }

    .gallery-grid-items .figure {
        max-width: 45%;
    }

    .spider-img {
        left: 80px;
        width: 26px;
    }

    footer .form-control {
        height: 50px;
    }

    .icon-list-items li {
        font-size: 14px;
    }

}

@media (max-width: 768px) {
    .hero-wrap .heading-title {
        font-size: 40px;
    }
}

@media (max-width: 767px) {
    .bg-move {
        position: inherit;
        transform: none !important;
    }

    .footer-menu {
        flex-direction: column;
        gap: 15px !important;
    }

    .eael-team-image {
        width: 222px;
    }

    footer .col-md-5 {
        order: 2;
        margin-top: 20px;
    }

    .eael-team-item-inner.middle-team {
        margin-top: 0px;
    }
}

@media (max-width: 575px) {
    .hero-wrap {
        padding: 150px 0 200px;
    }

    .creative-button-inner {
        padding: 10px 20px;
    }

    .wp-img-pumpkin {
        width: 198px;
        left: -91px;
    }

    .eael-creative-button .cretive-button-text {
        font-size: 16px;
    }

    .logo {
        width: 50vw;
    }

    .logo img,
    .footer-details img {
        width: 136px;
    }

    .hero-wrap .heading-title {
        font-size: 30px;
    }

    .hero-wrap .heading-title br {
        display: none;
    }

    form h2 {
        font-size: 24px;
    }

    .footer-form {
        padding: 20px;
    }

    .spider-img {
        left: 37px;
        width: 21px;
    }

    .heading-title {
        font-size: 26px;
        z-index: 2;
        position: relative;
    }

    .gallery-grid-items {
        justify-content: center;
    }

    .gallary-wrap,
    .meet-host-wrap {
        padding: 50px 0;
    }

    footer {
        padding: 50px 0 20px;
    }
}

.benefit-desc {
    display: block !important;
    position: unset !important;
    top: 0 !important;
    left: 0 !important;
    padding: 20px !important;
    -webkit-transform: none !important;
}

.benefit-desc p {
    font-size: 14px;
    padding: 10px;
    top: 30%;
    position: absolute;
    color: #fff;
}

.gallery-grid-items .figure h3 {
    opacity: 1;
}

.footer-icons {
    display: block;
    margin-left: auto;
    margin-right: auto;
    height: 80px;
    margin-top: 20px;
    width: 100%;
}



.dt-col-lg-12.dt-col-md-12.dt-col-12.wow.fadeInUp {
    padding: 100px;
    padding-top: 20px;
}

section.dt__posts.dt__posts--one.dt-py-default {
    padding-top: 150px;
    /* background: #1f0644; */
    display: flex;
    justify-content: center;
}

section.dt__posts.dt__posts--one.dt-py-default h1 {
    color: #212529 !important;
}

form.wpcf7-form {
    display: grid;
    justify-content: center;
}

.page-id-15 p.has-text-align-center {
    text-align: center;
}

input.wpcf7-form-control.wpcf7-submit.has-spinner {
    color: #fff;
    /* background-color: #1f064405; */
    background-color: #ffa126;
    border-color: #ffa126;
    padding: 5px 35px;
    border-radius: 14px;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 20px;
    color: white;
}

.fun-fear-section .section-title .title {
    font-size: 32px;
}

p.has-text-align-center {
    text-align: center;
}

.dt-col-lg-12.dt-col-md-12.dt-col-12.wow.fadeInUp p strong {
    font-size: 20px;
}

.dt-col-lg-12.dt-col-md-12.dt-col-12.wow.fadeInUp li strong {
    font-size: 16px;
}

.header nav {
    background: linear-gradient(to bottom, #db817b 0%, #713c6e 100%);
}

.home .header nav {
    background: #713c6e00;
}

.footer-menu {
    display: flex;
    margin: 15px 0;
    padding: 0;
    align-items: center;
    justify-content: center;
    gap: 30px;
    list-style: none;
    padding-top: 20px;
}

.footer-menu li a {
    font-size: 18px;
    color: #fff;
}


@media (max-width: 600px) {
    .dt-col-lg-12.dt-col-md-12.dt-col-12.wow.fadeInUp {
        padding: 20px;
    }

    h2.heading-title.mb-3.wow.fadeInUp {
        margin-top: 20px;
    }

    .gallery-grid-items .figure {
        max-width: 100%;
    }

    footer {
        background: linear-gradient(to bottom, #db817b 0%, #713c6e 100%);
    }

    .logo img,
    .footer-details img {
        width: 100%;
    }
}

@media (max-width: 1200px) {
    footer {
        background: linear-gradient(to bottom, #db817b 0%, #713c6e 100%);
        padding: 115px 0 40px;
    }

    footer .align-items-end {
        align-items: baseline !important;
    }
}

.nav-links li a:hover {
    padding: 10px 20px;
}

ul.wp-block-list {
    color: #707070;
    padding-left: 40px;
    list-style: square;
}

ul.wp-block-list li {
    padding-bottom: 15px;
}

/*  */
.footer-icons {
    width: auto;
    max-width: 100%;
    height: auto;
}

/* .footer-details p,
.footer-menu li a,
.copyright-text {
    color: #b60404cf;
} */
.gallery-grid-items .figure,
.eael-creative-button,
input.wpcf7-form-control.wpcf7-submit.has-spinner {
    background: radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.15), transparent 60%), linear-gradient(135deg, #925273, #d07a7a, #7b68ee);
}

.header .logo img,
.footer-details img {
    width: 70px;
    display: block;
    height: auto;
}

.eael-creative-button {
    background: #653c45;
}
