@import url('https://fonts.googleapis.com/css2?family=Inter+Tight:ital,wght@0,100..900;1,100..900&family=Manrope:wght@200..800&display=swap');

:root {
    --primary-color: #FCEE21;
    --heading-font: "Inter Tight", sans-serif;
    --body-font: "Manrope", sans-serif;
}

body {
    font-family: var(--body-font);
    font-weight: 500;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--heading-font);
}


body {
    font-family: var(--body-font);
    background: #000;
    color: #fff;
    line-height: 1.6;
}

.navbar {
    background: #000;
    padding: 30px 0px;
}

.navbar-nav {
    width: 100%;
    justify-content: end;
}

.link-wrap {
    gap: 20px
}

.navbar-nav .nav-link {
    color: #fff;
    font-weight: 500;
    margin: 0 8px;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link:hover {
    color: var(--primary-color);
}

.btn-touch {
    background: var(--primary-color);
    color: #000;
    border-radius: 30px;
    padding: 8px 20px;
    font-weight: 600;
    transition: 0.6s all ease;
}

.btn-touch:hover {
    background: #fff;
    color: #000;
}

/* HERO section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: url('../assets/img/hero-img.png') center center/cover no-repeat;
}

.hero-section::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to right,
            rgba(0, 0, 0, 0.85) 0%,
            rgba(0, 0, 0, 0.45) 50%,
            rgba(0, 0, 0, 0) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.2;
}

.hero-content p {
    max-width: 480px;
    opacity: 0.9;
    margin: 20px 0;
}

.review-rating {
    display: flex;
    align-items: center;
    gap: 6px;
}

.review-rating i {
    background: #FFAE00;
    padding: 8px 4px;
    font-size: 20px;
	margin-right: 8px;
}

.stats-container {
    max-width: 1200px;
    margin: 70px auto 0px;
    padding-bottom: 50px;
}

.btn-primary-custom {
    background: var(--primary-color);
    color: #000;
    border-radius: 30px;
    padding: 10px 28px;
    font-weight: 600;
    border: none;
}

.btn-primary-custom:hover{
	background:#fff;
	color: #000;
}

.stats-box h2 {
    font-weight: 600;
    font-size: 3rem;
}

.stats-box span {
    font-size: 18px;
    font-weight: 300;
    color: #8C8C8C;
}

.social-box {
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    text-align: center;
    display: flex;
    flex-direction: column;
}

.social-box i,
.social-box img {
    display: block;
    background: #ffffff;
    color: #000000;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    line-height: 42px;
    margin-top: -15px;
    cursor: pointer;
    transition: 0.3s;
}

.social-box h3 {
    font-weight: 400;
    font-size: 24px;
    font-family: var(--body-font);
}

.social-box i:hover {
    background: var(--primary-color);
    color: #000;
}


.about-section {
    color: #8C8C8C;
    background: radial-gradient(circle at top, #222 0%, #000 60%);
}

.about-content {
    font-size: 1.6rem;
    font-weight: 300;
    line-height: 1.5;
    max-width: 1000px;
}

.main-heading {
    font-size: 20px;
    font-weight: 400;
    color: #8C8C8C;
    text-transform: uppercase;

}

.about-content strong {
    font-weight: 600;
}


/* CARD */
.media-card {
    position: relative;
    border-radius: 22px;
    overflow: hidden;
    height: 100%;
    cursor: pointer;
}

/* MEDIA */
.media-card img,
.media-card video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}


.media-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.25);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}


.media-card:hover img,
.media-card:hover video {
    transform: scale(1.08);
}

.media-card:hover::after {
    opacity: 1;
}


.video-card .play-btn {
    position: absolute;
    inset: 0;
    margin: auto;
    width: 64px;
    height: 64px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 28px;
    cursor: pointer;
    z-index: 2;
    transition: transform 0.3s ease, opacity 0.3s ease;
}


.media-card:hover .play-btn {
    transform: scale(1.1);
}


.video-card.playing .play-btn {
    opacity: 0;
    pointer-events: none;
}

.read-more-btn {
    font-weight: 500;
    transition: all 0.3s ease;
}

.read-more-btn:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
}



.services-section .container {
    background: var(--primary-color);
    color: #000;
    max-width: 1440px;
    border-radius: 25px;
    padding: 60px 80px;
}

