﻿@import url('https://fonts.googleapis.com/css2?family=Archivo:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

:root {
    --pri-color: #0060FD;
    --sec-color: #04ABFD;
    --bg-header: #DAE4FF;
    --headings-color: #141F39;
    --mian-font-color: #4F4F4F;
    --button-color: #24052F;
    --body-color: #6B6B6B;
    --footer-bg: #C8F8A9;
    --bg-pri-gradient: linear-gradient(90deg, #04ABFD 25.59%, #0060FD 58.7%);
}

.btn-primary {
    color: #fff;
    background-color: #163031;
    border-color: #163031;
}

.btn-primary:hover {
    color: #fff;
    background-color: #163031;
    border-color: #163031;
}


/* Breadcrumbs */
.current-item {
    color: #636363;
}

.breadcrumbs a {
    color: #636363;
    text-decoration: none;
}

.breadcrumbs {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 2px solid #E2E2E2;
    color: #636363;
}


.bg-pri {
    background-color: var(--pri-color) !important;
}

/* Breadcrumbs End*/


.dropdown-item {
    text-wrap: auto;
}

.bg-ctm-light {
    background-color: #FAFAFA;
}

.bg-ctm-light-blue {
    background-color: #F1F5FF;
}

.bg-pri-gradient {
    background: var(--bg-pri-gradient);
}

/*h1, h2, h3, h4, h5, h6 {
    font-family: "Archivo", serif;
    font-style: normal;
}*/

.ctm-title-mian {
    font-family: 'Archivo';
    font-style: normal;
    font-weight: 400;
    font-size: 45px;
    line-height: 1;
}


body {
    font-family: "Archivo", sans-serif;
    font-style: normal;
    color: var(--body-color);
}

.space-p-t {
    padding-top: 80px;
}

.space-p-b {
    padding-bottom: 80px;
}

.space-p-tb {
    padding: 80px 0;
}

.space-m-t {
    margin-top: 80px;
}

.space-m-b {
    margin-bottom: 80px;
}

.space-m-tb {
    margin: 80px 0;
}

/*Global Btns*/

.glob-btn-white {
    display: inline-flex;
    gap: 15px;
    text-decoration: none;
    /*    border: 1px solid #fff;*/
    background-color: #fff;
    padding: 8px 10px;
    border-radius: 10px;
    align-items: center;
    font-weight: 600;
    font-size: 16px;
    line-height: 17px;
    text-align: center;
    color: #000000;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.glob-btn-white .arrow-btn-icon {
    padding: 11px 13px;
    color: #fff;
    background: var(--bg-pri-gradient);
    border-radius: 10px;
    line-height: 0;
    font-size: 13px;
}


.glob-btn-white::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 0;
    height: 100%;
    background: #000;
    z-index: -1;
    transition: all 0.4s ease-in-out;
}

.glob-btn-white:hover {
    color: #fff;
}

.glob-btn-white:hover::after {
    right: auto;
    left: 0;
    width: 100%;
}


.glob-btn-white:hover .arrow-btn-icon {
    background: linear-gradient(90deg, #04ABFD 25.59%, #0060FD 58.7%);
    color: #fff;
}

/*White*/


.glob-btn-pri {
    background: linear-gradient(90deg, #04ABFD 25.59%, #0060FD 58.7%);
    display: inline-flex;
    gap: 15px;
    text-decoration: none;
    padding: 8px 10px 8px 20px;
    border-radius: 10px;
    align-items: center;
    font-weight: 600;
    font-size: 16px;
    line-height: 17px;
    text-align: center;
    color: #fff;
    transition: 0.3s ease-in;
    position: relative;
    z-index: 1;
    overflow: hidden;
    border: none;
    cursor: pointer;
}

.glob-btn-pri::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 0;
    height: 100%;
    background: #000;
    z-index: -1;
    transition: all 0.4s ease-in-out;
}

.glob-btn-pri:hover {
    color: #fff;
}

.glob-btn-pri:hover::after {
    right: auto;
    left: 0;
    width: 100%;
}

.glob-btn-pri .arrow-btn-icon {
    padding: 11px 13px;
    color: #000;
    background: #fff;
    border-radius: 10px;
    line-height: 0;
    font-size: 13px;
    transition: all 0.4s ease-in-out;
}

.glob-btn-pri:hover .arrow-btn-icon {
    background: linear-gradient(90deg, #04ABFD 25.59%, #0060FD 58.7%);
    color: #fff;
}


/*.glob-btn-pri .arrow-btn-icon i:before {
    color: #000;
}*/

.glob-btn-pri.white {
    background: #fff;
    display: inline-flex;
    gap: 15px;
    text-decoration: none;
    padding: 8px 10px 8px 20px;
    border-radius: 10px;
    align-items: center;
    font-weight: 600;
    font-size: 16px;
    line-height: 17px;
    text-align: center;
    color: #000;
}

/*    .glob-btn-pri .arrow-btn-icon {
        padding: 11px 13px;
        color: #000;
        background: linear-gradient(90deg, #04ABFD 25.59%, #0060FD 58.7%);
        border-radius: 10px;
        line-height: 0;
        font-size: 13px;
    }

        .glob-btn-pri .arrow-btn-icon i:before {
            color: #fff;
        }*/


/*Global Btns end*/


.inner-banner-white::before {
    display: none;
}

.inner-banner-white .inner-banner-content h1 {
    color: #000;
}

/*Title Holder*/
.title-btn-holder {
    display: flex;
    justify-content: space-between;
}

.title-btn-holder.sty1 {
    display: block;
}

.tt-cont {
    max-width: 50%;
    flex: 1 0 50%;
}

.tt-cont.sty1 {
    max-width: 100%;
    flex: 1 0 100%;
}

/*Title Holder end*/


/*Homepage Main-Banner*/

.home-main-banner {
    /* min-height:745px; */
    min-height: 85vh;
    display: flex;
    align-items: center;
    position: relative;
    background-position: center;
    background-size: cover;
    background-repeat:no-repeat;
    border-bottom: 8px solid #0060fd;
}

.home-main-banner:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background-color: #0000009e;
    left: 0;
    top: 0;
}


.banner-cont {
    text-align: center;
    position: relative;
    z-index: 1;
}

.mian-banner-title {
    font-family: 'Archivo';
    font-style: normal;
    font-weight: 700;
    font-size: 80px;
    line-height: 88px;
    text-align: center;
    color: #FFFFFF;
    margin-bottom: 40px;
}


.mian-banner-title span {
    color: var(--sec-color);
}


.banner-list-holder {
    margin-bottom: 40px;
}

.banner-list-holder ul {
    display: flex;
    justify-content: center;
    gap: 50px;
    list-style: none;
    color: #fff;
    flex-wrap: wrap;
}

.banner-list-holder li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    font-size: 16px;
    line-height: 16px;
}

.banner-list-holder li:before {
    content: "icon";
    content: "\e906";
    color: #04abfd;
    font-family: icomoon;
}

.banner-btn-holder {
    position: relative;
    display: inline-block;
}

.banner-btn-holder .banner-icon-arrow {
    position: absolute;
    left: calc(100% + 20px);
    top: 0;
    font-size: 44px;
    color: #fff;
}

/*Homepage Main-Banner end*/


/*Bannder logo section*/
.banner-logos-sec {
    background: var(--bg-pri-gradient);
    padding: 10px 0;
}

.banner-logos-slider .slick-slide {
    margin: 0 20px; /* Adds 15px space on left and right of each slide */
}

/* Compensate for the margin on the main list container */
.banner-logos-slider .slick-list {
    margin: 0 -20px; /* Pulls the list back by 15px on each side */
}

.banner-logos-slider .logo-item img{
    height: 45px;
    margin: 0 auto;
}

.ls-slide-holder img{
    height: 25px;
}

.ls-slide-holder span {
    text-align: left;
}

/*Bannder logo section end*/

.ctm-mini-title {
    font-weight: 600;
    font-size: 20px;
    line-height: 22px;
    color: #FF3A20;
    display: block;
}

.ctm-mini-title.sty1::before {
    background: #fff;
}

.ctm-mini-title:before {
    content: "";
    width: 5px;
    height: 5px;
    background-color: red;
    display: inline-block;
    border-radius: 50px;
    position: relative;
    top: -4px;
    margin-right: 8px;
}


/*CTM Topbar*/
.ctm-topbar {
    background: var(--bg-pri-gradient);
    padding: 10px 0;
}

.head-info-holder {
    display: flex;
    justify-content: space-between;
}

.head-info-holder li a {
    color: #fff;
    text-decoration: none;
}

.head-social-info {
    display: flex;
    list-style: none;
    gap: 30px;
    margin-bottom: 0;
}

.head-info-holder li {
    position: relative;
}

.head-social-info li:after {
    content: "";
    height: 100%;
    width: 1px;
    background-color: #fff;
    position: absolute;
    left: calc(100% + 15px);
}

.head-social-info li:last-child:after {
    display: none;
}

.head-info {
    display: flex;
    gap: 20px;
}

.head-info a {
    display: flex;
    gap: 10px;
    text-decoration: none;
    color: #fff;
    align-items: center;
}

/*CTM Topbar End*/

.sticky-header {
    position: fixed;
    left: 0;
    opacity: 1;
    top: 0;
    width: 100%;
    z-index: 10;
    box-shadow: 0 0 5px 0px #00000047;
}

.ctm-mian-title {
    font-weight: 700;
    font-size: calc(27px + (50 - 27) * ((100vw - 300px) / (1920 - 300)));
    /* font-size: 50px; */
    line-height: 60px;
    color: #000000;
}
.rs-detail-sec .sbt-line .ctm-mian-title {
    font-size: calc(27px + (45 - 27) * ((100vw - 300px) / (1920 - 300)));
}

.ctm-mian-title span {
    font-weight: 700;
    color: var(--pri-color);
}


.ctm-main-header {
    background-color: var(--bg-header);
    padding: 16px 0;
}

.login-link {
    text-decoration: none;
    color: #000000;
    font-weight: 600;
}

.header-btn-holder {
    display: flex;
    gap: 20px;
    align-items: center;
}

.header-btn {
    padding: 10px 20px;
    background-color: var(--sec-color);
    display: inline-block;
    text-decoration: none;
    border-radius: 10px;
    color: #fff !important;
    transition: 0.3s ease-in;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

.header-btn:hover {
    background-color: var(--pri-color);
    color: #000;
}

.navbar-expand-lg .navbar-nav {
    gap: 20px;
}




/*Home page section 1*/

.ctm-icon-list {
    list-style: none;
    padding-left: 0;
}

.ctm-icon-list li {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
}

.ctm-icon-list li:last-child {
    margin-bottom: 0px;
}

.ctm-icon {
    flex: 1 0 50px;
    max-width: 50px;
    height: 50px;
    border-radius: 50px;
    background-color: #FAFAFA;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ctm-list-cont h3 {
    font-weight: 600;
    font-size: 22px;
    line-height: 27px;
    color: #000000;
}

.ctm-list-cont p {
    margin-bottom: 0;
}

.ctm-icon {
    color: var(--pri-color);
    font-size: 27px;
}

/*Home page section 1 end*/

/*Home page section 2 */

.icon-box-sty-1 {
    min-height: 250px;
    background-color: #FFFFFF;
    border: 1px solid #E6E6E6;
    border-radius: 20px;
    transition: 0.3s ease-in;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.icon-box-sty-1:after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--pri-color);
    border-radius: 500px 500px 0 0;
    height: 0;
    width: 100%;
    transition: all 0.4s ease-in-out;
    z-index: -1;
}

.icon-box-sty-1:hover:after {
    height: 100%;
    border-radius: 0;
}

/*.icon-box-sty-1:hover {
    background-color: var(--pri-color);
    border: 1px solid var(--pri-color);
}*/
.icon-box-sty-1 {
    padding: 20px;
}


.icon-holer-sty-1 {
    background-color: #FAFAFA;
    display: inline-block;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    margin-bottom: 50px;
}



.boxfoo {
    border-top: 1px solid #EBEBEB;
    padding: 20px 0px 10px;
}

.boxfoo a {
    display: flex;
    justify-content: space-between;
    text-decoration: none;
    color: var(--pri-color);
    align-items: center;
    transition: 0.3s ease-in;
}

.boxfoo a i:before {
    color: var(--pri-color);
    transition: 0.3s ease-in;
}

.iconbox-cont {
    min-height: 150px;
}

.iconbox-cont h3 {
    font-weight: 600;
    font-size: 22px;
    line-height: 27px;
    color: #000000;
    transition: 0.3s ease-in;
}

.iconbox-cont p {
    transition: 0.3s ease-in;
}

.icon-holer-sty-1 {
    color: var(--pri-color);
    font-size: 28px;
    transition: 0.3s ease-in;
}

.icon-box-sty-1:hover h3,
.icon-box-sty-1:hover p,
.icon-box-sty-1:hover a,
.icon-box-sty-1:hover a i:before {
    color: #fff;
}

/*.icon-box-sty-1:hover .boxfoo a{
    justify-content:flex-start;
    gap:15px;
}*/

.offer-text .bg-offer {
    background-color: var(--pri-color);
    display: inline-block;
    padding: 2px 4px;
    color: #fff;
    border-radius: 2px;
}

.text-center.offer-text {
    margin-top: 40px;
}

.text-orange {
    font-weight: 600;
    text-decoration-line: underline;
    color: #F45D48;
}

/*Home page section 2 End*/


/*Home page section 3*/

.list-check-icon {
    padding-left: 0;
    list-style: none;
    columns: 2;
}

.list-check-icon li {
    margin-bottom: 15px;
    display: flex;
    gap: 8px;
}

.list-check-icon li:before {
    content: "\e906";
    color: var(--pri-color);
    font-family: icomoon;
    font-size: 18px;
}

.icon-box-sty-2 {
    border-right: 1px solid #EBEBEB;
    padding-left: 20px;
    padding-right: 20px;
}

.icon-holer-sty-2 {
    display: inline-block;
    background-color: #FAFAFA;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    margin-bottom: 50px;
}

.icon-holer-sty-2 {
    color: var(--pri-color);
    font-size: 28px;
}

/*Home page section 3 End*/
/*Menu*/
.navbar-light .navbar-nav .nav-link {
    color: #141F39;
    font-weight: 600;
}


/*Mega Menu CSS*/
@media all and (min-width: 992px) {
    .dropdown-menu {
        width: 13rem;
    }

    .mega-submenu {
        left: 100%;
        top: 0;
        min-width: 25rem;
    }

    .ktm-mega-menu {
        position: static;
    }

    .mega-menu {
        left: 0;
        right: 0;
        width: 100%;
    }

    .dropdown-menu li {
        position: relative;
    }

    .dropdown-menu .submenu {
        display: none;
        left: 100%;
        top: 0;
    }

    .dropdown-menu>li:hover>.submenu,
    .dropdown:hover>.dropdown-menu {
        display: block;
    }
}

/*Mega Menu CSS End*/



/* Pageination */
#ctm-pagin {}

#ctm-pagin .page-item.active .page-link {
    color: #fff;
    background-color: var(--sec-color);
    border-color: var(--sec-color);
}

