* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none !important;
    font-family: "Inter Tight", sans-serif;
}

body {
    background: #f7f9f2 !important;
}

/* ----------------------------------heder css start here  ----------------------------------*/
body.body-lock {
    overflow: hidden;
}

.superside-header {
    position: sticky;
    top: 0;
    width: 100%;
    background: #0a211f;
    z-index: 1000;
}

.superside-header * {
    font-family: "Lato", sans-serif;
}

.superside-header .nav-link,
.superside-header .nav-link:hover {
    padding: 1rem 0.5rem;
    font-weight: 500;
    color: #f7f9f2;
    cursor: pointer;
    font-size: 14px;
    display: flex;
    align-items: center;
}

.mega-menu-wrapper {
    position: fixed;
    top: 68px;
    left: 0;
    width: 100%;
    max-height: calc(100vh - 68px);
    overflow-y: auto;
    background: #f7f9f2;
    z-index: 999;
    display: none;
    border-top: 1px solid #eee;
}

.mega-menu-content {
    display: none;
    padding: 40px 0 20px;
}

.mega-menu-content.active {
    display: block;
}

.nav-link:hover,
.nav-link.active {
    color: #0c6e6d;
}

.btn-book {
    position: relative;
    display: inline-block;
    background-color: #d8ff85;
    color: #0a211f;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    overflow: hidden;
    height: 40px;

    line-height: 40px;
    vertical-align: middle;
}

.btn-book:hover {
    color: #0a211f;
}

.btn-text-wrapper {
    position: relative;
    display: block;
    height: 40px;
    line-height: 40px;
    overflow: hidden;
}

.btn-text {
    display: block;
    width: 100%;
    transition: transform 1.125s cubic-bezier(0.19, 1, 0.22, 1);
}

.btn-text-top {
    transform: translateY(0%);
}

.btn-text-bottom {
    position: absolute;
    top: 0;
    left: 0;
    transform: translateY(100%);
}

.btn-book:hover .btn-text-top {
    transform: translateY(-100%);
}

.btn-book:hover .btn-text-bottom {
    transform: translateY(0%);
}

.text-animate span {
    display: block;
    transition: transform 0.3s ease;
    will-change: transform;
}

.text-animate span:first-child {
    transform: translateY(0%);
}

.text-animate span:last-child {
    position: absolute;
    left: 0;
    top: 0;
    transform: translateY(100%);
}

.text-animate:hover span:first-child {
    transform: translateY(-100%);
}

.text-animate:hover span:last-child {
    transform: translateY(0%);
}

.btn-sign {
    position: relative;
    display: inline-block;
    background-color: transparent;
    color: #f7f9f2;
    padding: 0 20px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    border: 2px solid #f7f9f2;
    overflow: hidden;
    height: 40px;
    line-height: 40px;
}

.btn-sign .btn-text-wrapper {
    position: relative;
    display: block;
    height: 40px;
    line-height: 35px;
    overflow: hidden;
}

.btn-sign .btn-text {
    display: block;
    width: 100%;
    transition: transform 1.125s cubic-bezier(0.19, 1, 0.22, 1);
}

.btn-sign .btn-text-top {
    transform: translateY(0%);
}

.btn-sign .btn-text-bottom {
    position: absolute;
    top: 0;
    left: 0;
    transform: translateY(100%);
}

.btn-sign:hover .btn-text-top {
    transform: translateY(-100%);
}

.btn-sign:hover .btn-text-bottom {
    transform: translateY(0%);
}

.btn-sign:hover {
    color: #f7f9f2;
}

.nav-link .dot {
    visibility: hidden;
    width: 6px;
    height: 6px;
    background-color: #f7f9f2;
    border-radius: 50%;
    margin-right: 6px;
    display: inline-block;
}

.nav-link:hover .dot {
    visibility: visible;
}

.dropdown-mega:hover .dropdown-icon {
    transform: rotate(180deg);
    transition: transform 0.3s ease;
}

.nav-link {
    transition: color 0.3s ease;
}

