* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

/* @font-face {
    font-family: "Space Grotesk";
    src: url(../public/fonts/SpaceGrotesk-VariableFont_wght.ttf) format("TrueType");
    font-style: normal;
}

@font-face {
    font-family: "Poppins";
    src: url(../public/fonts/Poppins-ExtraBold.ttf) format("TrueType");
    font-weight: 800;
    font-style: normal;
}

@font-face {
    font-family: "Poppins";
    src: url(../public/fonts/Poppins-Bold.ttf) format("TrueType");
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: "Poppins";
    src: url(../public/fonts/Poppins-SemiBold.ttf) format("TrueType");
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: "Poppins";
    src: url(../public/fonts/Poppins-Medium.ttf) format("TrueType");
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: "Poppins";
    src: url(../public/fonts/Poppins-Regular.ttf) format("TrueType");
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: "Poppins";
    src: url(../public/fonts/Poppins-Light.ttf) format("TrueType");
    font-weight: 300;
    font-style: normal;
} */

:root {
    --primary-color: rgba(255, 255, 255, 1);
    --secondary-color: rgb(0, 0, 0);
    --warning: rgba(253, 191, 32, 1);
    --warning-secondary: rgba(255, 193, 7);
    --info: rgba(22, 96, 194, 1);
    --muted: rgba(245, 245, 245, 1);
    --disabled: rgba(140, 144, 144, 1);
    --muted-black: rgba(30, 34, 34, 1);
    --dark-blue: #1660C2;
    --blue-color: #1977F3;
    --white-color: #fff;
    --industry-card-hover-bg: #072B5B;
    --dark-gray: #1E2222;
    --yellow-color: rgba(253, 191, 32, 1);
    --black-color: #000;
}

.body {
    font-family: "Poppins", sans-serif;
    overflow-x: hidden;
    letter-spacing: -0.4px;
}

.main {
    overflow-x: hidden;
}

/* common styles start */



.common-para {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: -0.4px;
    color: var(--secondary-color);
    margin-bottom: 0;
}

.section-para {
    font-weight: 400;
    font-size: 16px;
    line-height: 25px;
}

.section-heading {
    font-size: 36px;
    font-weight: 700;
    line-height: 49px;
    letter-spacing: -0.4px;
}

.card-heading {
    font-size: 26px;
    font-weight: 700;
    line-height: 33px;
    letter-spacing: 0.4px;
    color: var(--secondary-color);
}

