@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=League+Spartan:wght@100..900&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');

:root {
    --primary: #1b48a4;
    --primary-light-1: #4c7de0;
    --primary-light-2: #90b4f0;
    --primary-dark-1: #0e3a7b;
    --primary-dark-2: #092b5c;

    --secondary: #f9f9f9;
    --secondary-dark: #e0e0e0;

    --text: #333333;
    --text-light: #666666;
    --text-link: var(--primary);
    --text-link-hover: var(--primary-dark-1);

    --background: #f9f9f9;
    --background-main: #ffffff;
    --background-accent: #e0e0e0;
}

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

ul,
ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

html {
    font-size: 62.5%;
    scroll-behavior: smooth !important;
}

body {
    font-family: 'Lato', 'Poppins';
    position: relative;
    top: 0 !important;
    width: 100vw;
    min-height: 100vh;
    height: 100%;
    /* background-color: #FFFFFF; */
    font-size: 1.4rem;
    background-color: #fff;
    color: #000;
    overflow-x: hidden;
    -webkit-tap-highlight-color: transparent;
}

/**
buttons
*/
.btn-klaton {
    font-size: 2rem;
    padding: 10px 5rem;
}

.btn-klaton.btn-primary {
    width: 250px;
    background: var(--primary);
    border-color: var(--primary);
}

a {
    text-decoration: none;
}

.hamburger{
    display: none;
}

@media (max-width: 991.98px) {
    /* .btn-klaton{
        font-size: 1.5rem;
    } */
}

@media (max-width: 576px) {
    .btn-klaton {
        font-size: 1.5rem;
    }
}

.flex {
    display: flex;
    justify-content: center;
    align-items: center;
}

.flex-align {
    align-items: flex-end;
}

.bdr {
    border: 1px solid red;
}

.bold {
    font-weight: 500;
}

.overflow-hidden {
    overflow: hidden;
}

.hidden {
    display: none;
}

.overlay.active {
    display: inline-block;
    opacity: .6;
    /* transition: all .5s ease-in-out; */
}

.hide {
    visibility: hidden;
}

.pointer {
    cursor: pointer;
}

.mobile-nav-main-wrapper.active {
    transform: translateX(0rem);
    background-color: #fff;
}

.mobile-nav.active {
    transform: translateX(0rem);
    background-color: #fff;
}

/* responsive nav toggle for mobile */

.sub-items-wrapper.active {
    height: 49rem;
    overflow-y: auto;
}

.sub-items-wrapper.fix-w.active {
    height: 54rem;
}


.arrow-wrapper.active i {
    transform: rotate(-90deg);
}

.z-index-1008 {
    z-index: 1008;
}

/* Home banner */

.c-button span.fill {
    background-color: #FFFFFF;
}

/**
*-----------------------
* Nav Bar
*-----------------------
  */
