:root {
    --white: #ffffff !important;
    --primary: #1e3053 !important;
    --secondary: #51d0d8 !important;
    --font: "Rubik", sans-serif !important;
}

* {
    margin: 0;
    padding: 0;
    list-style: none;
    box-sizing: border-box;
    outline: none !important;
    box-shadow: none !important;
    font-family: var(--font);
}

html {
    margin: 0;
    padding: 0;
    font-size: 16px;
}


/* common */

button {
    background-color: transparent;
    border: 0;
    box-shadow: none;
}

p {
    font-size: 18px;
    color: var(--primary);
    font-weight: 400;
}

.large-title {
    font-size: 36px;
    color: var(--primary);
    font-weight: 500;
    margin-bottom: 40px;
}

h1 {
    font-size: 48px;
    color: #f8f9fa;
    font-weight: 500;
    margin-bottom: 40px;
}

.text-secondary {
    color: var(--secondary) !important;
}

.small-title {
    font-size: 18px;
    line-height: 26px;
    color: var(--secondary);
    font-weight: 400;
    margin-bottom: 20px;
}

.large-text {
    font-size: 36px;
    color: var(--primary);
    line-height: 46px;
    font-weight: 500;
    margin-bottom: 20px;
}

a {
    text-decoration: none;
}

.text-primary {
    color: var(--primary) !important;
}

.text-secondary {
    color: var(--secondary) !important;
}

.btn-primary {
    font-size: 18px;
    color: var(--white);
    background-color: var(--primary);
    border: 0px;
    font-weight: 500;
    line-height: 46px;
    height: 48px;
    border-radius: 10px;
    padding: 0 17px;
    transition: all 0.5s;
    border: 1px solid var(--primary);
}

.btn-primary:focus,
.btn-primary:hover {
    background-color: var(--secondary);
    color: var(--primary);
    transition: all 0.5s;
    border: 1px solid var(--primary);
}

.btn-secondary {
    font-size: 18px;
    color: var(--primary);
    background-color: var(--secondary);
    border: 0px;
    font-weight: 500;
    line-height: 46px;
    height: 48px;
    border-radius: 10px;
    padding: 0 17px;
    transition: all 0.5s;
    border: 1px solid var(--secondary);
}

.btn-secondary:focus,
.btn-secondary:hover {
    background-color: var(--primary);
    color: var(--secondary);
    transition: all 0.5s;
    border: 1px solid var(--secondary);
}