.image-overlay-primary {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: linear-gradient(125.14deg,
            rgba(0, 0, 0, 0.3) 34.98%,
            #000000 93.08%);
}

.image-overlay-secondary {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: linear-gradient(315deg, rgba(0, 0, 0, 0) 41.98%, #000000 93.08%);
}

.line {
    margin-block: 0.4rem;
    border-top: 1px solid;
    border-top-color: var(--secondary-color);
    width: 100%;
    opacity: 1;
}

.section-divider {
    opacity: 0.5;
}

.white-line {
    border-top-color: var(--primary-color) !important;
}

.common-padding-class {
    padding-inline: 140px;
    padding-block: 71px;
}

@media screen and (min-width: 1700px) {
    .common-padding-class {
        padding-inline: 200px;
        /* padding-block: 50px; */
    }
}

@media screen and (max-width: 1024px) {
    .common-padding-class {
        padding-inline: 130px;
        padding-block: 50px;
    }
}

@media screen and (max-width: 768px) {
    .common-padding-class {
        padding-inline: 50px;
        padding-block: 35px;
    }
}

@media screen and (max-width: 540px) {
    .common-padding-class {
        padding-inline: 20px;
    }

    .section-heading {
        font-size: 28px;
        line-height: 34px;
        font-weight: 700;
    }
}

/* cta start */
.cta-button {
    padding: 8px 32px;
    color: var(--primary-color);
    background-color: transparent;
    border: 1px solid var(--primary-color);
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    text-decoration: none;
    text-align: center;
    width: max-content;
    text-transform: capitalize;
    letter-spacing: -0.4px;
}

.bold-cta {
    font-weight: 600;
    border: 1.5px solid var(--primary-color);
}

.ct-black-color {
    color: var(--secondary-color);
    border: 1px solid var(--secondary-color);
    background-color: var(--primary-color);
}

.muted-cta {
    background-color: var(--muted);
    color: var(--secondary-color);
    border: 1px solid var(--secondary-color);
}

.light-blue-cta-button {
    border: 1px solid var(--info);
    background-color: var(--info);
}

.cta-button:hover,
.light-blue-cta-button:hover {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    transition: 0.4s ease-in-out;
}

.ct-black-color:hover {
    color: var(--primary-color);
    background-color: var(--secondary-color);
    border: 1px solid var(--primary-color);
    transition: 0.4s ease-in-out;
}

@property --angle {
    syntax: "<angle>";
    initial-value: 0deg;
    inherits: false;
}

.cta-animate {
    position: relative;
}

.cta-animate::before,
.cta-animate::after {
    content: "";
    position: absolute;
    inset: -0.14rem;
    z-index: -1;
    background: linear-gradient(var(--angle), var(--info), var(--primary-color));
    animation: rotateCta 3s linear infinite reverse;
    -webkit-animation: rotateCta 3s linear infinite reverse;
    border-radius: 25px;
}

.cta-animate::after {
    filter: blur(1px);
    -webkit-filter: blur(1px);
}

@keyframes rotateCta {
    0% {
        --angle: 0deg;
    }

    100% {
        --angle: 360deg;
    }
}

/* cta end */

/* common styles end */

/* navbar start */

.navbar {
    /* background-color: transparent !important; */
    /* padding: 37px; */
    padding: 0 37px;
    position: absolute;
    width: 100%;
    top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav-link {
    color: var(--primary-color);
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav-icons {
    flex-grow: initial !important;
}

.navbar-nav {
    gap: 10px;
}

.cta-nav {
    padding: 8px 32px !important;
    height: fit-content;
}

.cta-nav:hover {
    color: var(--primary-color);
    background-color: var(--info);
}

.section-main-heading {
    font-weight: 700;
    font-size: 36px;
    line-height: 40px;
    color: var(--black-color);
    text-transform: capitalize;
    margin-bottom: 0;
}

/* .cta-nav:hover {
          background-color: var(--secondary-color);
          border: 1px solid var(--primary-color);
          color: var(--primary-color)
      } */

.navbar-toggler:focus,
.navbar-toggler:active,
.navbar-toggler-icon:focus {
    outline: none;
    box-shadow: none;
}

.toggler-icon {
    width: 30px;
    height: 3px;
    background-color: var(--primary-color);
    display: block;
    transition: all 0.2s;
}

.middle-bar {
    margin: 5px auto;
}

.navbar-toggler .top-bar {
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transform-origin: 10% 10%;
    -webkit-transform-origin: 10% 10%;
}

.navbar-toggler .middle-bar {
    opacity: 0;
    filter: alpha(opacity=0);
    -webkit-filter: alpha(opacity=0);
}

.navbar-toggler .bottom-bar {
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    transform-origin: 10% 90%;
    -webkit-transform-origin: 10% 90%;
}

.navbar-toggler.collapsed .top-bar {
    transform: rotate(0);
    -webkit-transform: rotate(0);
}

.navbar-toggler.collapsed .middle-bar {
    opacity: 1;
    filter: alpha(opacity=100);
    -webkit-filter: alpha(opacity=100);
}

.navbar-toggler.collapsed .bottom-bar {
    transform: rotate(0);
    -webkit-transform: rotate(0);
}

.navbar-backdrop {
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    min-height: 100vh;
    align-items: flex-start;
    position: fixed;
    animation-name: navCollapse;
    animation-duration: 0.4s;
}

.overflow-hidden {
    overflow: hidden;
}

@keyframes navCollapse {
    from {
        min-height: 0;
    }

    to {
        min-height: 100vh;
    }
}

@media screen and (min-width: 1400px) {

    .navbar-brand,
    .nav-item {
        min-height: 99px;
        display: flex;
        align-items: center;
    }

    .text-link:hover {
        background-color: var(--warning);
        color: var(--secondary-color) !important;
        transition: all 0.5s;
    }

    .navbar-expand-lg .navbar-nav .nav-link {
        padding-inline: 1rem;
    }
}

@media screen and (max-width: 1400px) {
    .navbar {
        padding-inline: 2px;
        padding-block: 17px;
        /* background-color: #1E2223 !important; */
    }

    .navbar {
        transition: background-color 0.4s ease-in-out;
        /* Adjust the duration and timing function */

    }

    .nav-item {
        height: 39px;
        display: flex;
        align-items: center;


    }

    .nav-item a {
        color: #8C9090;
    }

    .nav-item img {
        margin-top: 50px;
    }

    .navbar-nav {
        justify-content: start;
        align-items: start;
        margin-top: 20px;
        padding-inline: 30px;
    }

    .navbar-nav {
        gap: 1px;
    }

    .navbar-nav hr {
        height: 2px;
        background-color: #F5F5F5;
        width: 100%;
        margin-block: 0px;
    }

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

}

.navbar-second-text {
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    color: #FFFFFF;
}

/* navbar end */
.section-padding {
    padding-inline: 130px;
    padding-block: 70px;
}

.hero-section {
    background-image: url("../jpg/hero-img.jpg");
    height: 456px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: end;
    width: 100%;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
}

.hero-content h1 {
    font-size: 42px;
    font-weight: 700;
    line-height: 52.5px;
    letter-spacing: -0.4px;
    color: #FFFFFF;
}

@media screen and (max-width:767px) {
    .hero-section {
       align-items: end;
       justify-content: baseline;
    }

    .hero-content h1 {
        font-size: 34px;
        font-weight: 700;
        line-height: 52.5px;
        letter-spacing: -0.4px;
        color: #FFFFFF;
        width: 70vw;
    
    }
    .hero-content a {

    }

    .hero-content {
        display: flex;
        flex-direction: column;
        gap: 10px;

    }
}

/* Connected Future section  */
.connected-future {
    background-color: #FDBF20;

}

.connected-future-grid {
    display: grid;
    grid-template-columns: 6fr 5fr;
    gap: 10px;
    max-width: 1157px;
    margin: auto;
}
.connected-future-grid h2{
color: #000000;
max-width: 537px;
}
/* .connected-future-grid p{
color: #000000;
} */

.image-container {
    display: flex;
    justify-content: center;
}

.connected-future-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.connected-future .section-para{
    color: #000;
    max-width: 537px;
}

@media (min-width: 1600px) {
    .connected-future-grid img{
        width: 100%;
    }
    .connected-future-grid {
    max-width: unset;
    }
    .connected-future-grid h2{
        max-width: unset;
    }
    .connected-future .section-para{
        max-width: unset;
    }
}

@media (max-width: 1024px) {
    .connected-future-grid img{
        width: 100%;
        height: auto;
    }
}

.connected-future-grid .text-grid {
    display: flex;
    flex-direction: column;
    gap: 10px;
}


@media (max-width: 1300px) {
    .connected-future-grid {
        display: grid;
        grid-template-columns: 7fr 4fr;
        gap: 23px;
    }
}

@media (max-width: 1200px) {
    .connected-future-grid {

        gap: 20px;
    }
}

@media (max-width: 924px) {
    .connected-future-grid {
        grid-template-columns: 1fr;
        /* Stack the items vertically on smaller screens */
        gap: 20px;
    }
}

.wireless-capabilities h1 {
    padding-bottom: 50px;
    color: #000000;
}

/* Wireless Capabilities  section */
.wireless-capabilities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* 3 equal columns */
    gap: 25px;

}

.wireless-capabilities-grid .card {
    position: relative;
    margin-bottom: 240px;
    border: none;
}

.wireless-capabilities-grid .card img {
    width: 100%;
    height: auto;
}

.wireless-capabilities-grid .card .hover-content {
    position: absolute;
    height: 250px;
    width: 90%;
    top: 80%;
    left: 5%;
    background: #FFFFFF;
    z-index: 2;
    color: var(--black-color);
    padding-block: 30px;
    padding-inline: 30px;
    opacity: 1;
    transition: 0.3s ease-in-out, color 0.3s ease-in-out;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(165, 161, 161, 0.795);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

.wireless-capabilities-grid .card .hover-content h3 {
    font-size: 20px;
    line-height: 29.5px;
    font-weight: 700;
    color: #000000;
}

.wireless-capabilities-grid .card .hover-content p {
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: #565656;
}

.wireless-capabilities-grid .card:hover .hover-content {
    color: var(--primary-color);
    /* Changes text color */
    background: #1977F3;
    /* Changes background color */
    opacity: 1;
    /* Ensure hover effect is visible */
    transition: 0.3s ease-in-out, color 0.3s ease-in-out;
}

.wireless-capabilities-grid .card:hover .hover-content h3{
 font-weight: 700;
color: #FFFFFF;
}
.wireless-capabilities-grid .card:hover .hover-content p{
font-weight: 400;
color: #FFFFFF;
font-family: "Poppins", sans-serif; 
}

@media screen and (max-width:1250px) {
    .wireless-capabilities-grid {
        /* display: grid;
        grid-template-columns: repeat(2, 1fr);  */
        display: flex;
        flex-wrap: wrap;
        gap: 15px;
        justify-content: center;
        align-items: center;

    }
}

@media screen and (max-width:1069px) {
    .wireless-capabilities-grid .card {
        width: 80%;
    }
}

@media screen and (max-width:767px) {
    .wireless-capabilities h1 {
        padding-bottom: 35px;
    }
}

@media screen and (max-width:640px) {
    .wireless-capabilities-grid .card {
        width: 100%;
    }

}


/* Ready to optimize your Wi-Fi network */
.effort-section {
    width: 100%;
}

.curios-row {
    display: flex;
    height: 310px;
}

.curios-card-image-container {
    position: relative;
}

.curios-card-image-container>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.curious-card-content {
    background-color: var(--dark-gray);
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: center;
    align-items: flex-start;
    padding-left: 80px;
}

.curios-card-heading {
    color: var(--white-color);
    font-size: 24px;
    font-weight: 700;
    line-height: 40px;
}

.curios-card-heading h2{
    color: #FFFFFF;
    font-weight: 700;
    font-size: 24px;
    line-height: 40px;
    letter-spacing: 0.4px;
}

@media screen and (max-width:767px) {
    .curios-card-heading {
        text-align: center;
        font-size: 18px;
        line-height: 24px;
        padding-inline: 30px;
        font-weight: 700;
    }

    .curious-card-content {
        padding-block: 30px;
        padding-left: 0px;
        align-items: center;
    }

    .curious-card-content a {
        margin: auto;
    }

    .curious-card-content h2 {
        margin: auto;
    }

    .curios-row {
        flex-direction: column-reverse;
        height: auto;
    }

    .effort-section-row {
        flex-direction: column;
    }
}

/* case studies section */
.case-studies {
    overflow: hidden;
    position: relative;
    padding-inline: 140px;
    padding-top: 65px;
    padding-bottom: 31px;
}
.case-studies h1{
    color: #000000;
}
.case-studies p{
    color: #565656;
}
@media screen and (max-width: 1024px) {
    .case-studies {
        overflow: hidden;
        position: relative;
        padding-inline: 130px;
        padding-top: 50px;
    }
}

@media screen and (max-width: 768px) {
    .case-studies {
        padding-inline: 50px;
        padding-top: 50px;

    }
}

@media screen and (max-width: 540px) {
    .case-studies {
        padding-inline: 20px;

    }

}

.case-studies-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding-top: 6%;
    position: relative;
}

.case-studies-card {
    display: flex;
    flex-direction: column;
}

.case-studies-card:nth-child(2) {
    transform: translateY(-25%);
}

.case-studies-card:nth-child(3) {
    transform: translateY(-50%);
}

.case-studies-card hr {
    padding-bottom: 5px;
}

.case-studies-card .heading {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    padding-bottom: 5px;
    min-height: 75px;

}

.case-studies-card h4 {
    font-size: 18px;
    line-height: 29.5px;
    font-weight: 500;
    display: inline;
    color: #000000;
}

.arrow-button {
    border: 1px solid;
    border-radius: 12px;
    margin-left: auto;

}

.arrow-button img {
    padding-inline: 7px;
    padding-block: 14px;
}

.case-studies-card-img {
    width: 100%;
    object-fit: cover;
}

.button-container {
    display: flex;
    justify-content: end;
    align-items: center;
    margin-top: 50px;
    position: relative;
}

.view-button {
    border: 2px solid black;
    border-radius: 50px;
    padding-inline: 25px;
    padding-block: 5px;
    background-color: transparent;
    font-size: 16px;
    font-weight: 500;
    transform: translateY(-70px);
    position: absolute;
    bottom:-17px;
   right: 0;
}

@media screen and (max-width:1220px) {
    .view-button {
        bottom:-17px;
    }
}

@media screen and (max-width:1150px) {
    .case-studies-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        padding-top: 6%;
        position: relative;
    }

    .case-studies {
        overflow: hidden;
        padding-bottom: 70px;

    }

    .case-studies-card:nth-child(2) {
        transform: translateY(0);
    }

    .case-studies-card:nth-child(3) {
        transform: translateY(0);
    }

    .case-studies-card:nth-child(3) {
        transform: translateX(50%);
    }


}

@media screen and (max-width:870px) {
    .case-studies-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 30px;

    }

    .case-studies {
        overflow: hidden;
        padding-bottom: 10px;

    }

    .case-studies-card:nth-child(3) {
        transform: translateX(0);
    }

    .button-container {
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 50px;
    }

    .view-button {
        position: relative;
        margin-top: 60px;
        
    }
}


/* Blog section */
.blog-section {
    background-color: #D9D3C3;
}
.blog-section h1{
    color: #000000;
}

.blog-section-para {
    font-size: 16px;
    font-weight: 400;
    color: #565656;
    line-height: 40px;
}

.blog-card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-card-grid .card {
    display: flex;
    flex-direction: column;
    border-radius: 0%;
}

.card-details {
    display: flex;
    flex-direction: column;
}

.blog-card-grid .card .name-date {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding-inline: 20px;
}

.blog-card-grid .card .name-date .name {
    font-size: 13px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: -0.4;
    padding-top: 13px;

    color: #565656;
}

.vertical-line-border {
    border-left: 2px solid #565656;
    /* A vertical line using the left border */
    height: 15px;
    /* Height of the vertical line */
}

.blog-card-grid .card .name-date .date {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-block: auto;

    gap: 8px;
}

.blog-card-grid .card .name-date .date p {
    font-size: 12px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: -0.4;
    padding-top: 13px;
    color: #565656;
}

.blog-card-grid .card .card-details-title {
    padding-inline: 20px;
    font-size: 18px;
    font-weight: 600;
    line-height: 27px;
    height: 90px;
}

.blog-card-grid .card .card-details-button {
    display: inline-block;
    /* Ensures the button takes up only as much space as the text */
    background-color: #D9D3C3;
    border-radius: 50px;
    padding: 5px 10px;
    /* Optional: Add some padding for better button appearance */
    font-size: 16px;
    /* Adjust font size if needed */
    font-weight: 400;
    color: #000;
    /* Text color */
    margin-bottom: 30px;
    margin-left: 20px;
}

.blog-button-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
}