.klaxon-header {
    position: fixed;
    width: 100%;
    height: 70px;
    top: 0;
    left: 0;
    z-index: 9999;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.klaxon-nav-wrapper {
    height: 100%;
    width: 100%;
}

.klaxon-desktop-nav {
    width: 100%;
    height: 100%;
    /* border: 3px solid rgb(29, 233, 22); */
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
}

.klaxon-desktop-nav__left-section,
.klaxon-desktop-nav .klaxon-desktop-nav__left-section {
    display: flex;
    flex: 1 1 0;
    height: 100%;
    align-items: center;
}

.klaxon-desktop-nav__right-section {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}


.klaxon-desktop-site-menu {
    height: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    font-size: 1.6rem;
    list-style: none;
    gap: 1rem;
    font-weight: 500;
    padding: 0rem 3rem;
    margin-left: 25%;
}

.list-item-wrapper {
    position: relative;
    height: 100%;
    padding: 0rem 1rem 0 1.5rem;
    cursor: pointer;
    flex-direction: column;
}

.list-item-wrapper li a {
    text-decoration: none;
    color: #000;
}


.list-item-wrapper li::after {
    content: "";
    height: 0.4rem;
    width: 100%;
    display: none;
    background-color: rgb(0, 0, 0);
    position: absolute;
    bottom: 0;
    /* transition: all ease; */

}

.list-item-wrapper:hover li::after {
    content: "";
    height: 0.4rem;
    width: 100%;
    display: inline-block;
    background-color: rgb(0, 0, 0);
    position: absolute;
    bottom: 0;

}


/* .list-item{
    font-size: 1.4rem;
    padding: 0.3rem 1.5rem 0;
    font-weight: 400;
    min-height: 100%;
    padding: 0.3rem 1.5rem 0rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
} */

.list-item-wrapper .down-icon {
    font-size: 1.3rem;
    font-style: normal;
    line-height: 1;
    text-transform: none;
    letter-spacing: normal;
    word-wrap: normal;
    white-space: nowrap;
    margin-left: 0.7rem;
    margin-top: 0.32rem;
    transition: .5s ease;
}

.klaxontech-logo {
    cursor: pointer;
    /* height: 100%; */
    /* border: 1px solid blue; */
    /* display: flex; */
    /* justify-content: center; */
    /* align-items: center; */
    text-decoration: none;
    /* padding: 1.4rem 1.5rem 2.6rem; */
    /* display: block; */
    /* -webkit-box-pack: start; */
    /* -ms-flex-pack: start; */
    /* justify-content: flex-start; */
    /* left: 0; */
    margin: 0;
    padding: 0 1.5rem;
    /* position: relative; */
    /* right: 0; */
    /* width: auto; */
    /* z-index: 1 */
}

.klaxontech-logo img {
    width: 11rem;
    aspect-ratio: auto;

}

/* Right navbar styling */

.klaxon-desktop-nav__right-section {
    align-items: center;
}

.search-wrapper {
    padding: 2.6rem 1.5rem 2.6rem 1.5rem;
    height: 7rem;
    padding-top: 2.6rem;
    padding-bottom: 2.2rem;
    border-right: 1px solid #e3e3e3;
    cursor: pointer;
    position: relative;
}

.search-wrapper i::after {
    content: "";
    height: 0.4rem;
    width: 100%;
    display: none;
    background-color: rgb(0, 0, 0);
    position: absolute;
    bottom: 0;
}

.search-wrapper:hover i::after {
    content: "";
    height: 0.4rem;
    width: 100%;
    display: inline-block;
    background-color: rgb(0, 0, 0);
    position: absolute;
    bottom: 0;
}

.search-wrapper i {
    padding-top: 0.7rem;
    font-size: 2rem;
}

.site-translator-wrapper {
    margin: 0;
    padding: 2.6rem 1.5rem 2rem 1.5rem;
    cursor: pointer;
    display: inline-block;
}



/* down icon rotate */
.active {
    /* font-weight: 500; */
}

.down-icon.active {
    rotate: 180deg;
}

/* styling dropdown */

.klaxon-desktop-nav-dropdown-wrapper {
    top: 4px;
    width: 74%;
    top: 4px;
    width: 78%;
    position: absolute;
    display: flex;
    justify-content: center;
    z-index: 2;
    /* max-height: 0rem; */
    flex-direction: column;
    transition: 400ms cubic-bezier(0.02, 0.01, 0.47, 1);
    /* overflow: hidden; */
}

.klaxon-desktop-nav-dropdown {
    /* border: 1px solid red; */
    z-index: 2;
    /* max-height: 0rem; */
    /* top: -38rem; */
    width: 100%;
    /* padding: 5rem 10rem 5rem 15rem; */
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    column-gap: 0rem;
    place-content: flex-start;
    row-gap: 2rem;
    position: absolute;
    background-color: #FFFFFF;
    transition: .45s ease-in-out;
    /* box-shadow: 0 10px 10px -10px #000; */
    border-bottom: 0.06em solid #e3e3e3;
    /* overflow-y: auto; */
    /* transition: 400ms cubic-bezier(0.02,0.01,0.47,1); */
    /* overflow: hidden; */
    /* z-index: 900; */
    /* max-height: 0; */
    /* will-change: max-height; */
    -webkit-transition: 400ms cubic-bezier(0.02, 0.01, 0.47, 1);
    transition: 400ms cubic-bezier(0.02, 0.01, 0.47, 1);
    /* overflow: hidden; */
    /* transition: all .5s ease-in; */
    visibility: hidden;
    top: 7rem;
    /* min-height: 30rem; */
    /* left: 5rem; */
    border-radius: 1.5rem;
    padding: 32px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
}

.klaxon-desktop-nav-dropdown a {
    text-decoration: none;
    font-weight: 500;
    color: #000;
}

.klaxon-desktop-nav-dropdown i {
    font-size: 1.6rem;
    margin-right: 1rem;
}

.klaxon-desktop-nav-dropdown a:hover {
    font-weight: 600;
    color: var(--text-link-hover);
}

.active-nav-animation {
    top: 7rem;
    /* min-height: 21rem; */
    visibility: visible;

}




/* styling Responsive */

.hamburger {
    position: absolute;
    top: 50%;
    left: 1.5rem;
    padding: 0;
    margin: 0;
    transform: translateY(-50%);
    font-size: 2.6rem;
    z-index: 1003;
    display: none;

}

.cross {
    display: none;
    position: absolute;
    top: 50%;
    left: 1.5rem;
    padding: 0;
    margin: 0;
    transform: translateY(-50%);
    font-size: 32px;
    z-index: 1003;
}

.mobile-nav {
    position: fixed;
    top: 70px;
    min-height: 90vh;
    width: 32rem;
    display: none;
    justify-content: start;
    flex-direction: column;
    /* overflow-y: auto; */
    /* background-color: #fff; */
    transform: translateX(-100rem);
    transition: .45s ease-in-out;
    z-index: 1010;

}

.mobile-nav-main-wrapper {
    z-index: 1006;
    /* transform: translateX(-100rem); */
    transition: .45s ease-in-out;
    min-height: 100vh;
}

.mobile-nav-contact-wrapper a {
    text-decoration: none;
    font-size: 1.4rem;
    font-weight: 300;
    text-align: center;
    color: #4a4a4a;
    padding: 1rem 1.5rem;


}

.mobile-nav-wrapper .list-item {
    justify-content: space-between;
    width: 100%;
    /* background-color: yellow; */
    padding: 0.8rem 1.5rem !important;

}

.contact-wrapper {
    margin-top: 14rem;
    display: flex;
    flex-direction: column;

}

.mobile-nav-contact-wrapper .social-media {
    margin: 1rem 0rem;
    display: flex;
    justify-content: center;
    align-items: center;

}

.social-media {
    display: flex;
    justify-content: center;
    align-items: center;
}

.social-media a {
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;

}

.social-media a i.fa-brands {
    font-size: 18px;
    color: #000;
}

.mobile-nav .list-item-wrapper:hover li::after {
    display: none;

}

.mobile-nav .list-item-wrapper {
    margin: 0;
    padding: 0;
}

.overlay {
    position: absolute;
    width: 100vw;
    height: 100%;
    background-color: #000;
    /* z-index: -2; */
    opacity: 0;
    /* transition: all .5s ease-in-out; */
    display: none;
}

.mobile-nav .list-item-wrapper li {
    font-weight: 500;
    border-bottom: 1px solid #e3e3e3;
    width: 100%;
    padding: 1rem 0;
    margin: 0;
    color: #000;
}

.mobile-nav .list-item-wrapper li ion-icon {
    font-size: 20px;
    color: #000;
}

.mobile-nav .list-item-wrapper li a {
    text-decoration: none;
    color: #000;
}

.sub-items-wrapper {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* border: 1px solid yellow; */
    overflow: hidden;
    overflow-y: auto;
    height: 0;
    -webkit-transition: 400ms cubic-bezier(0.02, 0.01, 0.47, 1);
    transition: 400ms cubic-bezier(0.02, 0.01, 0.47, 1);
    padding-left: 1rem;
}

.sub-items-wrapper a {
    width: 100%;
    text-decoration: none;
    color: #000;
    font-weight: 300;
    padding: 0.8rem 1.5rem;
    /* font-weight: bold; */
    /* border-bottom: 1px solid #e3e3e3; */
    /* border: 1px solid red; */
    width: 100%;
    margin: 0;
}

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

    body {
        overflow-y: auto;
    }

    #site-header {
        /* height: 5rem; */
    }

    .klaxon-desktop-site-menu {
        display: none;
    }

    .klaxontech-logo {
        padding-bottom: 2.6rem;
    }

    .klaxon-desktop-nav__left-section a {
        display: flex;
        width: 100%;
        justify-content: center;
        align-items: center;
        padding: 0;
    }

    .hamburger {
        display: inline-block;
    }

    .cross {
        display: inline-block;
    }

    .search-wrapper:hover i::after {
        content: "";
        height: 0.4rem;
        width: 100%;
        display: none;
        background-color: rgb(0, 0, 0);
        position: absolute;
        bottom: 0;
    }

    .search-wrapper {
        height: 5rem;
    }

    .mobile-nav {
        position: fixed;
        top: 70px;
        min-height: 100vh;
        display: flex;
        width: 32rem;
        display: flex;
        justify-content: start;
        flex-direction: column;
        /* overflow-y: auto; */
        /* background-color: #fff; */

    }

    .klaxon-desktop-nav-dropdown-wrapper {
        display: none;
    }



}

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

    .nav-roller-menu {
        display: none;
    }

    #nav-roller-wrapper {

        height: 0.8rem !important;


    }

    .nav-roller-wrap2 {

        height: 0.8rem !important;
        background-color: #F2F2F2;

    }

}


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

    .site-translator-wrapper {

        display: none;
    }

    .mobile-nav {
        /* position: sticky; */
        top: 70px;
        min-height: 100vh;
        display: flex;
        /* width: rem; */
        display: flex;
        justify-content: start;
        /* align-items: center; */
        flex-direction: column;
        /* overflow-y: auto; */

    }

    .mobile-nav-main-wrapper {
        width: 100vw;
        overflow: hidden;
    }

    .klaxon-desktop-nav-dropdown-wrapper {
        display: none;
    }

    .nav-roller-menu {
        display: none;
    }

}


/* 
  @media screen and (max-width: 768px){


  .mobile-nav-main-wrapper{
    width: 100vw;
    overflow: hidden;
 }

} */

/* styling nav roller menu */

#nav-roller-wrapper {
    position: relative;
    width: 100%;
    z-index: 499;
}

.nav-roller-wrap2 {
    position: fixed;
    /* background-color: #F2F2F2; */
    width: 100%;
    /* height: 5.7rem; */
    justify-content: flex-start;
}

.nav-roller-menu {
    width: 100%;
    justify-content: flex-start;
    /* background-color: #F2F2F2; */
}

/* .nav-roller-wrap2 span{
    z-index: 1007;
} */
#nav-roller-wrapper li {
    list-style: none;
    padding: 1.7rem 2.2rem;
    font-size: 1.4rem;
    cursor: pointer;
    /* background-color: #F2F2F2; */
}

.move-to-top {
    position: relative;
}

.arrow-wrapper {
    position: fixed;
    bottom: 5rem;
    right: 5rem;
    cursor: pointer;
    height: 5rem;
    width: 5rem;
    background-color: var(--primary);
    border-radius: 50%;
    z-index: 600;
    opacity: 0;
    border: none;
    transition: 0.2s all ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.arrow-wrapper:hover {
    transform: scale(1.1);
}

.arrow-wrapper i {
    font-size: 20px;
    font-weight: 400;
    transition: 0.3s ease;
    color: #fff;
}

.nav-roller-progress-bar {
    position: absolute;
    top: 0;
    height: .8rem;
    position: absolute;
    width: 0;
    background-color: #8C8C8C;
    transition: width 0.2s ease-out;
    border-radius: 7%;
}

/**
* Intro::
*/

.intro {
    position: relative;

    /* height: ; */
    width: 100vw;
    z-index: -1;
    /* border: 2px solid yellow; */

}



.carousel {
    /* display: inline-block; */
    position: sticky !important;
    top: 0;
    height: 100vh;
    width: 100%;
    /* border: 3px solid yellow; */


}

.carousel video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-color: #03011E;
}

