@import url('https://fonts.googleapis.com/css2?family=Red+Hat+Display:ital,wght@0,300..900;1,300..900&display=swap');

@import url('./animation.css');

:root {

    --marcellus-font: 'Marcellus', sans-serif;

    --main-color: 0, 230, 227;
    /* rgb(0, 230, 227) */
    --second-color: 0, 27, 115;
    /* rgb(0, 27, 115) */
    --black-color: 0, 0, 0;
    --white-color: 255, 255, 255;
}


body {
    font-family: "Red Hat Display", sans-serif;
    position: relative;
}

ul,
ol {
    margin: 0%;
    padding: 0%;
}

a {
    text-decoration: none;
    color: #000;
}
p{
    text-align: justify;
}

li {
    list-style: none;
}

label span {
    color: #dc143c;
}

/* / width / */
::-webkit-scrollbar {
    width: 3px;
}

/* / Track / */
::-webkit-scrollbar-track {
    background: #f9f9f9;
}

/* / Handle / */
::-webkit-scrollbar-thumb {
    background: rgba(var(--main-color), 1);
}

/* / Handle on hover / */
::-webkit-scrollbar-thumb:hover {
    background: rgba(var(--main-color), 0.8);
}

.common-section {
    padding: 60px 0px;
}

.common-box>span {
    font-size: 16px;
    font-weight: 400;
    color: #A8A8A8;
    text-transform: uppercase;
}

.common-box h3 {
    font-size: 42px;
    font-weight: 700;
    color: #202020;
}