.blog-button {
    border: 2px solid black;
    border-radius: 50px;
    padding-inline: 25px;
    padding-block: 5px;
    background-color: #D9D3C3;
    font-size: 16px;
    font-weight: 500;
}

@media screen and (max-width:1300px) {
    .blog-card-grid {
        gap: 20px;
    }
}

@media screen and (max-width:1200px) {
    .blog-card-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);

        gap: 30px;
    }

    .blog-card-grid .card:nth-child(3) {
        transform: translatex(50%);
    }
}

@media screen and (max-width:860px) {
    .blog-card-grid {
        display: grid;
        grid-template-columns: 1fr;

        gap: 30px;
    }

    .blog-card-grid .card:nth-child(3) {
        transform: translatex(0%);
    }
}

/* form section */

/* 
form */
.form-section {
    width: 100%;
    background-color: var(--yellow-color);
}

.form-container {
    background-color: var(--white-color);
    display: grid;
    grid-template-columns: 8fr 4fr;
    margin-block: 10px;
}

/* Remove spin buttons for number input */
input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type=number] {
    -moz-appearance: textfield;
    /* For Firefox */
}

@media screen and (max-width:1200px) {


    .form-container {

        margin-block: 0px;
    }

}

@media screen and (max-width:750px) {


    .form-container {
        background-color: var(--white-color);
        display: grid;
        grid-template-columns: 8fr 4fr;
        margin-inline: 0px;
        margin-block: 0px;
    }

}