.service-label {
    font-size: 18px;
    font-weight: 500;
}

.services-carousel .service-card {
    text-align: center;
}

.services-carousel .img-wrap {
    border-radius: 22px;
    overflow: hidden;
    transition: transform 0.4s ease;
}

.services-carousel img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

/* Hover */
.services-carousel .service-card:hover img {
    transform: scale(1.08);
}

.services-carousel h3 {
    margin-top: 18px;
    font-weight: 600;
    font-size: 24px;

}

.services-carousel .owl-nav {
    display: flex !important;
    justify-content: space-between !important;
}

.services-carousel .owl-nav button {
    position: absolute;
    top: 40%;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: transparent !important;
    border: 1px solid #000 !important;
    font-size: 16px;
}

.services-carousel .owl-nav button:hover {
    background: #000 !important;
    color: #fff !important;
}

.services-carousel .owl-nav .owl-prev {
    left: -70px;
}

.services-carousel .owl-nav .owl-next {
    right: -70px;
}

.services-carousel .owl-dots,
.testimonial-carousel .owl-dots {
    margin-top: 25px;
    display: flex !important;
    justify-content: center;
    width: 100%;
    gap: 4px;
}

.services-carousel .owl-dots span,
.testimonial-carousel .owl-dots span {
    display: block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #000;
}

.services-carousel .owl-dot,
.testimonial-carousel .owl-dot {
    width: 8px;
    height: 8px;
    opacity: 0.3;
}

.services-carousel .owl-dot.active,
.testimonial-carousel .owl-dot.active {
    color: #000 !important;
    opacity: 1;
    transform: scale(1.1);
}

.services-carousel .owl-dot.active span,
.testimonial-carousel .owl-dot.active span {
    opacity: 1;
}



.why-choose-section {
    background: url(../assets/img/section-bg.png) center center / cover no-repeat, #000;
    color: #fff;
    padding-bottom: 220px;
}

.section-label {
    font-size: 20px;
}

.section-title {
    font-size: 42px;
    font-weight: 600;
    line-height: 1.2;
}

.section-desc {
    color: #aaa;
    max-width: 520px;
    margin-left: auto;
}

.why-card {
    background: #0D0D0D;
    border-radius: 22px;
    padding: 32px 26px;
    height: 100%;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
}


.icon-wrap img {
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 24px;
    margin-bottom: 18px;
}

.why-card h6 {
    font-weight: 600;
    margin-bottom: 10px;
}

.why-card p {
    font-size: 16px;
    color: #aaa;
    margin: 0;
}


.cta-box {
    background: #fff;
    border-radius: 40px;
    padding: 60px 20px;
    overflow: hidden;
    color: #000;
    margin-top: -10%;
}

.cta-box h2 {
    font-size: 42px;
    font-weight: 600;
}


.cta-btn {
    background: var(--primary-color);
    color: #000;
    font-weight: 600;
    border: none;
}

.cta-btn:hover {
    background: #000;
    color: #fff;
}

.cta-img {
    border-radius: 34px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
    padding: 0px;
    width: 20%;
}

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


.left-img {
    transform: rotate(-12deg);
}


.right-img {
    transform: rotate(12deg);
}

.gallery-section {
    color: #fff;
}

.gallery-section .container {
    position: relative;
    z-index: 2;
}



.gallery-title {
    font-size: 42px;
    font-weight: 600;
    line-height: 1.3;
}

.gallery-item {
    position: relative;
    border-radius: 17px;
    overflow: hidden;
    margin-top: 15px;
}

.gallery-item.tall {
    height: auto;
}

.gallery-item.small {
    margin-top: -50px;
}

.upside {
    margin-top: 110px;
}