.dot {
    transition:
        background-color 0.3s ease,
        visibility 0.3s ease;
}

.dropdown-icon {
    display: inline-block;
    transition: transform 0.3s ease;
}

.dropdown-icon img {
    filter: invert(1);
}

.dropdown-mega:hover .nav-link,
.nav-link.active {
    color: #f7f9f2;
}

.customeheader .nav-link,
.nav-item,
.navbar-brand {
    color: #f7f9f2;
}

.blogpara {
    color: #000;
    font-size: 16px;
}

.btn-book {
    background-color: #d8ff85;
    color: #0a211f;
    padding: 0 20px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    border: none;
    text-decoration: none;
    cursor: pointer;
}

.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #000;
    display: none;
    justify-content: flex-start;
    align-items: center;
    z-index: 9999;
    animation: fadeIn 0.4s ease forwards;
}

/* Popup container animation */
.popup-container {
    position: relative;
    max-width: 900px;
    width: 90%;
    padding: 40px 30px;
    animation: scaleIn 0.4s ease;
}

/* Close Button */
.popup-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 32px;
    cursor: pointer;
    z-index: 10000;
}

/* Email Form */
.email-form label {
    display: block;
    color: #fff;
    font-size: 12px;
    letter-spacing: 2px;
    margin-bottom: 10px;
    font-weight: 500;
}

.input-wrapper {
    display: flex;
    align-items: center;
    position: relative;
}

.input-wrapper input {
    flex: 1;
    font-size: 24px;
    background: transparent;
    border: none;
    color: #ccc;
    padding: 10px 0;
    outline: none;
}

.submit-arrow {
    background: none;
    border: 1px solid #fff;
    border-radius: 50%;
    color: #fff;
    font-size: 18px;
    padding: 8px 14px;
    margin-left: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-arrow:hover {
    background: #d8ff85;
    color: #000;
    border-color: #d8ff85;
}

/* Underline */
.input-underline {
    width: 100%;
    height: 2px;
    background: #fff;
    position: relative;
    margin-top: 6px;
}

.input-underline::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 120px;
    height: 2px;
    background-color: #d8ff85;
}
.divider {
    height: 1px;
    background-color: #ccc;
    margin: 10px 0;
    list-style: none;
}
/* Animations */
@keyframes fadeIn {
    from {
        background-color: rgba(0, 0, 0, 0);
    }

    to {
        background-color: rgba(0, 0, 0, 1);
    }
}