.form-part {
    display: flex;
    flex-direction: column;
    gap: 50px;
    padding: 48px 68px;
}

.form-header {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-heading {
    font-weight: 700;
    font-size: 36px;
    line-height: 40px;
    text-transform: capitalize;
    margin-bottom: 0;
    color: #000000;
}

.form-para {
    color: #565656;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 35px;
}


.inputs-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-input {
    /* height: 51px; */
    padding: 8px 20px;
    width: 100%;
    color: #B1B1B1;
    font-size: 16px;
    font-weight: 400;
    line-height: 40px;
    border: 1px solid #B1B1B1;
}

.input-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-textarea {
    padding: 8px 25px;
    resize: none;
    width: 100%;
    color: #B1B1B1;
    font-size: 16px;
    font-weight: 400;
    line-height: 40px;
    border: 1px solid #B1B1B1;
}

.captcha-section {
    display: flex;
    align-items: center;
    font-weight: 400;
    font-size: 16px;
    line-height: 40px;
}

.captcha-text {
    font-weight: 600;
    font-size: 16px;
    line-height: 40px;
    margin-bottom: 0;
    color: #000000;
}

.captcha-input {
    border: none;
    outline: #B1B1B1;
    border-bottom: 2px solid var(--black-color);
    width: 38px;
    height: 15px;
    padding: 5px;
    text-align: center;
}

.submit-button {
    padding: 8px 32px;
    border: 1px solid var(--black-color);
    width: fit-content;
    background-color: transparent;
    color: #000000;
}

.submit-button:hover {
    border: 1px solid var(--black-color);
    background-color: var(--black-color);
    color: var(--white-color);
    transition: 0.4s ease-in-out;
}

.image-part {
    height: 100%;
    width: 100%;
}

.image-part>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media screen and (max-width:1100px) {
    .input-grid {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width:850px) {
    .form-container {
        grid-template-columns: 1fr;
    }

    .image-part {
        display: none;
    }

    .submit-button {
        margin-inline: auto;
    }
}

@media screen and (max-width:540px) {
    .form-part {
        padding: 20px 20px;
    }
}

/* footer section */

.footer-section {
    width: 100%;
    background-color: var(--black-color);
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-block: 27px;
}

.footer-left {
    display: flex;
    gap: 50px;
    align-items: center;
}

.footer-brand {
    width: 56px;
    height: 59px;
}

.footer-brand>img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.social-icons {
    display: flex;
    gap: 30px;
    align-items: center;
}

.footer-text {
    font-size: 12px;
    font-weight: 500;
    line-height: 24px;
    color: var(--white-color);
    margin-bottom: 0;
}

.icon {
    color: var(--white-color);
}

@media screen and (max-width:980px) {
    .footer-container {
        flex-direction: column;
        gap: 20px;
    }

    .footer-left {
        flex-direction: column;
        gap: 20px;
    }
}

@media screen and (max-width:540px) {
    .form-part {
        padding: 20px 20px;
    }
}

.menu-footer {
    background-color: #1E2222;
}

.menu-footer-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.sub-section {
    display: flex;
    flex-direction: column;
}

.sub-section .title {
    font-weight: 500;
    font-size: 16px;
    color: #D9D9D9;
    line-height: 24px;
}

.sub-section span {
    font-weight: 400;
    font-size: 12px;
    color: #8C9090;
    line-height: 24px;
}

.sub-section h5 a {
    text-decoration: none;
    color: #D9D9D9;
}

.sub-section span a {
    text-decoration: none;
    color: #8C9090;
}

@media screen and (max-width:767px) {
    .menu-footer-container {
        display: grid;
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .sub-section {
        display: flex;
        flex-direction: column;
    }

    .sub-section span {
        font-weight: 400;
        font-size: 16px;
        color: #8C9090;
        line-height: 24px;
    }

}

.connected-future .section-para{
    color: #000;
}