:root {
    --primary-color: #2D8BD8;
    --white: #FFFFFF;
    --text-white: #FEFBF0;
    --black: #313132;
    --border-gray: #DEDEDE;
    --light-pink: #FDE7FE;
    --light-green: #DDFEF8;
    --light-blue: #DDECFE;
    --light-yellow: #FEF2E8;
    --text-gray: #E6E6E6;
}

body {
    font-family: "Poppins";
    background-color: #FFFEFA;
}

select,
textarea,
input {
    outline: none;
}

li {
    list-style-type: none;
}

::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-thumb {
    background-color: var(--primary-color) !important;
}

::-webkit-scrollbar-thumb:hover {
    background-color: var(--black) !important;
}

a,
p,
h1,
h2,
h3,
h4,
h5,
h6 {
    margin-bottom: 0px;
}

a {
    text-decoration: none !important;
}

.nav-web {
    display: none;
}

.footer-bottom {
    padding: 15px 0px;
    background: linear-gradient(90deg, #000000 0%, #006457 50.5%, #000000 100%);
    font-size: 12px;
    font-weight: 400;
    line-height: 21px;
    letter-spacing: 0.2px;
    color: var(--white);
    text-align: center;
}

.footer-bottom a {
    color: #0CB7A0;
}

/* Content Loading Animation========================================================================================= */

@media (prefers-reduced-motion: no-preference) {

    @layer animation.reveal {
        .subject {
            opacity: 0;
        }

        .reveal-up {
            animation: fade-in 660ms ease forwards,
                slide-up 1000ms cubic-bezier(0, 0, 0.1, 1) forwards;
        }

        .reveal-down {
            animation: fade-in 660ms ease forwards,
                slide-down 1000ms cubic-bezier(0, 0, 0.1, 1) forwards;
        }

        @keyframes fade-in {
            to {
                opacity: 1;
            }
        }

        @keyframes slide-up {
            from {
                transform: translateY(-100px);
            }
        }

        @keyframes slide-down {
            from {
                transform: translateY(100px);
            }
        }
    }
}

/* ============================================================================ */

/* ===============================underline animation==================================================== */

/* .nav-item {
    margin: auto;
}

.nav-item:after {
    content: '';
    display: block;
    width: 0;
    height: 3px;
    background: var(--primary-color);
    transition: width .3s;
}

.nav-item:hover::after {
    width: 100%;
}

.nav-item.current::after {
    width: 100%;
} */

/* ====================================================================================================== */

/* Mobile Menu================================================= */

.side-bar {
    background: var(--white);
    backdrop-filter: blur(15px);
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    right: -1200px;
    overflow-y: auto;
    transition: 0.8s ease ease-in-out;
    transition-property: right;
    z-index: 20000;
    padding: 15px 25px;
}

.side-bar::-webkit-scrollbar {
    width: 0px;
}

.side-bar.active {
    right: 0;
}

.side-bar .menu {
    width: 100%;
    margin-top: 30px;
}

.side-bar .menu .active {
    background-color: var(--primary-color);
}

.side-bar .menu .active a {
    color: white !important;
}

.side-bar .menu .item {
    position: relative;
    cursor: pointer;
}

.side-bar .menu .item a {
    color: var(--black);
    font-size: 16px;
    text-decoration: none;
    display: block;
    padding: 5px 30px;
    line-height: 60px;
}

.side-bar .menu .item a:hover {
    background: var(--primary-color);
    transition: 0.8s ease;
    color: var(--white);
}

.side-bar .menu .item i {
    margin-right: 15px;
}

.side-bar .menu .item a .dropdown {
    position: absolute;
    right: 0;
    margin: 20px;
    transition: 0.8s ease;
}

.side-bar .menu .item .sub-menu {
    background: var(--white);
    display: none;
}

.side-bar .menu .item .sub-menu a {
    padding: 10px 0px 10px 80px;
    line-height: 30px;
    color: var(--card-text-gray);
}

.rotate {
    transform: rotate(90deg);
}

.menu-btn {
    color: rgb(0, 0, 0);
    font-size: 22px;
    cursor: pointer;
}

.main {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px;
}

.side-bar header {
    background: var(--white);
    padding: 15px 30px;
    display: flex;
    align-items: center;
}

/* =================================================================== */

/* Scroll Up Show Header=============================================================== */

.title-section,
.inner-title-section {
    margin-top: 65px;
}

.header {
    position: fixed;
    width: 100%;
    height: 74px;
    top: 0px;
    transition: all .5s ease-in-out;
    z-index: 99;
    padding: 15px 0px;
    background-color: white;

    &.scroll-up {
        top: -74px;
    }

    &.scroll-down {
        top: 0px;
        /* box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.2); */
    }
}

/* ====================================================================== */

.nav-web .dropdown-menu {
    color: var(--black);
    font-weight: 450;
    font-size: 16px;
    line-height: 26px;
    top: 10px !important;
}

.dropdown-toggle::after {
    /* position: absolute; */
    /* top: 5px; */
    /* border: none; */
    /* content: url(../icon/dropdown-arrow-down.png); */
    /* margin-top: 3px; */
}

.dropdown-first-item {
    border-radius: 10px 10px 0px 0px;
}

.dropdown-last-item {
    border-radius: 0px 0px 10px 10px;
}

.dropdown-item:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.nav-item:hover .dropdown-menu {
    display: block;
    visibility: visible;
    opacity: 1;
}

.nav-item .dropdown-item {
    border-radius: 0px;
}

.dropdown-menu {
    display: none;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0.2s, opacity 0.2s;
    margin-top: 20px;
}

.navbar-nav {
    gap: 40px;
}

.nav-item a {
    color: var(--black);
    font-size: 14px;
    line-height: 30px;
    font-weight: 400;
}

.nav-item.current a {
    color: var(--primary-color);
}

.inquiry-btn {
    color: var(--text-white) !important;
    width: 100%;
    height: 100%;
    font-size: 16px !important;
    font-weight: 500 !important;
    padding: 10px;

}

.inquiry-btn-div {
    /* width: 80px;
    height: 100%; */
    background-color: var(--primary-color);
    border-radius: 8px;
    text-transform: uppercase;
}

/* Expandable Slider=============================================== */

.flex-container {
    height: calc(100vh - 86px);
    display: -webkit-flex;
    display: flex;
    overflow: hidden;
    gap: 32px !important;
    padding: 0px 0px 0px 30px;
}

.flex-title {
    color: var(--black);
    font-size: 28px;
    line-height: 36px;
    font-weight: 500;
    transform: rotate(270deg);
    transition: all 500ms ease;
    /* width: 120px; */
    width: 400px;
    height: 120px;
    padding: 20px 0px 20px 50px;
    display: flex;
    align-items: center;
    position: absolute;
    bottom: 200px;
    left: -140px;
}

.flex-about {
    opacity: 0;
    transform: rotate(0deg);
    transition: all 500ms ease;
    width: 120px;
    height: 120px;
    display: none !important;
}

.flex-slide {
    flex: 1;
    cursor: pointer;
    transition: all 500ms ease;
    background-color: #F3EEEB;
    border-radius: 12px;
    position: relative;
}

.flex-slide.expanded {
    flex-grow: 3;
}

.flex-slide.expanded .overlay {
    padding: 0px 20px 50px 100px;
    justify-content: space-between;
}

.home .flex-title {
    /* background-color: var(--light-yellow); */
    background: linear-gradient(to right, var(--light-yellow) 0%, var(--light-yellow) 25%, transparent 25%, transparent 100%);
}

.about .flex-title {
    /* background-color: var(--light-pink); */
    background: linear-gradient(to right, var(--light-pink) 0%, var(--light-pink) 25%, transparent 25%, transparent 100%);
}

.work .flex-title {
    /* background-color: var(--light-green); */
    background: linear-gradient(to right, var(--light-green) 0%, var(--light-green) 25%, transparent 25%, transparent 100%);
}

.contact .flex-title {
    /* background-color: var(--light-blue); */
    background: linear-gradient(to right, var(--light-blue) 0%, var(--light-blue) 25%, transparent 25%, transparent 100%);
}

.flex-slide.expanded .flex-title {
    transform: rotate(360deg);
    color: var(--text-white);
    background-color: transparent;
    padding: 0px;
    display: flex;
    align-items: center;
    position: relative;
    background: none;
    width: 120px;
    bottom: 0px;
    left: 0px;
}

.flex-slide.expanded .flex-about {
    opacity: 1;
    display: flex !important;
}

.home,
.about,
.contact,
.work {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* ========================================================== */

.flex-slide .overlay {
    position: absolute;
    left: 0px;
    top: 0px;
    height: 100%;
    width: 100%;
    border-radius: 12px;
    background: linear-gradient(to bottom, transparent 0%, transparent 60%, #000 100%);
    padding-bottom: 50px;
}

.flex-about .count {
    font-size: 52px;
    line-height: 52px;
    font-weight: 400;
    color: var(--text-white);
}

.flex-about .category {
    font-size: 18px;
    line-height: 30px;
    font-weight: 400;
    color: var(--text-white);
    text-align: center;
}

.main-banner {
    background-color: #FFFEFA;
}

.banner-header {
    font-size: 32px;
    line-height: 42px;
    letter-spacing: 1px;
    font-weight: 600;
    font-family: 'Montserrat';
    text-transform: uppercase;
}

.search {
    position: relative;
    display: flex;
    box-shadow: 0px 20px 24px -4px rgba(0, 0, 0, 0.08);
    height: 80px;
    width: 100%;
    z-index: 9;
    align-items: center;
    margin-top: 20px;
    background-color: #FFFFFF;
}

.searchTerm {
    width: 100%;
    padding: 5px;
    height: 20px;
    outline: none;
    border: none;
    padding: 24px;
}

.searchTerm::placeholder {
    font-size: 18px;
    line-height: 30px;
    font-weight: 300;
    color: #313132b3;
}

.searchButton {
    width: 100px;
    height: 100%;
    background: var(--primary-color);
    text-align: center;
    color: #FFFFFF;
    cursor: pointer;
    font-size: 20px;
    border: none;
}

.section-padding-top {
    padding-top: 70px;
}

.description {
    font-size: 14px;
    line-height: 22px;
    font-weight: 400;
    color: #313132cc;
}

.second-slider-item {
    padding: 64px 12px 64px 12px;
}

.second-slider-item-left img {
    width: 100%;
}

.second-slider-item-1 {
    background-color: var(--light-yellow);
}

.second-slider-item-2 {
    background-color: var(--light-pink);
}

.second-slider-item-3 {
    background-color: var(--light-green);
}

.second-slider-item-4 {
    background-color: var(--light-blue);
}

.second-slider-item-right {
    /* padding-left: 160px; */
    margin-top: 30px;
}

.second-slider-item-right h3 {
    color: var(--black);
}

.second-slider-item-right h4 {
    font-size: 50px;
    line-height: 50px;
    font-weight: 500;
    color: var(--black);
    letter-spacing: 1px;
}

.quote {
    width: 24px;
    height: 24px;
}

.person-img {
    width: 60px;
    height: 60px;
    border-radius: 100%;
    border: 2px solid #9ECAED;
    margin-right: 20px;
}

.second-slider-item-right-top {
    border-bottom: 2px solid black;
    padding-bottom: 20px;
}

.second-slider-item-right-bottom {
    padding: 20px 0px;
}

.quote-div {
    gap: 20px;
}

.quote-div .description {
    width: fit-content;
}

.second-slider .slick-next {
    top: calc(50% + 50px);
    right: 10%;
}

.second-slider .slick-next::before {
    content: url(../icon/arrow-circle-right.png);
}

.second-slider .slick-prev {
    top: calc(50% + 50px);
    left: 2%;
    z-index: 9;
}

.second-slider .slick-prev::before {
    content: url(../icon/arrow-circle-left.png);
}

.section-padding-top-bottom {
    padding: 70px 0px;
}

.we-are-connect-section,
.blog-section,
.faq-section {
    background-color: #FFFFFA;
}

.section-header {
    font-size: 30px;
    line-height: 40px;
    font-weight: 600;
    color: var(--black);
    text-transform: uppercase;
    font-family: 'Montserrat';
    margin-bottom: 20px;
}

.we-are-connect-section .description {
    margin-bottom: 20px;
}

.we-are-connect-section .inquiry-btn-div {
    margin: 40px 0px;
    width: 140px;
    height: 50px;
}

.connect-contacts {
    gap: 25px;
}

.connect-contacts img {
    width: 20px;
    height: 20px;
}

.why-connect-section,
.customer-section {
    background-color: #EEF3E6;
}

.why-connect-section .section-description {
    width: 80%;
}

.sub-title {
    font-size: 20px;
    line-height: 24px;
    font-weight: 600;
    color: var(--black);
}

.why-connect-left {
    padding: 30px 12px;
}

.why-connect-left img {
    width: 56px;
    height: 56px;
    margin-right: 24px;
}

.why-connect-section .sub-title {
    margin-bottom: 10px;
}

.vert-dashed-line {
    width: 30px;
    background-color: transparent;
    height: 30px;
    border-right: 1px dashed rgba(30, 30, 47, 0.6);
    flex-grow: 1;
    margin-bottom: 20px;
}

.accent-header {
    text-align: center;
    font-size: 22px;
    line-height: 32px;
    font-weight: 500;
    color: #297EC5;
    margin-bottom: 5px;
}

.blog-section .section-header,
.customer-section .section-header,
.faq-section .section-header {
    text-align: center;
}

/* Isotope=========================================================== */

.container-filter {
    margin: 40px 0px;
    text-align: center;
}

.container-filter li {
    list-style: none;
    display: inline-block;
    margin-right: 12px;
}

.container-filter li:last-of-type {
    margin-right: 0px;
}

.container-filter a {
    padding-bottom: 5px;
    display: block;
    font-size: 18px;
    cursor: pointer;
    font-weight: 400;
    line-height: 30px;
    -webkit-transition: all 0.6s;
    border-bottom: 2px solid transparent;
    color: var(--black);
}

.container-filter a:hover {
    font-weight: 600;
}

.container-filter a.active {
    padding-bottom: 10px;
    color: var(--black);
    border-bottom: 2px solid var(--black);
    font-weight: 600;
}

.item-box {
    position: relative;
    overflow: hidden;
    display: block;
    border-radius: 12px;
    padding: 15px;
    margin-bottom: 25px;
}

.item-box a {
    display: inline-block;
}

.mfp-image{
    border-radius: 20px;
}

.mfp-image img {
    width: 100%;
    margin-bottom: 20px;
}

.mfp-title .box-title {
    margin-bottom: 5px;
}

.item-box .description {
    margin-bottom: 20px;
}

.item-box .box-sub-title {
    color: var(--black);
    text-decoration: underline !important;
}

/* ======================================================================= */

.customer-slider {
    margin-top: 40px;
}

.customer-slider-item {
    background-color: #FFFFFF;
    border-radius: 16px;
    padding: 24px;
    margin: 0px 20px;
    min-height: 506px;
}

.customer-slider-item .description {
    margin: 20px 0px 30px 0px;
}

.box-title {
    font-size: 20px;
    line-height: 30px;
    font-weight: 600;
    color: rgba(49, 49, 50, 0.9);
}

.box-sub-title {
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
}

.customer-img {
    width: 56px;
    height: 56px;
    border-radius: 100%;
    margin-right: 20px;
}

.customer-name {
    color: #1E1E2F;
    margin-bottom: 5px;
}

.customer-designation {
    color: var(--primary-color);
}

.customer-slider .slick-next::before {
    content: url(../icon/arrow-right.png);
}

.customer-slider .slick-prev::before {
    content: url(../icon/arrow-left.png);
}

.customer-slider .slick-next {
    /* top: 350px; */
    right: 35%;
}

.customer-slider .slick-arrow{
    top: calc(100% + 30px);
}

.customer-slider .slick-prev {
    left: 35%;
    z-index: 9;
}

.customer-section {
    padding-bottom: 100px;
}

.faq-section .section-description {
    text-align: center;
}

.accordion-div {
    border-radius: 32px;
    background-color: #F7F7FB;
    padding: 25px;
    margin-top: 40px;
}

/* Accordion================================================= */

.accordion {
    width: 100%;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    padding-left: 0px;
}

.accordion .link {
    cursor: pointer;
    position: relative;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
    background-color: var(--blue-green);
    border-radius: 8px;
    height: 136px;
    display: flex;
    align-items: center;
    padding: 0px 20px;
}

.link p {
    font-size: 16px;
    line-height: 26px;
    font-weight: 500;
    color: #170F49;
    width: 80%;
}

.submenu .description {
    color: #6F6C90;
    padding: 0px 26px;
}

.submenu {
    display: none;
    padding: 0px 0px 30px 0px;
}

.accordion li.open .submenu {
    display: block;
}

.submenu .description {
    width: 85%;
}

.accordion li {
    background-color: #FFFFFF;
    border-radius: 16px;
    margin-bottom: 30px;
    box-shadow: 0px 5px 16px 0px rgba(8, 15, 52, 0.06);
}

.accordion li.open .link {
    color: var(--accent-green);
}

.accordion .description {
    text-align: left;
}

.minus {
    display: none;
}

.accordion li.open .minus {
    display: block;
}

.accordion li.open .plus {
    display: none;
}

.plus,
.minus {
    width: 25px;
}

/* ================================================================================ */

/* Video================================================== */

.wrapper {
    width: 100%;
    float: none !important;
    display: block;
    /* margin: 0 auto !important; */
    /* max-width: 1280px; */
    border-radius: 50px;
}

video {
    border-radius: 18px;
}

.HomeVideoInner {
    width: 100%;
    height: 100%;
    position: relative;
}

.StoryVideo video {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.HomeVideoTitleSection img {
    border-radius: 16px;
    width: 100%;
}

.HomeVideoTitleSection .SectionTitle {
    width: 100%;
}

.HomeVideoTitleSection .SectionContent {
    width: 100%;
    padding-top: 240px;
}

.HomeVideoTitleSection:not(.animate_it) {
    -webkit-clip-path: circle(100% at 50% 50%);
    clip-path: circle(100% at 50% 50%);
}

.HomeVideoTitleSection.animate_it {
    animation: inView 1s;
    -webkit-clip-path: circle(0% at 0% 50%);
    clip-path: circle(0% at 0% 50%);
}

.HomeVideoTitleSection.animate_reverse {
    animation: outView 1s;
    -webkit-clip-path: circle(100% at 50% 50%);
    clip-path: circle(100% at 50% 50%);
}

.StoryVideo {
    max-height: 500px;
}

.StoryVideo video {
    width: 100%;
    height: 100%;
    object-fit: fill;
    position: absolute;
}

@keyframes inView {
    0% {
        -webkit-clip-path: circle(100% at 50% 50%);
        clip-path: circle(100% at 50% 50%);
    }

    to {
        -webkit-clip-path: circle(0% at 0% 50%);
        clip-path: circle(0% at 0% 50%);
    }
}

@keyframes outView {
    0% {
        -webkit-clip-path: circle(0% at 0% 50%);
        clip-path: circle(0% at 0% 50%);

    }

    to {
        -webkit-clip-path: circle(100% at 50% 50%);
        clip-path: circle(100% at 50% 50%);
    }
}

.Video-playbtn {
    cursor: pointer;
    width: fit-content;
    position: absolute;
    top: calc(50% - 30px);
    left: calc(50% - 30px);
    z-index: 9;
}

/* ========================================================= */

.video-over-div {
    background-color: #AAEFA9;
    border-radius: 8px;
    padding: 40px 0px;
    width: 544px;
    position: absolute;
    z-index: 9;
    margin-top: -65px;
    margin-left: 580px;
    display: none;
}

.video-over-div h5 {
    font-size: 52px;
    line-height: 52px;
    font-weight: 400;
    color: var(--black);
    margin-right: 16px;
}

.video-over-div h6 {
    font-size: 16px;
    line-height: 24px;
    font-weight: 700;
    color: var(--black);
}

.video-over-div-inner {
    padding: 0px 50px;
}

.horiz-line {
    width: 1px;
    height: 40px;
    background-color: var(--black);
}

footer {
    background-color: #141414;
    padding: 60px 12px;
}

.footer-title {
    font-size: 22px;
    line-height: 32px;
    font-weight: 500;
}

footer h2 {
    color: var(--text-gray);
    margin-bottom: 10px;
}

footer p {
    font-size: 14px;
    line-height: 24px;
    font-weight: 400;
    color: #b3b3b3;
}

footer .inquiry-btn-div {
    margin: 30px 0px;
    width: 180px;
    height: 50px;
}

footer p span {
    font-size: 16px;
    font-weight: 700;
    color: #DB2F15;
    margin-right: 5px;
}

footer .right-p-div {
    width: 100%;
    margin-bottom: 20px;
}

.disclaimer-div {
    border-top: 1px solid #808080;
    width: 70%;
    padding-top: 20px;
    margin-bottom: 50px;
}

.disclaimer-div a,
.contact-option a {
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    color: #cccccc;
}

.disclaimer-div a {
    color: #808080;
}

.link-div {
    gap: 22px;
    display: flex;
    flex-direction: column;
}

.link-div a {
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    text-decoration: underline !important;
    color: #cccccc;
}

.link-div a svg {
    margin-left: 10px;
}

.logo {
    width: 110px;
}

footer .logo {
    text-align: right;
}

footer h6 {
    font-size: 12px;
    line-height: 20px;
    font-weight: 400;
    color: #808080;
}

footer h5 {
    font-size: 14px;
    line-height: 20px;
    font-weight: normal;
    color: #808080;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.opening-hr {
    margin-left: 0px;
}

.email,
.opening-hr {
    margin-top: 22px;
}

.contact-option-div {
    margin-top: 50px;
}

.we-are-connect-right {
    margin-top: 50px;
}

.we-are-connect-right img {
    width: 100%;
}

.why-connect-right {
    margin-top: 30px;
}

.contact-option-div-right {
    margin-top: 50px;
}

.contact-option-div-right img {
    margin-bottom: 20px;
}

.main-banner-section {
    display: none;
}

.mobile-inquiry-div .inquiry-btn-div {
    margin-right: 20px;
}

.video-over-div {
    display: none !important;
}

.main-banner-section-mobile {
    margin-top: 120px;
}

.main-slider-item {
    position: relative;
    height: 500px;
    width: 100%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.main-slider {
    margin-top: 30px;
}

.main-slider-item .overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    padding: 15px;
    background-color: rgba(0, 0, 0, 0.2);
}

.main-slider-item .count {
    font-size: 52px;
    line-height: 52px;
    font-weight: 400;
    color: var(--text-white);
    margin-top: 20px;
}

.main-slider-item .category {
    font-size: 18px;
    line-height: 30px;
    font-weight: 400;
    color: var(--text-white);
}

.main-slider-item .card-name {
    color: var(--text-white);
    font-size: 28px;
    line-height: 36px;
    font-weight: 500;
}

.main-slider .slick-prev {
    left: 10px;
    z-index: 9;
}

.main-slider .slick-next {
    right: 10px;
}