@keyframes scaleIn {
    from {
        transform: scale(0.9);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* ------------------ */
.commongreenbtn {
    background: #d8ff85;
    color: #0a211f;
    font-weight: 600 !important;
    padding: 10px 13px;
    font-weight: 500;
    border-radius: 30px;
    font-size: 14px;
    font-family: "Inter Tight", sans-serif;
}
.commongreenbtn:hover {
    color: #0a211f;
}
.listitem {
    width: calc(100% - 20px);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.listiteminner p {
    margin-bottom: 0;
}

.listitem .iconlist {
    width: 18px;
    height: auto;
    object-fit: contain;
    margin-left: 10px;
}
.listitem .iconlist img {
    width: 100%;
    height: auto;
}
.mainnavul {
    padding-left: 0;
}

.mainnavul li {
    list-style-type: none;
}

.fistlist {
    font-size: 16px;
    color: #0a211f;
    margin-top: 10px;
    position: relative;
    transition: padding-left 0.3s ease;
    padding-left: 0;
}

.fistlist::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 6px;
    height: 6px;
    background-color: black;
    border-radius: 50%;
    transform: translateY(-50%) scale(0);
    opacity: 0;
    transition:
        transform 0.3s ease,
        opacity 0.3s ease;
}

.fistlist:hover {
    padding-left: 16px;
}

.fistlist:hover::before {
    transform: translateY(-50%) scale(1);
    opacity: 1;
}

.secondlist {
    font-size: 14px;
    color: #818d89;
    margin-bottom: 10px;
}

.Creativedesignservices {
    background: #d8ff85;
    font-size: 24px;
    color: #000000;
    padding: 5px;
    border-radius: 10px;
    font-weight: 400;
    display: inline-flex;
    width: max-content;
    align-items: center;
}

.VideoMotion {
    background: #2a4e45;
    font-weight: 400;
    font-size: 24px;
    color: #8dfbb5;
    padding: 5px;
    border-radius: 10px;
    display: inline-flex;
    width: max-content;
    align-items: center;
}
.VideoMotion span {
    color: #8dfbb5;
}
.UIUX {
    background: #19546d;
    font-weight: 400;
    font-size: 24px;
    color: #f5f8f2;
    padding: 5px;
    border-radius: 10px;
    display: inline-flex;
    width: max-content;
    align-items: center;
}
.UIUX span {
    color: #f5f8f2;
}
.Marketingservices {
    font-weight: 400;
    background: #eee2ca;
    font-size: 24px;
    color: #0a211f;
    padding: 5px;
    border-radius: 10px;
    display: inline-flex;
    width: max-content;
    align-items: center;
}

.innerbadgegreen {
    background: #d8ff85;
    color: #000;
    border-radius: 20px;
    font-size: 8px;
    padding: 8px 12px;
    margin-left: 10px;
}
.wrap {
    overflow: hidden;
    display: inline-block;
    border-radius: 8px; /* optional: match image border radius */
}

.wrap img {
    transition: transform 0.4s ease;
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.wrap:hover img {
    transform: scale(1.2); /* zoom from center */
}

/* ----------------------------------heder css end here  ----------------------------------*/
/* ----------------------------------herosection css start here  ----------------------------------*/
.herosection {
    background: #0a211f;
    height: calc(100vh - 69px);
    display: flex;
    justify-content: center;
    align-items: center;
}

.herosectionspan {
    font-family: "Instrument Serif", serif;
    font-style: italic;
    font-size: 76px;
}

.headingone {
    font-size: 72px;
    font-family: "Inter Tight", sans-serif;
    color: #8dfdba;
}

.paraone {
    font-family: "Inter Tight", sans-serif;
    color: #f7f9f2;
    margin-bottom: 30px;
    font-size: 21px;
}



.gallery-section {
    height: 90vh;
    overflow: hidden;
    position: absolute;
    top: 0;
}

.gallery-section .gallery {
    display: flex;
    height: 100%;
    width: 100%;
    gap: 5px;
    padding: 0 20px;
    position: relative;
}

.col-4-image {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    animation: scroll-up 20s linear infinite;
}

.col-4-image:nth-child(2) {
    animation: scroll-down 20s linear infinite;
}

.imagegsap {
    padding: 0.5rem;
    flex-shrink: 0;
}

.imagegsap img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 15px;
    object-fit: cover;
}

@keyframes scroll-up {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-50%);
    }
}

@keyframes scroll-down {
    0% {
        transform: translateY(-50%);
    }
    100% {
        transform: translateY(0);
    }
}

/* .newfixerd {
    position: relative;
    right: 0;
    top: 0;
} */
/* ----------------------------------herosection css end here  ----------------------------------*/
/* ----------------------------------herosnewfixerd section css end here  ----------------------------------*/

.toparrow,
.crossicon {
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
}

.fixedsection {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 999;
    width: 100%;
    max-width: 1095px;
    padding: 0 15px;
}

.innerfixedsection {
    background: #d8ff85;
    border-radius: 5px;
    padding: 10px 15px;
    /* display: none; */
}

.innerfixedsectionpara {
    font-size: 16px;
    color: #0a211f;
}

.innerfixedsectionpara2 {
    font-size: 19px;
    font-weight: 600;
    color: #0a211f;
}

.linktext {
    text-decoration: none;
    transition: all 0.3s ease;
    color: hwb(175 4% 87% / 0.6);
}

.innerfixedsectionpara3:hover .linktext {
    text-decoration: underline !important;
}

.toparrow {
    display: inline-block;
    margin-left: 5px;
    transition: transform 0.3s ease;
    color: hwb(175 4% 87% / 0.6);
}