.intro-text {
    position: absolute;
    display: flex;
    flex-direction: column;

    z-index: 200;
    color: #fff;
    padding: 0;
    text-align: left;
    /* margin-top: 15rem; */
    margin-left: 10rem;
    top: 30%;
}

.intro-text .first-text {
    color: #fff;
    font-size: 6rem;
    line-height: 78px;
    font-weight: 500;
    text-align: left;
    margin: 0;
    transition: transform .75s ease;
}

.intro-text .second-text {
    font-size: 2.5rem;
    font-weight: 300;
    line-height: 32px;
    color: #fff;
    /* width: 330px; */
    margin-top: 40px;
    transition: transform .75s ease;
}

.scrol-animate {
    transform: translateY(2rem);
    transition: all 1.5s ease;
    /* opacity: 0; */
}

.scrol-animate.active {
    transform: translateY(0rem);
    transition: all 1.5s ease;
    opacity: 1;
}

.wrapper-intro2 {
    position: sticky !important;
    top: 0;
    height: 100vh;
    width: 100%;

}

.wrapper-intro2 .intro-text {
    /* margin-top: 25rem; */
    top: 30%;
}

.wrapper-intro2 img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-color: #03011E;
}

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

    .intro-text {
        margin-left: 1.5rem;
        /* margin-top: 40rem; */
        top: 50%;
    }

    .wrapper-intro2 .intro-text {
        margin-left: 1.5rem;
        top: 50%;
        /* margin-top: 46rem !important; */
    }

    .intro-text .first-text {
        font-size: 3.6rem;
        line-height: 44px;
        word-wrap: break-word;
    }

    .intro-text .second-text {
        font-size: 16px;
        line-height: 24px;
        word-wrap: break-word;
        margin-top: 10px;
    }
}

/**
    Translate
*/
#google_translate_element {
    display: flex;
    justify-content: center;
    align-items: center;
    /* top: 2.6rem; */
}

/* Style the dropdown button */
.goog-te-combo {
    border: 1px solid #ccc;
    padding: 6px;
    background-color: #fff;
    color: #333;
    border-radius: 4px;
    cursor: pointer;
    outline: none;

}

.site-translator-wrapper {
    padding: 2.6rem 1.5rem 1rem 1.5rem !important;
}

/* Hide the Google logo and "Powered by Google Translate" text */
/* .goog-logo-link, .goog-te-gadget {
    display: none !important;
} */

/* #google_translate_element table{
    display: none !important;
} */

.VIpgJd-ZVi9od-ORHb-OEVmcd.skiptranslate {
    display: none !important;
}

.VIpgJd-ZVi9od-l4eHX-hSRGPd {
    display: none !important;
}

.goog-logo-link {
    display: none !important;
}

.goog-logo-link {
    display: none !important;
}

.goog-te-gadget {
    color: transparent !important;
}

/**
Footers
*/
#footer {
    position: relative;
    width: 100vw;
    background-color: #000;
    color: #fff;
    overflow: hidden;
}

#footer .company-footer a {
    text-decoration: none;
    color: #fff;
}

.company-footer {
    justify-content: space-around;
    position: relative;
    width: 100vw;
    min-height: 13.5rem;
    flex-wrap: wrap;
    padding: 1rem 3.5rem;

}

.company-footer .list-items li {
    list-style: none;
    opacity: 0.7;
    letter-spacing: 0.8px;
    transition: 0.2s all ease;
    margin: 1.5rem 2.5rem;
    font-size: 14px;

}

.company-footer .list-items {
    justify-content: flex-start;
    min-width: 60%;
}

.company-footer .list-items a:hover li {
    opacity: 1;
    text-decoration: underline;
}



.company-footer .social-media-wrapper li {
    list-style: none;
    margin: 1rem;

}

.company-footer .site-logo {

    width: 15rem;
    height: 3.8rem;
    /* border: 2px solid yellow; */
}

#footer .company-footer .site-logo a {
    display: block;
    position: relative;
    width: 15rem;
    height: 3.8rem;

    /* border: 2px solid yellow; */
}

.company-footer .site-logo a img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}





.company-footer::after {
    content: "";
    position: absolute;
    height: 0.1rem;
    width: 93vw;
    bottom: 0;
    background-color: #fff;
}

#footer .social-media a ion-icon {
    position: absolute;
    color: #ffffff85;
    transition: 0.2s all ease;
}

#footer .social-media a {
    position: relative;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    border: 2px solid #ffffff85;
    margin: 1.5rem 1rem;
}

#footer .social-media a ion-icon:hover {
    color: #fff;
}

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

    .company-footer .site-logo {
        margin-bottom: 1rem;
    }

}

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

    #footer .social-media {
        margin-top: 0rem !important;
    }

    .company-footer .list-items li {
        font-size: 14px;
    }

    .company-footer .list-items {
        flex-wrap: wrap;
        font-size: 14px;
        justify-content: space-between;
    }

    .site-footer {

        padding: 1rem 1.5rem !important;

    }

    .copy-right-wrapper {
        padding: 1rem 1.5rem !important;
    }


}

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

    .company-footer .list-items li {
        font-size: 12px;
    }
}


/* down footer */


.site-footer {
    position: relative;
    min-width: 100vw;
    min-height: 8.8rem;
    /* background-color: rgb(248, 222, 149); */
    padding: 1rem 3.5rem;
    justify-content: space-between;
    flex-wrap: wrap;
}

.site-footer .terms-wrapper a {
    /* width: 100%;
    height: 100%; */
    /* border: 2px solid red; */
    text-decoration: none;
    margin: 0rem 1.5rem;

}

.site-footer .terms-wrapper a li {
    list-style: none;
    color: #ffffff85;
    font-size: 12px;
    transition: 0.2s all ease;
}

.site-footer .terms-wrapper a li:hover {
    color: #fff;
    text-decoration: underline;
}


.copy-right-wrapper p {
    font-size: 12px;
    color: #ffffff85;
    transition: 0.2s all ease;
}

.copy-right-wrapper p:hover {
    font-size: 12px;
    color: #fff;
}

/**
* Cards.css
*/
.latest-news {
    position: relative;
    width: 100vw;

    overflow-x: hidden;
    padding: 40px 0px 0;
    margin-bottom: 7rem;
}

.carousel-btn-wrapper {
    position: absolute;
    width: 100%;
    display: flex;
    top: 50%;
    justify-content: space-between;
}

.carousel-btn-wrapper .left-botton,
.carousel-btn-wrapper .right-botton {
    font-size: 2rem;
    transition: 0.3s all ease;
    cursor: pointer;
    z-index: 300;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
    height: 4rem;
    width: 4rem;
    background: #fbfbfb;
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--primary);
}

.c-btn:hover {
    opacity: 1;
    background: var(--primary);
    color: #fff;
}

.latest-news-title {
    font-size: 24px;
    font-weight: 500;
    /* width: 100vw; */
    text-align: center;
    margin: 30px 86px;
    padding: 0 15px;

}

.cards-wrapper {
    opacity: 1;
    width: 2947px;
    transform: translate3d(40px, 0px, 0px);
    position: relative;
    top: 0;
    left: 0;
    display: flex;
    margin-left: auto;
    margin-right: auto;
    margin-top: 5rem;
    /* border: 2px solid yellow; */
    transition: all 0.4s ease-in-out;
}