#ctm-pagin .page-link:hover {
    z-index: 2;
    color: #000;
    background-color: var(--pri-color);
    ;
    border-color: var(--pri-color);
    ;
}

#ctm-pagin .page-link {
    color: #000;
}

#ctm-pagin .page-link:focus {
    box-shadow: none;
}

/* Pageination End*/



/*Footer*/
.mian-footer {
    background-color: var(--footer-bg);
    padding: 80px 0px 20px;
}

.foo-logo {
    margin-bottom: 15px;
}

.foo-inf-holder,
.foo-copyright {
    color: #000000;
}

.foo-inf-holder p {
    line-height: 1.8;
}

.foo-widget-holder h6 {
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 1.4;
    color: #212020;
    margin-bottom: 15px;
    font-family: 'DM Sans';
}

.foo-holder {
    padding-bottom: 80px;
}

.foo-nav {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.foo-nav li a {
    font-weight: 400;
    font-size: 16px;
    line-height: 1.3;
    color: #000000;
    text-decoration: none;
    margin-bottom: 15px;
    display: block;
    transition: 0.3s ease-in-out;
}

.foo-nav li a:hover {
    color: var(--sec-color);
}

.foo-nav li:last-child a {
    margin-bottom: 0;
}

.foo-copyright {
    display: flex;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 1px solid #000;
}

.foo-ss-icons {
    padding-left: 0;
    list-style: none;
    display: flex;
    gap: 8px;
    margin-bottom: 0;
    margin-top: 30px;
}

ul.foo-ss-icons a {
    width: 44px;
    height: 44px;
    transition: 0.3s ease-in;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #172426;
    border-radius: 7px;
}



.foo-ss-icons a:hover {
    color: #fff;
    background-color: var(--sec-color);
}

.foo-info-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
    margin-top: 25px;
}

.foo-info-list li a {
    display: flex;
    gap: 12px;
    text-decoration: none;
    margin-bottom: 15px;
    color: #B4B6C4;
    font-size: 16px;
    align-items: center;
}

.foo-info-list li:last-child a {
    margin-bottom: 0px;
}

.foo-copyright p a {
    color: #000;
    text-decoration: none;
}

.foo-copyright p a:hover {
    color: var(--sec-color);
}


/* NS Form Foo */