.innerfixedsectionpara3:hover .toparrow {
    transform: translate(4px, -2px) scale(0.9);
}

.innerfixedsectionpara4 {
    color: hwb(175 4% 87% / 0.6);
}

.innerfixedsection p {
    margin-bottom: 0;
}

/* ----------------------------------herosnewfixerd section css end here  ----------------------------------*/
/* ----------------------------------brandssection section css end here  ----------------------------------*/
.brandssection {
    padding: 40px 0;
}

.brandssection .brandssectiontext {
    max-width: 580px;
    margin: 0 auto;
}

.brandssection .brandssectiontextpara {
    font-size: 32px;
    color: #0a211f;
    text-align: center;
    margin-bottom: 30px;
}

.brandssection .scroller {
    overflow: hidden;
    position: relative;
    width: 100%;
    -webkit-mask: linear-gradient(90deg, transparent, white 20%, white 80%, transparent);
    mask: linear-gradient(90deg, transparent, white 20%, white 80%, transparent);
}

.brandssection .scroller__inner {
    display: flex;
    flex-wrap: nowrap;
    gap: 2rem;
    animation: scroll var(--_animation-duration, 70s) var(--_animation-direction, forwards) linear infinite;
    width: max-content;
}

.brandssection .scroller[data-direction="right"] {
    --_animation-direction: reverse;
}

.brandssection .scroller[data-direction="left"] {
    --_animation-direction: forwards;
}

.brandssection .scroller[data-speed="fast"] {
    --_animation-duration: 20s;
}

.brandssection .scroller[data-speed="slow"] {
    --_animation-duration: 70s;
}

.brandssection .brand-box {
    width: 100px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 10px;
    background-color: transparent;
    border-radius: 6px;
    overflow: hidden;
}