.card-wrapper-w-img {
    position: relative;
    width: 39.7rem;
    margin: 0 1.2rem;
    border-radius: 1rem;
    background-color: rgb(14 58 123 / 70%);
    overflow: hidden;
    cursor: pointer;

}

.card {
    transition: 0.2s all ease;
}

.card:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
    /* transform: translate(-3px, -3px); */
}

.card-wrapper {
    position: relative;
    width: 39.7rem;
    height: 39.9rem;
    margin: 0 1.2rem;
    /* border: blue 2px  solid; */
    border-radius: 1rem;
    background-color: #101820;
    overflow: hidden;
    cursor: pointer;
    /* display: flex; */

}

.card-wrapper a,
.card-wrapper-w-img a {
    text-decoration: none;
}

.card-wrapper-w-img img {
    position: absolute;
    z-index: -1;
    height: 399px;
}

.cards-wrapper .card-title {

    font-weight: 300;
    font-size: 16px;
    text-transform: uppercase;
    color: #fff;
    font-weight: 300;
    font-size: 16px;
    text-transform: uppercase;
    margin-top: 5rem;
    color: #fff;
    margin-left: 3.5rem;
}

.card-text {
    color: #fff;
    font-size: 24px;
    line-height: 30px;
    font-weight: 300;
    margin-bottom: 0;
    margin-top: 20px;
    margin-left: 3.5rem;
    padding-right: 1rem;


}

.learn-more {
    font-size: 16px;
    line-height: 24px;
    position: absolute;
    bottom: 25px;
    margin-left: 3.5rem;
    color: #fff;
}

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

    .card-wrapper-w-img {
        width: 30rem;
    }

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

    .card p {
        font-size: 1.8rem;
    }

    .card-wrapper {
        width: 30rem;
    }


}

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

    .carousel-btn-wrapper div {
        width: 5rem;
        height: 5rem;
        margin: 0 .5rem;
        /* background-color: red; */
    }

    .cards-wrapper {
        transform: translate3d(10px, 0px, 0px);
    }
}

.img-container {
    position: relative;
    width: 640px;
    height: 360px;
    border-radius: 35px;
    cursor: pointer;
    overflow: hidden;

}

.img-container img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}



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

    .img-container {
        width: 490px;
        height: 317px;

    }

}

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

    .nice-things-wrapper {
        flex-direction: column;
        align-items: center;
    }

    .left-wrapper h3 {
        font-size: 32px;
    }

    .img-container {
        width: 390px;
        height: 217px;

    }


}

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

    .img-container {
        width: 300px;
        height: 233px;
    }

    .h2-heading h2 {
        text-align: center;
        font-weight: 500;
        font-size: 20px;
        margin: 15px 15px !important;
    }

}

/* Stlyling for Featured Companies  */


.Featured-companies {
    position: relative;
    width: 100vw;
    overflow-x: hidden;

}

.Featured-companies .wrapper {
    width: 100%;
}

.h2-heading h2 {
    text-align: center;
    font-weight: 500;
    font-size: 24px;
    margin: 15px 70px;
}

.Featured-companies .wrapper .img-carousel {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    /* border: 2px solid yellow; */

    overflow: hidden;
    width: 250rem;

}

.card-wrapper-c {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 7.5rem;

    transition: transform 7s ease;

    animation: carouselAnimate 50s infinite linear;

}



.c-img-wrap {
    position: relative;
    width: 20rem;
    height: 10rem;
    overflow: hidden;
    /* border: 2px solid red; */

}

.c-img-wrap img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* border: 2px solid red; */
    width: 13rem;
    height: 5rem;

}


@keyframes carouselAnimate {
    0% {
        transform: translateX(0rem);
    }

    50% {
        transform: translateX(-110rem);
    }

    100% {
        transform: translateX(0rem);
    }
}

/**
About-us.css
*/

.about-us-hero {
    max-width: 100vw;
    height: 70vh;
    position: relative;
    box-shadow: 0 15px 15px 0 rgba(0, 0, 0, .05);
}


.about-us-hero .wrapper {
    width: 100%;
    height: 100%;
    position: relative;
}

.about-us-hero img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-color: #03011E;

}

.about-us-hero p {
    position: absolute;
    /* top: 50%; */
    top: 40%;
    left: 50%;
    transform: translate(-50%, 50%);
    color: #1B48A4;
    font-size: 5rem;
    font-weight: 500;
}


.who-we-are-wrap {
    position: relative;
    background-color: #fff;
    /* width: 100vw; */

}


.who-we-are {
    position: relative;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 5rem;
    margin: 0 275px;
}

.who-we-are p {
    margin: 18px 0;
    font-size: 1.8rem;
    font-weight: 300;
    text-align: center;
}

.who-we-are h2 {
    font-weight: 400;
    font-size: 28px;



}


.what-we-do {
    width: 100vw;
    /* border: 2px solid blue; */
    display: flex;
    /* justify-content: space-between; */
    align-items: flex-start;
    padding: 50px 15px;

}

.what-we-do h2 {
    font-weight: 400;
    font-size: 28px;
}



.what-we-do .img-wrapper {
    width: 751px;
    height: 421px;

    position: relative;
    overflow: hidden;
    border-radius: 35px;

}

.what-we-do .img-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

}


.what-we-do p {
    margin: 18px 0;
    font-size: 1.6rem;
    font-weight: 300;
}

.what-we-do .wrapper {
    width: 50%;
    padding: 0 25px;
}

/* Responsive style */

@media screen and (max-width: 1200px) {
    .about-us-hero {
        max-width: 100vw;
        height: 40vh;
        position: relative;
    }

    .about-us-hero p {
        position: absolute;
        /* top: 50%; */
        top: 35%;
        left: 50%;
        transform: translate(-50%, 50%);
        color: #1B48A4;
        font-size: 2.5rem;
        font-weight: 500;
    }

    .who-we-are {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 1.5rem;
        margin: 0 15px;
    }

}

@media screen and (max-width: 1000px) {
    .what-we-do {
        width: 100vw;
        /* border: 2px solid blue; */
        display: flex;
        justify-content: center;
        align-items: flex-start;

        flex-direction: column;

    }

    .what-we-do .img-wrapper {
        width: 751px;
        height: 421px;
        position: relative;
        overflow: hidden;
        border-radius: 35px;
        padding-bottom: 25px;

    }

    .what-we-do .wrapper {
        display: flex;
        flex-direction: column;
        width: 100%;
        padding: 25px 0px;
    }

}

@media screen and (max-width: 768px) {
    .what-we-do .img-wrapper {
        width: 333px;
        height: 186px;
        position: relative;
        overflow: hidden;
        border-radius: 35px;
        padding-bottom: 25px;

    }

}

/* new card design */
.sec-icon {
    position: relative;
    display: inline-block;
    padding: 0;
    margin: 0 auto;
}

.sec-icon::before {
    content: "";
    position: absolute;
    height: 1px;
    left: -70px;
    margin-top: -5.5px;
    top: 60%;
    background: #333333;
    width: 50px;
}

.sec-icon::after {
    content: "";
    position: absolute;
    height: 1px;
    right: -70px;
    margin-top: -5.5px;
    top: 60%;
    background: #333;
    width: 50px;
}

.advertisers-service-sec {
    background-color: #ffffff;
}

.advertisers-service-sec span {
    color: rgb(255, 23, 131);
}

.advertisers-service-sec .col {
    padding: 0 1em 1em 1em;
    text-align: center;
}

.advertisers-service-sec .service-card {
    width: 100%;
    height: 100%;
    padding: 2em 1.5em;
    border-radius: 5px;
    box-shadow: 0 0 35px rgba(0, 0, 0, 0.12);
    cursor: pointer;
    transition: 0.5s;
    position: relative;
    z-index: 2;
    overflow: hidden;
    background: #fff;
}