.center {
    margin-top: 200px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-wrap:hover .gallery-tag {
    color: var(--primary-color);
}

.gallery-wrap:hover img {
    transform: scale(1.08);
}

.gallery-tag {
    font-size: 18px;
    color: #fff;
    font-weight: 300;
}

.gallery-tag span {
    color: #8C8C8C;
}

.view-more-btn {
    background: #fff;
    color: #000;
    font-weight: 500;
}

.view-more-btn:hover {
    background: var(--primary-color);
    color: #000;
}

.overlay-right {
    position: absolute;
    width: 500px;
    height: 600px;
    background: radial-gradient(circle, rgba(252, 238, 33, 0.3) 0%, rgba(255, 207, 47, 0) 100%);
    pointer-events: none;
    z-index: 1;
    filter: blur(40px);
    position: absolute;
    right: -15%;
    top: 5%;

}

.overlay-left {
    position: absolute;
    width: 500px;
    height: 600px;
    background: radial-gradient(circle, rgba(252, 238, 33, 0.3) 0%, rgba(255, 207, 47, 0) 100%);
    pointer-events: none;
    z-index: 1;
    filter: blur(40px);
    position: absolute;
    left: -15%;
    bottom: 5%;

}

.testimonial-section {
    background: var(--primary-color);
    padding-left: 2rem;
    color: #000;
}

.short-content {
    max-width: 500px;
    font-weight: 500;
}

.testimonial-carousel {
    margin-top: 30px;
}


.testimonial-card {
    border-radius: 22px;
    padding: 30px;
    min-height: 320px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    margin-top: 10px;
}

.testimonial-card .divider {
    color: #8C8C8C;
    opacity: 1;
}

.testimonial-card.light {
    background: #fff;
    color: #000;
}


.testimonial-card.dark {
    background: #000;
    color: #fff;
}


.quote {
    font-size: 1.8rem;
    line-height: 1.6;
    font-weight: 600;
}


.author {
    margin-top: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.author img {
    width: 60px !important;
    height: 60px;
    border-radius: 50%;
}

.stars strong {
    font-size: 18px;
    font-weight: 600;
    color: #000;
}

.dark .stars strong {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
}

.stars {
    color: #ffcf2f;
    font-size: 14px;
}

/* ACTIVE SLIDE */
.owl-item.active .testimonial-card {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

/* NAV */
.testimonial-carousel .owl-nav button {
    position: absolute;
    top: 40%;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid #000 !important;
    background: transparent !important;
}

.testimonial-carousel .owl-nav .owl-prev {
    left: -60px;
}

.testimonial-carousel .owl-nav .owl-next {
    right: 0px;
    background: #fff !important;
    color: #000;
}

.testimonial-carousel .owl-nav button:hover {
    background: #fff !important;
}



.blog-title {
    font-size: 42px;
    font-weight: 600;
}

.blog-card {
    height: 100%;
}

.blog-img {
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 15px;
}

.blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.blog-card:hover img {
    transform: scale(1.08);
}

.blog-date {
    display: block;
    font-size: 16px;
    margin-bottom: 6px;
    color: #8C8C8C;
    font-weight: 500;
}


.blog-heading {
    font-size: 18px;
    line-height: 1.5;
    font-weight: 500;
}

.blog-heading a {
    color: #fff;
    text-decoration: none;
}

.faq-section{
	overflow: hidden;
}

.faq-title {
    font-size: 42px;
    font-weight: 700;
}


.faq-img {
    border-radius: 20px;
    overflow: hidden;
    transform: rotate(5deg);
    margin-top: 50px;
}

.faq-img img {
    width: 100%;
    display: block;
    transition: all 1s ease;
}

.faq-img:hover img {
    transform: scale(1.05);
}

.faq-accordion .accordion-item {
    background: transparent;
    border: 1px solid #4D4C4C;
    border-radius: inherit;
    padding: 4px 20px;
    margin-bottom: 15px;
}

.faq-accordion .accordion-header {
    width: 100%;
    background: transparent;
    color: #fff;
    border: none;
    padding: 18px 0;
    font-size: 1.3rem;
    font-weight: 500;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-accordion .accordion-header:focus {
    outline: none;
}

.faq-accordion .icon {
    font-size: 24px;
    transition: transform 0.3s ease;
    border: 1px solid #fff;
    padding: 2px 14px;
    border-radius: 50%;
}


.faq-accordion .accordion-header:not(.collapsed) .icon {
    transform: rotate(45deg);
}


.faq-accordion .accordion-body {
    padding: 0 0 18px 0;
    font-size: 16px;
    color: #8C8C8C;
    font-weight: 500;
}


.newsletter-box {
    background: var(--primary-color);
    border-radius: 48px;
    padding: 60px;
    color: #000;
    gap: 5rem;
}

.newsletter-title {
    font-size: 42px;
    font-weight: 600;
    line-height: 1.2;
}

.newsletter-form {
    gap: 20px;
    border-bottom: 1px solid #000;
    padding-bottom: 5px;
}

.newsletter-form input {
    background: transparent;
    border: none;

    padding: 8px 0;
    width: 500px;
    outline: none;
    font-size: 14px;
}

.newsletter-form input::placeholder {
    color: #000;
}

.subscribe-btn {
    background: #000;
    color: #fff;
    border-radius: 999px;
    padding: 8px 20px;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.6s ease;
}

.subscribe-btn:hover {
    background: #fff;
    color: #000000;
}

.site-footer {
    font-size: 16px;
    font-weight: 400;
}

.footer-title {
    color: #8C8C8C;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 15px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: #fff;
    font-size: 16px;
    text-decoration: none;
}



.footer-links a:hover {
    color: var(--primary-color);
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    gap: 15px;
    font-size: 14px;
    margin-bottom: 15px;
}

.footer-contact i {
    color: #fff;
    font-size: 18px;
    margin-top: 3px;
}

ul.footer-contact li a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
}


.footer-divider {
    border-color: #8C8C8C;
    opacity: 1;
}


.footer-bottom-text {
    font-size: 16px;
    color: #8C8C8C;
}

.footer-bottom-text a {
    color: #8C8C8C;
    text-decoration: none;
}

.footer-bottom-text a:hover {
    color: #fff;
}


/* ABOUT PAGE CSS ADDED BY MADHAV */


/* ABOUT HERO */
.page-hero {
    position: relative;
    min-height: 520px;
    background: url(../assets/img/about-hero.png) no-repeat center center;
    background-size: cover;
    display: flex;
    align-items: center;
}

.page-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right,
            rgba(0, 0, 0, 0.55),
            rgba(0, 0, 0, 0.35));
    z-index: 1;
}

.page-hero__content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.page-hero__title {
    color: #ffffff;
    font-size: 48px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.page-hero__subtitle {
    color: #fff;
    opacity: 0.9;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.page-hero__btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--primary-color);
    color: #000;
    font-size: 16px;
    font-weight: 600;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.6s ease;
}

/* ABOUT FEATURE */
.about-feature {
    background-color: #000;
    padding: 100px 0;
    color: #fff;
    background: radial-gradient(circle at top, #222 0%, #000 60%);
}

.about-feature__eyebrow {
    display: block;
    font-size: 20px;
    font-weight: 500;
    color: #8C8C8C;
    margin-bottom: 14px;
}

.about-feature__title {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 24px;
}

.about-feature__text {
    font-size: 16px;
    line-height: 1.8;
    color: #8C8C8C;
}

.about-feature__image {
    border-radius: 22px;
    overflow: hidden;
    margin-left: auto;
}

.about-feature__image img {
    width: 100%;
    height: 425px;
    object-fit: cover;
    display: block;
}


/* AWARD SECTION */
.awards-section {
    background-color: var(--primary-color);
    padding: 80px 0;
}

.section-label-black {
    color: #000;
    margin-bottom: 20px;
    font-size: 20px;
}

.awards-section__title {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 60px;
    color: #000;
    margin-top: 20px;
}

.awards-list {
    border-top: 1px solid #000;
}

.awards-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 35px 0;
    border-bottom: 1px solid #000;
}

.awards-item__content {
    max-width: 65%;
}

.awards-item__title {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #000;
    font-family: var(--body-font);
}

.awards-item__desc {
    font-size: 16px;
    line-height: 1.6;
    color: #000;
    margin: 0;
}

.awards-item__year {
    font-size: 120px;
    font-weight: 700;
    color: #000;
    line-height: 1;
    font-family: var(--heading-font);
}

/* MISSION SECTION */
.mission-section {
    background-color: #000;
    background-image: url(../assets/img/mission-bg.png);
    padding: 90px 0 110px;
    color: #fff;
}

.mission-section__header {
    margin-bottom: 50px;
}

.mission-section__eyebrow {
    display: block;
    font-size: 20px;
    font-weight: 500;
    color: #8C8C8C;
    margin-bottom: 12px;
}

.mission-section__title {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
}

.mission-section__description {
    font-size: 16px;
    line-height: 1.7;
    color: #8C8C8C;
    margin-top: 35px;
}

.mission-section__image {
    border-radius: 20px;
    overflow: hidden;
    margin-top: 10px;
}

.mission-section__image img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    display: block;
}