.brandssection .brand-logo {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.brandssection .brand-logo:hover {
    transform: scale(1.05);
}

.brandssection .brand-logo:hover {
    transform: scale(1.05);
}

@keyframes scroll {
    to {
        transform: translateX(calc(-50% - 1rem));
    }
}

/* ----------------------------------brandssection section css end here  ----------------------------------*/
/* ----------------------------------madeforflex section css end here  ----------------------------------*/
.madeforflex {
    padding: 120px 0;
    background: #0a211f;
}

.madeforflextextsection {
    max-width: 840px;
    margin: 0 auto 60px;
    text-align: center;
}

.madeforflextextsectionpara {
    font-size: 14px;
    color: #f7f9f2;
    text-transform: uppercase;
}

.madeforflextextsectionheading {
    font-size: 32px;
    color: #f7f9f2;
}

.madeforflextextsectionheading span {
    font-family: "Instrument Serif", serif;
    font-style: italic;
}

.mffwarrpertext {
    padding: 20px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.mffwarrpertext.theme1 {
    background: #2a4e45;
}

.mffwarrpertexthead {
    font-size: 31px;
    font-family: "Instrument Serif", serif;
    font-style: italic;
    font-weight: 400;
    color: #8dfdba;
}

.mffwarrpertexthead span {
    font-size: 31px;

    font-family: "Inter Tight", sans-serif;
}

.mffwarrpertext p {
    font-family: "Inter", sans-serif;
    margin-bottom: 0;
    font-size: 15px;
    color: #8dfdba;
}

.theme2 h4,
.theme2 p,
.theme3 h4,
.theme3 p {
    color: #0a211f;
}

.theme2 h4,
.theme3 h4 {
    font-size: 30px;
}

.theme2 span,
.theme3 span {
    font-family: "Instrument Serif", serif;
    font-style: italic;
}

.mffwarrpertext.theme2 {
    background: #c4e878;
}

.mffwarrpertext.theme3 {
    background: #eef3e4;
}

.cardforcolmd4 {
    height: 620px;
    overflow: hidden;
    transition: all 0.4s ease-in-out;
    display: flex;
    flex-direction: column;
    border-radius: 10px;
}

.mffwarrperimage {
    transition: height 0.4s ease;

    overflow: hidden;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.mffwarrpertext p {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition:
        opacity 0.4s ease,
        max-height 0.4s ease;
}

.cardforcolmd4:hover .mffwarrperimage {
    height: 65%;
}

.cardforcolmd4:hover .mffwarrpertext p {
    opacity: 1;
    max-height: 200px;

    margin-top: 10px;
}

.mffimge {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
}

/* ----------------------------------madeforflex section css end here  ----------------------------------*/
/* ----------------------------------successinnumbers section css start here  ----------------------------------*/

.successinnumbers {
    padding: 150px 0 100px;
}

.successinnumberstextsection {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.successinnumberstextsectionpara {
    font-size: 14px;
    font-weight: 400;
    color: #0a211f;
}

.successinnumberstextsectionheading {
    font-size: 60px;
    font-family: "Inter Tight", sans-serif;
    font-weight: 400;
    color: #0a211f;
    margin-bottom: 30px;
}

.successinnumberstextsectionheading span {
    font-size: 64px;
    font-family: "Instrument Serif", serif;
    font-style: italic;
}

.counter {
    font-size: 90px;
    font-family: "Instrument Serif", serif;
    color: #0a211f;
    text-align: right;
}

.successinnumbersrow p {
    font-size: 14px;
    font-weight: 400;

    color: #0a211f80;
}

.successinnumbersrow .fortopauto {
    margin-top: auto;
}

.successinnumbersrow .col-md-6 .row {
    border-bottom: 1px solid #0a211f26;
}

.fortopauto .paralink,
.fortopauto span {
    color: #0a211f;
}

.paralink {
    position: relative;
    display: inline-block;
    font-size: 14px;
    font-weight: 400;
    color: #0a211f;
    text-decoration: none;
    cursor: pointer;
}

.paralink::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: calc(100% - 20px);
    height: 1px;
    background-color: #0a211f;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.paralink:hover::after {
    opacity: 1;
}

.toparrow {
    display: inline-block;
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.paralink:hover .toparrow {
    transform: translateY(-2px);
}

/* ----------------------------------successinnumbers section css end here  ----------------------------------*/
/* ----------------------------------easyhassle-free section css end here  ----------------------------------*/

.easyhassle-free {
    overflow-x: hidden;
}

.easyhassle-free .easyhassle-freetextpara {
    text-transform: uppercase;
    color: #0a211f;
    font-size: 14px;
}

.swiper {
    width: 100%;
    padding: 40px 0;
    overflow: hidden;
}

.swiper-wrapper {
    display: flex;
    transition-timing-function: linear !important;
}

.swiper-slide {
    flex-shrink: 0;
    width: calc((100% / 4.1) - 20px);
    margin-right: 20px;
    background: #eee;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-slide img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.slide-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.slide-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.badge-container {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 10px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    justify-content: flex-start;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.badgecustom {
    padding: 4px 10px;
    font-size: 12px;
    border: 2px solid #f7f9f2;
    color: #f7f9f2;
    border-radius: 30px;
    overflow: hidden;
    white-space: nowrap;
}

.swiper-slide:hover .badge-container {
    opacity: 1;
    transform: translateY(0);
}

.easyhassle-freetextheading {
    font-size: 60px;
}

.easyhassle-freetextheading span {
    font-family: "Instrument Serif", serif;
    font-style: italic;
}

/* ----------------------------------easyhassle-free section css end here  ----------------------------------*/

/* ----------------------------------e.easyhassle {
 section css strt here  ----------------------------------*/

.easyhassle {
    padding: 60px 0;
    background-color: #f7f9f2;
}

.easyhassle img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 0;
}

.easyhassle-top-images .col-md-6,
.col-md-4,
.col-12 {
    display: flex;
    flex-direction: column;
}

.easyhassle .row {
    align-items: stretch;
}

.easyhassletextpara {
    font-size: 15px;
    color: #0a211f;
    margin-bottom: 5px;
}

.easyhassletextheading {
    font-size: 60px;
    margin-bottom: 0;
    color: #0a211f;
    line-height: 1.1;
}

.easyhassletextheading span {
    font-size: 64px;
    font-family: "Instrument Serif", serif;
    font-style: italic;
    display: inline-block;
}
/* Ensure swiper images on mobile don’t stretch oddly */
.square-slide {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 8px;
}

.square-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Swiper Dots */
.swiper-pagination {
    position: relative;
    margin-top: 12px;
    text-align: center;
}

.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background-color: #d9d9d9;
    opacity: 1;
    margin: 0 6px !important;
    border-radius: 50%;
}

.swiper-pagination-bullet-active {
    background-color: #0c6e6d;
}

/* ----------------------------------e.easyhassle {
 section css end here  ----------------------------------*/

/* ----------------------------------fromsectionsection css strt here  ----------------------------------*/

.formvalid {
    background: #0a211f;
    padding: 40px;
    border-radius: 20px;
}
.formimage {
    object-fit: cover;
    border-radius: 15px;
}
.custom-input {
    border: 1px solid #0c6e6d !important;
    background-color: rgba(255, 255, 255, 0.4) !important;
    padding: 10px 15px !important;
    color: #ffffff !important;
    border-radius: 4px !important;
    font-size: 14px !important;
}

.custom-input::placeholder {
    color: #ffffff !important;
    opacity: 0.7;
}

.fromsection .btn-submit {
    background: #d8ff85;
    color: #0a211f;
    padding: 15px 10px;
    font-weight: 600;
    border-radius: 30px;
    font-size: 14px;
    font-family: "Inter Tight", sans-serif;
    border: 0;
    width: 120px;
    margin-left: auto;
    margin-top: 40px;
}

.fromsection {
    background-color: #fff;
    padding: 60px 0;
}

.custom-input.is-invalid {
    border-color: red;
}

.invalid-feedback {
    display: none;
    font-size: 13px;
    color: red;
    margin-top: 5px;
}

.custom-input.is-invalid + .invalid-feedback {
    display: block;
}

/* ----------------------------------fromsectionsection css end here  ----------------------------------*/

/* ----------------------------------footer start css end here  ----------------------------------*/

.superside-footer {
    position: relative;
    color: #f7f9f2;
    /* background: #transparent; */
    font-family: "Lato", sans-serif;
    overflow: hidden;
    padding: 40px 0 0;
}

.superside-footer .footer-overlay {
    background-image: url("../assets/footerbackground.png");
    background-size: cover;
    background-repeat: no-repeat;
    padding: 60px 0;
}

.footer-titlediv {
    margin: 0 auto;
    max-width: 580px;
    text-align: center;
    padding: 50px 0;
}

.superside-footer .footer-title {
    font-size: 64px;
    font-weight: 400;
    max-width: 560px;
    color: #fff;

    text-align: center;
}

.superside-footer .footer-title span {
    font-family: "Instrument Serif", serif;
    font-style: italic;
}

.superside-footer .footer-heading {
    font-weight: 300;
    margin-bottom: 1rem;
    font-size: 14px;
    color: #f7f9f2;
}

.superside-footer .footer-links a {
    display: block;
    color: #7a8784;
    margin-bottom: 8px;
    font-size: 14px;
    text-decoration: none;
}

.superside-footer .footer-links a:hover {
    color: #f7f9f2;
}

.superside-footer .footer-social a {
    display: inline-block;
    color: #ccc;
    font-size: 18px;
    margin-right: 15px;
    transition: color 0.3s ease;
}

.superside-footer .footer-social a img {
    border: 1.5px solid #f7f9f2;
    width: 35px;
    height: 35px;
    padding: 8px;
    border-radius: 50%;
}

.footer-half-border {
    width: 49% !important;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.2);
}

.borderforfooter {
    display: flex;
    justify-content: space-between;
    width: 100%;
}
.BottomfooterRow {
    justify-content: space-between;
}

/* ----------------------------------footer start css end here  ----------------------------------*/