.advertisers-service-sec .service-card::after {
    content: "";
    width: 100%;
    height: 100%;
    background: linear-gradient(#0dcaf0, rgb(255, 23, 131));
    position: absolute;
    left: 0%;
    top: -98%;
    z-index: -2;
    transition: all 0.4s cubic-bezier(0.77, -0.04, 0, 0.99);
}

.advertisers-service-sec h3 {
    font-size: 20px;
    text-transform: capitalize;
    font-weight: 600;
    color: #1f194c;
    margin: 1em 0;
    z-index: 3;
}

.advertisers-service-sec p {
    color: #575a7b;
    font-size: 20px;
    line-height: 1.6;
    letter-spacing: 0.03em;
    z-index: 3;
}

.custom-card-heading {
    font-size: 56px !important;
}

.advertisers-service-sec .icon-wrapper {
    background-color: #2c7bfe;
    position: relative;
    margin: auto;
    font-size: 30px;
    height: 2.5em;
    width: 2.5em;
    color: #ffffff;
    border-radius: 50%;
    display: grid;
    place-items: center;
    transition: 0.5s;
    z-index: 3;
}

.advertisers-service-sec .service-card:hover:after {
    top: 0%;
}

.service-card .icon-wrapper {
    background-color: #ffffff;
    color: rgb(255, 23, 131);
}

.advertisers-service-sec .service-card:hover .icon-wrapper {
    color: #0dcaf0;
}

.advertisers-service-sec .service-card:hover h3 {
    color: #ffffff;
}

.advertisers-service-sec .service-card:hover p {
    color: #f0f0f0;
}

.card-paragraph {
    font-size: 20px;
}

.service-post-list {
    margin-bottom: 30px;
}

.post-list-content {
    background-color: #f8f9fa;
    /* Light background color */
    padding: 20px;
    /* Padding */
    border-radius: 5px;
    /* Rounded corners */
}

.intro20 h2 {
    font-size: 45px;
    font-weight: 700;
    line-height: 3rem;
}

.intro20 {
    padding-bottom: 20px;
}

.nice-things {
    margin-bottom: 6rem;
}

.container-section {
    min-height: 100vh;
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: center
}

p {
    margin: 0px
}

.card {
    width: 430px;
    height: 500px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    background: #fff;
    transition: all 0.5s ease;
    cursor: pointer;
    user-select: none;
    z-index: 10;
    overflow: hidden
}

.card .backgroundEffect {
    bottom: 0;
    height: 0px;
    width: 100%
}

.card:hover {
    color: #fff;
    transform: scale(1.025);
    box-shadow: rgba(0, 0, 0, 0.24) 0px 5px 10px
}

.card:hover .backgroundEffect {
    bottom: 0;
    height: 320px;
    width: 100%;
    position: absolute;
    z-index: -1;
    /* background: #1b9ce3; */
    background: #c3d8d6;
    animation: popBackground 0.3s ease-in
}

@keyframes popBackground {
    0% {
        height: 20px;
        border-top-left-radius: 50%;
        border-top-right-radius: 50%
    }

    50% {
        height: 80px;
        border-top-left-radius: 75%;
        border-top-right-radius: 75%
    }

    75% {
        height: 160px;
        border-top-left-radius: 85%;
        border-top-right-radius: 85%
    }

    100% {
        height: 320px;
        border-top-left-radius: 100%;
        border-top-right-radius: 100%
    }
}

.card .pic {
    position: relative
}

.card .pic img {
    width: 100%;
    height: 280px;
    object-fit: cover
}

.card .date {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 70px;
    background-color: #1b9ce3;
    color: white;
    position: absolute;
    bottom: 0px;
    transition: all ease
}

.card .date .day {
    font-size: 14px;
    font-weight: 600
}

.card .date .month,
.card .date .year {
    font-size: 10px
}

.card .text-muted {
    font-size: 12px
}

.card:hover .text-muted {
    color: #fff !important
}

.card .content {
    padding: 0 20px
}

.card .content .btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px 10px;
    background-color: #1b9ce3;
    border-radius: 25px;
    font-size: 12px;
    border: none
}

.card:hover .content .btn {
    background: #fff;
    color: #1b9ce3;
    box-shadow: #0000001a 0px 3px 5px
}

.card .content .btn .fas {
    font-size: 10px;
    padding-left: 5px
}

.card .content .foot .admin {
    color: #1b9ce3;
    font-size: 12px
}

.card:hover .content .foot .admin {
    color: #fff
}

.card .content .foot .icon {
    font-size: 12px
}

.paragraph-section {
    font-size: 20px;
    /* font-weight: 500; */
    color: #000;
}

.section-heading {
    font-size: 20px;
    font-weight: 500;
    color: #000;
}

/*Component A*/
.component1 {
    background-color: rgb(245, 244, 243);
}

.component1-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    background-color: rgb(255, 255, 255);
    color: rgb(25, 24, 23);
}

.needHelp__imageWrapper {
    width: 100%;
    height: 100%;
}

.needHelp__imageWrapper a {
    cursor: pointer;
    text-decoration: none;
    color: rgb(85, 85, 85);
    transition: color 200ms cubic-bezier(0.165, 0.84, 0.44, 1) 0s;
}

.a-responsiveImage {
    position: relative;
    width: 100%;
    background: rgb(250, 250, 250);
}

.main,
#main {
    padding-top: 70px;
}

/**Home.css*/
/**WIll be merged into index.css**/
/*Text component*/
.page-information {
    background-color: #1e1e1e;
    padding: 10rem 0;
    color: #fff;
    border-top: 1px solid #2a2a2a;
    background-color: #202020;
}

.page-information img {
    display: block;
    margin: 0;
    line-height: 0;
    max-width: 100%;
    height: auto;
}

.page-information__white {
    background-color: #fff;
    color: #202020;
    border: none;
}

.page-information__white--less-spacing{
    padding: 7rem 0;
}

.page-information__grey {
    background-color: rgb(245, 244, 243);
    border-top: 0;
    color: #1e1e1e;
}

.page-information__white.small-spacing {
    padding: 5rem 0;
}

