@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

body {
    font-family: 'Poppins', sans-serif;
}

* {
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
}

:root {
    --bs-Primary-Purply: #2D2754;
    --bs-Primary-Dark-Purply: #252046;
    --bs-White: #fff;
    --bs-dark-purple: #1D1933;
    --bs-Purply-Blue: #4A3F8C;
    --bs-button-color: #e3546b;
}


/* navbar */

.Custome-header {
    padding: 24px 0px;
    background-color: var(--bs-Purply-Blue);
    transition: all 0.3s ease-out;
    top: 0;
}

.Custome-header a {
    font-size: 24px;
    line-height: 32px;
    color: var(--bs-White) !important;
    font-weight: 500;
    padding: 0px;
}

.Custome-header ul {
    grid-gap: 1.5rem;
}

.Custome-header ul li a {
    font-size: 18px;
    line-height: 28px;
    font-weight: 300;
}

.banner-sec {
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.banner-sec:after {
    content: '';
    position: absolute;
    background: var(--bs-Primary-Purply);
    opacity: 0.5;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.banner-content {
    position: relative;
    z-index: 111;
    max-width: 768px;
    margin: auto;
}

.banner-content h1 {
    font-size: 72px;
    color: var(--bs-White);
    line-height: 80px;
    margin-bottom: 24px;
}

.banner-content p {
    font-size: 24px;
    color: var(--bs-White);
    line-height: 36px;
    font-weight: 300;
}

.Button-Rounded {
    margin: 32px 0px 0px;
    padding: 12px 16px;
    border: 2px solid var(--bs-button-color);
    background: var(--bs-button-color);
    border-radius: 8px;
    font-size: 16px;
    line-height: 16px;
    font-weight: 300;
}

.Button-Rounded a {
    
    color: #000;
}

/* about us */
.same-space {
    padding: 80px 0px;
}

.bg-dark {
    background: var(--bs-dark-purple) !important;
}

.about-content p {
    font-size: 17px;
    line-height: 30px;
    color: var(--bs-White);
    font-weight: 300;
    margin: 0px;
}

.about-content h2 {
    font-size: 32px;
    line-height: 40px;
    margin-bottom: 1rem;
    color: var(--bs-White);
    font-weight: 500;
}


.about-image {
    border-radius: 32px !important;
    overflow: hidden;
    margin-right: 40px;
}

.bg-light-dark {
    background-color: var(--bs-Primary-Dark-Purply);
}


/* services */

.sec-title h2 {
    font-size: 48px;
    line-height: 56px;
    color: var(--bs-White);
    font-weight: 500;
    margin-bottom: 24px;
}

.ser-image {
    border-radius: 32px;
    overflow: hidden;
    width: 100%;
    margin-bottom: 24px;
}

.ser-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 384px;
    max-height: 384px;
}

.content h2 {
    font-weight: 500;
    font-size: 32px;
    line-height: 40px;
    color: var(--bs-White);
    margin-bottom: 16px;
}

.ser-content p {
    color: var(--bs-White);
    font-size: 18px;
    line-height: 28px;
    font-weight: 300;
    margin-bottom: 16px;
}


.test-sec .content p {
    font-size: 24px;
    color: var(--bs-White);
    font-weight: 300;
    line-height: 32px;
    margin: 0px;
}

.test-sec .content h2 {
    margin-bottom: 24px;
    line-height: 40px;
}

.client-img img {
    width: 100%;
    min-height: 384px;
    height: 100%;
    max-height: 384px;
    object-fit: cover;
}

.client-img {
    border-radius: 32px;
    overflow: hidden;
    width: 100%;
    margin-bottom: 24px;
}

.map-content {
    padding: 40px;
    border-radius: 32px;
    background: var(--bs-Primary-Dark-Purply);
}

.map-content p {
    font-size: 18px;
    line-height: 1.75rem;
    margin: 0px;
    color: var(--bs-White);
}

.map-sec {
    position: relative;
    line-height: 0;
    overflow: hidden;
}

.map-sec .container {
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 104px;
    display: flex;
    align-items: center;
}

.contact-content p {
    font-size: 18px;
    line-height: 28px;
    color: var(--bs-White);
    font-weight: 300;
}

.form-label {
    font-size: 16px;
    line-height: 21px;
    color: var(--bs-White);
    font-weight: 300;
}

.form-label {
    font-size: 16px;
    line-height: 21px;
    color: var(--bs-White);
    font-weight: 300;
}

input,
textarea {
    border-radius: 8px !important;
    background-color: #ffffff12 !important;
    color: var(--bs-White) !important;
    border: 0px !important;
    font-size: 14px !important;
    font-weight: 300 !important;
}

input {
    min-height: 40px;
}

textarea {
    max-height: 104px;
}

textarea {
    min-height: 104px !important;
}

textarea:focus,
input:focus {
    outline: 0px;
    box-shadow: 0px 0px !important;
}

.text-right {
    text-align: right;
}

form button {
    min-width: 144px;
}

.footer-bg {
    background-color: var(--bs-Purply-Blue);
}

.footer-logo-text {
    font-size: 24px;
    line-height: 32px;
    color: var(--bs-White) !important;
    font-weight: 500;
    padding: 0px;
    min-height: 46px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.footer-link ul {
    padding: 0px;
    list-style: none;
    margin: 0px;
    margin-bottom: 0px;
}

.footer-link ul li a, .footer-link ul li  {
    font-size: 16px;
    text-decoration: unset;
    color: var(--bs-White);
    line-height: 20px;
    font-weight: 300;
}
.footer-link ul li b{
    min-width: 200px;
}

.footer-link p {
    font-size: 16px;
    text-decoration: unset;
    color: var(--bs-White);
    line-height: 30px;
    font-weight: 300;
}

.copy-right {
    text-align: center;
}

.copy-right p {
    font-size: 18px;
    text-decoration: unset;
    color: var(--bs-White);
    line-height: 20px;
    font-weight: 300;
    margin: 0px;
}

.Industries-sec {
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    background-attachment: fixed;
}

.Industries-sec:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: #000000;
    opacity: 0.5;
    height: 100%;
}


.Industries-sec .container {
    position: relative;
    z-index: 1;
}

.Industries-sec .grid-container {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-gap: 20px 20px;
}


.grid-container .grid-item p {
    color: var(--bs-White);
    font-size: 17px;
    font-weight: 300;
    text-align: center;
    margin-bottom: 24px;
    min-height: 54px;
    justify-content: center;
    display: flex;
    align-items: center;
}

.Industries-box img {
    max-width: 70px;
}

.Industries-box {
    text-align: center;
}

.bread-crums {
    padding: 100px 0px;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
}

.bread-crums ul {
    list-style: none;
    padding: 0px;
    display: flex;
    grid-gap: 20px;
    margin: 0px;
}

.bread-crums ul li {
    color: var(--bs-White);
    font-size: 18px;
    font-weight: 500;
}

.bread-crums ul li a{
    color: var(--bs-White);
    font-size: 18px;
    font-weight: 500;
    padding: 0px;
}

.bread-crums ul li a:hover{
    color: #fff;
}

.bread-crums:before {
    content: '';
    background: var(--bs-Primary-Purply);
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    position: absolute;
    opacity: 0.5;
}

.bread-crums .container {
    position: relative;
}

.main-content p {
    color: var(--bs-White);
    font-size: 16px;
    line-height: 28px;
    font-weight: 200;
}

.Faq-sec .accordion-item {
    margin-bottom: 15px;
    border-radius: 28px !important;
    background: #ffffff12 !important;
}

.Faq-sec .accordion-item button {
    padding: 10px 20px;
    background: #423f5f !important;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    border-radius: 100px !important;
}
.Faq-sec .accordion-item .accordion-body {
    font-size: 14px;
    color: #fff;
    line-height: 28px;
    font-weight: 400;
}

.Faq-sec .accordion-item button:focus {
    box-shadow: 0px 0px;
}
.Faq-sec .accordion-item .accordion-button::after {
    width: 40px;
    height: 40px;
    background-color: #252046;
    display: flex;
    align-items: center;
    background-position: center;
    border-radius: 40px;
    content: '';
    background-image: url('../images/DownArrow.svg');
    justify-content: center;
    font-size: 28px;
    color: white;
}
.Custome-header.Fix {
    position: fixed;
    width: 100%;
    z-index: 11111;
    transition: all 0.3s ease-out;
    top: 0px;
    left: 0px;
}
.Custome-header.Fix {
    position: fixed;
    width: 100%;
    z-index: 11111;
    transition:         all 0.3s ease-out;
    top: 0px;
    left: 0px;
    background: transparent;
}

.Custome-header.Fix:before {
    content: '';
    background: #4a3f8cfc;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    filter: blur(1px);
}

.Custome-header .container {
    position: relative;
}


@media (max-width: 1024px) {
    .banner-content h1 {
        font-size: 50px;
        line-height: 55px;
    }
    .banner-content p {
        font-size: 18px;
    }
    
    .Custome-header ul li a {
        font-size: 14px;
    }
    
    .Custome-header ul {
        grid-gap: 15px;
    }
    .Custome-header ul li a {
    font-size: 14px;
}

.Custome-header ul {
    grid-gap: 15px;
}

.about-image {
    margin: 0px;
}

.about-content p {
    font-size: 14px;
    line-height: 26px;
}

.about-content h2 {
    font-size: 25px;
    margin-bottom: 5px;
}

.sec-title h2 {
    font-size: 25px;
    margin-bottom: 10px;
}
.new-map-sec h2 {
    font-size: 25px !important;
    margin-bottom: 10px !important;
    line-height: 35px !important;
}
.gif-movie {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.new-map-sec {
    padding: 40px 40px;
}
.footer-sec .col-sm-12.col-lg-5 .footer-link{
    max-width: 100% !important;
}
.gif-movie {
    padding: 40px 0px;
}

.gif-movie img {
    max-width: 190px;
}
.footer-link p, .footer-link ul li b{
    font-size: 14px !important;
    line-height: 24px;
}

.ser-image img {
    min-height: 250px;
    max-height: 250px;
}

.content h2 {
    font-size: 20px;
    line-height: 25px;
}

.ser-content p {
    font-size: 14px;
}

.Button-Rounded {
    font-size: 14px;
}

.grid-container .grid-item p {
    font-size: 14px;
    margin-bottom: 10px;
}


.Industries-sec .grid-container {
    grid-gap: 90px 0px;
}

.Industries-box img {
    max-width: 50px;
}

.test-sec .content p {
    font-size: 14px;
}

.test-sec .content h2 {
    margin: 0px;
}

.client-img img {
    min-height: 250px;
    max-height: 250px;
}

.map-content p {
    font-size: 14px;
}

.contact-content p {
    font-size: 14px;
}

.form-label {
    font-size: 14px;
}

.footer-logo-text {
    font-size: 20px;
    margin-bottom: 20px;
}

.footer-link ul a {
    font-size: 14px !important;
}


.footer-link ul {
    margin-bottom: 20px;
}


.copy-right p {
    font-size: 14px;
}

.footer-sec {
    padding: 50px 0px 20px;
}
}

@media (max-width: 767px) {
    .banner-content h1 {
        font-size: 26px;
        line-height: 35px;
    }
    .banner-content p {
        font-size: 16px;
        line-height: 30px;
        margin: 0px;
    }
    
    .Custome-header ul li a {
        font-size: 14px;
    }
    
    .Custome-header ul {
        grid-gap: 15px;
    }
    .Custome-header ul li a {
    font-size: 14px;
}

.Custome-header ul {
    grid-gap: 15px;
}

.about-image {
    margin: 0px;
}

.about-content p {
    font-size: 14px;
    line-height: 26px;
}

.about-content h2 {
    font-size: 25px;
    margin-bottom: 5px;
}

.sec-title h2 {
    font-size: 25px;
    margin-bottom: 10px;
}

.ser-image img {
    min-height: 250px;
    max-height: 250px;
}

.content h2, .new-map-sec h2 {
    font-size: 16px !important;
    line-height: 30px !important;
}
.gif-movie {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.new-map-sec {
    padding: 40px 40px;
}
.footer-sec .col-sm-12.col-lg-5 .footer-link{
    max-width: 100%;
}
.gif-movie {
    padding: 40px 0px;
}

.gif-movie img {
    max-width: 190px;
}

.ser-content p {
    font-size: 14px;
}

.Button-Rounded {
    font-size: 14px;
}

.grid-container .grid-item p {
    font-size: 14px;
    margin-bottom: 10px;
}


.Industries-sec .grid-container {
    grid-gap: 90px 0px;
}

.Industries-box img {
    max-width: 50px;
}

.test-sec .content p {
    font-size: 14px;
}

.test-sec .content h2 {
    margin: 0px;
}

.client-img img {
    min-height: 250px;
    max-height: 250px;
}

.map-content p {
    font-size: 14px;
}

.contact-content p {
    font-size: 14px;
}

.form-label {
    font-size: 14px;
}

.footer-logo-text {
    font-size: 20px;
    margin-bottom: 20px;
}

.footer-link ul a {
    font-size: 14px !important;
}


.footer-link ul {
    margin-bottom: 20px;
}


.copy-right p {
    font-size: 14px;
}

.footer-sec {
    padding: 50px 0px 20px;
}
    .Custome-header ul li a {
    font-size: 14px;
}

.Custome-header ul {
    grid-gap: 15px;
    padding-top: 15px;
}

.about-image {
    margin: 0px;
}

.about-image {
    margin-bottom: 20px;
}

.about-content p {
    font-size: 14px;
    line-height: 26px;
}

.about-content h2 {
    font-size: 25px;
    margin-bottom: 5px;
}

.sec-title h2 {
    font-size: 25px;
    margin-bottom: 10px;
}

.ser-image img {
    min-height: 250px;
    max-height: 250px;
}

.content h2 {
    font-size: 20px;
    line-height: 25px;
}

.ser-content p {
    font-size: 14px;
}

.Button-Rounded {
    font-size: 14px;
}

.grid-container .grid-item p {
    font-size: 14px;
    margin-bottom: 10px;
}


.Industries-sec .grid-container {
    grid-gap: 90px 0px;
}

.Industries-box img {
    max-width: 50px;
}

.test-sec .content p {
    font-size: 14px;
}

.test-sec .content h2 {
    margin: 0px;
}

.client-img img {
    min-height: 250px;
    max-height: 250px;
}

.map-content p {
    font-size: 14px;
}

.contact-content p {
    font-size: 14px;
}

.form-label {
    font-size: 14px;
}

.footer-logo-text {
    font-size: 20px;
    margin-bottom: 20px;
}

.footer-link ul a {
    font-size: 14px !important;
}

.footer-link ul {
    margin-bottom: 20px;
}


.copy-right p {
    font-size: 14px;
}

.footer-sec {
    padding: 50px 0px 20px;
}

.banner-sec {
    height: auto;
    padding: 50px 0px;
}

.same-space {
    padding: 40px 0px;
}

.Services-sec .col-sm-12.col-lg-4 {
    margin-bottom: 20px;
}

.Industries-sec .grid-container {
    grid-template-columns: 1fr 1fr;
    grid-gap: 30px;
}

.grid-item {
    padding: 20px;
    background: #252046a3;
}
.map-sec .container {
    left: 0 !important;
}

.map-sec .container .map-content.content {
    max-width: 100%;
    margin: auto;
    min-width: 100%;
    padding: 20px;
    border-radius: 20px;
}

.map-sec .container .col-sm-12.col-md-5 {
    width: 100%;
}

.map-sec .map-content.content {
    max-width: fit-content;
    min-width: fit-content;
}
.map-sec .container .map-content.content h2 {
    margin: 0px;
}
.map-sec .container {
    left: 0 !important;
}

.map-sec .container .map-content.content {
    max-width: 100%;
    margin: auto;
    min-width: 100%;
    padding: 20px;
    border-radius: 20px;
}

.map-sec .container .col-sm-12.col-md-5 {
    width: 100%;
}

.map-sec .map-content.content {
    max-width: fit-content;
    min-width: fit-content;
}
.map-sec .container .map-content.content h2 {
    margin: 0px;
}


.navbar-light .navbar-toggler {
    background: transparent;
    padding: 0px;
    border: 0px;
    border-radius: 0px;
    filter: invert(1);
    opacity: 1;
}

.navbar-light .navbar-toggler span.navbar-toggler-icon {
    opacity: 1;
}

.navbar-light .navbar-toggler:focus {
    box-shadow: 0px 0px;
}
}


.navbar-brand img {
    max-width: 140px;
}

.Industries-sec h2 {
    text-align: center;
    margin-bottom: 50px;
}

.footer-logo-text img {
    max-width: 140px;
}


a{
    text-decoration: unset;
}

.terms-sec ul {
    padding: 0px;
    list-style: none;
    margin: 0px;
}

.terms-sec ul li:before {
    content: '>';
    position: absolute;
    left: 0;
    color: #fff;
    top: 50%;
    margin-top: -12px;
}

.terms-sec ul li {
    position: relative;
    padding-left: 20px;
}
.footer-link ul li {
    margin-bottom: 15px;
}

.footer-sec .col-sm-12.col-lg-5 .footer-link {
    max-width: 350px;
}
.new-map-sec {
    padding: 100px 30px;
    background: #1d193396;
}
.map-New-sec {
    background: #2d2941;
}

.new-map-sec h2 {
    text-align: center;
    font-size: 50px;
    line-height: 66px;
    color: var(--bs-White);
    font-weight: 700;
    margin-bottom: 24px;
    text-transform: capitalize;
}

.new-map-sec p {
    margin: 0px;
    text-align: center;
    color: #fff;
    font-size: 18px;
    font-weight: 300;
}
.gif-movie {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}