.section {
    padding: 60px 0;
    background-color: var(--white);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.section-bg-color {
    background-color: #f2fafe;
}

.form-floating .form-control {
    background-color: transparent;
    color: var(--white);
    border: 1px solid var(--secondary);
    border-radius: 8px;
    height: 58px;
    line-height: 58px;
}

.form-floating .form-select {
    background-color: transparent;
    color: var(--white);
    border: 1px solid var(--secondary);
    border-radius: 8px;
    height: 58px;
}

.form-floating>label {
    color: var(--white);
}

.form-select option {
    color: var(--primary) !important;
}

select {
    background-image: url("../images/down-arrow.png") !important;
    background-position: right 10px center !important;
    background-repeat: no-repeat !important;
    background-size: 15px !important;
    border-radius: 2px;
    border: none;
    padding: 10px 30px 10px 10px;
    outline: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
}

.form-label {
    color: var(--white);
    margin: 15px 0 10px 0;
}

.form-check-label {
    color: var(--white);
    line-height: 28px;
}

.form-check-input {
    background-color: transparent;
    border: 1px solid var(--secondary);
    width: 22px;
    height: 22px;
    margin-right: 10px;
}

.form-check-input:checked {
    background-color: var(--secondary);
    border-color: var(--secondary);
}

.form-check {
    margin-bottom: 10px;
}


/* header */

.header {
    width: 100%;
    height: 115px;
    background-color: var(--white);
    display: flex;
    box-shadow: 0 2px 5px rgba(0, 0, 0, .2) !important;
}

.header .logo {
    line-height: 115px;
    width: 200px;
}

.header .logo a {
    display: block;
}

.header .logo img {
    width: auto;
}

.header .main-menu {
    margin: 0 auto;
    padding: 0;
}

.header .main-menu ul {
    margin: 0;
    padding: 0;
    width: 100%;
    text-align: center;
}

.header .main-menu ul li {
    display: inline-block;
    position: relative;
}

.header .main-menu ul li a {
    font-size: 18px;
    font-weight: 500;
    color: var(--primary);
    margin: 0 20px;
    padding: 0;
    height: 115px;
    line-height: 115px;
    display: block;
    border-radius: 10px;
    transition: all 0.4s;
    display: block;
    position: relative;
}

.main-menu ul li a i {
    font-size: 13px;
    margin-left: 5px;
}

.header .main-menu ul li.active:after {
    width: 100%;
    height: 5px;
    background-color: var(--secondary);
    content: "";
    z-index: 1;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.header .main-menu ul li:after {
    width: 0;
    height: 5px;
    background-color: var(--secondary);
    content: "";
    z-index: 1;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.header .main-menu ul li:hover:after {
    width: 100%;
    transition: width 0.2s;
}

.right-btn {
    text-align: right;
    width: auto;
}

.header .right-btn a {
    margin: 33px 0;
}

.header_sticky {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    padding: 0px;
    display: flex;
    z-index: 2000;
    background-color: var(--white);
    height: 75px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, .2) !important;
}

.header_sticky .logo {
    line-height: 75px;
    width: 100px;
}

.header_sticky .logo a {
    display: block;
}

.header_sticky .logo img {
    width: 150px;
}

.header_sticky .main-menu {
    margin: 0 auto;
    padding: 0;
}

.header_sticky .main-menu ul {
    margin: 0;
    padding: 0;
    width: 100%;
    text-align: center;
}

.header_sticky .main-menu ul li {
    display: inline-block;
    position: relative;
}

.header_sticky .main-menu ul li a {
    font-size: 18px;
    font-weight: 500;
    color: var(--primary);
    margin: 0 20px;
    padding: 0;
    height: 75px;
    line-height: 75px;
    display: block;
    border-radius: 10px;
    transition: all 0.4s;
    display: block;
    position: relative;
}

.header_sticky .main-menu ul li:after {
    width: 0;
    height: 5px;
    background-color: var(--secondary);
    content: "";
    z-index: 1;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.header_sticky .main-menu ul li:hover:after {
    width: 100%;
    transition: width 0.2s;
}

.header_sticky .right-btn a {
    margin: 13px 0;
}

.main-menu ul.menus {
    height: auto;
    width: 400px;
    background: #f2fafe !important;
    position: absolute;
    z-index: 99;
    display: none;
    border: 0;
    z-index: 10;
    padding: 0;
    color: #e5eced !important;
    box-shadow: 0 2px 5px rgba(0, 0, 0, .2) !important;
    padding: 15px;
    border-radius: 0 0 15px 15px;
}

.main-menu ul.menus li {
    display: block;
    width: 100%;
    text-transform: none;
    padding: 0;
    margin: 0;
    color: var(--primary) !important;
    background-color: #fff !important;
    border-left: 1px solid rgba(0, 0, 0, 0.2);
    border-right: 1px solid rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.main-menu ul.menus li:first-child {
    border-top: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 15px 15px 0 0;
}

.main-menu ul.menus li:last-child {
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 0 0 15px 15px;
}

.main-menu li:hover ul.menus {
    display: block
}

.main-menu ul.menus li {
    background-color: var(--secondary);
}

.main-menu ul.menus li a {
    font-size: 16px !important;
    line-height: 28px;
    color: var(--primary) !important;
    width: 100% !important;
    display: block !important;
    height: auto !important;
    /* line-height: 50px !important; */
    text-align: left;
    border-radius: 0 !important;
    border: 0 !important;
    margin: 0 !important;
    transition: background-color 0.5s !important;
    font-weight: 400;
    padding: 10px 16px;
}

.main-menu ul.menus li:hover a {
    color: var(--white) !important;
    background-color: var(--primary);
}

.menus li::before,
.menus li::after {
    display: none !important;
}


/* sidebar */

.sidebar-menu-btn {
    display: none;
}

.sidebar_menu {
    height: 100vh;
    width: 100%;
    overflow-y: scroll;
    position: fixed;
    z-index: 99999;
    top: 0;
    right: 0;
    /* box-shadow: -0px 0px 15px 0px rgba(0, 0, 0, 0.3); */
    display: none;
    overflow: hidden !important;
    z-index: 1000;
}

.sidebar_menu .overlay {
    background-color: rgba(0, 0, 0, 0.7);
    width: 100%;
    height: 100vh;
    content: ' ';
    z-index: -100;
    position: absolute;
    top: 0;
    left: 0;
}

.sidebar_menu .content {
    max-width: 400px;
    width: 100%;
    height: 100%;
    padding: 0px;
    background-color: var(--white) !important;
    overflow-y: scroll;
    float: right;
    /* overflow: hidden !important; */
}

.sidebar_menu .head {
    position: relative;
    padding: 7px 20px;
    z-index: 1;
    margin-bottom: 15px;
    background-color: #fff;
}

.sidebar-logo img {
    width: 150px !important;
}

.sidebar_menu .accordion {
    /* height: calc(100vh - 240px); */
    /* padding-right: 10px;
    padding-left: 10px; */
    /* background-color: var(--white); */
    /* overflow: hidden; */
}

.sidebar_menu_list {
    padding: 0;
}

.sidebar_menu_list .accordion-item {
    background: none;
    background-color: none;
    border: none;
    text-transform: uppercase;
    /* margin-bottom: 5px; */
    font-family: var(--font) !important;
}

.sidebar_menu_list .accordion-button,
.sidebar_menu_list a {
    background: none;
    background-color: none;
    border: none;
    color: var(--primary);
    font-size: 18px !important;
    font-weight: 400 !important;
    line-height: 45px;
    text-transform: capitalize;
    padding: 0 15px;
    letter-spacing: 0px;
    display: flex;
    font-family: var(--font) !important;
}


/* .sidebar_menu_list .accordion-button {
    border: 1px solid transparent;
    background: none;
    background-color: none;
    border: none;
    color: var(--primary);
    font-size: 16px !important;
    font-weight: 500 !important;
    line-height: 40px;
    text-transform: capitalize;
    padding: 0 15px;
    letter-spacing: 0px;
    position: relative;
    border-radius: 0px !important;
} */

.sidebar_menu_list a.active,
.sidebar_menu_list .accordion-button.active,
.sidebar_menu_list a:hover,
.sidebar_menu_list .accordion-button:hover {
    color: var(--primary);
    background-color: #f2fafe !important;
}

.sidebar_menu_list .accordion-button::after {
    background-image: url(../images/plus.png);
    width: 20px;
    height: 20px;
    background-size: 20px;
}

.sidebar_menu_list .accordion-button:not(.collapsed)::after {
    background-image: url(../images/minus.png);
    width: 20px;
    height: 20px;
}

.sidebar_menu_list .accordion-body {
    padding: 1px 0px;
    background-color: #f2fafe !important;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.sidebar_menu_list .accordion-body ul {
    padding: 0;
    margin-top: 0rem;
    margin-bottom: 0rem;
    background-color: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.2);
    /* border-bottom: 1px solid rgba(0, 0, 0, 0.2); */
    border-radius: 15px;
    margin: 15px;
    overflow: hidden;
}

.sidebar_menu_list .accordion-body ul li a {
    font-size: 16px !important;
    line-height: 45px !important;
    color: var(--primary);
    font-weight: 400 !important;
    text-transform: none;
    padding: 0 0 0 15px;
    border-bottom: 1px soild rgba(0, 0, 0, 0.1);
}

.sidebar_menu_list .accordion-body ul li a i {
    margin-right: 10px;
    margin-top: 13px;
    font-size: 16px;
    color: var(--primary);
}

.sidebar_menu_list .accordion-body ul li a.active,
.sidebar_menu_list .accordion-body ul li a:hover {
    font-size: 16px;
    line-height: 30px;
    color: var(--primary) !important;
    background: #f2fafe;
    font-weight: 600;
    text-transform: none;
}

.sidebar_menu .logo img {
    width: 150px;
}

.menu-icon {
    width: 15px;
    height: 15px;
    margin: 7px 10px 0 0;
    transform: rotate(45deg);
}

.sidebar_menu .foot {
    position: relative;
    width: 100%;
}

.foot .sidebar_meeting {
    width: 100%;
    padding: 0 15px;
}

.foot .sidebar_social {
    /* background-color: var(--primary); */
    width: 100%;
    padding: 0 15px;
    margin-bottom: 15px;
}

.foot .sidebar_social ul {
    padding: 0 !important;
    margin: 0;
}

.foot .sidebar_social ul li {
    display: block;
    text-align: center;
}

.foot .sidebar_social ul li a {
    line-height: 40px;
    margin: 0px;
    font-size: 16px;
    font-weight: 400;
    color: var(--primary);
}

.foot .sidebar_social ul li a:hover {
    color: var(--primary);
}

.sidebar_social .footer-social {
    text-align: center;
    margin-top: 10px !important;
}

.sidebar_social .footer-social li {
    display: inline-block !important;
}

.sidebar_social .footer-social li a {
    color: var(--white) !important;
    line-height: 30px !important;
    height: 30px;
}

.sidebar_social .footer-social li a:hover {
    color: var(--primary) !important;
}

.cloase_btns {
    background-color: var(--white);
    width: 50px;
    height: 73px;
    color: var(--primary);
    opacity: 1;
    font-size: 20px;
    position: absolute;
    right: 0px;
    top: 0px;
    z-index: 10000;
    line-height: 0px !important;
    transition: 0.3s;
    border: 0px;
}

.cloase_btns:hover {
    background-color: var(--secondary);
    color: var(--white);
    opacity: 1;
    position: absolute;
    line-height: 0px !important;
    transition: 0.3s;
}

.sidebar_menu .big-menu-nav:last-child {
    border: none;
}

.sidebar_menu .big-menu-nav:last-child h3 {
    margin-top: 40px;
    border: none;
}

.sidebar_menu .big-menu-nav:last-child li {
    width: auto;
}

.sidebar_menu .big-menu-nav:last-child .big-menu-category li a {
    font-size: 18px;
}

.sidebar_menu .big-menu-nav:last-child .sub-menu li a,
.sidebar_menu .big-menu-nav:last-child .sub-menu li a:hover {
    text-transform: capitalize;
    font-weight: 600;
    font-size: 16px;
}


/* footer */

.footer {
    background-color: #f2fafe;
    padding: 40px 0;
}

.footer h4 {
    color: var(--secondary);
    font-weight: 500;
    font-size: 16px;
}

.footer p a,
.footer p {
    color: var(--primary);
    font-weight: 500;
    transition: all 0.3s;
    font-size: 18px;
    line-height: 34px;
}

.footer p a:hover {
    color: var(--secondary);
    transition: all 0.3s;
}

.footer-menu {
    margin: 0 0 15px 0;
    padding: 0;
}

.footer-menu li a {
    line-height: 32px;
    color: var(--primary);
    font-weight: 400 !important;
    font-size: 16px;
    position: relative;
}

.footer-menu li a:after {
    width: 0;
    height: 1px;
    background-color: var(--primary);
    content: "";
    z-index: 1;
    position: absolute;
    bottom: 0;
    left: 0;
    transition: width 0.2s;
}

.footer-menu li a:hover:after {
    width: 100%;
    transition: width 0.2s;
}

.footer-bottom {
    background-color: var(--white);
    padding: 15px 0;
    min-height: 118px;
}

.footer-logo p {
    font-size: 16px;
    font-weight: 400;
    margin: 0;
    color: var(--primary);
}

.footer-logo img {
    width: 150px;
    margin-bottom: 5px;
}

.disclaimer-menu {
    margin: 0;
    padding: 32px 0;
    text-align: center;
}

.disclaimer-menu li {
    display: inline-block;
}

.disclaimer-menu li a {
    color: var(--primary);
    margin: 0 10px;
    font-weight: 400;
    position: relative;
}

.disclaimer-menu li a:after {
    width: 0;
    height: 1px;
    background-color: var(--primary);
    content: "";
    z-index: 1;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    transition: width 0.2s;
}

.disclaimer-menu li a:hover:after {
    width: 100%;
    transition: width 0.2s;
}

.footer-social {
    margin: 0;
    padding: 30px 0;
    text-align: right;
}

.footer-social li {
    display: inline-block;
}

.footer-social li a {
    color: var(--white);
    display: block;
    border-radius: 5px;
    margin: 0 2px;
    width: 30px;
    height: 30px;
    line-height: 30px;
    background-color: var(--primary);
    text-align: center;
    transition: all 0.4s;
}

.footer-social li a:hover {
    background-color: var(--secondary);
    color: var(--primary);
    transition: all 0.4s;
}


/* main */

.main {}

/* home banner */

.home-banner {
    width: 100%;
    height: calc(100vh - 115px);
    position: relative;
}

.home-banner .overlay {
    background-color: rgba(0, 0, 0, 0.0);
    width: 100%;
    height: 100%;
    content: "";
}

.home-banner.section-bg{
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.main-banner {
    width: 100%;
}

.main-banner .swiper-pagination {
    width: auto !important;
    left: 50%;
    transform: translateX(-50%);
    top: auto;
    bottom: 0;
    background-color: #fff !important;
    text-align: center;
    height: 50px;
    padding: 10px 30px 15px 30px;
}

.main-banner .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
}

.main-banner .swiper-pagination-bullet-active {
    width: 10px;
    height: 10px;
    background: none;
    border: 1px solid var(--primary);
}

.banner-content {
    width: 100%;
    position: absolute;
    left: 0;
    top: 40%;
    transform: translateY(-40%);
    z-index: 100;
    display: block;
}

.banner-content h2 {
    color: var(--white);
    font-size: 48px;
    font-weight: 500;
    margin-bottom: 25px;
}

.banner-content h4 {
    color: var(--white);
    font-size: 18px;
    line-height: 26px;
    font-weight: 400;
    margin-bottom: 50px;
}

.banner-content .btn-primary {
    margin-top: 35px;
}

.banner-nav {
    position: absolute;
    bottom: 60px;
    width: 100%;
    color: var(--white) !important;
    z-index: 100;
}

.button-next,
.button-prev {
    width: 50px;
    height: 50px;
    background-color: #0a3261;
    text-align: center;
    line-height: 50px;
    border-radius: 10px;
    display: inline-block;
    color: #2e819d;
    font-size: 22px;
    transition: all 0.4s;
}

.button-next:hover,
.button-prev:hover {
    background-color: #0b589b;
    color: var(--secondary);
    transition: all 0.4s;
}

.home-abt-img {
    width: 90%;
}

.tech-partners {
    width: 200px;
    height: 100px;
    border: 1px solid #62c0ca;
    border-radius: 10px;
    background-color: #fff;
    position: relative;
}

.tech-partners-img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: auto;
    height: auto;
}

.marquee-row {
    width: 100%;
    overflow-x: hidden;
}

.marquee-block {
    position: relative;
    display: flex;
    width: 100%;
    animation-duration: 10s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    justify-content: space-between;
}

.marquee-item-list {
    display: inline-flex;
    padding: 0;
    margin: 0;
}

.marquee-item-list li {
    width: 100%;
    list-style: none;
    padding-right: 30px;
    font-size: 40px;
    white-space: nowrap
}

.marquee1 {
    animation-name: marquee1;
}

.marquee2 {
    animation-name: marquee2;
}

@keyframes marquee1 {
    0% {
        left: 0;
    }
    100% {
        left: -75%;
    }
}

@keyframes marquee2 {
    100% {
        left: 0;
    }
    0% {
        left: -100%;
    }
}

.home-case-study {
    width: 100%;
    height: 300px;
    border-radius: 10px;
    overflow: hidden;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    margin-bottom: 30px;
    position: relative;
}

.home-case-study-content {
    width: 100%;
    position: absolute;
    padding: 25px;
    bottom: 0
}

.home-case-study-content h3 a {
    color: var(--white);
    font-size: 28px;
    line-height: 36px;
    font-weight: 500;
    margin-bottom: 20px;
    padding-right: 120px;
    transition: all 0.4s;
}

.home-case-study-content h3 a:hover {
    color: var(--secondary);
    transition: all 0.4s;
}

.case-study-page-link {
    color: var(--secondary);
    font-size: 18px;
    font-weight: 600;
    text-align: right;
    float: right;
}

.case-study-page-link i {
    color: var(--white);
    margin-left: 10px;
}

.case-study-page-link:hover {
    color: var(--white);
    transition: 0.4s;
}

.home-testimonials {
    background-color: #206281;
    width: 100%;
    height: 300px;
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}

.home-testimonials h3 {
    color: var(--white);
    font-size: 24px;
    line-height: 30px;
    font-weight: 500;
    margin-bottom: 20px;
}

.home-testimonials a {
    position: absolute;
    bottom: 20px;
}

.home-texttimonial-icon {
    position: absolute;
    opacity: 0.1;
    right: -30px;
    bottom: -30px;
}

.home-news {
    background-color: #62c0ca;
    width: 100%;
    min-height: 300px;
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
    background-image: url(../images/home-news.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.home-news h3 a {
    color: var(--primary);
    font-size: 24px;
    line-height: 30px;
    font-weight: 500;
    margin-bottom: 20px;
    z-index: 1;
    position: absolute;
    padding: 0 25px 0 0;
    transition: all 0.4s;
}

.home-news h3 a:hover {
    color: #fff;
    transition: all 0.4s;
}

.home-news .btn-primary {
    position: absolute;
    bottom: 20px;
    margin: 0;
}

.home-news-icon {
    position: absolute;
    opacity: 1;
    right: -100px;
    top: 0
}

.home-blogs {
    background-color: #1e3053;
    min-height: 300px;
    height: auto;
    border-radius: 10px;
    padding: 10px;
    position: relative;
    display: block;
}

.home-blog-img-div {
    height: 280px;
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
}

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

.home-blogs h3 a {
    color: var(--white);
    font-size: 24px;
    line-height: 30px;
    font-weight: 500;
    margin-bottom: 20px;
    z-index: 1;
    padding: 10px 20px 0 0;
    transition: all 0.4s;
}

.home-blogs h3 a:hover {
    color: var(--secondary);
}

.home-blogs .btn-secondary {
    position: absolute;
    bottom: 20px;
    margin: 0;
}

.counter{
    width: calc(100% - 80px);
    margin: 0 auto;
}

.counter h3 {
    color: var(--secondary);
    font-weight: 500;
    font-size: 48px;
    text-align: center;
}

.counter p {
    font-size: 18px;
    color: var(--white);
    font-size: 600;
    text-align: center;
}

.large-title-thin {
    font-weight: 400;
}

.cyber-dot {
    font-size: 20px;
    font-weight: 600;
    color: var(--white);
    text-align: center;
}

.cyber-dot i {
    font-size: 10px;
    margin: 0 25px;
}

.cyber-security-img {
    width: auto;
    max-width: 100%;
    margin-bottom: 50px;
}

.kavayah-solution-link {
    color: #51d0d8;
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    transition: 0.4s;
}

.kavayah-solution-link:hover {
    color: var(--primary);
    transition: 0.4s;
}

.kavayah-solution-link i {
    color: var(--primary);
    margin-left: 10px;
}

.home-solution-img {
    width: auto;
    max-width: 100%;
}

.home-solutions-div {
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 10px;
    cursor: pointer;
}

.home-solutions-div:hover,
.home-solutions-div.active {
    background-color: #d2f2f6;
}

.home-solutions-title {
    color: var(--primary);
    font-weight: 500;
    font-size: 24px;
    line-height: 34px;
    position: relative;
    padding-left: 50px;
    margin-bottom: 15px;
}

.home-solutions-title img {
    position: absolute;
    left: 0;
}

.home-solutions-div p {
    font-size: 16px;
}

.mouse_scroll {
    overflow: visible;
    position: relative;
}

.side_sec {
    display: flex;
}

.img-links button {
    text-align: left;
}

.featured-img {
    position: sticky;
    top: 50px;
}

.featured-img img {
    position: absolute;
    left: 0;
    top: 35px;
    width: 80%;
    height: auto;
    max-width: 100%;
}

.side-text {
    display: flex;
}

.h1animatetext {
    font-size: 80px;
    font-weight: 500;
    line-height: 100px;
    text-align: center;
    color: var(--primary);
    margin: 20px 0;
}

.top-0 {
    top: 0px;
}

.xl\:sticky {
    position: sticky;
}

.xl\:flex {
    display: flex;
}

.xl\:h-screen {
    height: 100vh;
}

.spacer {
    height: 100vh;
    width: 100%;
}

.titlecenter {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 100%;
    max-width: 1320px;
}

.titlecenter .text1 {
    color: var(--primary);
    padding: 15px;
    border-radius: 10px;
}

.titlecenter .text2 {
    
    color: #5098b7;
    padding: 15px;
    border-radius: 10px;
}

.titlecenter .text3 {
    
    color: var(--secondary);
    padding: 15px;
    border-radius: 10px;
}

.primary_font_color {
    color: var(--button-hyperlink-lightgreen, #29e8ae);
}


/* .product_services_section {
    padding: 100px 0 100px 0;
} */

.image_content_section {
    display: flex;
    justify-content: space-between;
    gap: 100px;
}

.image_content_section .image_box {
    position: sticky;
    top: 200px;
    flex: 0 0 40%;
    height: min-content;
    overflow: hidden;
    min-height: 710px;
    margin-top: 100px;
}

.image_content_section .image_box img {
    transition: all .8s linear;
    display: none;
    width: 100%;
}

/* .image_content_section .image_box img:first-child, */
.image_content_section .image_box img.active:first-child {
    display: block !important;
}

.image_content_section .image_box img.active {
    animation: clip_animate .8s ease forwards;
    display: block !important;
}

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

.scrollable_content ul {
    margin: 0;
    padding: 100px 0 0 0;
}

.m-zoom {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
/** Himay Custom CSS (25-04-2025) */

/* platform page */
.head-overlay {
    background-color: rgba(0, 0, 0, 0.0);
    width: 100%;
    height: 100vh;
    content: ' ';
    z-index: 0;
    position: absolute;
    top: 0;
    left: 0;

}

.platform-text p{
    font-size: 24px;
    line-height: 34px;
}

.cybersecurity-blue {
    background: linear-gradient(90deg, rgba(10, 89, 156, 1) 0%, rgba(81, 207, 216, 1) 100%);
    width: 100%;
    border-radius: 10px;
}
.cybersecurity-div {
    padding: 30px;
}
.cybersecurity-blue .platform-text {
    font-weight: 500;
}

.cybersecurity-img {
    width: 100%;
}

.cybersecurity-div .platform-text {
    font-size: 24px;
    line-height: 34px;
}
.risk-management-platform-img {
    width: 90%;
    display: none;
}

.risk-bg {
    background: linear-gradient(180deg, rgba(237, 249, 254, 1) 0%, rgba(255, 255, 255, 1) 100%);
}

#services__accordion .accordion {
    position: relative;
    width: 100%;
    height: auto;
    margin-bottom: 10px;
    border-bottom: 1px solid #bfbfbf;
}

.set_images {
    position: sticky;
    top: 100px
}

.set {
    position: relative;
    width: 100%;
    height: auto;
    margin-bottom: 10px;
    border-bottom: 1px solid #bfbfbf;
}

.set>a {
    display: block;
    text-decoration: none;
    padding: 15px 0 0 0;
    font-size: 24px;
    line-height: 30px;
    color: var(--primary) !important;
    font-weight: 450;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    transition: all 0.2s linear;
    /* background-color: #fff; */
}

.set .tag {
    padding-right: 50px;
    position: relative;
    padding-bottom: 15px;
}

.set>a.active .tag {
    color: #62c0ca;
}

.set .fa-angle-up {
    color: var(--secondary);
}

.set .faq-btn {
    width: 30px;
    height: 30px;
    line-height: 32px;
    border-radius: 7px;
    position: relative;
    padding: 0;
    color: #121212 !important;
    font-weight: 600;
    text-align: center;
    z-index: 0;
    font-size: 18px;
    text-align: center;
    position: absolute;
    top: 0px;
    right: 0;
}

.set .faq-btn:hover::after {
    position: absolute;
    width: 100%;
    transition: width 0.5s;
}

.acc-content {
    display: none;
    padding: 0 0 15px 0;
}

.skill-name-detail-div img {
    display: none;
}

.faq-bg p {
    margin-bottom: 0px !important;
    font-size: 16px;
    line-height: 24px;
}

.faq-bg p:last-child {
    margin-bottom: 0px !important;
}

.faq-bg p a {
    color: var(--primary);
}

.ready {
    background-color: #206281;
    height: 100%;
    width: 100%;
    padding: 20px 50px 20px 20px;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.ready h3 {
    color: var(--white);
    font-size: 24px;
    font-weight: 500;
}

.ready p {
    color: var(--white);
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    margin-bottom: 30px;
}

.ready-img {
    position: absolute;
    right: 15px;
    bottom: -15px;
    opacity: 0.4;
    z-index: -1;
}

.contact-expert {
    background-color: #62c0ca;
    height: 100%;
    width: 100%;
    padding: 20px;
    border-radius: 10px;
    position: relative;
    z-index: 1;
}

.contact-expert h3 {
    color: var(--primary);
    font-size: 24px;
    font-weight: 500;
}

.contact-expert p {
    color: var(--primary);
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
}

.contact-expert-call,
.contact-expert-call a {
    font-size: 24px !important;
    font-weight: 400;
    color: var(--primary);
    transition: all 0.4s;
    line-height: 36px;
    z-index: 10;
}

.contact-expert-call br {
    display: none;
}

.contact-expert-call a:hover {
    color: var(--white);
    transition: all 0.4s;
}

.contact-expert-img {
    position: absolute;
    right: 15px;
    bottom: 15px;
    opacity: 0.4;
    z-index: -1;
}

.footer-solution-box-img {
    position: absolute;
    height: 100%;
    right: 0px;
    top: 0;
    opacity: 0.4;
}

.platform-expert {
    background-color: #62c0ca;
    height: 100%;
    width: 100%;
    padding: 20px;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.platform-expert h3 {
    color: var(--primary);
    font-size: 24px;
    font-weight: 500;
}

.platform-expert p,
.thank-you-text {
    color: var(--primary);
    font-size: 18px;
    font-weight: 400;
    line-height: 26px;
    margin-bottom: 30px;
}

.platform-expert-img {
    position: absolute;
    right: -30px;
    bottom: -40px;
    opacity: 0.3;
    z-index: -1;
}
/* platform page end */

/**
 *  Custom CSS
 */
.text-light *{
    color: #f8f9fa !important;
}
.head-text p{
    font-size: 18px;
    line-height: 26px;
    font-weight: 400;
    margin-bottom: 20px !important;
}
.form-floating .wpcf7-form-control-wrap > label {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    padding: 1rem 0.75rem;
    pointer-events: none;
    border: 1px solid transparent;
    transform-origin: 0 0;
    transition: opacity 0.1s ease-in-out, transform 0.1s ease-in-out;
    color: #FFF;
}
/* .form-floating > .form-control:focus ~ label, 
.form-floating > .form-control:not(:placeholder-shown) ~ label, 
.form-floating > .form-select ~ label {
    opacity: 0.65;
    transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
} */
.form-floating .wpcf7-form-control-wrap:focus ~ label{
    opacity: 0.65;
    transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}
.form-floating.ks-select-country >  label {
    opacity: 0.65;
    transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}



.form-check .wpcf7-list-item  {
    display: block;
    min-height: 1.5rem;
    padding-left: 0;
    margin-bottom: 0.125rem;
    margin-left: 0;
}

span.wpcf7-form-control.wpcf7-checkbox.form-check {
    padding: 0;
    margin: 0;
}
.form-terms-check-input .wpcf7-list-item label {
    align-items: center;
}

.wpcf7-acceptance .wpcf7-list-item-label {
        padding-left: 10px;
        font-size: 14px;
        line-height: 20px !important;
        display: inline-block;
        color: #fff;

}
.form-terms-check-input {
    margin-top: 0.25em;
    vertical-align: top;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    border: 1px solid rgba(0, 0, 0, 0.25);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    -webkit-print-color-adjust: exact;
    color-adjust: exact;
    background: transparent;
    border: 1px solid var(--secondary);
    width: 22px;
    height: 22px;
	min-width: 22px;
    border-radius: 0.25em;
}
.wpcf7-acceptance.optional label {
    display: inline-flex;
}

.challenges-looking-checkbox .wpcf7-list-item-label:before{
    content: unset;
}
.form-submit-btn span.wpcf7-spinner {
    display: none !important;
}

.challenges-looking-checkbox .wpcf7-list-item input[type="checkbox"] {

    margin-top: 0.25em;
    vertical-align: top;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    border: 1px solid rgba(0, 0, 0, 0.25);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    -webkit-print-color-adjust: exact;
    color-adjust: exact;

    
        background: transparent;
        border: 1px solid var(--secondary);
        width: 22px;
        height: 22px;
        margin-right: 10px;
        border-radius: 0.25em;
}

.challenges-looking-checkbox .wpcf7-list-item input[type="checkbox"]:checked[type=checkbox],
.form-terms-check-input:checked[type=checkbox]  {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10l3 3l6-6'/%3e%3c/svg%3e");
}

.challenges-looking-checkbox .wpcf7-list-item input[type="checkbox"]:checked[type=checkbox],
.form-terms-check-input:checked[type=checkbox] {
    background-color: var(--secondary);
    border-color: var(--secondary);
}
.challenges-looking-checkbox span.wpcf7-list-item label {
    color: var(--white);
    line-height: 28px;
}

.challenges-looking-checkbox span.wpcf7-list-item {
    margin-bottom: 10px !important;
}


/* solutions */

.solution-list-div {
    width: 100%;
    height: auto;
    padding: 10px;
    border-radius: 10px;
    background-color: #62c0ca;
    height: 430px;
    margin-bottom: 25px;
}

.solution-img-div {
    width: 100%;
    height: 100%;
    background-color: aqua;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.solution-img {
    object-fit: cover;
    height: 100%;
    width: 100%;
    border-radius: 10px;
    transition: all 0.3s;
}

.solution-list-div:hover .solution-img {
    transform: scale(1.1);
    transition: all 0.3s;
}

.solution-overlay {
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(30, 48, 83, .8) 50%, rgba(255, 255, 255, 0) 80%);
    content: "";
    position: absolute;
    top: 0;
    left: 0;
}

.sol-content {
    position: absolute;
    z-index: 10;
    bottom: 10px;
    padding: 10px;
}

.solution-landing-cat {
    color: var(--secondary);
    font-weight: 400;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.solution-landing-title a {
    color: var(--white);
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 10px;
    transition: all 0.3s;
    /* display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
    overflow: hidden; */
}

.solution-landing-title:hover a {
    color: var(--secondary);
    transition: all 0.3s;
}

.solution-landing-text {
    color: var(--white);
    font-size: 16px;
    line-height: 22px;
    width: 100%;
    transition: height 0.3s;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.sol-hide a {
    color: var(--secondary);
    font-weight: 600;
    transition: height 0.3s;
    margin: 0;
    display: inline-block;
    transition: all 0.4s;
}

.sol-hide a:hover {
    color: var(--white);
    transition: all 0.4s;
}

.sol-hide {
    height: 0px;
    visibility: hidden;
    opacity: 0;
    max-height: 0px;
    transition: all 0.3s;
    overflow: hidden;
}

.solution-list-div:hover .sol-hide {
    max-height: 128px;
    height: 100%;
    visibility: visible;
    opacity: 1;
    transition: all 0.3s;
}

.solution-detail-img {
    width: 100%;
    margin-bottom: 20px;
}

.solution-detail-description h5 {
    color: var(--primary);
    font-size: 24px;
    line-height: 36px;
    font-weight: 400;
}

.solution-detail-content ul {
    margin: 0 0 20px 0;
    padding: 0;
}

.solution-detail-content ul li {
    line-height: 22px;
    font-size: 16px;
    color: var(--primary);
    background-image: url(../images/list-bullet.png);
    background-repeat: no-repeat;
    background-position: 0 10px;
    padding: 6px 30px;
}

.solution-detail-content p {
    line-height: 22px;
    font-size: 16px;
    color: var(--primary);
}

.key-feature-div {
    background-image: url(../images/key-bullet.png);
    background-repeat: no-repeat;
    background-position: 0 10px;
    padding: 0 50px 0 50px;
    background-size: 20px 73px;
    min-height: 100px;
    margin-bottom: 20px;
}

.key-feature-title {
    color: var(--white);
    font-size: 24px;
    line-height: 36px;
    font-weight: 500;
}

.key-feature-text {
    color: var(--white);
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
}

.other-solution .swiper-pagination-bullet {
    width: 30px;
    height: 5px;
    border-radius: 0;
    background-color: #62c0ca;
    opacity: 1;
}

.other-solution .swiper-pagination-bullet-active {
    background-color: var(--primary);
}

.other-solution .solution-list-div {
    height: 360px;
}

.other-solution .solution-list-div .solution-landing-title a {
    font-size: 18px;
}


/* contact */
.contact-head {
    background-position: 0 0;
}

.contact-div {
    background-color: #fff;
    border: 1px solid var(--secondary);
    padding: 15px 25px 15px 90px;
    position: relative;
    border-radius: 10px;
    margin-bottom: 10px;
    height: 100%;
}

.contact-div img {
    position: absolute;
    top: 15px;
    left: 15px;
}

.contact-div h4 {
    font-size: 24px;
    line-height: 30px;
    font-weight: 500;
    color: var(--primary);
    margin-bottom: 10px;
}

.contact-div p {
    color: var(--primary);
    line-height: 24px;
    margin-bottom: 8px;
}

.contact-div p a {
    color: var(--primary);
    transition: all 0.3s;
}

.contact-div p a:hover {
    color: var(--secondary);
    transition: all 0.3s;
}

.contact-div.location {
    height: 100%;
}

.contact-div.location p {
    line-height: 30px;
    margin-bottom: 15px;
}

.contact-div.location p span {
    font-weight: 500;
}

.contact-form {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 40px 25px 40px 25px;
    position: relative;
    border-radius: 10px;
    margin-bottom: 10px;
    overflow: hidden;
    position: relative;
    display: block;
}

.contact-dorm-title {
    position: relative;
    padding: 0 0 0 80px;
}

.contact-dorm-title img {
    position: absolute;
    top: 0px;
    left: 10px;
}

.contact-form h4 {
    font-size: 24px;
    line-height: 30px;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 5px;
    color: #fff;
}

.contact-form p {
    color: var(--white);
    line-height: 24px;
    margin-bottom: 8px;
    color: #fff;
}

.request-demo-list {
    margin: 0 0 50px 0;
    padding: 0;
}

.request-demo-list li {
    font-size: 16px;
    line-height: 20px;
    color: var(--primary);
    padding: 7px 0;
    font-weight: 400;
    position: relative;
    padding-left: 20px;
}

.request-demo-list li i {
    position: absolute;
    left: 0;
    top: 10px
}

.request-demo-form {
    background-color: var(--primary);
    padding: 20px;
    border-radius: 10px;
}

.request-demo-link {
    color: var(--secondary);
    font-size: 24px;
    font-weight: 600;
    text-align: center;
    transition: 0.4s;
}

.request-demo-link:hover {
    color: var(--primary);
    transition: 0.4s;
}

.request-demo-link i {
    color: var(--primary);
    margin-left: 10px;
}
.request-comment textarea.form-control {
    height: 100px;
}
.form-terms-check-input {
/*     width:100%; */
}

.form-check.terms {
    padding: 0;
}
.wpcf7-list-item-label a {
    color: var(--secondary);
}
.form-terms-check-input  .wpcf7-list-item label {
    display:inline-flex;
    color: #fff;
    padding-left: 10px;
    font-size: 14px;
    line-height: 20px;
    padding: 0;
}



h2.platform-text.text-light.mb-4.aos-init.aos-animate {
    font-size: 24px;
    line-height: 34px;
}
.wpcf7 form.invalid .wpcf7-response-output, 
.wpcf7 form.unaccepted .wpcf7-response-output, 
.wpcf7 form.payment-required .wpcf7-response-output {
    border-color: red;
    color: red;
}
.ks-select-country option {
    color: #000;
}
.form-terms-check-input input[type="checkbox"] {
    min-width: 22px;
}


.footer-contact-thanks {
    text-align: center;
    font-size: 18px;
    font-weight: 500;
    color: var(--primary);
}

.footer-contact-thanks a {
    color: var(--primary);
}

.footer-contact-thanks a:hover {
    color: var(--secondary);
}

.partner-box {
    width: 100%;
    height: 100%;
    padding: 20px;
    background-color: #f2fafe;
    border: 1px solid var(--secondary);
    border-radius: 10px;
}

.partner-box img {
    margin-bottom: 20px;
}

.partner-box h4 {
    color: var(--secondary);
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 20px;
}

.partner-box p {
    font-size: 16px;
    margin-bottom: 0;
}

.partnership-logo {
    width: 100%;
    height: 100px;
    border: 1px solid #62c0ca;
    border-radius: 10px;
    background-color: #fff;
    position: relative;
    margin: 0 auto;
}

.partnership-logo-img {
    max-width: 100%;
    max-height: 100px;
    width: auto;
    margin: auto;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    position: absolute;
}

.abt-btn-center{
    text-align: left;
}

.about-wedget img {
    margin-bottom: 10px;
}

.about-wedget h4 {
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 10px;
    color: var(--white);
    font-weight: 500;
}

.leadership-team {
    background-color: var(--primary);
    width: calc(100% - 30px);
    padding: 30px;
    border-radius: 15px;
    position: absolute;
    left: 50%;
    top: -300px;
    display: block;
    transform: translateX(-50%);
}

.pb-100 {
    padding-bottom: 175px !important;
}

.pt-100 {
    padding-top: 175px !important;
}

.ceo-div {
    width: 100%;
    background-color: var(--primary);
    border-radius: 10px;
    padding: 30px 30px 30px 270px;
    position: relative;
}

.ceo-div h4 {
    font-size: 24px;
    font-weight: 500;
    color: var(--secondary);
    margin-bottom: 5px;
}

.ceo-div h5 {
    font-size: 16px;
    font-weight: 500;
    color: var(--secondary);
    margin-bottom: 20px;
}

.ceo-div p {
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
    color: var(--white);
}

.ceo-img {
    max-width: 100%;
    position: absolute;
    top: 30px;
    left: 30px;
    border-radius: 50%;
    width: 200px;
    height: 200px;
}

.linkedin-link {
    width: 48px;
    height: 48px;
    border-radius: 50px;
    font-size: 22px;
    line-height: 48px;
    border: 1px solid var(--secondary);
    text-align: center;
    color: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.linkedin-link:hover {
    color: var(--white);
    border: 1px solid var(--white);
    transition: all 0.3s;
}

.join-team {
    width: 100%;
    background-color: #f1fafd;
}

.cyber-security-team {
    width: 100%;
    background-color: #fff;
    border-radius: 10px;
    border: 1px solid var(--secondary);
    padding: 30px 30px 10px 30px;
    text-align: center;
    cursor: pointer;
}

.cyber-security-team img{
    border-radius: 50%;
    width: 200px;
    height: 200px;
}

.cyber-security-team h4 {
    color: var(--primary);
    font-weight: 500;
    font-size: 24px;
}

.cyber-security-team p {
    font-size: 16px;
}

.cyber-security-btn {
    color: var(--primary);
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 5px;
    display: block;
    margin: 0 auto;
    font-size: 20px;
    transition: all 0.4s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cyber-security-btn:hover {
    background-color: var(--secondary);
    color: var(--primary);
    transition: all 0.4s;
}

.cyber-security-team-detail {
    display: none;
    width: 100%;
    background-color: var(--primary);
    border-radius: 10px;
    padding: 20px 30px;
    position: relative;
}

.cyber-security-team-detail p {
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
    margin-bottom: 0;
    color: var(--white);
}

.detail-close {
    color: var(--secondary);
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 5px;
    display: block;
    margin: 0 auto;
    font-size: 20px;
    transition: all 0.4s;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.detail-close:hover {
    background-color: var(--secondary);
    color: var(--primary);
    transition: all 0.4s;
}

.arrow-top{
    margin-top: 15px;
}

.arrow-top:after {
    content: " ";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -15px;
    border-top: none;
    border-right: 15px solid transparent;
    border-left: 15px solid transparent;
    border-bottom: 15px solid var(--primary);
}

.awards {
    width: 100%;
    position: relative;
    background-color: #fff;
    border: 1px solid var(--secondary);
    padding: 15px;
    border-radius: 10px;
    height: 100%;
}

.awards img {
    width: auto;
}

.awards h4 {
    color: var(--secondary);
    font-weight: 500;
    font-size: 24px;
    margin: 15px 0;
}

.awards p {
    font-weight: 400;
    font-size: 20px;
    margin-bottom: 15px;
    line-height: 28px;
}

.career-img {
    width: 100%;
    border-radius: 15px;
}

.career-accordion-bg {
    background-color: #edf9fe;
}

.career-accordion {
    position: absolute;
    top: 60px;
    left: 0;
    height: 700px !important;
    width: auto !important;
    z-index: 0;
    opacity: 0.6;
}

.career .accordion-item {
    width: 100%;
    margin-bottom: 15px;
    background-color: transparent;
    border: 0;
    border-radius: 10px !important;
    overflow: hidden;
}

.career .accordion-button {
    background-color: #d2f2f6;
    border-radius: 10px;
    color: var(--primary);
    font-size: 24px;
    font-weight: 500;
    padding-top: 20px;
    padding-bottom: 20px;
    line-height: 30px;
}

.career .accordion-button:not(.collapsed) {
    background-color: var(--secondary);
    border-radius: 10px;
    color: var(--primary);
}

.career p {
    color: var(--primary);
    font-size: 16px;
    font-weight: 400;
}

.career p>span,
.career p.bold {
    color: var(--primary);
    font-size: 16px;
    font-weight: 500;
}

.career .primary-title {
    color: var(--primary);
    font-size: 20px;
    font-weight: 500;
}

.career .secondary-title {
    color: var(--secondary);
    font-size: 18px;
    font-weight: 500;
}

.accordion-button::after{
    background-image: url(../images/career-plus.png);
}

.accordion-button:not(.collapsed)::after {
    background-image: url(../images/career-minus.png);
}

.career ul{
    margin: 0;
    padding: 0;
}

.career ul li {
    line-height: 26px;
    font-size: 16px;
    color: var(--primary);
    background-image: url(../images/career-list-icon.png);
    background-repeat: no-repeat;
    background-position: 0 12px;
    padding: 6px 17px;
}

.career-form{
    background-color: var(--primary);
    padding: 50px 80px;
    border-radius: 15px;
    /* position: absolute;
    z-index: 100; */
    margin-top: -150px
}

input::file-selector-button {
    font-weight: 500;
	border: 0px !important;	
	float: right;
    color: var(--primary) !important;
	background: var(--secondary) !important;
    border-radius: 5px !important;
}

.form-floating > .form-control:not(:placeholder-shown) {
    padding-top: 18px !important;
}

.career-form-div{
    height: 500px;
}

.input-group-text{
    height: 58px;    
    line-height: 58px;
    padding: 0 18px;
    background-color: var(--primary);
    border: 1px solid var(--secondary);
    border-radius: 0 10px 10px 0;
    color: var(--secondary);
    font-size: 16px;
}

.datepicker {
    padding: 8px !important;
}

.desktop-team{
    display: block;
}

.mobile-team{
    display: none;
}

.case-study{
    width: 100%;
    background-color: var(--white);
    border: 1px solid var(--secondary);
    border-radius: 10px;
    padding: 15px;
}

.case-study img{
    margin-bottom: 20px !important;
}

.case-study h4 a{
    font-size: 24px;
    line-height: 36px;
    font-weight: 500;
    height: 108px;
    color: var(--primary);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.case-study:hover h4 a{
    color: var(--secondary);
}

.case-study a{
    color: var(--secondary);
    font-size: 16px;
    font-weight: 400;
    transition: all 0.4s;
    margin-bottom: 20px !important;
}

.case-study:hover a{
    color: var(--primary);
    transition: all 0.4s;
}

.case-study a i{
    margin-left: 5px;
    transition: all 0.4s;
}

.case-study a:hover i{
    margin-left: 10px;
    transition: all 0.4s;
}

.chalange-div{
    background-color: var(--primary);
    padding: 25px;
    width: calc(100% - 25px);
    border-radius: 15px;
    position: absolute;
    top: -325px;
    z-index: 100;
}

.chalange-div .platform-text{
    font-size: 24px;
    line-height: 36px;
}

.chalange-div p{
    font-size: 16px;
}

.chalange-pb-150{
    padding-bottom: 200px;
}

.chalange-pt-150{
    padding-top: 200px;
}

.solution-provide{
    background-color: #fafdff;
    padding: 20px;
    border-radius: 10px;
    border: 1px solid var(--secondary);
    height: 100%;
}

.solution-provide img{
    margin-bottom: 15px !important;
}

.solution-provide h4{
    font-size: 24px;
    line-height: 30px;
    font-weight: 500;
    color: var(--secondary);
}

.solution-provide p{
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 0;
}

.implementation{
    padding: 0 0 0 25px;
    position: relative;
}

.implementation::after{
    width: 8px;
    height: 100%;
    position: absolute;
    top : 0;
    left : 0;
    background-color: var(--secondary);
    content: " ";
    border-radius: 5px;
}

.implementation p{
    font-size: 18px;
    line-height: 26px;
    margin-bottom: 10px;
}

.implementation h4{
    font-size: 36px;
    line-height: 40px;
    color: var(--secondary);
    font-weight: 500;
}

.news-events-page{
    background-color: #62c0ca;
    padding: 10px;
    border-radius: 10px;
    position: relative;
}

.news-events-page .label{
    font-size: 16px;
    line-height: 25px;
    padding: 0px 10px;
    background-color: rgba(18,16,40,0.8);
    border-radius: 5px;
    position: absolute;
    z-index: 1;
    color: #fff;
    top: 20px;
    left : 20px
}


.news-events-img-div{
    width: 100%;
    height: 250px;
    border-radius: 10px 10px 0 0;
    overflow: hidden;
    position: relative;
}

.news-events-img-div .overlay{
    background-color: rgba(0, 0, 0, .5);
    width: 100%;
    height: 0;
    top: 50%;
    left : 0;
    transform: translateY(-50%);
    position: absolute;
    transition: height 0.3s;
}

.news-events-img-div:hover .overlay{
    height: 100%;
    transition: height 0.3s;
}

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

.news-events{
    background-color: #edf9fe;
    padding: 15px;
    border-radius: 0 0 10px 10px;
}

.news-events .date{
    font-size: 16px;
    font-weight: 400;
    color: var(--primary);
    margin-bottom: 5px;
}

.news-events h4{
    font-size: 20px;
    line-height: 25px;
    font-weight: 500;
    color: var(--primary);
    margin-bottom: 10px;
    height: 75px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-events a{
    color: var(--secondary);
    font-size: 16px;
    transition: all 0.4s;
}

.news-events a i{
    margin-left: 5px;
    transition: all 0.4s;
}

.news-events a:hover{
    color: var(--primary);
    transition: all 0.4s;
}

.news-events a:hover i{
    margin-left: 10px;
    transition: all 0.4s;
}

.back-head a{
    color: var(--white);
    font-size: 16px;
    transition: all 0.3s;
}

.back-head a:hover{
    color: var(--primary);
    transition: all 0.3s;
}


.news-events-detail-img-div{
    background-color: #edf9fe;
    width: 100%;
    height: 470px;
    border-radius: 15px !important;
    width: 100% !important;
    position: relative !important;

}

.news-events-detail-img {
    max-width: 100%;
    max-height: 470px !important;
    width: auto !important;
    vertical-align: middle !important;
    margin: auto !important;
    top: 0 !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    position: absolute !important;
    border-radius: 15px !important;
}

.news-events-swiper{
    border-radius: 10px;
}

.news-events-button-next,
.news-events-button-prev{
    font-size: 18px;
    line-height: 40px;
    width: 40px;
    height: 40px;
    position: absolute;
    z-index: 1;
    top :50%;
    transform: translateY(-50%);
    background-color: var(--primary);
    color: var(--secondary);
    text-align: center;
    border-radius: 5px;
    transition: all 0.3s;
}
.news-events-button-next i,
.news-events-button-prev i {
    line-height: 40px;
}
.news-events-button-next{
    right : 10px;
    display: block;
}

.news-events-button-prev{
    left : 10px;
    display: block;
}

.news-events-button-next:hover,
.news-events-button-prev:hover{
    background-color: var(--secondary);
    color: var(--primary);
    transition: all 0.3s;
}

.detail-date{
    font-size: 16px;
    font-weight: 500;
    line-height: 25px;
}

.detail-date a{
    background-color: var(--secondary);
    text-align: center;
    color: var(--primary) !important;
    width: 32px;
    height: 32px;
    line-height: 32px;
    display: inline-block;
    border-radius: 5px;
    transition: all 0.3s;
}

.detail-date a:hover{
    background-color: var(--primary);
    color: var(--secondary);
    transition: all 0.3s;
}

.news-detail-text h5{
    font-size: 20px;
    font-weight: 500;
    color: var(--primary);
    margin-bottom: 10px;
}

.news-detail-text p{
    font-size: 16px;
    line-height: 26px;
    color: var(--primary);
}

.news-detail-text p strong{
    font-weight: 500;
}

.news-detail-text p a{
    color: var(--secondary);
    transition: all 0.4s;
}

.news-detail-text p a:hover{
    color: var(--primary);
    transition: all 0.4s;
    border-bottom: 1px solid var(--primary);
}

.news-detail-text ul{
    margin: 0 0 20px 0;
    padding: 0;
}

.news-detail-text ul li{
    font-size: 16px;
    line-height: 26px;
    color: var(--primary);
    padding-left: 20px;
    background-image: url(../images/news-detail-li.png);
    background-position: 0px 8px;
    background-repeat: no-repeat;
    position: relative;
    margin-bottom: 10px;
}

.news-detail-text ul li strong{
    font-size: 16px;
    line-height: 26px;
    font-weight: 500;
    color: var(--primary);
}

.news-detail-text ul li a{
    font-size: 16px;
    line-height: 26px;
    color: var(--secondary);
}

.news-detail-text ul li a:hover{
    color: var(--secondary);
    border-bottom: 1px solid var(--primary);
    transition: all 0.3s;
}

.news-detail-text img{
    max-width: 100%;
    width: auto;
    margin-bottom: 20px;
}

.news-detail h5{
    font-size: 20px;
    font-weight: 500;
    color: var(--primary);
    margin-bottom: 10px;
}

.news-detail p{
    font-size: 16px;
    line-height: 26px;
    color: var(--primary);
}

.news-detail p strong{
    font-weight: 500;
}

.news-detail p a:not(.btn){
    color: var(--secondary);
    transition: all 0.4s;
}

.news-detail p a:hover{
    color: var(--primary);
    transition: all 0.4s;
    border-bottom: 1px solid var(--primary);
}

.news-detail ul{
    margin: 0 0 20px 0;
    padding: 0;
}

.news-detail ul li{
    font-size: 16px;
    line-height: 26px;
    color: var(--primary);
    padding-left: 20px;
    background-image: url(../images/news-detail-li.png);
    background-position: 0px 8px;
    background-repeat: no-repeat;
    position: relative;
    margin-bottom: 10px;
}

.news-detail ul li strong{
    font-size: 16px;
    line-height: 26px;
    font-weight: 500;
    color: var(--primary);
}

.news-detail ul li a{
    font-size: 16px;
    line-height: 26px;
    color: var(--secondary);
}

.news-detail ul li a:hover{
    color: var(--secondary);
    border-bottom: 1px solid var(--primary);
    transition: all 0.3s;
}

.news-detail img{
    max-width: 100%;
    width: auto;
    margin-bottom: 20px;
}

.news-event-sidebar-div{
    background-color: var(--secondary);
    border-radius: 10px;
    padding: 10px;
}

.news-event-sidebar{
    background-color: #edf9fe;
    border-radius: 10px;
    padding: 15px;
}

.news-event-sidebar h4{
    color: var(--secondary);
    margin-bottom: 20px;
    font-weight: 500;
    font-size: 16px;
}

.news-sidebar{
    margin-bottom: 20px;
}

.news-sidebar .date{
    font-size: 16px;
    margin-bottom: 0;
}

.news-sidebar .news-title{
    font-size: 18px !important;
    font-weight: 500;
    margin-bottom: 0;
    line-height: 24px;
    transition: all 0.4s;
}

.news-sidebar .news-title:hover{
    color: var(--secondary);
    transition: all 0.4s;
}

.news-back-link{
    color: var(--secondary);
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s;
}

.news-back-link:hover{
    color: var(--primary);
    transition: all 0.3s;
}

.news-back-link i{
    color: var(--primary) !important;
}

.news-detail{
    padding-right: 50px;
}

.news-detail-bg{
    position: absolute;
    top :0;
    z-index: -1;
}

.blog-img-div{
    width: 425px;   
    height: 250px;

}

.blog-img-div {
    height: 275px;
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

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

.blog-img-div .overlay{
    background-color: rgba(0, 0, 0, 0.4);
    width: 100%;
    height: 0;
    top: 50%;
    left : 0;
    transform: translateY(-50%);
    position: absolute;
    transition: height 0.3s;
}

.blog-img-div:hover .overlay{
    height: 100%;
    transform: translateY(-50%);
}

.blog-page-title{
    position: absolute;
    width: 100%;
    top : 50%;
    transform: translateY(-50%);
}

.blog-page-title p{
    font-size: 16px;
}

.blog-page-title h4{
    font-size: 24px;
    color: var(--primary);
    line-height: 32px;
    font-weight: 500;
    margin-bottom: 20px;
}

.blog-page-title a{
    color: var(--secondary);
    transition: all 0.3s;
    font-size: 16px;
    font-weight: 450;
}

.blog-page-title a:hover{
    color: var(--primary);
    transition: all 0.3s;
}

.blog-page-title a i{
    margin-left: 5px;
    transition: all 0.3s;
}

.blog-page-title a:hover i{
    margin-left: 10px;
    transition: all 0.3s;
}
.contact-div p:last-child {
    margin-bottom: 0;
}
div#datepicker .wpcf7-form-control-wrap {
    flex: 1 1 auto;
}
div#datepicker .wpcf7-form-control-wrap input {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}
.form-floating.upload-file .wpcf7-form-control-wrap .wpcf7-file {
    line-height: unset !important;
    
}
.form-floating.upload-file .wpcf7-form-control-wrap .wpcf7-file:not(:placeholder-shown) {
    padding-top: 18px !important;
}

.form-floating.input-focus label,
.form-floating.input-no-empty label{
    opacity: 0.65;
    transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}
.form-floating input{
    padding-top: 26px !important;
    padding-bottom: 10px !important;
}
.form-floating:not(.input-focus,.input-no-empty,.input-focus.upload-file) input{
    font-size: 0;
}
.light-blue-bg {
    background-color: #72d0d7;
}
.enhancing {
    background-position: center -100px;
}
h3.large-text.text-center {
    line-height: 1.2;
}
.form-floating.upload-file input {
    font-size: unset !important;
}
/* For Chrome, Safari, Edge */
input[type="date"]::-webkit-calendar-picker-indicator {
    /* display: none;
    -webkit-appearance: none; */
}
input[type="date"]::-webkit-calendar-picker-indicator {
    /* opacity: 0;       
    pointer-events: none; */
  }
/* For Firefox */
/* input[type="date"] {
    -moz-appearance: textfield;
} */
.loader-div {
	width: 100%;
	height: 100vh;
	background: linear-gradient(135deg,rgba(13, 70, 131, 1) 0%, rgba(81, 208, 215, 1) 100%);
	z-index: 99999;
	position: fixed;
	/* display: none; */
	overflow: hidden;
}

.loader-div-container {
	position: absolute;
	top: 40%;
	left: 50%;
	transform: translate(-50%, -40%);
	text-align: center;
    padding: 15px;
}
.main-banner {
    max-height: calc(100% - 115px);
}



.testimonials-div{
    background-color: rgba(241, 250, 253, 0.7);
    border: 1px solid var(--secondary);
    border-radius: 10px;
    padding: 15px;
    margin: 25px 0;
    
}


.testimonials-div .testimonials-icon{
    margin-bottom: 20px;
}


.testimonials-div p{
    font-size: 16px;
}


.testimonial-name-div{
    padding: 0 0 0 65px;
    position: relative;
}


.testimonial-name-div img{
    width: 50px;
    height: 50px;
    border-radius: 50px;
    border: 1px solid var(--secondary);
    position: absolute;
    left : 0;
}
.testimonials-div p.name{
    font-size: 20px;
    color: var(--secondary);
    line-height: 28px;
    margin: 0;
    font-weight: 500;
}


.testimonials-div p.company{
    font-size: 16px;
    font-weight: 400;
    color: var(--secondary);
    line-height: 20px;
    margin: 0 0 15px 0;
}


.googe-review-text{
    font-size: 24px;
    color: var(--primary);
    font-weight: 500;
    text-align: center;
    line-height: 60px;
}


.googe-review-text br{
    display: none;
}





.blog-large {
    height: 515px;
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    margin-bottom: 15px;
}


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


.overlay-gradiant{
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg,rgba(0, 0, 0, 0.9) 20%, rgba(81, 208, 215, 0) 50%);
    content: " ";
    position: absolute;
    top :0;
    left : 0
}


.blog-large-title{
    position: absolute;
    width: 100%;
    bottom : 0;
    padding: 20px;
}


.blog-large-title p{
    font-size: 16px;
    color: var(--white)
}


.blog-large-title h4{
    font-size: 24px;
    color: var(--white);
    line-height: 32px;
    font-weight: 500;
    margin-bottom: 20px;
    height: 64px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}


.blog-large-title a{
    color: var(--secondary);
    transition: all 0.3s;
    font-size: 16px;
    font-weight: 450;
}


.blog-large-title a:hover{
    color: var(--white);
    transition: all 0.3s;
}


.blog-large-title a i{
    margin-left: 5px;
    transition: all 0.3s;
}


.blog-large-title a:hover i{
    margin-left: 10px;
    transition: all 0.3s;
}


.blog-large .overlay{
    background-color: rgba(0, 0, 0, 0.4);
    width: 100%;
    height: 0;
    top: 50%;
    left : 0;
    transform: translateY(-50%);
    position: absolute;
    transition: height 0.3s;
}


.blog-large:hover .overlay{
    height: 100%;
    transform: translateY(-50%);
}


































.blog-small {
    /* height: 100%; */
    height: 250px;
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    margin-bottom: 15px;
}


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


.overlay-small-gradiant{
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    content: " ";
    position: absolute;
    top :0;
    left : 0;
    transition: all 0.3s;
}


.blog-small:hover .overlay-small-gradiant{
    background-color: rgba(0, 0, 0, 0.6);
    transition: all 0.3s;
}


.blog-small-title{
    position: absolute;
    width: 100%;
    bottom : 0;
    padding: 15px;
}


.blog-small-title p{
    font-size: 16px;
    color: var(--white);
    margin-bottom: 10px;
}


.blog-small-title h4{
    font-size: 20px;
    color: var(--white);
    line-height: 26px;
    font-weight: 500;
    margin-bottom: 0px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}








.blog-detail-img-div{
    background-color: #edf9fe;
    width: 100%;
    height: 570px;
    border-radius: 15px !important;
    width: 100% !important;
    position: relative !important;
}


.blog-detail-img {
    max-width: 100%;
    max-height: 570px !important;
    width: auto !important;
    vertical-align: middle !important;
    margin: auto !important;
    top: 0 !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    position: absolute !important;
    border-radius: 15px !important;
}




.blog-detail h5{
    font-size: 20px;
    font-weight: 500;
    color: var(--primary);
    margin-bottom: 10px;
}


.blog-detail p{
    font-size: 16px;
    line-height: 26px;
    color: var(--primary);
}


.blog-detail p strong{
    font-weight: 500;
}


.blog-detail p a{
    color: var(--secondary);
    transition: all 0.4s;
}


.blog-detail p a:hover{
    color: var(--primary);
    transition: all 0.4s;
    border-bottom: 1px solid var(--primary);
}


.blog-detail ul{
    margin: 0 0 20px 0;
    padding: 0;
}


.blog-detail ul li{
    font-size: 16px;
    line-height: 26px;
    color: var(--primary);
    padding-left: 20px;
    background-image: url(../images/news-detail-li.png);
    background-position: 0px 8px;
    background-repeat: no-repeat;
    position: relative;
    margin-bottom: 10px;
}


.blog-detail ul li strong{
    font-size: 16px;
    line-height: 26px;
    font-weight: 500;
    color: var(--primary);
}


.blog-detail ul li a{
    font-size: 16px;
    line-height: 26px;
    color: var(--secondary);
}


.blog-detail ul li a:hover{
    color: var(--secondary);
    border-bottom: 1px solid var(--primary);
    transition: all 0.3s;
}


.blog-detail img{
    max-width: 100%;
    width: auto;
    margin-bottom: 20px;
}


.blog-sidebar-div{
    background-color: var(--secondary);
    border-radius: 10px;
    padding: 10px;
}


.blog-sidebar{
    background-color: #edf9fe;
    border-radius: 10px;
    padding: 15px;
}


.sidebar-title,
.blog-sidebar h4{
    color: var(--primary);
    margin-bottom: 20px;
    font-weight: 500;
    font-size: 16px;
}


.feature-tag a{
    line-height: 36px;
    height: 36px;
    width: auto;
    background-color: var(--secondary);
    color: var(--primary);
    border-radius: 50px;
    display: inline-block;
    padding: 0 15px;
    margin: 5px 3px;
    font-weight: 400;
    transition: all 0.4s;
}


.feature-tag a:hover{
    background-color: var(--primary);
    color: var(--white);
    transition: all 0.4s;
}


.other-blog{
    background-color: #edf9fe;
}


.blog-platform{
    background-color: var(--secondary);
    width: 100%;
    padding: 20px;
    border-radius: 10px;
}


.blog-platform h3{
    font-size: 24px;
    line-height: 30px;
}


.blog-platform p{
    font-size: 18px;
    color: var(--primary);
}


.other-blogss{
    background-color: #edf9fe;
}


.other-blogs .swiper-pagination-bullet {
    width: 30px;
    height: 5px;
    border-radius: 0;
    background-color: #62c0ca;
    opacity: 1;
}


.other-blogs .swiper-pagination-bullet-active {
    background-color: var(--primary);
}




.terms-title{
    font-size: 20px;
    line-height: 34px;
    font-weight: 500;
    margin-bottom: 0;
}


.terms-text{
    font-size: 16px;
    color: var(--primary);
    font-weight: 400;
}


.terms-text a{
    color: var(--secondary);
}


.terms-text a:hover{
    color: var(--primary);
}




.terms ul{
    margin: 0 0 20px 0;
    padding: 0;
}


.terms ul li{
    font-size: 16px;
    line-height: 26px;
    color: var(--primary);
    padding-left: 20px;
    background-image: url(../images/news-detail-li.png);
    background-position: 0px 8px;
    background-repeat: no-repeat;
    position: relative;
    margin-bottom: 5px;
}


.terms ul li strong{
    font-size: 16px;
    line-height: 26px;
    font-weight: 500;
    color: var(--primary);
}


.terms ul li a{
    font-size: 16px;
    line-height: 26px;
    color: var(--secondary);
}


.terms ul li a:hover{
    color: var(--secondary);
    border-bottom: 1px solid var(--primary);
    transition: all 0.3s;
}
.detail-date a i {
    line-height: 32px;
}


.featured-tags-mobile, .blog-platform-mobile {
    display: none;
}

input[type="date"]::-webkit-calendar-picker-indicator {
    opacity: 0;
    cursor: pointer;
    position: absolute;
    right: 10px;
    z-index: 3;
    width: 100%;
}