.common-box h1>span,
.common-box h3>span {
    font-weight: 700;
    background: linear-gradient(105deg, rgba(0, 230, 227, 1) 0%, rgba(0, 27, 115, 1) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-sub-box.common-box h1>span,
.footer-sub-box.common-box h3>span {
    background: linear-gradient(105deg, rgba(0, 230, 227, 1) 0%, rgb(11, 63, 231) 100%);
    background-clip: text;
    -webkit-background-clip: text;
}

.common-btn {
    border: 1px solid rgba(var(--main-color), 1);
    border-radius: 0px;
    background-color: transparent;
    text-transform: uppercase;
    color: rgba(var(--white-color), 1);
    padding: 10px 20px;
    font-size: 16px;
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 10px;
    width: max-content;
    position: relative;
    overflow: hidden;
    transition: all ease-in-out 0.5s;
    z-index: 1;
}

.common-btn i {
    transform: rotate(-45deg);
    color: rgba(var(--main-color), 1);
    font-size: 18px;
    transition: all ease-in-out 0.5s;
}

.common-btn:hover i {
    color: rgba(var(--second-color), 1);
    transform: rotate(0deg);
}

.common-btn:hover {
    background-color: rgba(var(--main-color), 1);
    border: 1px solid transparent;
    color: #fff;
}

.common-btn::after {
    content: '';
    position: absolute;
    bottom: 0%;
    left: 0%;
    width: 100%;
    height: 0%;
    background: rgba(var(--main-color), 1);
    transition: all ease-in-out 0.5s;
    z-index: -1;
}

.common-btn:hover {
    color: rgba(var(--white-color), 1);
}

.common-btn:hover::after {
    height: 100%;
}


/************************************ Header Section ***********************************************/
header {
    position: absolute;
    inset: 0;
    width: 100%;
    height: max-content;
    z-index: 10;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    top: 0;
    z-index: 9999;
    width: 100%;
    padding: 5px 0px;
}

.navbar.header-fixed {
    position: fixed;
    /* background: rgba(255,240,200, 0.8); */
    background: rgba(var(--second-color), 0.95);
    transition: all ease-in-out 0.2s;
    backdrop-filter: blur(5px);
    animation: slideDown 0.35s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

.navbar-brand {
    height: 60px;
}

.navbar.header-fixed .nav-icon-list li a {
    color: rgba(var(--white-color), 1);
}

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

.navbar-nav {
    display: flex;
    gap: 20px;
    padding: 10px;
    justify-content: center;
}

.navbar .navbar-nav .nav-item.dropdown {
    display: flex;
    gap: 0px;
    flex-wrap: nowrap;
    align-items: center;
}

.navbar .navbar-nav .nav-item.dropdown .dropdown-menu {
    top: 100%;
    padding: 0px;
    border: 0;
    overflow: auto;
    margin: 0 !important;
    transition: var(--transition-05s);
    /* overflow: hidden; */
    box-shadow: -12px 8px 20px -8px rgba(14, 13, 14, 0.08), 12px 8px 20px -8px rgba(14, 13, 14, 0.08);
    width: 250px;
    max-height: 330px;
    border-top: 2px solid rgba(var(--main-color), 1);
}

.navbar .navbar-nav .nav-item.dropdown .dropdown-toggle {
    margin-bottom: -4px;
}

.navbar .navbar-nav .nav-item .nav-link {
    font-weight: 400;
    font-size: 18px;
    color: rgba(var(--white-color), 0.9);
    /* border-bottom: 2px solid transparent; */
    position: relative;
    transition: all ease-in-out 0.5s;
    text-transform: capitalize;
}

.navbar .navbar-nav .nav-item .nav-link.active,
.navbar .navbar-nav .nav-item .nav-link:hover,
.navbar .navbar-nav .nav-item .nav-link:focus,
.navbar .navbar-nav .nav-item .nav-link[aria-current="page"] {
    color: rgba(var(--white-color), 1);
}

.navbar .navbar-nav .nav-item.dropdown .dropdown-menu .dropdown-item {
    white-space: wrap;
    font-size: 15px;
    font-weight: 500;
}

.navbar-toggler-icon {
    filter: invert(0);
}

.nav-icon-list {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-icon-list li a.common-btn {
    border: 1px solid rgba(var(--white-color), 1);
    font-size: 16px;
}

.nav-icon-list li a.common-btn:hover {
    border: 1px solid rgba(var(--main-color), 1);
}

.nav-icon-list li a {
    color: rgba(var(--white-color), 0.9);
    font-size: 20px;
}

/*===================================== Banner Section ====================================*/
.banner-section,
.inr-banner-section {
    position: relative;
    overflow: hidden;
}

.banner-section::after,
.banner-section::before,
.inr-banner-section::after,
.inr-banner-section::before {
    content: '';
    position: absolute;
    inset: 0%;
    width: 100%;
    height: 100%;
    display: block;
}

.banner-section::after,
.inr-banner-section::after {
    /* background: rgba(var(--black-color), 0.4); */
}

.banner-section::before,
.inr-banner-section::before {
    background: rgba(var(--main-color), 0.1);
}

.inr-banner-img {
    width: 100%;
    height: 400px;
}

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

.banner-video {
    width: 100%;
    height: 900px;
}

.banner-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-content {
    position: absolute;
    width: 100%;
    left: 0;
    top: 40%;
    z-index: 1;
}
.banner-content h1 span{
    position: relative;
    font-size: 40px;
    padding-top: 15px;
    margin-top: 15px;
    display: block;
}
.banner-content h1 span:before {
    content: "";
    position: absolute;
    left: -35px;
    top: 0;
    width: 100%;
    height: 2px;
    background-color: #fff;
}
.inr-banner-content {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    z-index: 1;
}

.banner-text h1 {
    font-size: 70px;
    font-weight: 300;
    font-weight: 600;
    color: rgba(var(--white-color), 1);
    margin-bottom: 20px;
    padding-left: 45px;
}
.banner-text h1::before{
    content: "+";
    position: absolute;
    left: 0;
    top: 30px;
}
.banner-text P {
    font-size: 20px;
    font-weight: 400;
    color: #A8A8A8;
    color: #fff;
    margin-bottom: 20px;
    padding-left: 45px;
}
.banner-text .common-btn{
    margin-left: 45px;
}
.inr-banner-text h1 {
    font-size: 50px;
    font-weight: 300;
    color: rgba(var(--white-color), 1);
    margin-bottom: 10px;
}

.inr-banner-list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.inr-banner-list li a {
    color: rgba(var(--white-color), 1);
    font-size: 15px;
    text-transform: uppercase;
    position: relative;
    transition: all ease-in-out 0.3s;
}

.inr-banner-list li a:hover {
    color: rgba(var(--main-color), 1);
}

.inr-banner-list li a::after {
    content: '\f105';
    font-family: 'fontawesome', sans-serif;
    font-size: 15px;
    color: rgba(var(--white-color), 1);
    margin-left: 10px;
}

.inr-banner-list li:last-child a::after {
    display: none;
}

/*============================== Service Option Section ======================*/
.so-section {
    position: relative;
    margin-top: -140px;
}

.so-card {
    background: #F6F6F6;
    padding: 40px;
}

.so-img {
    width: 50px;
    height: 70px;
    margin-bottom: 20px;
}

.so-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.so-card h3 {
    font-size: 28px;
    font-weight: 700;
    color: #202020;
}

.so-card p {
    font-size: 18px;
    font-weight: 400;
    color: #656A6A;
    width: 80%;
    text-align: justify;
}

.so-btn {
    padding: 0px;
    border: none;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #002E2E;
    font-size: 16px;
    font-weight: 500;
}

.so-btn i {
    color: rgba(var(--main-color), 1);
    font-size: 16px;
    font-weight: 600;
    transform: rotate(-45deg);
    transition: all ease-in-out 0.3s;
}

.so-btn:hover i {
    transform: rotate(0deg);
}

/*========================================= About Us Section ===========================*/
.common-box.abt-left p {
    color: #444;
    color: rgba(var(--black-color), 0.85);
    line-height: 1.6;
    font-size: 18px;
    font-weight: 400;
}

.abt-section .row {
    justify-content: center;
    align-items: center;
}

.common-box.abt-left .common-btn {
    border: 1px solid rgba(var(--black-color), 1);
    color: rgba(var(--black-color), 1);
}

.common-box.abt-left .common-btn:hover {
    border: 1px solid rgba(var(--main-color), 1);
}

.abt-right {
    position: relative;
}

.abt-img {
    width: 100%;
    height: 550px;
}

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

.abt-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
}

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


/*================================== About Inner Section ===========================*/
.abt-inr-video {
    height: 500px;
    height: 400px;
}

.abt-inr-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vis-section {
    position: relative;
    overflow: hidden;
}

.vis-img {
    width: 100%;
    height: 400px;
}

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

.common-box.vision-content {
    box-shadow: 0px 0px 16px -4px rgba(var(--black-color), 0.5);
    background-color: rgba(var(--white-color), 1);
    padding: 40px;
    border-radius: 10px;
    margin-top: -200px;
}

.common-box.vision-content p {
    color: #444;
    line-height: 1.8;
    font-size: 18px;
    font-weight: 400;
}

.common-box.vision-content .vision-list li {
    margin-bottom: 10px;
    position: relative;
}

.common-box.vision-content .vision-list li h5 {
    font-size: 24px;
    font-weight: 700;
    color: rgba(var(--second-color), 1);
}

/*====================================== Partners Section =======================*/
.part-box p {
    color: #444;
    line-height: 1.8;
    font-size: 18px;
    font-weight: 400;
}

.part-box h5 {
    color: rgba(var(--second-color), 1);
    line-height: 1.8;
    font-size: 24px;
    font-weight: 700;
}

.part-logo-section {
    background: rgba(var(--second-color), 1);
    /* padding: 80px 0px; */
}

.part-logo-img {
    width: 100%;
    height: 120px;
}

.part-logo-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.common-box.SBR-head {
    text-align: center;
}

.common-box.SBR-head .common-btn,
.DownForm-modal .common-btn {
    border: 1px solid rgba(var(--black-color), 1);
    color: rgba(var(--black-color), 1);
    margin: auto;
    margin-top: 20px;
}

.common-box.SBR-head .common-btn:hover,
.DownForm-modal .common-btn:hover {
    border: 1px solid rgba(var(--main-color), 1);
}

.common-box.SBR-head .common-btn i {
    transform: rotate(0deg);
    color: rgba(var(--second-color), 1);
}

.modal.modal-static .modal-dialog {
    transform: none;
}

.contact-input-box:not(:nth-last-child(2)) {
    margin-bottom: 10px;
}

.contact-input-box:last-child {
    margin-bottom: 0px;
}

/*=================================== Solutions Sections ===========================*/
.sol-section {
    background: #001717;
    padding: 100px 0px;
}

.sol-left {
    position: relative;
}

.sol-left .common-box.sol-head h3 {
    color: rgba(var(--white-color), 1);
    margin-bottom: 20px;
}

.sol-left .common-box.sol-head p {
    font-size: 18px;
    font-weight: 400;
    color: #A8A8A8;
    color: rgba(var(--white-color), 0.7);
    margin-bottom: 20px;
    line-height: 1.6;
}

.sol-right {
    height: 700px;
}

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

.sol-left .sol-list {
    padding: 20px 0px;
}

.sol-left .sol-list li {
    margin-bottom: 20px;
}

.sol-left .sol-list li a {
    color: #E1E1E1;
    font-size: 24px;
    font-weight: 400;
    transition: all ease-in-out 0.5s;
}

.sol-left .sol-list li a i {
    color: rgba(var(--main-color), 1);
    transform: rotate(-45deg);
    margin-left: 5px;
    font-size: 20px;
    transition: all ease-in-out 0.5s;
    opacity: 0;
    visibility: hidden;
}

.sol-left .sol-list li a:hover {
    background: linear-gradient(105deg, rgba(0, 230, 227, 1) 0%, rgba(0, 27, 115, 1) 100%);
    color: rgba(var(--white-color), 1);
    padding: 10px;
}

.sol-left .sol-list li a:hover i {
    transform: rotate(0deg);
    opacity: 1;
    visibility: visible;
}

/*============================== Solution Details Section ==========================*/
.soluDtl-box {
    box-shadow: 0px 0px 8px -4px rgba(var(--black-color), 0.5);
    padding: 40px;
}

.soluDtl-box h3 {
    font-size: 36px;
    font-weight: 600;
    color: #002E2E;
    margin-bottom: 20px;
}

.soluDtl-content {
    margin-bottom: 20px;
}

.soluDtl-content h5 {
    font-size: 24px;
    margin-bottom: 10px;
    font-size: 400;
    color: rgba(var(--second-color), 1);
}

.soluDtl-content p {
    color: #444;
    line-height: 1.8;
    font-size: 18px;
    font-weight: 400;
}

.soluDtl-content p>span {
    font-weight: 700;
    color: rgba(var(--black-color), 0.85);
}

.soluDtl-box .soluDtl-img {
    --ehw-logo: 60px;
    width: var(--ehw-logo);
    height: var(--ehw-logo);
    margin-bottom: 20px;
}

.soluDtl-box .soluDtl-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/*========================== Industries Section ================================*/
.common-box.indus-head p {
    color: #444;
    line-height: 1.8;
    font-size: 18px;
    font-weight: 400;
}

.indus-section .row {
    gap: 24px 0px;
}

.indus-box {
    box-shadow: 0px 0px 8px -4px rgba(var(--black-color), 0.5);
    background: rgba(var(--main-color), 0.1);
}

.indus-box .indus-img {
    height: 300px;
}

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

.indus-btm {
    padding: 20px;
    height: 300px;
    max-height: 300px;
    overflow-y: scroll;
}

.indus-btm h4 {
    font-size: 20px;
    font-weight: 700;
    color: #002E2E;
}

.indus-btm h5 {
    font-size: 18px;
    font-weight: 500;
    color: rgba(var(--black-color), 1);
}

.indus-btm p {
    color: #001919;
    line-height: 1.4;
    font-size: 16px;
    font-weight: 400;
}

.indus-btm ul li {
    display: flex;
    /* align-items: center; */
    gap: 10px;
    position: relative;
    font-size: 15px;
    color: #202020;
    line-height: 1.4;
    font-weight: 400;
    margin-bottom: 10px;
}

.indus-btm ul li::before {
    content: '\f00c';
    font-family: 'fontawesome', sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: rgba(var(--second-color), 1);
}

/*================================= Testimonial Section ======================*/
.testi-section {
    background: rgba(var(--main-color), 0.2);
    padding: 80px 0px;
}

.testi-box {
    background: rgba(var(--white-color), 1);
    padding: 40px;
}

.testi-btm {
    display: flex;
    align-items: center;
    gap: 20px;
}

.testi-img {
    --ehw-img: 60px;
    width: var(--ehw-img);
    height: var(--ehw-img);
    border-radius: 50%;
}

.testi-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50px;
}

.testi-name h4 {
    font-size: 18px;
    font-weight: 500;
    color: #002E2E;
    margin-bottom: 0px;
}

.testi-name p {
    font-size: 16px;
    font-weight: 400;
    color: #656A6A;
    margin-bottom: 0px;
}

.testi-box>span {
    font-size: 40px;
    font-weight: 700;
    color: #00E6E3;
}

.testi-box>p {
    font-size: 18px;
    font-size: 20px;
    font-weight: 400;
    color: #656A6A;
    line-height: 1.6;
    margin-bottom: 20px;
}

.testi-slider {
    position: relative;
}

.testi-slider.owl-carousel .owl-dots,
.partLogo-slider.owl-carousel .owl-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 0px 20px;
}

.testi-slider.owl-carousel .owl-dots button.owl-dot,
.partLogo-slider.owl-carousel .owl-dots button.owl-dot {
    width: 25px;
    height: 2px;
    background: #c0bfbf;
}

.testi-slider.owl-carousel .owl-dots button.owl-dot.active {
    background: #002E2E;
}

.partLogo-slider.owl-carousel .owl-dots button.owl-dot.active {
    background: rgba(0, 230, 227, 1);
}

/*======================================== Our Service Section ==========================*/
.service-section {
    position: relative;
}

.service-section .row,
.soluInr-section .row {
    gap: 32px 0px;
}

.common-box.service-head>p {
    font-size: 18px;
    font-weight: 400;
    color: #002E2E;
    width: 80%;
    line-height: 1.6;
}

.service-box {
    border: 1px solid #D6D6D6;
    padding: 30px 30px 10px;
    transition: all ease-in-out 0.5s;
    height: 100%;
    overflow: hidden;
}

.service-box a.common-btn {
    border: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    padding: 0px;
}

.service-box a.common-btn:hover {
    background: transparent;
}

.service-box a.common-btn::after {
    border: none;
    background: transparent;
}

.service-logo {
    --ehw-logo: 60px;
    width: var(--ehw-logo);
    height: var(--ehw-logo);
    margin-bottom: 20px;
    overflow: hidden;
}

.service-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.service-box:hover .service-logo img,
.service-logo img.srv-LogoHover {
    display: none;
}

.service-box:hover .service-logo img.srv-LogoHover {
    display: block;
}

.service-box>h4 {
    font-size: 20px;
    font-weight: 700;
    color: #002E2E;
}

.service-box>p {
    font-size: 16px;
    font-weight: 400;
    color: #656A6A;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.service-box:hover {
    background: linear-gradient(105deg, rgba(0, 230, 227, 1) 0%, rgba(0, 27, 115, 1) 100%);
    height: calc(100% + 20px);
    margin-top: -20px;
}

.service-box:hover a.common-btn {
    opacity: 1;
    visibility: visible;
    transform: translateY(0px);
}

.service-box:hover h4 {
    color: rgba(var(--white-color), 1);
}

.service-box:hover p {
    color: #CBCBCB;
}

.service-btn {
    padding: 40px 0px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-btn>.common-btn {
    color: rgba(var(--black-color), 1);
    border: 1px solid rgba(var(--black-color), 1);
}

.service-btn>.common-btn:hover {
    border: 1px solid transparent;
    color: rgba(var(--white-color), 1);
}

.service-text p {
    color: #444;
    line-height: 1.8;
    font-size: 18px;
    font-weight: 400;
}

.service-text h3 {
    font-size: 36px;
    font-weight: 700;
    color: #002E2E;
}

.servicedtl-list li {
    margin-bottom: 10px;
    color: #444;
    line-height: 1.8;
    font-size: 18px;
    font-weight: 400;
}

.servicedtl-list li>span {
    font-weight: 700;
    color: rgba(var(--black-color), 1);
}

.service-btm h5 {
    margin-bottom: 20px;
    margin-top: 20px;
    font-size: 28px;
    font-weight: 700;
    color: rgba(var(--second-color), 1);
}

/*==================================== Contact Us Section ==========================*/
.contact-section {
    position: relative;
}

.contact-section .row {
    gap: 24px 0px;
}

.contact-card {
    min-height: 200px;
    box-shadow: 0px 0px 8px -4px rgba(var(--black-color), 0.5);
    background: rgba(var(--main-color), 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 20px;
    text-align: center;
}

.contact-card i {
    font-size: 30px;
    color: rgba(var(--second-color), 1);
}

.contact-card h5 {
    font-size: 22px;
    text-transform: uppercase;
    font-weight: 700;
}

.contact-card a {
    font-size: 18px;
    font-weight: 400;
    color: #656A6A;
}

.common-box.contact-head p {
    font-size: 18px;
    font-weight: 400;
    color: #444;
    line-height: 1.4;
}

.contact-right .iframe-box {
    width: 100%;
    height: 600px;
}

.contact-right .iframe-box iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-input-box input,
.contact-input-box textarea {
    border-radius: 0px;
}

.contact-input-box input:focus,
.contact-input-box textarea:focus {
    box-shadow: none;
}

.contact-input-box input::placeholder {
    font-size: 14px;
}

.contact-form .common-btn {
    border: 1px solid rgba(var(--main-color), 1);
    color: rgba(var(--main-color), 1);
    margin-top: 20px;
}

.contact-form .common-btn::after {
    background: rgba(var(--second-color), 1);
}

/*********************************** Footer Section *********************************************/
.footer-section {
    background: #001919;
}

.footer-top {
    padding: 80px 0px 30px;
}

.footer-box {
    height: 100%;
}

.footer-box.last {
    border-right: none;
}

.footer-box h5 {
    font-family: var(--marcellus-font);
    font-size: 22px;
    font-weight: 400;
    color: rgba(var(--white-color), 1);
    margin-bottom: 20px;
}

.footer-box p {
    color: #BEBEBE;
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 5px;
}

.footer-list {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
}

.footer-list li a {
    color: #BEBEBE;
    font-size: 16px;
    font-weight: 400;
    transition: all ease-in-out 0.3s;
}

.footer-list li a:hover {
    color: rgba(var(--main-color), 1);
}

.footer-contact-list {
    margin: 20px 0px;
}

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

.footer-contact-list li a {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 15px;
    color: rgba(var(--white-color), 1);
}

.footer-contact-list li a i {
    color: rgba(var(--main-color), 0.5);
}

.footer-social-list {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
}

.footer-social-list li a {
    font-size: 20px;
    color: rgba(var(--white-color), 1);
    font-weight: 600;
    transform: rotate(0deg);
    transition: all ease-in-out 0.5s;
}

.footer-social-list li a:hover {
    color: rgba(var(--main-color), 0.5);
}

.footer-social-list {
    padding: 20px 0px;
}

.footer-subs-form {
    display: flex;
    align-items: center;
    border: 1px solid #42485D;
    margin: 20px 0px;
}

.footer-subs-form input.form-control {
    width: 90%;
    background: transparent;
    border: none;
    padding: 15px 20px;
}

.footer-subs-form button.send-btn {
    width: 10%;
    background: transparent;
    border: none;
    font-size: 15px;
    color: rgba(var(--second-color), 1);
}

.footer-lwr {
    border-top: 1px solid rgba(214, 214, 214, 0.2);
    padding: 20px 0px 10px;
    text-align: center;
}

.footer-lwr p {
    font-size: 15px;
    font-weight: 400;
    color: #6B6B6B;
}

.footer-subContainer {
    padding: 80px 0px 20px;
}

.footer-sub-box {
    background: #022323;
    padding: 40px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.footer-sub-box form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    width: 80%;
}

.footer-sub-box form input {
    width: 100%;
    border-radius: 0px;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(214, 214, 214, 0.2);
    color: rgba(var(--white-color), 1);
    margin-bottom: 20px;
}

.footer-sub-box form input:focus {
    box-shadow: none;
    background: transparent;
    color: rgba(var(--white-color), 1);
}

.common-box.footer-sub-box h3 {
    color: rgba(var(--white-color), 1);
    font-weight: 400;
}


/************************************ Media Queries ******************************************/
/*====================================== Min Width ==================================*/
@media (min-width: 992px) {
    .nav-item.dropdown .dropdown-menu {
        opacity: 0;
        visibility: hidden;
    }

    .nav-item.dropdown:hover>.dropdown-menu,
    .nav-item.dropdown .dropdown-menu.show,
    .dropdown-menu ul li:hover>.dropdown-menu.dropdown-submenu {
        opacity: 1;
        display: block;
        visibility: visible;
    }

    .navbar-expand-lg .navbar-collapse {
        width: max-content;
        max-width: max-content;
    }
}

@media (min-width: 1401px) and (max-width: 1500px) {
    .banner-content {
        left: 0%;
        padding-left: 5%;
    }

    .banner-text h1 {
        font-size: 60px;
    }

    .banner-video {
        height: 750px;
    }
}

@media (min-width: 1501px) and (max-width: 1539px) {}

@media (min-width: 1540px) {
    .container {
        max-width: 1440px;
    }
}

@media (min-width: 1541px) and (max-width: 1640px) {}

@media (min-width: 1640px) and (max-width: 1739px) {}

/*========================================= Max Width ============================*/

@media (max-width: 1400px) {
    .banner-content {
        left: 0%;
        padding-left: 3%;
        top: 35%;
    }

    .banner-text h1 {
        font-size: 52px;
    }

    .banner-video {
        height: 680px;
    }

    .navbar .navbar-nav .nav-item .nav-link {
        font-size: 15px;
    }

    .nav-icon-list li a.common-btn {
        font-size: 14px;
    }

    .navbar-brand {
        height: 50px;
    }

    .so-card h3 {
        font-size: 24px;
    }

    .so-card p {
        font-size: 16px;
        width: 100%;
    }

    .common-box h3 {
        font-size: 38px;
    }

    .sol-left .sol-list li a {
        font-size: 20px;
    }

    .sol-left .common-box.sol-head p {
        font-size: 16px;
    }

    .sol-right {
        height: 550px;
    }

    .sol-section {
        padding: 60px 0px;
    }

    .testi-section {
        padding: 40px 0px;
    }

    .testi-box>p {
        font-size: 16px;
    }

    .testi-name p {
        font-size: 14px;
    }
}

@media (max-width: 1200px) {
    .navbar-nav {
        gap: 10px;
    }

    .nav-icon-list li a.common-btn {
        padding: 10px;
    }

    .so-card {
        padding: 20px;
    }

    .so-img {
        width: 40px;
        height: 60px;
    }

    .abt-section .row {
        flex-direction: column-reverse;
        gap: 20px;
    }

    .service-box {
        padding: 15px 15px 10px;
    }

    .service-logo {
        --ehw-logo: 40px;
    }

    .service-box>h4 {
        font-size: 18px;
    }

    .service-box>p {
        font-size: 14px;
    }
}

@media (max-width: 991px) {
    .navbar-collapse {
        position: absolute;
        background: rgba(var(--second-color), 1);
        width: 100%;
        left: 0;
        top: 90%;
        padding: 10px;
    }

    .navbar-toggler-icon {
        filter: invert(0);
    }

    .navbar-toggler {
        padding: 0px !important;
        font-size: 20px !important;
        color: rgba(var(--black-color), 1) !important;
        background-color: rgba(var(--main-color), 1) !important;
        border: 1px solid rgba(var(--second-color), 1) !important;
        border-radius: 0px !important;
        transition: var(--bs-navbar-toggler-transition);
    }

    .navbar-toggler:focus {
        box-shadow: none;
    }

    .so-section .row {
        gap: 24px 0px;
    }

    .common-box h3 {
        font-size: 28px;
    }

    .common-box.abt-left p {
        font-size: 15px;
    }

    .testi-box {
        padding: 20px;
    }

    .footer-section .row {
        gap: 24px 0px;
    }

}

@media (max-width: 767px) {
    .banner-text h1 {
        font-size: 35px;
    }

    .banner-text P {
        font-size: 18px;
    }

    .banner-content {
        left: 0%;
        padding-left: 5%;
        top: 32%;
    }

    .common-section {
        padding: 30px 0px;
    }

    .abt-inr-video {
        height: auto;
    }

    .sol-right {
        height: auto;
    }

    .so-card h3 {
        font-size: 20px;
    }

    .so-btn {
        font-size: 13px;
    }

    .sol-left .sol-list li a {
        font-size: 16px;
    }

    .sol-left .sol-list li {
        margin-bottom: 10px;
    }

    .common-box.service-head>p {
        font-size: 15px;
        width: 100%;
    }

    .contact-right .iframe-box {
        height: auto;
    }

}

@media (max-width: 580px) {
    .navbar-brand {
        height: 40px;
    }

    .navbar>.container {
        flex-wrap: nowrap;
    }

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

    .navbar-toggler-icon {
        width: 1em;
        height: 1em;
    }

    .nav-icon-list li a.common-btn {
        padding: 5px;
        font-size: 12px;
    }

    .common-btn i {
        font-size: 10px;
    }

    .nav-icon-list {
        gap: 10px;
    }

    .banner-text h1 {
        font-size: 24px;
    }

    .banner-text P {
        font-size: 14px;
    }

    .banner-content {
        left: 0%;
        padding-left: 3%;
        top: 32%;
    }
    /*  */
    .banner-text h1, .banner-text P{
        padding-left: 30px;
    }
    .banner-content h1 span:before{
        left: -30px;
    }
    .banner-text h1 {
        font-size: 20px;
    }
    .banner-text .common-btn {
        margin-left: 30px;
    }
    .banner-content h1 span {
        font-size: 30px !important;
        padding-top: 10px;
        margin-top: 10px;
    }
    /*  */

    .common-btn {
        padding: 5px 10px;
        font-size: 13px;
    }

    .banner-video {
        height: 500px;
    }

    .so-section {
        position: relative;
        margin-top: -80px;
    }

    .so-card p {
        font-size: 14px;
        width: 100%;
    }

    .common-box h3 {
        font-size: 20px;
    }

    .common-box>span {
        font-size: 14px;
    }

    .sol-left .sol-list li a {
        font-size: 14px;
    }

    .testi-box>span {
        font-size: 20px;
    }

    .testi-img {
        --ehw-img: 40px;
    }

    .testi-name h4 {
        font-size: 16px;
    }

    .testi-box {
        padding: 12px;
    }

    .footer-sub-box form {
        width: 100%;
    }

    .footer-sub-box {
        padding: 20px;
    }

    .footer-box h5 {
        font-size: 18px;
        margin-bottom: 14px;
    }

    .footer-box p {
        font-size: 13px;
    }

    .footer-list li a {
        font-size: 13px;
    }

    .footer-list {
        gap: 6px;
    }

    .service-btn {
        padding: 20px 0px;
    }

    .footer-lwr p {
        font-size: 13px;
    }

    .inr-banner-text h1 {
        font-size: 20px;
    }

    .inr-banner-list li a {
        font-size: 12px;
    }

    .inr-banner-img {
        height: 300px;
    }

    .soluDtl-box {
        padding: 20px;
    }

    .soluDtl-box h3 {
        font-size: 22px;
    }

    .soluDtl-content h5 {
        font-size: 18px;
    }

    .soluDtl-content p {
        line-height: 1.4;
        font-size: 15px;
    }

    .common-box.service-head>p {
        font-size: 14px;
    }

    .service-box>h4 {
        font-size: 16px;
    }

    .service-text h3 {
        font-size: 20px;
    }

    .service-text p {
        line-height: 1.4;
        font-size: 14px;
    }

    .servicedtl-list li {
        line-height: 1.4;
        font-size: 14px;
    }

    .service-btm h5 {
        margin-bottom: 10px;
        margin-top: 10px;
        font-size: 20px;
    }

    .contact-card {
        min-height: 150px;
        gap: 10px;
    }

    .contact-card i {
        font-size: 18px;
    }

    .contact-card a {
        font-size: 14px;
    }

    .common-box.contact-head p {
        font-size: 15px;
    }

    .footer-contact-list li a {
        gap: 14px;
        font-size: 13px;
    }

}

.techwix-cta-section-04 {
    background: #0f0948;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center
}

.techwix-cta-section-04 .cta-left {
    padding-right: 115px
}

.techwix-cta-section-04 .cta-left .section-title .title {
    position: relative;
    padding-left: 40px
}

.techwix-cta-section-04 .cta-left .section-title .title::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    background: linear-gradient(-160deg,#43baff 0,#7141b1 100%);
    width: 5px;
    height: 100%;
    transform: translateY(-45%)
}

.techwix-cta-section-04 .cta-left .cta-info {
    display: flex;
    align-items: center;
    margin-top: 60px
}

.techwix-cta-section-04 .cta-left .cta-info .cta-text {
    flex: 1;
    margin-left: 30px
}

.techwix-cta-section-04 .cta-left .cta-info .cta-text p {
    font-size: 14px;
    line-height: 30px;
    color: #fff
}

.techwix-cta-section-04 .cta-left .cta-info .cta-text .number {
    font-size: 24px;
    line-height: 30px;
    color: #fff
}

.techwix-cta-section-04 .cta-right {
    display: flex;
    justify-content: space-between;
    position: relative;
    max-width: 360px
}

.techwix-cta-section-04 .cta-right::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 55%;
    width: 360px;
    height: 1px;
    transform: translateY(-50%)
}

.techwix-cta-section-04 .cta-right::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 1px;
    height: 280px;
    transform: translate(-50%,-50%)
}

.techwix-cta-section-04 .cta-right .counter-item-box {
    position: relative
}

.techwix-cta-section-04 .cta-right .counter-item.counter-1,.techwix-cta-section-04 .cta-right .counter-item.counter-2 {
    padding-top: 45px;
    margin-top: 25px
}

.techwix-cta-section-04 .cta-right .counter-item span {
    font-size: 48px;
    line-height: 26px;
    font-family: Barlow,sans-serif;
    font-weight: 600;
    color: #11ddf5
}

.techwix-cta-section-04 .cta-right .counter-item p {
    font-size: 12px;
    line-height: 26px;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
    text-align: start;
}

@media only screen and (max-width: 1199px) {
    .techwix-cta-section-04 .cta-left {
        padding-right:0
    }

    .techwix-cta-section-04 .cta-right {
        margin-top: 65px
    }

    .techwix-cta-section-04 .cta-right::before {
        width: 320px
    }

    .techwix-cta-section-04 .cta-right::after {
        height: 240px
    }
}

@media only screen and (max-width: 767px) {
    .techwix-cta-section-04 .cta-right .counter-item span {
        font-size:42px
    } 
}
span.transformative-text {
    font-size: 52px !important;
}


.banner-text h1 {
    font-size: 41px !important;
    font-weight: 700 !important;
}


.so-card p {
    font-size: 18px;
    font-weight: 400;
    color: #656A6A;
    width: 100% !important;
    text-align: start !important;
}

.horizontal-line {
    border: 1px solid #fff;
    height: 1px;
    width: 86%;
    margin-top: 10px;
}

.footer-list {
    padding-top: 20px !important;
}
a.custom-footer-a {
    color: #fff;
    font-size: 15px !important;
    font-weight: 400;
    /* margin-bottom: 5px; */
}