/* TEAM SECTION */
.team-section {
    background-color: #000;
    padding: 90px 0;
    color: #fff;
}

.team-section__eyebrow {
    display: block;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 10px;
    color: #ffffff;
    opacity: 0.8;
}

.team-section__title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #ffffff;
    margin-top: 20px;
}

.team-grid {
    row-gap: 40px;
}

.team-card {
    background: transparent;
    text-align: left;
}

.team-card__image {
    border-radius: 18px;
    overflow: hidden;
    margin-bottom: 20px;
}

.team-card__image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.team-card__image img:hover {
    transform: scale(1.1);
}

.team-card__name {
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 15px;
    color: #ffffff;
    font-family: var(--body-font);
}

.team-card__role {
    font-size: 16px;
    color: #8C8C8C;
    margin: 0;
}

/* BLOG PAGE CSS */
.my-blog {
    background-color: #000;
}

.my-blog h1 {
    font-size: 36px;
    font-weight: 600;
    color: #222;
}

.my-blog .blog-card {
    background: #fff;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid #eee;
    transition: all 0.3s ease;
}

.my-blog .blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.my-blog .blog-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 6px;
}

.my-blog .blog-card h4 {
    font-size: 20px;
    line-height: 1.4;
    margin-top: 16px;
}

.my-blog .blog-card h4 a {
    color: #222;
    transition: color 0.3s ease;
}