.foo-ns-form {
    display: flex;
    background-color: #000;
    padding: 5px 15px;
    gap: 10px;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

.foo-ns-form input {
    flex: 1;
    background-color: transparent;
    box-shadow: none;
    border: none;
    padding: 6px 12px;
    color: #fff;
    width: 100%;
}

.ns-subs-btn {
    background: #C8F8A9;
    border-radius: 6px;
    padding: 10px 20px;
}

.foo-ns-form input:focus {
    outline: none;
}

.foo-nav-pp {
    list-style: none;
    padding-left: 0;
    display: flex;
    gap: 35px;
    margin-bottom: 0;
}

.foo-nav-pp a {
    text-decoration: none;
    color: #000;
}

/* NS Form Foo end*/

/*Footer End*/




/*    Footer*/
ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer {
    margin-top: 200px;
}

.footer.mt-0 .sec-footertop {
    padding-top: 0;
}

@media(max-width: 991px) {
    .footer {
        margin-top: 0;
    }
}

.sec-footertop {
    background-position: center;
    background-size: cover;
    padding: 100px 0 0;
    position: relative;
    background-color: #000;
    /* $black */
}

.sec-footertop .footer-form {
    height: 330px;
    position: relative;
}

.sec-footertop .footer-form .round-ico {
    background-color: #333;
    /* $idarkGray */
}

.sec-footertop .footer-form .contact-sec {
    top: -315px;
    position: relative;
    background-color: #007bff;
    /* $iPrimary */
}

.sec-footertop .footer-form .contact-sec .btn-secondary:not(:disabled):not(.disabled).active,
.sec-footertop .footer-form .contact-sec .btn-secondary:not(:disabled):not(.disabled):active,
.sec-footertop .footer-form .contact-sec .btn-secondary:hover,
.sec-footertop .footer-form .contact-sec .btn-secondary.focus,
.sec-footertop .footer-form .contact-sec .btn-secondary:focus {
    background-color: rgba(0, 0, 0, 0.8);
    border-color: rgba(0, 0, 0, 0.8);
}

@media(max-width: 1199px) {
    .sec-footertop .footer-form .contact-sec {
        top: -335px;
    }
}

@media(max-width: 991px) {
    .sec-footertop .footer-form {
        height: auto;
    }

    .sec-footertop .footer-form .contact-sec {
        top: -50px;
    }
}

.sec-footertop .footer-content {
    padding-top: 85px;
    position: relative;
    padding-bottom: 20px;
}

@media(max-width: 1199px) {
    .sec-footertop .footer-content {
        padding-top: 60px;
    }
}

@media(max-width: 991px) {
    .sec-footertop .footer-content {
        padding-top: 50px;
    }
}

.sec-footertop .heading1 p {
    color: #000;
    /* $black */
    margin: 5px 0 10px 0;
}

.sec-footertop h5 {
    margin-bottom: 10px;
    padding-top: 15px;
}

.logo-widget a {
    display: inline-block;
}

/*.logo-widget img {
    height: 80px;
}*/

@media (max-width:1199px) {
    .logo-widget img {
        height: 60px;
    }
}

.logo-widget p {
    font-size: 14px;
    color: #fff;
    margin: 25px 0 0 0;
}

.link-widget {
    padding-top: 35px;

    @media (max-width:767px) {
        padding-top: 15px;
    }
}

.link-widget h5 {
    font-size: calc(15px + (20 - 15) * (100vw - 320px) / (1920 - 320));
    color: #fff;
    font-weight: 500;
    margin: 0 0 12px 0;
    padding-top: 0;
    text-transform: capitalize;
}

@media(max-width: 575px) {
    .link-widget h5 {
        margin: 10px 0 0 0;
    }
}

.link-widget p {
    color: #fff;
    font-weight: 400;
    font-size: 13px;
    font-size: calc(13px + (16 - 13) * (100vw - 320px) / (1920 - 320));
    margin: 0;
}

.link-widget ul {
    padding: 10px 0 0;
}

.link-widget ul li {
    margin-bottom: 15px;
    line-height: 21px;
}

.link-widget ul li a {
    font-size: calc(14px + (16 - 14) * (100vw - 320px) / (1920 - 320));
    color: #fff;
    font-weight: 400;
    line-height: normal;
    text-decoration: none;
}

.link-widget ul li a i {
    margin: 0 10px 0 0;
    font-size: 20px;
}

.link-widget ul li a.is--active,
.link-widget ul li a:hover {
    text-decoration: underline !important;
}

.link-widget ul li.is--active a {
    text-decoration: underline !important;
}

.link-widget .social-ico {
    padding: 20px 0 0;
}

.link-widget .social-ico li {
    display: inline-block;
    vertical-align: middle;
}

.link-widget .social-ico li a i {
    color: #707271;
    font-size: 30px;
    transition: all 0.3s ease-in-out;
}

.link-widget .social-ico li a:hover i,
.link-widget .social-ico li a.is--active i {
    color: #007bff;
    /* $iPrimary */
}

.link-widget .social-ico li a:hover,
.link-widget .social-ico li a.is--active {
    text-decoration: none !important;
}

.sec-copyright {
    padding: 20px 0 0;
    border-top: 1px solid #04ABFD;
    margin-top: 50px;

    @media (max-width:1199px) {
        margin-top: 25px;
    }
}

.sec-copyright .fflex {
    justify-content: center;
}

.sec-copyright p {
    font-size: calc(13px + (16 - 13) * (100vw - 320px) / (1920 - 320));
    color: #fff;
    margin: 0;
    text-align: center;
}

.sec-copyright .copyright-links {
    margin-left: auto;
}

@media(max-width: 767px) {
    .sec-copyright .fflex {
        flex-direction: column;
    }

    .sec-copyright p {
        text-align: center;
    }

    .sec-copyright .copyright-links {
        margin-left: 0;
        margin-top: 10px;
    }
}

.copyright-links {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.copyright-links li {
    padding-left: 12px;
    margin-left: 12px;
    position: relative;
    border-left: 1px solid #fff;
}

.copyright-links li a {
    font-size: 13px;
    color: #DFDFDF;
    display: block;
    line-height: 14px;
}

.copyright-links li a:hover {
    text-decoration: underline !important;
}

.copyright-links li.is--active {
    text-decoration: underline !important;
}

.copyright-links li:first-child {
    padding-left: 0;
    margin-left: 0;
    border-left: 0;
}



.footer-top-area {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 45px;
    border-bottom: 1px solid #04ABFD;

    @media (max-width: 991px) {
        flex-direction: column;
    }

    @media (max-width: 767px) {
        padding-bottom: 25px;
    }
}

.footer-social {
    display: flex;
    gap: 32px;
    align-items: center;

    @media(max-width: 767px) {
        /*        margin-top:10px;
        gap: 10px 0;
        flex-direction:column;*/

    }
}


.social-text p {
    color: #fff;
    font-size: calc(16px + (20 - 16) * (100vw - 320px) / (1920 - 320));
    font-weight: 500;
    margin-bottom: 0;
}

.social-icons {
    display: flex;
    gap: 17px;
    align-items: center;
}

.social-icons li a {
    width: 38px;
    height: 38px;
    display: flex;
    background-color: #fff;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: 0.3s ease-in;
}

.social-icons li a:hover {
    background-color: var(--pri-color);
    color: #fff;
}

.links-icons li {
    position: relative;
    padding-left: 40px;
}

.links-icons li span {
    position: absolute;
    left: 0;
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #fff;
    border-radius: 50%;
}

.links-icons li span i {
    font-size: 9px;
    color: #fff;
}

.marquee-area {
    padding: 15px 0;
    background: linear-gradient(90deg, #04ABFD 25.59%, #0060FD 58.7%);
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

/*.marquee {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
}*/

.marquee span {
    /*        will-change: transform;
        transform: translateX(0);
     
/*        animation: marquee 24s linear infinite;*/
    font-size: calc(16px + (26 - 16) * (100vw - 320px) / (1920 - 320));
    font-weight: 500;
    color: #fff;
    margin: 0 50px;
    white-space: nowrap;
    text-align: center;

}

.informed-area {
    height: 100%;
    padding: 10px 0;
}

.informed-img {
    border-radius: 25px 25px 0px 0px;
    overflow: hidden;
    height: 290px;
}

.informed-txt {
    padding: 30px 45px 73px 25px;
    border: 1px solid #E6E6E6;
    border-top: 0;
    border-bottom-left-radius: 25px;
    border-bottom-right-radius: 25px;
    position: relative;
    height: calc(100% - 290px);
}

.informed-txt h6 {
    font-size: calc(15px + (20 - 15) * (100vw - 320px) / (1920 - 320));
    font-weight: 600;
    color: #000;
    line-height: 1.5;
}

.informed-txt .btn-area {
    position: absolute;
    bottom: 30px;
    left: 25px;
}

.img-responsive {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.btn-link {
    padding: 0;
    font-weight: 600;
    font-size: calc(13px + (16 - 13) * (100vw - 320px) / (1920 - 320));
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    gap: 0 10px;
    color: #0060FD;
}

.btn-link i:before {
    color: #0060FD;
    font-size: calc(12px + (13 - 12) * (100vw - 320px) / (1920 - 320));
}


.mt-30 {
    margin-top: 30px;
}

.mt-40 {
    margin-top: 40px;
}

.mt-50 {
    margin-top: 50px;
}

/*//Accordion//*/
.accord-area {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.menu-acordian {
    margin: 20px 0;
}

.menu-acordian .accord-btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 20px 20px 35px;
    margin-bottom: 0;
    border-bottom: 1px solid #bac2c3;
    position: relative;
    background-color: #FFFFFF;
    border: 1px solid #E6E6E6;
    border-radius: 10px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.menu-acordian .accord-btn a {
    font-size: calc(14px + (22 - 14) * (100vw - 320px) / (1920 - 320));
    color: #333;
    font-weight: 700;
}

.menu-acordian .accord-btn i {
    padding: 10px;
    /*        font-size: calc(10px + (11 - 10) * (100vw - 320px) / (1920 - 320));*/
    font-size: 11px;
    line-height: 11px;
    display: inline-block;
    color: #007bff;
    transform: rotate(90deg);
    transition: all 0.3s ease;
    background: #0060fd;
    border-radius: 50%;
    width: 33px;
    height: 33px;
    display: inline-flex;
    align-items: center;
    justify-content: center;

}

.menu-acordian .accord-btn i:before {

    color: #fff;
}

.menu-acordian .accord-btn h4 {
    font-size: calc(14px + (22 - 14) * (100vw - 320px) / (1920 - 320));
    margin: 0px;
    color: #0a0808;
    font-weight: 600;
}

.menu-acordian.accord-open .accord-btn {
    background-color: #0060FD;
    color: #fff;
}

.menu-acordian.accord-open .accord-btn i {
    color: #0060FD;
    background-color: #fff;
    transform: rotate(-90deg);
    transition: all 0.3s ease;
}

.menu-acordian.accord-open .accord-btn h4 {
    color: #fff;

}

.menu-acordian.accord-open .accord-btn i:before {
    color: #0060FD;
}

.menu-acordian.accord-open .accord-btn .round-circle {
    background-color: #fcd804;
    border-color: transparent;
}

.menu-acordian .accord-content {
    padding-bottom: 0;
}

.menu-acordian .accord-content h4 {
    font-size: calc(14px + (22 - 14) * (100vw - 320px) / (1920 - 320));
    margin: 0px 0 20px;
    color: #333;
    font-weight: 800;
}

.accord-content {
    display: none;
}


.scholar-box {
    background-color: #0060FD;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    padding: 20px 30px;
}

.scholar-box p {
    color: #fff;
    margin-bottom: 0;
}

.bdr-img-radius {
    border-radius: 15px;
}

.question-img {
    height: 100%;
}

.shape {
    position: absolute;
    user-select: none;
}

.shape.question {
    bottom: 30px;
    left: 30px;
    display: flex;
    align-items: center;
    gap: 0 16px;
    background-color: #DAE4FF;
    border-radius: 22px;
    padding: 23px 20px;
}

.shape.question i {
    font-size: 36px;
    color: #000;
}

.shape.question p {
    font-size: calc(12px + (16 - 12) * (100vw - 320px) / (1920 - 320));
    color: #000;
    font-weight: 600;
    margin-bottom: 0;
    line-height: 1.3;
}

/*Logo Slider */
.ls-slide-holder {
    display: flex;
    align-items: center;
    gap: 7px;
    color: #000;
    font-weight: 600;
    border: 1px solid #0060FD;
    border-radius: 50px;
    padding: 8px 30px;
    justify-content: center;
    height: 60px;
}

/*Logo Slider end*/


/*.logo-slider-1 .slick-track, .logo-slider-2 .slick-track {
    display:flex; 
    gap:15px;
}*/

.logo-slider-2 .ls-slide-holder {
    flex-direction: row-reverse;
}

/* the slides */
.logo-slider-1 .slick-slide,
.logo-slider-2 .slick-slide {
    margin: 0 10px;
}

/* the parent */
.logo-slider-1 .slick-list,
.logo-slider-2 .slick-list {
    margin: 0 -10px;
}


/*verticalbox slider css*/

.vs-header {
    margin-bottom: 2rem;
}

.vs-tag-list {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    position: relative;
}

.vs-tag-title {
    font-weight: 500;
}

.vs-tag-list:before {
    position: absolute;
    top: 0;
    width: 100%;
    height: 60px;
    content: "";
    background: #ffffff;
    left: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 72%);
    z-index: 1;
}

.vs-tag-list:after {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    content: "";
    background: #ffffff;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.22) 20%, rgba(255, 255, 255, 1) 72%);
    z-index: 1;
}

.vs-loop-slider {
    height: 500px;
    overflow: hidden;
    position: relative;
    width: 100%;
    max-width: 160px;
    flex: 1 1 120px;
}

.vs-loop-slider .vs-inner {
    display: flex;
    flex-direction: column;
    animation: vs-scroll-vertical var(--duration) linear infinite;
    animation-direction: var(--direction);
}

.vs-loop-slider:hover .vs-inner {
    animation-play-state: paused;
}

.vs-tag {
    background: #ffff;
    margin: 0.4rem 0;
    border-radius: 1rem;
    white-space: nowrap;
    font-size: 14px;
    border: 1px solid #0060FD;
    padding: 60px 10px;
    text-align: center;
    color: #000;
    text-align: center;
}

.vs-tag-icon {
    width: 50px;
    background-color: #F1F5FF;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    margin: 5px auto;
    color: var(--pri-color);
    font-size: 27px;
}

@keyframes vs-scroll-vertical {
    0% {
        transform: translateY(0%);
    }

    100% {
        transform: translateY(-50%);
    }
}

@media (max-width: 768px) {
    .vs-tag {
        font-size: 12px;
        padding: 0.3rem 0.6rem;
    }

    .vs-loop-slider {
        max-width: 120px;
        height: 300px;
    }
}

@media (max-width: 480px) {
    .vs-tag-list {
        gap: 0.5rem;
    }

    .vs-loop-slider {
        max-width: 92px;
        /*height: 140px;*/
    }

    .vs-tag {
        font-size: 11px;
        padding: 0.25rem 0.5rem;
    }
}

/*verticalbox slider css End*/


.tm-counter-title {
    font-weight: 500;
    font-size: 45px;
    line-height: 1;
    color: var(--pri-color);
    margin-bottom: 8px;
}

.ctm-arrow-link {
    display: flex;
    gap: 15px;
    color: #000;
    text-decoration: none;
    align-items: center;
}

.ctm-arrow-link i {
    font-size: 14px;
}

.ctm-arrow-link span {
    border-bottom: 1px solid;
}


/*scrol text css*/
@keyframes marquee {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-50%);
    }
}

.ctm-marquee {
    overflow: hidden;
    width: 100%;
    display: flex;
    align-items: center;
}

.ctm-slide-marquee {
    display: flex;
    white-space: nowrap;
    animation: marquee 24s linear infinite;
}

.ctm-marquee-group {
    display: flex;
}

.ctm-marquee .marquee-cont-holder span{
    display: inline-block;
    margin-right: 60px;
    text-transform: uppercase;
    color: #666666;
    font-size: 76px;
    font-weight: 700;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke: 2px #666666;
    text-fill-color: transparent;
    text-stroke: 2px #666666;
    line-height: 1;
    transition: .3s all ease;
    cursor: pointer;
}

.marquee-cont-holder i {
    font-size: 60px;
}

.marquee-cont-holder {
    display: flex;
    align-items: center;
    gap: 14px;
}
.marquee-cont-holder:hover span{
    -webkit-text-fill-color:var(--pri-color);
    -webkit-text-stroke: 2px var(--pri-color);
    text-fill-color: var(--pri-color);
    text-stroke: 2px var(--pri-color);
 
}
.marquee-cont-holder:hover i{
    color: #0060fd;
}
/*scrol text css end*/

/*Step Boxes CSS*/

.ctm-step-box-holder {
    position: sticky;
    top: 120px;
}

.ctm-step-box {
    padding: 25px;
    border: 1px solid #E6E6E6;
    border-radius: 20px;
    margin-bottom: 15px;
    display: flex;
    gap: 30px;
}

.ctm-step-img img {
    border-radius: 20px;
}

.ctm-step-img {
    flex: 1 0 230px;
    max-width: 230px;
}

.ctm-step-cont {
    flex: 1;
}

.ctm-step-cont p {
    line-height: 1.7;
}

.ctm-step-cont h4 {
    font-weight: 600;
    font-size: 22px;
    line-height: 27px;
    color: #000000;
}

.step-tag {
    display: inline-block;
    padding: 4px 10px;
    background-color: #FAFAFA;
    color: var(--pri-color);
    border-radius: 4px;
    margin-bottom: 15px;
    font-size: 14px;
    transition: 0.3s ease-in;
    -webkit-transition: 0.3s ease-in;
    -moz-transition: 0.3s ease-in;
    -ms-transition: 0.3s ease-in;
    -o-transition: 0.3s ease-in;
}

/* .step-tag.active {
    background-color: var(--pri-color);
    color: #fff;
} */

.ctm-step-box:hover .step-tag{
    background-color: var(--pri-color);
    color: #fff;
}

/*Step Boxes CSS End*/


/*testimonials-sec*/

.testimonials-sec {
    background-color: var(--pri-color);
    background-size: cover;
    background-repeat: repeat-x;
    animation: testimonialbgmove 60s infinite linear;
}

@keyframes testimonialbgmove {
    from {
        background-position: right center;
    }

    to {
        background-position: right 200vw center;
    }
}

.tm-slide-box ul {
    display: flex;
    gap: 0 6px;
    margin-bottom: 15px;
}

.tm-slide-box ul li i {
    color: #DCFD7D;
}

.tm-slide-box p {
    color: #fff;
}

.tm-slider .slick-dots {
    bottom: 7px;
    width: auto;
    padding: 0;
    margin: 0;
    right: 0;
}

.tm-slider li {
    margin: 0 0px;
}


.tm-slider .slick-dots li button:before {
    color: #fff;
    font-size: 10px;
}

.tm-user-holder {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-top: 40px;
}

.tm-user-info h4 {
    font-weight: 500;
    font-size: 20px;
    line-height: 22px;
    color: #FFFFFF;
    margin-bottom: 0;
}

.tm-user-info span {
    display: block;
    color: #fff;
}

.tm-user-img {
    flex: 1 0 60px;
    max-width: 60px;
    border-radius: 60px;
    height: 60px;
    overflow: hidden;
}

.tm-user-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/*testimonials-sec End*/

/*Counter boxes CSS*/

.ctm-counters-holder {
    border-top: 1px solid #fff;
    margin-top: 60px;
    padding-top: 60px;
}

.title-box-s2 {
    font-weight: 600;
    font-size: 69px;
    line-height: 75px;
    color: #FFFFFF;
}

.counter-box-s2 {
    display: flex;
    align-items: center;
    gap: 16px;
    color: #fff;
}

.label-box-s2 {
    color: #fff;
    display: block;
    font-size: 18px;
    line-height: 1.3;
}

/*Counter boxes CSS end*/


/*Pricing Table*/

.pt-pricing-box {
    background-color: #FAFAFA;
    border-radius: 20px;
    padding: 40px;
}

.pt-head i {
    font-size: 50px;
    color: var(--pri-color);
    margin-bottom: 38px;
    display: block;
}


.pt-price {
    border-bottom: 1px solid #EBEBEB;
    margin: 30px 0;
    padding-bottom: 10px;
}

.pt-title {
    font-weight: 600;
    font-size: 22px;
    line-height: 27px;
    color: var(--pri-color);
}

.pt-price h4 {
    font-weight: 600;
    font-size: 50px;
    color: #000000;
    display: flex;
    align-items: center;
    gap: 8px;
}


.pt-price h4 span {
    font-weight: 400;
    font-size: 16px;
    line-height: 17px;
    color: #6B6B6B;
}

.pt-foo {
    margin-top: 30px;
}

.pt-foo .pt-btn {
    display: block;
    text-align: center;
    padding: 11px 20px;
    border-radius: 10px;
    background-color: var(--pri-color);
    color: #fff;
    text-decoration: none;
}

.pt-list {
    list-style: none;
    padding-left: 0;
}

.pt-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.pt-list li:last-child {
    margin-bottom: 0px;
}

.pt-list li:before {
    content: "\e906";
    color: var(--pri-color);
    font-family: 'icomoon';
}

.pt-pricing-box.pt-active {
    background-color: var(--pri-color);
    color: #fff;
}

.pt-pricing-box.pt-active .pt-price h4,
.pt-pricing-box.pt-active .pt-price h4 span,
.pt-pricing-box.pt-active .pt-title,
.pt-pricing-box.pt-active .pt-head i {
    color: #fff;
}

.pt-active .pt-btn {
    background-color: #fff;
    color: #000;
}

/*Pricing Table end*/


/*Shape btn rotate */

.ctm-right-position {
    top: -25px !important;
    right: -25px !important;
    margin: 0 !important;
    left: inherit !important;
}

/*Shape btn rotate End*/

.cb-cursor:before {
    background: red;
}

/*Careers Page*/

.career-box-s1 {
    border: 1px solid #E6E6E6;
    padding: 15px 15px 40px;
    border-radius: 20px;
    height: 100%;
}

.career-box-s1 h3 {
    font-weight: 600;
    font-size: 22px;
    line-height: 24px;
    color: #090808;
    margin-bottom: 10px;
}

.career-box-s1 p {
    margin-bottom: 0;
}

.career-box-s1 img {
    border-radius: 20px;
    margin-bottom: 15px;
}


.icon-pill {
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid;
    border-radius: 50px;
    padding: 10px 23px;
    border: 1px solid var(--pri-color);
    background-color: #fff;
}

.icons-pill-holder {
    display: flex;
    gap: 15px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.icon-pill i {
    font-size: 22px;
    color: var(--pri-color);
}

.icon-pill span {
    font-weight: 600;
    font-size: 18px;
    line-height: 160%;
    text-align: center;
    color: #000000;
}

/*Careers Page End*/



/*Timeline CSS*/

.timeline {
    position: relative;
}

.timeline::before {
    content: "";
    background: #C5CAE9;
    width: 5px;
    height: 95%;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.timeline-item {
    width: 100%;
}

.timeline-item:nth-child(even) .timeline-content {
    /*        float: right;*/
    padding: 0px 30px 30px;
    text-align: right;
}

.timeline-item:nth-child(odd) .timeline-content {
    float: right;
}

.timeline-item:nth-child(even) .timeline-content .date {
    right: auto;
    left: 0;
}

/*        .timeline-item:nth-child(even) .timeline-content::after {
            content: "";
            position: absolute;
            border-style: solid;
            width: 0;
            height: 0;
            top: 30px;
            left: -15px;
            border-width: 10px 15px 10px 0;
            border-color: transparent #f5f5f5 transparent transparent;
        }*/

.timeline-item::after {
    content: "";
    display: block;
    clear: both;
}

.timeline-content {
    position: relative;
    width: 45%;
    padding: 0px 30px 30px;
    color: #53648B;
}

.timeline-content h2 {
    font-weight: 600;
    font-size: 22px;
    line-height: 24px;
    color: #090808;
}

.timeline-content::after {
    content: "";
    position: absolute;
    border-style: solid;
    width: 0;
    height: 0;
    top: 30px;
    right: -15px;
    border-width: 10px 0 10px 15px;
    border-color: transparent transparent transparent #f5f5f5;
}

.timeline-img {
    width: 50px;
    height: 50px;
    background: #FFFFFF;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.15);
    border-radius: 25px;
    position: absolute;
    left: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: -26px;
    font-size: 24px;
    line-height: 26px;
    text-align: center;
    color: #000000;
    margin-top: -12px;
}

.timeline-card {
    padding: 0 !important;
}

.timeline-card p {
    padding: 0 20px;
}

.timeline-card a {
    margin-left: 20px;
}

.timeline-item .timeline-img-header {
    background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.4)), url("https://picsum.photos/1000/800/?random") center center no-repeat;
    background-size: cover;
}

.timeline-img-header {
    height: 200px;
    position: relative;
    margin-bottom: 20px;
}

.timeline-img-header h2 {
    color: #FFFFFF;
    position: absolute;
    bottom: 5px;
    left: 20px;
}


@media screen and (max-width: 768px) {
    .timeline::before {
        left: 50px;
    }

    .timeline .timeline-img {
        left: 50px;
    }

    .timeline .timeline-content {
        max-width: 100%;
        width: auto;
        margin-left: 30px;
    }

    .timeline .timeline-item:nth-child(even) .timeline-content {
        float: none;
        text-align: left;
    }

    .timeline .timeline-item:nth-child(odd) .timeline-content {
        text-align: left;
    }

}

/*Timeline CSS end*/


/*Open positions CSS*/

.sb-title {
    border-left: 3px solid var(--pri-color);
    padding-left: 20px;
    font-weight: 600;
    font-size: 22px;
    line-height: 160%;
    display: flex;
    align-items: center;
    color: #090808;
    margin-bottom: 20px;
}

.sb-cat-list {
    padding-left: 20px;
    margin-bottom: 40px;
}

.sb-cat-list li a {
    list-style: none;
    display: block;
    color: #6B6B6B;
    padding: 15px 0;
    text-decoration: none;
}

.border-btn-sq {
    border: 1px solid;
    display: block;
    text-align: center;
    padding: 10px 15px;
    text-decoration: none;
    border-radius: 7px;
    color: #000;
    transition: 0.3s ease-in;
}

.border-btn-sq:hover {
    background-color: #000;
    color: #fff;
}

.jp-tags-holder {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
}

.jp-tags-holder span {
    border: 1px solid #000;
    color: #000;
    padding: 6px 25px;
    border-radius: 30px;
}


.job-post-title {
    font-weight: 600;
    font-size: 22px;
    color: #090808;
    margin-bottom: 12px;
}

.open-positions {
    position: relative;
}

.sidebar-cat-holder {
    position: sticky;
    top: 120px;
}

.ctm-job-post {
    margin-bottom: 40px;
    border-bottom: 1px solid #D9D9D9;
    padding-bottom: 40px;
}

/*Open positions CSS end*/




/* Split Section */

.split-box-container {
    flex-basis: auto;
    display: flex;
    flex-direction: row;
    width: 100%;
    height: 525px;
    border: 2px solid #fff;
    overflow: hidden;
    padding: 15px 0;
    gap: 10px;
}

.split-box {
    flex-grow: 1;
    flex-shrink: 1;
    flex-basis: auto;
    transition: all 0.8s;
    -webkit-transition: all 0.8s;
    -moz-transition: all 0.8s;
    -ms-transition: all 0.8s;
    -o-transition: all 0.8s;
    /*    border-right: 2px solid;*/
    /*    padding: 40px 20px;*/
    flex: 1;
    background-size: cover;
    background-position: center center;
}


.tm-img-holder-s2 img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.collapse1 {
    flex-grow: 0.2;
}

.gd-bg {
    background: #FFFFFF;
    /*    border: 1.075px solid rgba(37, 58, 103, 0.05);
    box-shadow: 0px 10.75px 26.875px rgba(37, 58, 103, 0.1);*/
    background-image: none !important;
    flex: 2;
}

.sb-num {
    font-style: normal;
    font-weight: 600;
    font-size: 39px;
    line-height: 26px;
    color: #57606A;
    display: block;
    margin-top: 15px;
}

/*.sb-title {
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 26px;
    color: #FFFFFF;
    margin-top: 12px;
}*/

.sb-cont {
    max-width: 85px;
    height: 100%;
    position: relative;
    position: relative;
    z-index: 1;
}

.gd-bg .sb-cont:after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: calc(100% - 100px);
    height: 100%;
    background: #FFFFFF;
    border: 1.075px solid rgba(37, 58, 103, 0.05);
    /*    box-shadow: 0px 10.75px 26.875px rgba(37, 58, 103, 0.1);*/
    box-shadow: 0 0 10px 0px #0000000d;
    z-index: -1;
}

.gd-bg .sb-cont {
    max-width: 100%;
    display: flex;
    align-items: center;
}

.sb-desc {
    /*display: none;
    */
    visibility: hidden;
    opacity: 0;
}

.split-box.collapse1 {
    margin: 40px 0;
}


.gd-bg .sb-cont .sb-desc {
    opacity: 1;
    visibility: visible;
}

.sb-btn {
    position: absolute;
    right: -9px;
    bottom: -14px;
    width: 42px;
    height: 42px;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 32px;
    color: #000;
}

.tm-cont-holder {
    display: flex;
    gap: 25px;
    padding-right: 25px;
}

.tm-cont-holder p {
    font-weight: 400;
    font-size: 20px;
    line-height: 160%;
    color: #6B6B6B;
}

.tm-cont-holder i {
    font-size: 50px;
    opacity: 0.2;

}

.tm-cont-holder .tm-name {
    font-weight: 800;
    font-size: 20px;
    line-height: 22px;
    color: #000000;
}

/* .gd-bg .sb-btn{
    display: none;
} */

.split-box-container .split-box:last-child {
    border-right: none;
}

.split-box.collapse1 .tm-img-holder-s2,
.split-box.collapse1 .tm-cont-holder {
    visibility: hidden;
    opacity: 0;
}

.split-box.gd-bg ..tm-img-holder-s2,
.split-box.gd-bg .tm-cont-holder {
    visibility: visible;
    opacity: 1;
}

.sb-cont {
    display: flex;
    gap: 20px;
}

.tm-usr-info span {
    display: block;
}

.tm-img-holder-s2 {
    flex: 1 0 350px;
    max-width: 350px;
    flex: 1 0 300px;
    max-width: 300px;
    height: 400px;
}

/*.tm-img-holder-s2 {
    flex: 1 0 350px;
    max-width: 350px;
    transition: 0.3s ease-in;
}*/
/* Split Section end*/


/*.tm-slider-content {
    display: flex;
    align-items: center;
    height: 0;
    overflow: hidden;
}

.tm-slide-inner-img {
    flex: 1 0 350px;
    max-width: 350px;
}*/


.banner-search-form {
    display: flex;
    justify-content: center;
    border-radius: 10px;
    border: 1px solid #c1b3b3;
    overflow: hidden;
    max-width: 500px;
    margin: 30px auto auto;
}

.s-input-holder {
    position: relative;
    display: flex;
    align-items: center;
    padding: 10px 15px;
    flex: 1;
    gap: 10px;
}

.banner-search-form button {
    padding: 8px 34px;
    background-color: #0060fd;
    border: 1px solid #0060fd;
    color: #fff;
    transition: 0.3s ease-in;
}

.banner-search-form button:hover {
    padding: 8px 34px;
    background-color: #000;
    border: 1px solid #000;
}

.s-input-holder input {
    border: none;
}

.s-input-holder input:focus {
    outline: none;
}

.res-page-box {
    align-items: center;
    transition: 0.3s ease-in-out;
}

.res-page-box:hover {
    background-color: var(--pri-color);
    border-color: var(--pri-color);
    color: #fff;
}

.res-page-box h4 {
    transition: 0.3s ease-in-out;
}

.res-page-box:hover h4 {
    color: #fff;
}

.res-page-box p {
    margin-bottom: 0;
}

/*Footer Subscribe form*/

.foo-subscribe-form {
    display: flex;
    border: 1px solid #fff;
    align-items: center;
    margin-top: 30px;
    background-color: #fff;
    border-radius: 4px;
}

.foo-subscribe-form input {
    flex: 1;
    background-color: transparent;
    border: none;
    padding: 8px 11px;
}

.foo-subscribe-form input:focus {
    outline: none;
}

.foo-subscribe-form button {
    line-height: 1;
    background-color: transparent;
    border: none;
}

/*Footer Subscribe form End*/


/*Media Quries*/


@media (max-width: 1600px) {
    /* .home-main-banner {
        min-height: 550px;
    } */
}

/*media Qureries*/
@media (max-width: 1399.98px) {
    .mian-banner-title {
        font-size: 60px;
        line-height: 1.2;
    }

    .mian-banner-title br {
        display: none;
    }

}

@media (max-width: 1199.98px) {
    .logo-item img {
        height: 34px;
    }

    .ctm-step-img {
        flex: 1 0 180px;
        max-width: 180px;
    }

    .ctm-mian-title {
        font-size: 40px;
        line-height: 50px;
    }

    .label-box-s2 {
        font-size: 16px;
    }

    .title-box-s2 {
        font-size: 50px;
        line-height: 1;
    }

    .mian-footer {
        background-color: var(--footer-bg);
        padding: 60px 0px 20px;
    }

    .foo-holder {
        padding-bottom: 60px;
    }

    .foo-inf-holder,
    .foo-copyright {
        color: #000000;
    }

    .foo-inf-holder {
        margin-bottom: 40px;
    }

    .ctm-accordion-holder {
        padding: 10px 10px;
    }

    .ctm-title-mian {
        font-size: 38px;
    }

    .core-v-item {
        font-size: 14px;
    }

    .exp-list-holder {
        min-height: 100px;
        margin-bottom: 7px;
    }

    .core-v-title {
        font-size: 20px;
    }

    .mian-banner-title {
        font-size: 50px;
        line-height: 1.2;
    }

    .navbar-brand {
        max-width: 150px;
    }

    .navbar-brand img {
        width: 100%;
    }

    .navbar-expand-lg .navbar-nav {
        gap: 10px;
    }

    .header-btn {
        padding: 10px 15px;
    }

    .banner-btn-dark {
        padding: 13px 30px;
    }

    .mian-banner-cont {
        font-size: 16px;
        line-height: 30px;
    }

    .space-p-t {
        padding-top: 40px;
    }

    .space-p-b {
        padding-bottom: 40px;
    }

    .space-p-tb {
        padding: 40px 0;
    }

    .space-m-t {
        margin-top: 40px;
    }

    .space-m-b {
        margin-bottom: 40px;
    }

    .space-m-tb {
        margin: 40px 0;
    }


    .global-btn-dark {
        padding: 15px 38px;
    }
}

@media (min-width: 992px) {
    .ctm-mob-menu-btn {
        display: none;
    }
}

@media (max-width: 991.98px) {

    .pt-pricing-box {
        margin-bottom: 20px;
    }

    .icon-box-sty-2 {
        border: 1px solid #EBEBEB !important;
        padding: 20px !important;
        margin-bottom: 15px;
        border-radius: 10px;
    }

    .counter-box-s2 {
        margin-bottom: 17px;
        border-bottom: 1px solid;
    }

    .ctm-mini-title {
        margin-bottom: 10px;
    }

    .img-holder {
        margin-bottom: 16px;
    }

    .ctm-mian-title {
        font-size: 36px;
        line-height: 1.2;
    }

    .ctm-topbar {
        padding: 6px 0;
    }

    .title-box-s2 {
        font-weight: 600;
        font-size: 38px;
        line-height: 1;
        color: #FFFFFF;
    }

    .ctm-topbar {
        background: var(--bg-pri-gradient);
        padding: 6px 0;
    }

    .logo-item img {
        height: 28px;
    }

    .ma5menu__toggle {
        height: 42px;
    }

    .head-info {
        font-size: 12px;
    }

    .head-info-holder li a {
        font-size: 12px;
    }

    .ctm-counters-holder {
        margin-top: 30px;
        padding-top: 30px;
    }

    .icon-pill span {
        font-size: 14px;
        line-height: 1;
    }
}

@media (max-width: 767.98px) {
    .ls-slide-holder {
        padding: 4px 25px;
        height: 47px;
    }

    .timeline .timeline-content {
        padding-left: 0 !important;
        margin-left: 80px;
    }

    .timeline-content h2 {
        font-size: 20px;
        line-height: 20px;
    }

    .ctm-main-header {
        padding: 4px 0;
    }

    .icon-pill span {
        font-size: 12px;
    }

    .career-box-s1 {
        height: auto;
        margin-bottom: 15px;
    }

    .banner-list-holder ul {
        gap: 20px;
    }

    .mian-banner-title {
        font-size: 36px;
        line-height: 1.2;
    }

    .banner-cont h1 br {
        display: none;
    }

    .icon-box-sty-1 {
        margin-bottom: 15px;
        padding-bottom: 13px;
    }

    .space-p-t {
        padding-top: 30px;
    }

    .space-p-b {
        padding-bottom: 30px;
    }

    .space-p-tb {
        padding: 30px 0;
    }

    .space-m-t {
        margin-top: 30px;
    }

    .space-m-b {
        margin-bottom: 30px;
    }

    .space-m-tb {
        margin: 30px 0;
    }


    .foo-widget-holder {
        margin-bottom: 30px;
    }

    .mian-footer {
        background-color: var(--footer-bg);
        padding: 60px 0px 20px;
    }

    .foo-holder {
        padding-bottom: 0px;
    }

    .timeline {
        margin-top: 40px;
    }

    .ctm-job-post:last-child {
        margin-bottom: 0;
    }

    .sb-cat-list {
        margin-bottom: 20px;
        display: flex;
        gap: 0 20px;
        flex-wrap: wrap;
    }

    .sb-cat-list li a {
        padding: 7px 0;
    }

    .vs-app {
        padding: 30px 0px;
    }

    .ctm-counter-box {
        text-align: center;
        border: 1px solid #e3e3e3;
        border-radius: 13px;
        margin-bottom: 15px;
        padding: 10px;
    }

}


@media (max-width: 575.98px) {

    .vs-app {
        padding: 12px 0px;
    }

    .shape.question {
        padding: 10px 16px;
        bottom: 10px;
        left: 10px;
    }

    .menu-acordian .accord-btn {
        padding: 15px 15px 15px 15px;
    }

    .scholar-box {
        padding: 20px 15px;
    }

    .career-box-s1 h3 {
        font-size: 18px;
        line-height: 20px;
    }

    .career-box-s1 {
        padding: 15px 15px 15px;
    }

    .list-check-icon li {
        margin-bottom: 8px
    }

    .offer-text {
        margin-top: 10px;
    }

    .banner-list-holder ul {
        display: flex;
        justify-content: flex-start;
        gap: 12px;
        flex-wrap: wrap;
    }

    .mian-banner-title {
        font-size: 30px;
        text-align: left;
        margin-bottom: 24px;
    }

    .banner-cont {
        text-align: left;
        padding: 0 8px;
    }

    .header-btn-holder {
        gap: 14px;
    }

    .timeline-content h2 {
        font-size: 18px;
        line-height: 18px;
    }

    .job-post-title {
        font-size: 18px;
    }

    .sb-cat-list {
        margin-bottom: 22px;
    }

    .ctm-job-post {
        margin-bottom: 24px;
        padding-bottom: 24px;
    }

    .timeline .timeline-content {
        margin-left: 65px;
    }

    .jp-tags-holder span {
        padding: 4px 16px;
        font-size: 12px;
    }

    .jp-tags-holder {
        flex-wrap: wrap;
    }

    .jp-tags-holder {
        gap: 7px;
        margin-bottom: 20px;
    }

    .timeline-img {
        width: 40px;
        height: 40px;
        left: 50%;
        margin-left: -26px;
        font-size: 17px;
        line-height: 17px;
        margin-top: -7px;
    }

    .timeline::before {
        left: 45px;
    }

    .sec-footertop .footer-content {
        padding-top: 30px;
    }

    .footer-logo {
        margin-bottom: 20px;
    }

    body {
        font-size: 14px;
    }

    menu-acordian .accord-btn {
        gap: 15px;
    }

    .menu-acordian .accord-btn i {
        font-size: 8px;
        line-height: 8px;
        width: 25px;
        height: 25px;
    }

    .glob-btn-white {
        padding: 5px 8px;
        font-size: 14px;
        line-height: 14px;
    }

    .glob-btn-white .arrow-btn-icon {
        padding: 8px 10px;
        font-size: 13px;
    }

    .glob-btn-pri {

        padding: 5px 8px 5px 20px;
        font-size: 14px;
        line-height: 14px;
    }

    .glob-btn-pri .arrow-btn-icon {
        padding: 8px 10px;
        font-size: 13px;
    }


    .home-main-banner {
        min-height: 420px;
    }

    .logo-item img {
        height: 20px;
    }

    .ctm-mini-title {
        font-size: 16px;
        margin-bottom: 5px;
    }

    .pt-pricing-box {
        padding: 20px;
        margin-bottom: 15px;
    }

    .ctm-counters-holder {
        border-top: 1px solid #fff;
        margin-top: 0px;
        padding-top: 30px;
    }

    .label-box-s2 {
        font-size: 14px;
    }

    .counter-box-s2 {
        margin-bottom: 17px;
        border-bottom: 1px solid;
        flex-direction: column;
        gap: 0;
        padding-bottom: 17px;
        text-align: center;
    }

    .menu-acordian {
        margin: 5px 0;
    }

    .accord-area {
        margin-top: 5px;
    }

    .tt-cont {
        max-width: 100%;
        flex: 1 0 100%;
    }

    .title-btn-holder {
        display: flex;
        justify-content: space-between;
        flex-direction: column;
    }

    .ctm-right-position {
        right: 0px !important;
        margin: 0 !important;
    }

    .list-check-icon {
        columns: 1;
    }

    .ctm-icon-list li {
        margin-bottom: 20px;
    }

    .banner-btn-holder .banner-icon-arrow {
        display: none;
    }

    .ctm-list-cont h3 {
        font-size: 18px;
        line-height: 20px;
    }

    .header-btn-holder .glob-btn-white {
        display: none;
    }

    .head-info {
        font-size: 12px;
        justify-content: space-between;
        width: 100%;
    }

    .head-social-info {
        display: none;
    }

    .ctm-mian-title {
        font-size: 26px;
        line-height: 1.2;
    }

    .mian-footer {
        padding: 30px 0px 8px;
    }

    .foo-inf-holder {
        margin-bottom: 10px;
    }


    .space-p-t {
        padding-top: 30px;
    }

    .space-p-b {
        padding-bottom: 30px;
    }

    .space-p-tb {
        padding: 30px 0;
    }

    .space-m-t {
        margin-top: 30px;
    }

    .space-m-b {
        margin-bottom: 30px;
    }

    .space-m-tb {
        margin: 30px 0;
    }


    .foo-copyright p {
        font-size: 14px;
    }

    .foo-copyright {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }


    .mian-banner-home {
        padding: 30px 0;
    }

    .vs-app {
        margin: 15px 0;
    }

    .ls-slide-holder {
        padding: 10px 20px;
        height: 45px;
    }

    .ctm-marquee span {
        font-size: 42px;
    }

    .banner-list-holder {
        margin-bottom: 28px;
    }
}

@media (max-width: 480px) {

    .ctm-step-box {
        margin-bottom: 15px;
        gap: 0;
        flex-direction: column-reverse;
        align-items: center;
        text-align: center;
    }
}


.slides-flex {
    display: flex;
    gap: 0 10px;
    overflow: hidden;
}

.slides-flex .flex-1 {
    flex: 0 0 auto;
    width: 100px;
    height: 411px;    
    overflow: hidden;
    transition: 0.3s ease-in;
    -webkit-transition: 0.3s ease-in;
    -moz-transition: 0.3s ease-in;
    -ms-transition: 0.3s ease-in;
    -o-transition: 0.3s ease-in;
}

.carousel-dots.carousel-sec {
    overflow: hidden;
}

.slides-flex .flex-1.active {
    flex: 1;
}

.slides-flex .flex-1.active .flexs-wrap {
    gap: 0 20px;
}

.slides-flex .flex-1.active .flexs-wrap::before {
    display: block;
}

.slides-flex .flex-1.active .flex-img {
    width: 38%;
    cursor: not-allowed;
}

.slides-flex .flex-1.active .flex-content {
    visibility: visible;
    opacity: 1;
    flex: 1;
    transition: all 0.3s ease-in;
    padding: 30px 30px 30px 0;
}

@media (max-width: 991px) {
    .slides-flex .flex-1.slick-active {
        flex: 1;
    }

    .slides-flex .flex-1.slick-active .flexs-wrap {
        gap: 0 15px;
    }

    .slides-flex .flex-1.slick-active .flexs-wrap::before {
        display: block;
    }

    .slides-flex .flex-1.slick-active .flex-img {
        width: 38%;
    }

    .slides-flex .flex-1.slick-active .flex-content {
        visibility: visible;
        opacity: 1;
        flex: 1;
        transition: all 0.3s ease-in;
        padding: 30px 30px 30px 0;
    }

    .slides-flex .flex-content {
        transition: none !important;
    }
}

.flex-content .tm-cont-holder {
    padding: 0;
    gap: 20px;
}

.flex-content .tm-cont-holder >i {
    font-size: calc(22px + (30 - 22) * (100vw - 320px) / (1920 - 320));
    padding: 0;
    transform: scale(-1);
    display: inline-block;
    height: 100%;
}

.flex-content .tm-cont-holder p {
    font-size: calc(12px + (20 - 12) * (100vw - 320px) / (1920 - 320));
    padding: 0;
}

.flex-content .tm-cont-holder .tm-name {
    font-size: calc(14px + (20 - 14) * (100vw - 320px) / (1920 - 320));
    padding: 0;
}

.flex-content .tm-cont-holder .tm-desig {
    font-size: calc(12px + (16 - 12) * (100vw - 320px) / (1920 - 320));
    padding: 0;
}

@media (max-width: 575px) {
    .slides-flex .slick-track {
        display: flex;
    }

    .slides-flex .slick-track .flex-1 {
        height: auto;
    }

    .flex-content .tm-cont-holder {
        font-size: calc(12px + (16 - 12) * (100vw - 320px) / (1920 - 320));
        padding: 0;
        gap: 8px;
    }

}

.flexs-wrap {
    display: flex;
    width: 100%;
    position: relative;
    align-items: center;
    height: 100%;
    
}

.flexs-wrap .flex-img {
    height: 90%;
    flex: 0 1 auto;
    cursor: pointer;
}

.flexs-wrap .flex-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.flexs-wrap .flex-content {
    width: 0;
    overflow: hidden;
    visibility: hidden;
    opacity: 0;
    flex: 0 1 auto;
}


.flexs-wrap::before {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    display: none;
    width: calc(100% - 100px);
    height: 100%;
    background: #FFFFFF;
    border: 1.075px solid rgba(37, 58, 103, 0.05);
    box-shadow: 0px 10.75px 26.875px rgba(37, 58, 103, 0.1);
    z-index: -1;
}

@media (max-width: 575px) {
    .flexs-wrap {
        flex-direction: column;
    }

    .flexs-wrap .flex-img {
        height: 50%;
        width: 100% !important;
        max-width: 250px;
    }

    .flexs-wrap .flex-content {
        padding: 30px 20px !important;
        width: 100%;
    }

    .flexs-wrap::before {
        top: auto;
        bottom: 0;
        width: 100%;
        height: calc(100% - 50px);
    }
}

.js-carousel .slick-track {
    display: flex;
}

.carousel-dots .slider-controls {
    display: flex;
    align-items: center;
    margin-top: 20px;
    gap: 20px;
    justify-content: space-between;
    width: 75%;
    padding-left: 104px;
}

@media (max-width: 991px) {
    .carousel-dots .slider-controls {
        display: none;
    }
}

.carousel-dots .next-slide {
    cursor: pointer;
    background-color: transparent;
    color: #090808;
    border: none;
     font-size: calc(15px + (20 - 15) * (100vw - 320px) / (1920 - 320));
     font-weight: 400;
    text-decoration: none;
    display: inline-flex;
    gap: 0 10px;
    align-items: center;
}
.carousel-dots .next-slide i{
    color: #090808;
     font-size: calc(22px + (30 - 22) * (100vw - 320px) / (1920 - 320));
}
.user-profile{
    display: flex;
    align-items: center;
    gap: 0 7px;
    margin-top: 30px;
}
.user-profile span{
   font-size: calc(12px + (14 - 12) * (100vw - 320px) / (1920 - 320));
   text-transform: capitalize;
   font-weight: 400;
}
.user-profile i{
   color: #0040D8;
   font-size: calc(18px + (20 - 18) * (100vw - 320px) / (1920 - 320) ) !important;
   opacity: 1;
}

.carousel-dots .slider-dots {
    display: flex;
    gap: 0;
    width: 80px;
    height: 4px;
}

.carousel-dots .slider-dots .dot {
    width: 100%;
    height: 100%;
    background: #ccc;
    cursor: pointer;
    transition: background 0.3s;
}

.carousel-dots .slider-dots .dot.active {
    background: #333;
}

.carousel-dots .slides-content {
    font-weight: 400;
     font-size: calc(14px + (20 - 14) * (100vw - 320px) / (1920 - 320));
    color: #6B6B6B;
    margin-bottom: 7px;
}


.carousel-dots .slick-dots {
    display: flex;
    justify-content: center;
    bottom: 45px;
    left: 50%;
    position: static;
    margin-top: 0;
}

.carousel-dots .slick-dots li {
    height: 15px;
}

.carousel-dots .slick-dots li button {
    background: none;
    border: none;
    text-indent: 9999px;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background-color: #ccc;
    margin: 0 8px;
    opacity: 1;
    padding: 0;
}

.carousel-dots .slick-dots li.slick-active button {
    background-color: #000;
    opacity: 1;
    outline: none;
}



.depart-tabs .nav-link {
    border: none !important;
    padding: 0 15px;
}
/* .depart-tabs .nav-link .active{
    border-left: 1px solid #F45D48;
} */
.depart-tabs .nav-tabs {
    border: none !important;
}

.depart-tabs .nav-link h3 {
    font-weight: 600;
    font-size: 22px;
    line-height: 27px;
    color: #000000;
    transition: 0.3s ease-in;
}

.depart-tabs .nav-link p {
    color: #6B6B6B;
    /* height:100px;
    margin: 0; */
}

.contact-sld-item img{
    margin: 0 auto;
}

/* Thank You Popup */

.ty-msg-popup {
    position: relative;
    min-height: 450px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    background-color: #fff;
    margin: 11px;
    border-radius: 20px;
    background-image: url(/assets/images/ty-popupo-bg.png);
    background-size: 280px;
    background-position: right bottom;
    background-repeat: no-repeat;
}

.ctm-close-btn{
    position: absolute;
    top: 11px;
    right: 11px;
}

.ty-msg-popup h4{
    font-weight: 600;
    font-size: 26px;
    line-height: 26px;
    color: #000000;
}

.ty-msg-popup p{
    color:#999EA1;
}

.ctm-popup-cont{    
    border-radius: 10px;
    background: linear-gradient(90deg, #04ABFD 25.59%, #0060FD 58.7%);
    border: none;
}

.ctm-popup-cont .modal-body{
    padding:0;
}


/* Thank You! */


.popup-jobs-cont{
    border-radius: 10px;
    background: linear-gradient(90deg, #04ABFD 25.59%, #0060FD 58.7%);
    border: none;
}
.popup-jobs-form{
    border-radius: 20px !important;
    -webkit-border-radius: 20px !important;
    -moz-border-radius: 20px !important;
    -ms-border-radius: 20px !important;
    -o-border-radius: 20px !important;
}

.post-job-btn {
    margin-top: 29px;
    width: 100%;
    justify-content: space-between;
}

#formFile{
    padding-left: 0;
    padding-top: 0;
    padding-bottom: 0;
}

#formFile::file-selector-button{
  padding: 18px 1.5em;
  border-width: 0;
  background-color: var(--pri-color);
  color: hsl(210 40% 90%);
  transition: all .25s ease-in-out;
  cursor: pointer;
  margin-right: 1em;
  border-radius:0 0px 0px 0;
  -webkit-border-radius:0 0px 0px 0;
  -moz-border-radius:0 0px 0px 0;
  -ms-border-radius:0 0px 0px 0;
  -o-border-radius:0 0px 0px 0;
}
/* Thank You Popup End */

.ctm-img-radius {
    border-radius: 30px 30px 0 0;
}


html {
  scroll-padding-top: 110px;
}

.ctm-banner-tags {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 30px;
}

.ctm-banner-tags span {
    background-color: #ffffff;
    padding: 5px 8px;
}

.ctm-banner-tags span {
    background-color: #F1F5FF;
    padding: 5px 8px;
    border-radius: 4px;
    color: #878181;
    text-transform: uppercase;
    font-size: 12px;
}


.login-pop-img-holder {
    text-align: center;
    padding-bottom: 30px;
}

.lf-col-left{
    padding: 30px;
}
.col-bg-lf{
    background-size: cover;
    background-position: center center;
}

.ctm-lf-box-holder{
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0 24px;
    justify-content: center;
}

.pop-login-form {
    background-color: #fff;
    padding: 40px 20px;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
}

.ctm-popup-model-cont{
    border-radius: 40px;
    -webkit-border-radius: 40px;
    -moz-border-radius: 40px;
    -ms-border-radius: 40px;
    -o-border-radius: 40px;
    overflow: hidden;
    border: none;
    /* padding: 10px; */
}

.ctm-popup-model-cont .modal-body{
    padding: 0;
}

.ctm-popup-model-cont h2{
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
    line-height: 30px;
    color: #000000;
}

.ctm-pop-field-holder {
    display: flex;
    align-items: center;
    gap: 8px;
}


.input-ic-holder input{
    border: none;
    border-left: 1px solid #9C9C9C;   
    padding-left: 10px; 
}

.input-ic-holder i{
    border: none;
    color: #FF660F;
}


.input-ic-holder {
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid #FF660F;
    padding: 9px 11px;
    border-radius: 10px;
}

.input-ic-holder input:focus{
    outline: none;
}

.lf-popup-btn-holder {
    margin-top: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.lf-popup-btn-holder button {
    background-color: #000;
    border: 1px solid #000;
    color: #fff;
    padding: 10px 30px;
    border-radius: 10px;
}
.ctm-close-btn-lf {
    position: absolute;
    right: 20px;
    top: 20px;
    background-color: #ffffff;
    border-radius: 20px;
    padding: 7px;
}

.lf-popup-foo {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.lf-popup-foo a{
    text-decoration: none;
    color: #fff;
}


@media (max-width: 991.98px) {
    .lf-col-left{
        display: none;
    }

    .ctm-lf-box-holder {        
        padding: 40px;
    }
}

@media (min-width: 1200px) {
    .ctm-lf-model-size {
        max-width: 900px;
    }
}

/* Privacy Policy Pages */

.content-wrap-box {
    margin-bottom: 1rem;
}
.content-wrap-box h3 {
    color: #000;
    font-size: 24px;
    font-weight: 600;
}
.content-wrap-box h4 {
    color: #000;
    font-size: 16px;
    font-weight: 600;
}
.content-wrap-box ul {
    list-style: inside;
    margin-bottom: 16px;
}
.content-wrap-box ul li::marker {
    color: #000;
}