.page-information-center {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.page-information__title {
    font-size: 4rem;
    margin-bottom: 3rem;
    font-weight: 600;
    border-left: 1rem solid var(--primary);
    padding: 0 3rem;
    line-height: 1;
}

.page-information__sub-title {
    font-size: 2.9rem;
    font-weight: 300;
    margin-bottom: 2.5rem;
    padding: 0 4rem;
    line-height: 1.3;
}

.page-information__description {
    font-size: 1.7rem;
    padding: 0 4rem;
}

.page-information__description__margin-bottom {
    margin-bottom: 2.5rem;
}

.page-information__list{
    margin-left: 0;
    padding-left: 7rem;
    list-style: disc;
}
.page-information__list li{
    margin-bottom: 0.5rem;
}

.page-information-cards {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-right: 2.4rem;
}

.page-information-card {
    border: 1px solid #dedede;
    box-shadow: 0 7px 30px -10px rgb(133, 153, 162, .5);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    transition: all 600ms ease-in-out;
    margin-bottom: 2rem;
}

.page-information-cards__image img {
    display: block;
    margin: 0;
    line-height: 0;
    max-width: 100%;
    height: auto;
    transition: transform 650ms ease-in-out, filter 650ms ease-in-out;
}

.page-information-cards__image a {
    color: #eee;
}

.page-information-cards__heading {
    padding: 2rem;
    font-size: 2.4rem;
    font-weight: 600;
    margin-bottom: 11px;
}

.page-information-cards__heading a {
    color: var(--bs-heading-color)
}

.page-information-cards__sub-heading {
    padding: 2rem;
    font-size: 1.7rem;
    font-weight: 500;
}

.page-information-svgs{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin-top: 7rem;
}

.page-information-svg-card{
    flex: 1 1 0;
    border: 1px solid rgba(0, 0, 0, .1);
    padding: 2rem;
    margin-right: 4rem;
    border-radius: 10px;
    background: rgb(245, 244, 243);
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-bottom: 2rem;
    max-width: 286px;
    min-width: 250px;
}

.page-information-svg-card__svg{
    padding: 3rem 5rem;
}

.page-information-svg-card__heading{
    padding: 0 2rem;
    font-size: 2.4rem;
    text-align: center;
    font-weight: 600;
}

.page-information-lists {
    font-size: 1.7rem;
    padding: 0 4rem;
    margin-bottom: 2rem;
}

.page-information-lists li {
    padding: 0.5rem 0;
}

.page-information-lists li i {
    color: var(--primary);
    margin-right: 1rem;
}

.page-information__disclaimer {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.page-information__heading {
    font-size: 2.3rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
}

.page-information__para {
    font-weight: 300;
    font-size: 2.1rem;
    margin-bottom: 2rem;
}

.page-information__para--no-margin{
    margin-bottom: 0;
}

.page-information__container--right {
    padding-left: 3rem;
}

.page-information__container--left {
    padding-right: 3rem;
}

.page-information__container--image{
    padding: 0 4rem 0 0;
}

.page-information__container--image-right{
    padding: 0 0 0 4rem;
}

.award-recognition-list {
    display: flex;
    padding-top: 4rem;
}

.page-information__blogs{
    padding-bottom: 2rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid rgba(0,0,0,.1);
}
.page-information__blogs-image{
    margin-bottom: 2rem;
}
.page-information__blogs-heading{
    font-size: 3rem;
    font-weight: 600;
    margin-bottom:1rem;
}
.page-information__blogs-para{
font-size: 1.75rem
}
.page-information__blogs__small-container{
    padding: 0 2rem;
}
.page-information__blogs-small{
    display: flex;
    flex-direction: row;
    padding-bottom: 2rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid rgba(0,0,0,.1);
}

.page-information__blogs-small a{
    display: flex;
    flex-direction: row;
    color: #000;
}

.page-information__blogs-small-image{
    flex: 0 0 30%;
    padding-right: 1rem;
}

.page-information__blogs-small-content{
    padding-left: 10px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.page-information__blogs-small-content h4{
    font-size: 1.4rem;
}

.page-information__blogs-small-content h3{
    font-size: 1.75rem;
    font-weight: 600;
}

@media (max-width: 992px) {
    .page-information {
        padding: 12rem 0;
    }
}

@media (max-width: 768px) {
    .page-information {
        padding: 8rem 0;
    }

    .page-information__container--left {
        padding: inherit
    }

    .page-information__container--right {
        padding: inherit
    }

    .page-information--more-spacing {
        padding: 8rem 4rem 7rem 2rem;
    }
}

@media (max-width: 576px) {
    .page-information {
        padding: 5rem 0;
    }

    .page-information__container--left {
        padding: inherit
    }

    .page-information__container--right {
        padding: inherit
    }

    .page-information--more-spacing {
        padding: 8rem 4rem 7rem 2rem;
    }

    .page-information-svgs {
        padding: 0 5rem 0 3rem;
    }

    .page-information-svg-card {
        margin-right: 0;
    }

}


/**
Page Story
*/
.page-stories-section-container {
    height: 88vh
}

@media (max-width: 575.98px) {

    .page-stories-section-container {
        height: 95vh
    }
}

@media (max-width: 470.98px) {

    .page-stories-section-container {
        height: 100vh
    }
}

.page-stories-section-container .position-relative {
    position: relative !important;
}

.page-stories-section-container .w-100 {
    width: 100% !important;
}

.page-stories-section-container .bg-image {
    background-position: center 0;
    background-size: cover;
    background-repeat: no-repeat;
}

.page-stories-section-container .image-gradient-bg {
    position: relative;
}

@media only screen and (max-width: 1199px) {
    .text-image-banner-section .position-left-bg-image {
        background-position: 50%;
    }
}

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

    .text-image-banner-section .position-left-bg-image {
        background-position: left 0;
    }
}

.text-image-banner-section .text-bg-image-banner {
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-size: 70% 100%;
    background-repeat: no-repeat;
    height: 100%;
}

@media only screen and (max-width: 1199px) {
    .text-image-banner-section .text-bg-image-banner {
        padding: 200px 0 0;
        background-size: cover;
        background-position: 50%;
        display: block;
        height: 300px;
    }
}

.page-stories-section-container .image-gradient-bg:before {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    height: 100%;
    content: "";
    z-index: 1;
    opacity: .6;
}

@media only screen and (min-width: 1199px) {
    .text-image-banner-section .left-image-gradient-bg:before {
        width: 70%;
        right: auto;
    }

    .text-image-banner-section .right-image-gradient-bg:before {
        width: 70%;
        right: 0;
        left: auto;
    }
}

.text-image-banner-section .text-linear-bg-left:after {
    background: -webkit-gradient(linear, left top, right top, from(#000), to(transparent));
    background: linear-gradient(90deg, #000, transparent);
}

.text-linear-bg-left:after {
    background: -webkit-gradient(linear, left top, right top, from(#000), to(transparent));
    background: linear-gradient(90deg, #000, transparent)
}

.text-linear-bg-left:after,
.text-linear-bg-right:after {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    content: "";
    top: 0;
    z-index: 1;
    opacity: .8
}

.page-stories-section-container .text-linear-bg-left:after,
.text-linear-bg-right:after {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    content: "";
    top: 0;
    z-index: 1;
    opacity: .8;
}

.text-linear-bg-right:after {
    background: -webkit-gradient(linear, left top, right top, from(transparent), to(#000));
    background: linear-gradient(90deg, transparent, #000)
}

@media only screen and (min-width: 1199px) {
    .text-image-banner-section .text-linear-bg-left:after {
        background-size: 70% 100%;
        background-position: left 0;
        background-repeat: no-repeat;
        background: transparent;
    }

    .text-image-banner-section .text-linear-bg-right:after {
        background-size: 70% 100%;
        background-position: right 0;
        background-repeat: no-repeat;
        background: transparent;
    }
}

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

    .text-image-banner-section .text-linear-bg-left:after,
    .text-image-banner-section .text-linear-bg-right:after {
        background-size: cover;
        background-position: 50%;
        background-repeat: no-repeat;
    }

}

.dynamic-media-image {
    position: absolute;
    top: 0;
    height: 100%;
    width: 100%;
}

.fit-cover {
    -o-object-fit: cover;
    object-fit: cover;
}

.fluidimage {
    max-width: 100%;
}

@media only screen and (min-width: 1199px) {
    .text-image-banner-section .position-left-bg-image .dynamic-media-image {
        width: 70% !important;
        left: 0;
    }

    .text-image-banner-section .position-right-bg-image .dynamic-media-image {
        width: 70% !important;
        right: 0;
    }
}

.text-image-banner-section .text-bg-image-banner .text-image-banner-content-div {
    background: #fff;
    padding: 4pc;
    width: 95%;
}

@media only screen and (max-width: 1199px) {
    .text-image-banner-section .text-bg-image-banner .text-image-banner-content-div {
        padding: 2pc 24px 0;
        width: 100%;
    }
}

.text-uppercase {
    text-transform: uppercase !important;
}

.text-image-banner-section .text-bg-image-banner .text-image-banner-content-div .text-image-banner-heading {
    font-size: 1.5rem;
    letter-spacing: .15em;
    color: #747678;
    margin-bottom: .5rem;
    font-weight: 700;
}

.text-image-banner-section .text-bg-image-banner .text-image-banner-content-div .text-image-banner-title {
    font-size: 4rem;
    color: var(--primary);
    margin-bottom: 2rem;
}

@media only screen and (max-width: 599px) {
    .text-image-banner-section .text-bg-image-banner .text-image-banner-content-div .text-image-banner-heading {
        font-size: 1.5rem;
    }

    .text-image-banner-section .text-bg-image-banner .text-image-banner-content-div .text-image-banner-title {

        font-size: 3rem;
    }

}

.text-image-banner-section .text-bg-image-banner .text-image-banner-content-div .text-image-banner-rte-description p {
    line-height: 3.2rem;
    letter-spacing: .03125rem;
    color: #5e6162;
    opacity: .9;
    margin-bottom: 0;
    font-size: 1.8rem;
}

.tcs-custom-container {
    margin: auto;
}

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

    .tcs-custom-container {
        max-width: calc(100% - 3pc);
    }
}

@media only screen and (max-width: 767px) {
    .tcs-custom-container {
        max-width: calc(100% - 88px);
    }
}

@media only screen and (min-width: 1200px) {
    .tcs-custom-container {
        max-width: calc(100% - 150px);
    }
}

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

    .text-image-banner-section .mobile-view-padding-0,
    .text-image-banner-section .tcs-custom-container {
        padding: 0;
    }
}

.page-stories-section-container .z-index-2 {
    z-index: 2;
}

/**
Page title
*/
.page-title {
    font-size: 4rem;
}

@media (max-width: 991.98px) {
    .page-title {
        font-size: 3rem;
    }
}

@media (max-width: 576px) {
    .page-title {
        font-size: 2rem;
    }
}

.page-h4 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

/** page help */

.page-help {
    background: #1b48a4;
    background: linear-gradient(186deg, #AA00FF 0, #9C27B0 99.99%, #4A148C 100%);
    padding: 13rem 0;
    background-image: linear-gradient(to right bottom, #4c7de0, #3b67bd, #2b529b, #1a3e7b, #092b5c);
    background-image: linear-gradient(to right top, #1b48a4, #2651af, #2f5bba, #3865c6, #416fd1, #4a78d8, #5482de, #5d8be5, #6995e8, #76a0eb, #83aaee, #90b4f0);
    background-image: linear-gradient(to right bottom, #660099, #591e9e, #4c2ca2, #3e37a4, #303fa5, #26409f, #1c4199, #134192, #0e3c84, #0b3677, #093169, #092b5c);
}

.page-help h2 {
    color: #fff;
}

.page-help__button {
    display: flex;
    flex-direction: column;
}

.page-help__button .btn-klaton {
    margin-bottom: 2rem;
    background: #fff;
    border-color: #fff;
    color: #222;
}

.page-help__button .btn-klaton.btn-outline-primary {
    border-color: #fff;
    background: transparent;
    color: #fff;
}

@media (max-width: 991.98px) {
    .page-help {
        padding: 10rem 0;
    }
}

@media (max-width: 576px) {
    .page-help {
        padding: 8rem 0;
    }
}

/**
Footer CSS
*/
.footer {
    padding: 5rem 0 2rem 1rem;
}

.footer-industry-partner {
    color: #fff;
    display: flex;
    align-items: center;
}

.partners-logo {
    margin: 0;
    padding-left: 0;
    list-style-type: none;
}

.partners-logo li {
    display: inline-block;
    margin-left: 0;
    margin-right: 6rem;
    margin-bottom: 15px;
}

.partners-logo li a {
    display: inline-block;
    text-indent: -10000px;
    height: 27px;
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
    transition: .5s;
}

.partners-logo li a {
    background-repeat: no-repeat;
    background-size: cover;
}

.partners-logo li a.microsoft {
    background-image: url(../images/microsoft-solution-partner-logo.svg);
    width: 120px;
    height: 40px;
}

.partners-logo li a.aws {
    background-image: url(../images/partner-logo-aws-advanced-consulting.svg);
    width: 96px;
    height: 41px;
}

.partners-logo li a.automation-anywhere {
    background-image: url(../images/partner-logo-automation-anywhere.svg);
    width: 96px;
    height: 34px;
}

.partners-logo li a.adobe-bronze {
    background-image: url(../images/partner-logo-adobe-bronze.svg);
    width: 120px;
    height: 32px;
}

.partners-logo li a.uipath {
    background-image: url(../images/partner-logo-uipath.svg);
    width: 67px;
    height: 23px;
    top: 7px;
    position: relative;
}

.partners-logo li a:hover {
    -webkit-filter: grayscale(0);
    filter: grayscale(0);
}

.lower-footer {
    color: #fff;
    /* height: 60px; */
    width: 100%;
    font-size: 11px;
    overflow: hidden;
    padding: 4px 18px;
}

.lower-footer ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
    float: left;
}

.lower-footer ul li {
    display: inline-block;
    margin-left: 10px;
    margin-top: 3px
}

.lower-footer ul li a {
    width: 18px;
    height: 18px;
    display: inline-block;
    text-indent: -10000px;
    opacity: .7;
    transition: .5s
}

.lower-footer ul li a:hover {
    opacity: 1
}

.lower-footer ul li a.instagram {
    background-image: url(../images/footer-icon-instagram.svg);
    background-repeat: no-repeat
}

.lower-footer ul li a.facebook {
    background-image: url(../images/footer-icon-facebook.svg);
    background-repeat: no-repeat
}

.lower-footer ul li a.twitter {
    background-image: url(../images/footer-icon-twitter.svg);
    background-repeat: no-repeat
}

.lower-footer ul li a.linkedin {
    background-image: url(../images/footer-icon-linkedin.svg);
    background-repeat: no-repeat
}

.footer-logo {
    width: 12rem;
    display: inline-block;
}

.footer-logo img {
    max-width: 100%;
}

.footer-copyrite {
    text-align: right;
}

.footer-address {
    min-height: 155px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.address-section .foot-add {
    font-size: 1.5rem;
    position: relative;
    padding: 6px 0;
    padding-left: 25px;
    /* width: 300px; */
}

.address-section .foot-add::before {
    content: "";
    width: 16px;
    height: 13px;
    left: 0;
    display: inline-block;
    position: absolute;
    left: 0;
    top: 10px
}

.address-section .foot-add.address::before {
    background: url(../images/icon-location.svg) center center no-repeat;
    height: 17px
}

.address-section .foot-add.email::before {
    background: url(../images/icon-mail.svg) center center no-repeat
}

.address-section .foot-add.phone::before {
    background: url(../images/icon-phone.svg) center center no-repeat;
    height: 15px
}

.page-template-contact-page .address-section .foot-add {
    font-size: 1rem
}

.page-template-contact-page .address-section .foot-add.email::before {
    top: 13px
}

.foot-add.email a {
    color: #fff;
    text-decoration: none;
}

.middle-footer h3 {
    font-size: 1.8rem;
}

.middle-footer .footer-links ul {
    margin: 0;
    padding-left: 0;
    list-style-type: none;
    padding-right: 30px
}

.middle-footer .footer-links li {
    margin-left: 0;
    font-size: 1.3rem;
    padding-bottom: 7px
}

.link,
.middle-footer .footer-links li a {
    text-decoration: none;
    color: #fff;
    transition: .4s;
}

.lkUPuV.o-needHelp {
    position: relative;
    width: 100%;
    background-color: rgb(245, 244, 243);
}

.bpzKIn.a-container {
    width: 100%;
    max-width: 1512px;
    margin-left: auto;
    margin-right: auto;
}

.bpzKIn.a-container.-padded {
    padding-top: 30px;
    padding-bottom: 30px;
}

@media (min-width: 64rem) {
    .bpzKIn.a-container.-padded {
        padding-top: 60px;
        padding-bottom: 60px;
    }
}

.lkUPuV.o-needHelp .a-container {
    background-color: #f5f5f5;
}

@media (min-width: 64rem) {
    .lkUPuV.o-needHelp .needHelpWrapper {
        padding: 0px 48px;
        height: 400px;
        overflow: hidden;
    }
}

@media (min-width: 48rem) {
    .lkUPuV.o-needHelp .needHelpWrapper {
        padding: 0px 20px;
    }
}

@media (max-width: 48rem) {
    .lkUPuV.o-needHelp .needHelpWrapper {
        height: auto;
    }

}

.khNChs.o-needHelpTextAndImage {
    position: relative;
    width: 100%;
    height: 100%;
    background-color: rgb(255, 255, 255);
    color: rgb(25, 24, 23);
}

.khNChs.o-needHelpTextAndImage .needHelp__imageWrapper {
    width: 100%;
    height: 400px;
}

.hDjgnE {
    cursor: pointer;
    text-decoration: none;
    color: rgb(85, 85, 85);
    transition: color 200ms cubic-bezier(0.165, 0.84, 0.44, 1) 0s;
}

.chUjjz.a-responsiveImage {
    position: relative;
    width: 100%;
    background: rgb(250, 250, 250);
}

.khNChs.o-needHelpTextAndImage .needHelp__imageWrapper .a-responsiveImage {
    height: 100%;
}

.kCwnwR.a-observer {
    height: 100%;
}

.khNChs.o-needHelpTextAndImage .needHelp__imageWrapper .a-responsiveImage .a-observer {
    overflow: hidden;
    isolation: isolate;
}

.chUjjz.a-responsiveImage img {
    display: block;
    position: absolute;
    width: 100%;
    top: 0px;
    left: 0px;
    opacity: 0;
    transition: opacity 400ms ease-in-out 0s;
}

.chUjjz.a-responsiveImage img.-loaded {
    position: relative;
    opacity: 1;
}

.khNChs.o-needHelpTextAndImage .needHelp__imageWrapper .a-responsiveImage img {
    height: 100%;
    transition: transform 400ms cubic-bezier(0.165, 0.84, 0.44, 1) 0s;
}

.khNChs.o-needHelpTextAndImage .needHelp__imageWrapper .a-responsiveImage img:hover {
    transform: scale(1.1);
}

.khNChs.o-needHelpTextAndImage .needHelp__textWrapper {
    width: 100%;
    height: 100%;
    padding: 20px;
    background-color: rgb(255, 255, 255);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

@media (min-width: 48rem) {
    .khNChs.o-needHelpTextAndImage .needHelp__textWrapper {
        -webkit-box-align: center;
        align-items: center;
        padding-right: 40px;
    }
}

@media (min-width: 64rem) {
    .khNChs.o-needHelpTextAndImage .needHelp__textWrapper {
        padding: 48px 60px 48px 40px;
    }
}

.khNChs.o-needHelpTextAndImage .needHelp__textWrapper .needHelp__textWrapper__title {
    margin-bottom: 1rem;
    margin-top: 4px;
    color: rgb(25, 24, 23);
}

@media (min-width: 48rem) {
    .khNChs.o-needHelpTextAndImage .needHelp__textWrapper .needHelp__textWrapper__title {
        margin-top: initial;
    }
}

.khNChs.o-needHelpTextAndImage .needHelp__textWrapper .needHelp__textWrapper__subtitle {
    margin-bottom: 16px;
    padding-bottom: 0px;
    color: rgb(25, 24, 23);
}

@media (min-width: 64rem) {
    .khNChs.o-needHelpTextAndImage .needHelp__textWrapper .needHelp__textWrapper__subtitle {
        margin-bottom: 24px;
    }
}

.kaJFVA p {
    color: rgb(85, 85, 85);
}

.khNChs.o-needHelpTextAndImage .needHelp__textWrapper .needHelp__textWrapper__description {
    margin-top: 0px;
    color: rgb(25, 24, 23);
}

.khNChs.o-needHelpTextAndImage .needHelp__textWrapper .needHelp__textWrapper__description {
    text-align: center;
}



.font-value {
    font-size: 1.6rem;
    align-self: center;
    text-transform: uppercase;
}

.font-value2 {
    font-size: 3.5rem;
    font-weight: 600;
    align-self: center;
}

.font-value3 {
    font-size: 2rem;
    font-weight: 500;
    align-self: center;
}

.page-cards {
    padding: 6rem 0;
}

.swiper-slide {
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    position: relative;
    transition-property: transform;
    margin-bottom: 3rem;
}

.case_link {
    display: block;
}

.case_link:hover {
    cursor: pointer;
}

.case_link .case_img {
    overflow: hidden;
    border-radius: 0;
    transition: border-radius .2s ease;
    position: relative;
    flex: auto;
    height: 340px;
}

.case_link:hover .case_img {
    border-radius: 10px;
    transition: border-radius .2s ease;
}

.case_link .picture-case {
    transform: scale(1);
    transition: transform .2s ease;
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.case_link:hover .picture-case {
    transform: scale(1.2);
    transition: transform .2s ease;
}

.case_title {
    display: block;
    font-style: normal;
    font-weight: 600;
    font-size: 24px;
    line-height: 120%;
    letter-spacing: -0.5px;
    color: #000000;
    margin: 20px 0 10px;
}

.case_link:hover .case_title {
    color: var(--primary);
}

.case_text {
    display: block;
    font-style: normal;
    font-weight: normal;
    font-size: 17px;
    line-height: 140%;
    letter-spacing: -0.3px;
    color: #989898;
}

.arrow-link__text {
    transition: opacity .2s;
}

.contact-form{
    background: #fff;
    padding: 4rem 5rem;
    border-radius: 10px;
}

.contact-info{
    padding: 4rem 5rem;
}

.contact-info .page-information__sub-title{
    margin: 6rem 0;
    color: var(--primary);
    font-weight: 500;
    font-size: 5rem;
    padding-left: 0;
}

.contact-info .contact-info-group{
    margin-bottom: 5rem;
}

.form-control{
    padding: 1rem;
    font-size: 2rem;
}


/*Media queries*/
@media (max-width: 991.98px) {
    .khNChs.o-needHelpTextAndImage .needHelp__imageWrapper {
        height: auto;
    }

    .lower-footer {
        text-align: center;
    }

    .partners-logo li {
        display: inline-block;
        margin-left: 0;
        margin-right: 4rem;
        margin-bottom: 15px;
    }

    .lower-footer ul {
        float: none;
        margin-top: 20px
    }

    .lower-footer {
        height: auto
    }

    .footer-social-wrapper {
        margin-bottom: 2rem;
    }

    .footer-copyrite {
        text-align: center;
    }

    .font-value {
        font-size: 1.3rem;
        align-self: center;
    }

    .font-value2 {
        font-size: 2.5rem;
    }

    .font-value3 {
        font-size: 2rem;
        font-weight: 500;
    }

}

@media screen and (max-width: 768px) {
    .khNChs.o-needHelpTextAndImage .needHelp__imageWrapper {
        height: 241px;
    }

    .font-value {
        font-size: 1.3rem;
        align-self: center;
    }

    .font-value2 {
        font-weight: 600;
        font-size: 2.5rem;
    }

    .font-value3 {
        font-size: 2rem;
        font-weight: 500;
    }
}

@media (max-width: 576px) {
    .khNChs.o-needHelpTextAndImage .needHelp__imageWrapper {
        height: 338px;
    }

    .partners-logo li {
        display: inline-block;
        margin-left: 0;
        margin-right: 10px;
        margin-bottom: 15px;
    }

    .footer-links {
        width: 49%;
        margin-bottom: 1rem;
    }

    .page-information__title {
        font-size: 3rem;
        padding: 0 3rem;
    }

    .page-information__sub-title {
        font-size: 2.5rem;
    }

    .page-information__description,
    .page-information-lists {
        font-size: 1.6rem;
    }

    .needHelp__textWrapper {
        padding: 20px;
    }

    .font-value {
        font-size: 1.3rem;
        align-self: center;
    }

    .font-value2 {
        font-size: 2.5rem;
    }

    .font-value3 {
        font-size: 2rem;
        font-weight: 500;
    }

    .page-information-cards {
        padding: 0 5rem 0 3rem
    }
}

@media (min-width: 576px) {
    .logo-container {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}