.my-blog .blog-card h4 a:hover {
    color: #FCEE21; 
}

.my-blog .blog-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin-top: 10px;
    flex-grow: 1;
}

.my-blog .blog-card .btn-orange {
    align-self: flex-start;
    background-color: #FCEE21;
    color: #000;
    font-size: 14px;
    padding: 10px 22px;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.my-blog .blog-card .btn-orange:hover {
    background-color: #000;
    color: #fff;
}

.dropdown-menu.dropdown-menu-end.p-3.shadow.search-dropdown.show {
    width: 270px;
}

.search .container {
    min-height: 40vh;
}

@media (max-width: 991px){
	
	.section-desc {
    	margin-left: 0;
	}
	
	.homepage-about-container{
		flex-direction: column;
	}
	
	.cta-img.right-img{
		margin-top: 20px;
	}
	
	.link-wrap {
		gap: 0px;
    	flex-direction: column !important;
	}
	

	.testimonial-carousel .owl-nav button{
		position: relative;
	}
	
	.testimonial-carousel .owl-nav {
		display: flex;
		justify-content: center;
		gap: 10px;
		margin-top: 10px;
	}
	
	.testimonial-carousel .owl-nav .owl-prev {
    	left: 0px;
		background: #fff !important;
	}
	
	.services-carousel .owl-dots, .testimonial-carousel .owl-dots{
		display: none !important;
	}
}


@media (max-width: 767px) {
    .my-blog .blog-card img {
        height: 200px;
    }
	
	.center {
    	margin-top: 0px;
	}
	
	.testimonial-section {
    	padding-left: 0;
	}
	
	.testimonial-carousel .owl-nav button{
		display:none
	}
	
	.review-rating {
    	flex-direction: column;
    	align-items: baseline;
	}
	
	body form.es_subscription_form.es_subscription_form[data-form-id="2"].wysiwyg-form {
		flex-direction: column;
		align-items: start;
}
	
		body form.es_subscription_form.es_subscription_form[data-form-id="2"].wysiwyg-form .ig-es-form-input, body form.es_subscription_form.es_subscription_form[data-form-id="2"].wysiwyg-form .ig-es-form-field textarea, body form.es_subscription_form.es_subscription_form[data-form-id="2"].wysiwyg-form .ig_es_form_field_select {
			width: 320px !important;
	}
	
}

@media (max-width: 460px){
	
	.services-carousel h3 {
    	font-size: 18px;
	}
	
	.newsletter-section .container-fluid{
		padding: 0 !important;
		border-radius: 0 !important;
	}
	
	.newsletter-title {
    	font-size: 30px;
	}
	
	.newsletter-box {
		gap: 15px;
		justify-content: start !important;
		padding: 30px;
	}
	
}

time.updated {
    display: none;
}

