/*=============== GOOGLE FONTS ===============*/
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Jost:ital,wght@0,100..900;1,100..900&family=Lexend:wght@100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Nobile:ital,wght@0,400;0,500;0,700;1,400;1,500;1,700&family=Rubik:ital,wght@0,300..900;1,300..900&family=Trispace:wght@100..800&display=swap');
@import url("https://fonts.googleapis.com/css2?family=Nobile:ital,wght@0,400;0,500;0,700;1,400;1,500;1,700&family=Rubik:ital,wght@0,300..900;1,300..900&display=swap");
/*=============== VARIABLES CSS ===============*/
:root {
    --header-height: 3.5rem;

    /*========== Colors ==========*/
    /*Color mode HSL(hue, saturation, lightness)*/
    --first-color: hsl(230, 75%, 56%);
    --title-color: hsl(230, 75%, 15%);
    --text-color: hsl(230, 12%, 40%);
    --body-color: #101622;
    --container-color: hsl(230, 100%, 97%);
    --border-color: hsl(230, 25%, 80%);
    --color-white: #ffffff;
    --shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px,
        rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
    --it-common-white: #ffffff;
    --it-common-black: #0e2a46;
    --it-common-black-2: #4d5756;
    --it-common-yellow: #f2a227;
    --it-common-yellow-2: #fc9f0b;
    --it-heading-primary: #0e2a46;
    --it-grey-1: #f2f2f2;
    --it-grey-2: #f3f5f5;
    --it-text-body: #333931;
    --it-theme-1: #0ab99d;
    --it-theme-2: #116e63;
    --it-theme-3: #2356f6;
    --it-theme-4: #22a3d1;
    --it-theme-5: #ff9e0e;
    --color-black: #000000;
    --card-clr: #161922;
    --body-clr: #191d28;
    --primary-clr: #006aff;
    --heading-clr: #dadada;
    --text-clr: #767a86;
    --font-family: "Rubik", sans-serif;
    --font-family-secondary: "Inter", sans-serif;
    /*========== Font and typography ==========*/
    /*.5rem = 8px | 1rem = 16px ...*/
    --body-font: var(--font-family);
    --h2-font-size: 1.25rem;
    --normal-font-size: 0.938rem;

    /*========== Font weight ==========*/
    --font-regular: 400;
    --font-medium: 500;
    --font-semi-bold: 600;

    /*========== z index ==========*/
    --z-fixed: 100;
    --z-modal: 1000;
}

/*========== Responsive typography ==========*/
@media screen and (min-width: 1023px) {
    :root {
        --h2-font-size: 1.5rem;
        --normal-font-size: 1rem;
    }
}

/*=============== BASE ===============*/
* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

html {
    scroll-behavior: smooth;
}

img{
    max-width: 100%;
    height: auto;
}

body,
input,
button {
    font-family: var(--font-family);
    font-size: var(--normal-font-size);
    /* background-color: var(--body-color); */
    color: var(--text-color);
}

h1, h2, h5 {
    color: var(--title-color);
}

.card {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
}

.training-container {
    background-color: #0D1117;
    color: #c9d1d9;
    padding: 2rem;
}

.training-header {
    background: url('https://via.placeholder.com/1200x400') no-repeat center center;
    background-size: cover;
    padding: 4rem 2rem;
    border-radius: 0.5rem;
    text-align: center;
    margin-bottom: 3rem;
}

.training-header h1 {
    font-size: 3rem;
    font-weight: bold;
    color: white;
}

.training-header p {
    font-size: 1.25rem;
    color: #c9d1d9;
}

.training-section {
    /* background:#101622; */
}

.training-section h2 {
    font-size: 2rem;
    font-weight: bold;
    color: white;
    margin-bottom: 1.5rem;
}

#explore-resources{
    padding-top: 100px;
}

.explore-resource-card {
    background-color: #18202D;
    border: 1px solid #18202D;
    border-radius: 0.9rem;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    transition: background-color 0.3s ease;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 50px;
    height: 13rem;
}

.explore-resource-card img {
    width: 80px;
    height: 80px;
    border-radius: 0.5rem;
    margin-right: 1.5rem;
}

.explore-resource-card-content h5 {
    font-size: 1.25rem;
    font-weight: bold;
    color: white;
}

.explore-resource-card-content p {
    color: #c9d1d9;
}

.btn-resource {
    background-color: #172B53;
    border: 1px solid #172B53;
    padding: 10px 15px;
    color: var(--primary-clr);
    border-radius:5px;
    font-family: var(--font-family);
    font-size: 1rem;
    font-weight: bold;
    transition: background-color 0.3s ease;
    cursor: pointer;
    margin-top: 1.7rem;
    width: 100%;
}


.btn-resource:hover {
    background-color: #172B53;
    color: var(--primary-clr);
}

.explore-resource-card-content a {
    color: #58a6ff;
    text-decoration: none;
}

.training-request-form {
    background-color: #161B22;
    padding: 2rem;
    border-radius: 0.5rem;
    border: 1px solid #30363d;
}

.training-request-form .form-label {
    color: #c9d1d9;
}

.training-request-form .form-control,
.training-request-form .form-select {
    background-color: #0D1117;
    color: #c9d1d9;
    border: 1px solid #30363d;
}

.training-request-form .form-control::placeholder {
    color: #8b949e;
}

.training-request-form .form-text {
    color: #8b949e;
}

input,
button {
    border: none;
    outline: none;
}

ul {
    list-style: none;
}

a {
    text-decoration: none !important;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

.ptb100 {
    padding-top: 100px;
    padding-bottom: 100px;
}

.mtb50{
  margin-top: 50px;
  margin-bottom: 50px;
}

.mtb100{
    margin-top: 100px;
    margin-bottom: 100px;
}

.ptb50 {
    padding-top: 50px;
    padding-bottom: 50px;
}

.btn {
    display: inline-block;
    overflow: hidden;
    transform: perspective(0) translateZ(0);
    background: linear-gradient(195deg, #1d89ff 0%, #0e45a1 100%);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    border-color: transparent;
    color: #ffffff !important;
    border: 0;
    border-style: solid;
    box-shadow: none;
    transition: all 0.5s ease 0s;
    cursor: pointer;
    z-index: 1;
    position: relative;
    
}

.btn-space{
   padding:10px 40px !important;
}


.btn::before {
    content: "";
    background: #0e0e0e;
    height: 50%;
    width: 0;
    position: absolute;
    top: 0;
    left: 0;
    right: auto;
    transition: 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    z-index: -1;
}

.btn::after {
    content: "";
    background: #0e0e0e;
    height: 50%;
    width: 0;
    position: absolute;
    bottom: 0;
    right: 0;
    left: auto;
    transition: 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    z-index: -1;
}

.btn:hover {
    color: #ffffff;
    background-color: #0e0e0e;
}

.btn:focus,
.btn:focus:active {
    box-shadow: none;
}

.btn:hover {
    color: #ffffff;
}

.btn:hover::before {
    width: 100%;
    right: 0;
    left: auto;
}

.btn:hover::after {
    width: 100%;
    left: 0;
    right: auto;
}

/*=============== REUSABLE CSS CLASSES ===============*/

.section-spacing {
    margin-bottom: 90px;
}

.section-padding {
    padding-bottom: 90px;
    padding-top: 90px;
}

/*=============== HEADER & NAV ===============*/
/*----------------------------------------*/
/*  02. Header CSS
/*----------------------------------------*/
/*--
/*  2.1 - Header Top CSS
/*----------------------------------------*/
.header-section {
    background: var(--color-white);
    width: 100%;
    z-index: 999;
}

.pbt30{
    padding-top:30px;
    padding-bottom:30px;
}

@media screen and (max-width: 991px) {
    .header-section {
        padding: 20px 10px;
    }
}

@media screen and (max-width: 320px) {
    .header-section {
        height: 75px;
    }
}

.header-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-logo a img {
    width: 100px;
}

@media only screen and (max-width: 1199px) {
    .header-logo a img {
        width: 70px;
    }
}

.header-menu .main-menu {
    display: flex;
}

.header-menu .main-menu li {
    position: relative;
    padding: 30px 25px;
}

@media only screen and (max-width: 1199px) {
    .header-menu .main-menu li {
        padding: 30px 20px;
    }
}

.header-menu .main-menu li a {
    font-size: 15px;
    font-family: var(--font-family);
    font-weight: 700;
    text-transform: capitalize;
    color: var(--color-black);
}

.header-menu .main-menu li.active-menu > a {
    color: #1d89ff;
}

.header-menu .main-menu li.active-menu > .menu-icon::after {
    color: #1d89ff;
}

.header-menu .main-menu li .menu-icon::after {
    content: "\f16c";
    font-family: "flaticon";
    font-size: 10px;
    color: #94a0b9;
    margin-left: 5px;
    transition: all 0.3s linear;
}

.header-menu .main-menu li:hover > .menu-icon::after {
    color: #1d89ff;
}

.header-menu .main-menu li:hover > a {
    color: #1d89ff;
}

.header-menu .main-menu li:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    top: 100%;
}

.header-menu .main-menu li .sub-menu {
    position: absolute;
    left: 0;
    top: 110%;
    width: 270px;
    background: #ffffff;
    box-shadow: 0 2px 29px rgba(0, 0, 0, 0.05);
    padding: 20px 0;
    border-radius: 5px;
    border-top: 3px solid #1d89ff;
    opacity: 0;
    z-index: 99;
    visibility: hidden;
    transition: all 0.3s linear;
}

.header-menu .main-menu li .sub-menu li {
    padding: 0;
}

.header-menu .main-menu li .sub-menu li a {
    padding: 5px 25px;
    font-size: 15px;
    font-family: var(--font-family);
    font-weight: 600;
    text-transform: capitalize;
    display: block;
    position: relative;
    z-index: 1;
    color: var(--color-black);
}

.header-menu .main-menu li .sub-menu li.active > a {
    color: #1d89ff;
    /* color: #1D89FF; */
}

.header-menu .main-menu li .sub-menu li:hover > a {
    color: #1d89ff;
}

.header-meta {
    display: flex;
    align-items: center;
    white-space: nowrap;
}

.header-search {
    margin-left: 25px;
    padding-left: 15px;
    position: relative;
}

.header-search::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background: #ebebeb;
    width: 1px;
    height: 30px;
}

.header-search .search-btn {
    font-size: 16px;
    border-radius: 50%;
    text-align: center;
    color: #333333;
    transition: all 0.3s linear;
}

.header-search .search-btn:hover {
    color: #1d89ff;
}

.search-wrap {
    width: 100%;
    height: 100%;
    overflow: hidden;
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 121;
    background: rgba(0, 0, 0, 0.9);
}

.search-wrap .search-inner {
    position: relative;
    width: 100%;
    height: 100%;
}

.search-wrap .search-inner .search-close {
    position: absolute;
    top: 50px;
    right: 50px;
    font-size: 22px;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s linear;
}

.search-wrap .search-inner .search-close:hover {
    transform: rotate(90deg);
    color: #1d89ff;
}

.search-wrap .search-inner .search-cell {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
}

.search-wrap .search-inner .search-cell .search-field-holder {
    width: 50%;
    margin: auto;
    position: relative;
}

@media only screen and (max-width: 991px) {
    .search-wrap .search-inner .search-cell .search-field-holder {
        width: 60%;
    }
}

@media only screen and (max-width: 575px) {
    .search-wrap .search-inner .search-cell .search-field-holder {
        width: 80%;
    }
}

.search-wrap
    .search-inner
    .search-cell
    .search-field-holder
    .main-search-input {
    width: 100%;
    height: 70px;
    border: 0;
    padding: 0 50px;
    text-transform: uppercase;
    background: transparent;
    font-size: 25px;
    font-weight: 400;
    color: #ffffff;
    border-bottom: 2px solid #898989;
    text-align: center;
    letter-spacing: 2px;
}

@media only screen and (max-width: 1199px) {
    .search-wrap
        .search-inner
        .search-cell
        .search-field-holder
        .main-search-input {
        padding: 0 35px;
        font-size: 20px;
    }
}

@media only screen and (max-width: 767px) {
    .search-wrap
        .search-inner
        .search-cell
        .search-field-holder
        .main-search-input {
        font-size: 16px;
        padding: 0 15px;
    }
}

.search-wrap
    .search-inner
    .search-cell
    .search-field-holder
    .main-search-input::-webkit-input-placeholder {
    opacity: 0.95;
    font-size: 25px;
    color: #ffffff;
    font-weight: 400;
}

@media only screen and (max-width: 1199px) {
    .search-wrap
        .search-inner
        .search-cell
        .search-field-holder
        .main-search-input::-webkit-input-placeholder {
        font-size: 20px;
    }
}

@media only screen and (max-width: 767px) {
    .search-wrap
        .search-inner
        .search-cell
        .search-field-holder
        .main-search-input::-webkit-input-placeholder {
        font-size: 16px;
    }
}

@media only screen and (max-width: 575px) {
    .search-wrap
        .search-inner
        .search-cell
        .search-field-holder
        .main-search-input::-webkit-input-placeholder {
        font-size: 14px;
    }
}

.search-wrap
    .search-inner
    .search-cell
    .search-field-holder
    .main-search-input:-moz-placeholder {
    opacity: 0.95;
    font-size: 25px;
    color: #ffffff;
    font-weight: 400;
}

@media only screen and (max-width: 1199px) {
    .search-wrap
        .search-inner
        .search-cell
        .search-field-holder
        .main-search-input:-moz-placeholder {
        font-size: 20px;
    }
}

@media only screen and (max-width: 767px) {
    .search-wrap
        .search-inner
        .search-cell
        .search-field-holder
        .main-search-input:-moz-placeholder {
        font-size: 16px;
    }
}

@media only screen and (max-width: 575px) {
    .search-wrap
        .search-inner
        .search-cell
        .search-field-holder
        .main-search-input:-moz-placeholder {
        font-size: 14px;
    }
}

.search-wrap
    .search-inner
    .search-cell
    .search-field-holder
    .main-search-input::-moz-placeholder {
    opacity: 0.95;
    font-size: 25px;
    color: #ffffff;
    font-weight: 400;
}

@media only screen and (max-width: 1199px) {
    .search-wrap
        .search-inner
        .search-cell
        .search-field-holder
        .main-search-input::-moz-placeholder {
        font-size: 20px;
    }
}

@media only screen and (max-width: 767px) {
    .search-wrap
        .search-inner
        .search-cell
        .search-field-holder
        .main-search-input::-moz-placeholder {
        font-size: 16px;
    }
}

@media only screen and (max-width: 575px) {
    .search-wrap
        .search-inner
        .search-cell
        .search-field-holder
        .main-search-input::-moz-placeholder {
        font-size: 14px;
    }
}

.search-wrap
    .search-inner
    .search-cell
    .search-field-holder
    .main-search-input:-ms-input-placeholder {
    opacity: 0.95;
    font-size: 25px;
    color: #ffffff;
    font-weight: 400;
}

@media only screen and (max-width: 1199px) {
    .search-wrap
        .search-inner
        .search-cell
        .search-field-holder
        .main-search-input:-ms-input-placeholder {
        font-size: 20px;
    }
}

@media only screen and (max-width: 767px) {
    .search-wrap
        .search-inner
        .search-cell
        .search-field-holder
        .main-search-input:-ms-input-placeholder {
        font-size: 16px;
    }
}

@media only screen and (max-width: 575px) {
    .search-wrap
        .search-inner
        .search-cell
        .search-field-holder
        .main-search-input:-ms-input-placeholder {
        font-size: 14px;
    }
}

.header-btn {
    margin-left: 25px;
}

.header-btn .btn {
    height: 45px;
    line-height: 45px;
    padding: 0 45px;
}

.header-toggle {
    margin-left: 30px;
}

.header-toggle button {
    background: none;
    border: 0;
    padding: 0;
}

.header-toggle button span {
    width: 25px;
    height: 2px;
    background: #1d89ff;
    margin: 5px 0;
    display: block;
}

.header-toggle button span:last-child {
    margin-bottom: 0;
}

.sticky {
    position: fixed;
    top: 0;
    box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.07);
    -webkit-animation: sticky 1s;
    animation: sticky 1s;
}

@-webkit-keyframes sticky {
    0% {
        transform: translateY(-100%);
    }
    100% {
        transform: translateY(0%);
    }
}

@keyframes sticky {
    0% {
        transform: translateY(-100%);
    }
    100% {
        transform: translateY(0%);
    }
}

/*--
/*  2.3 - Header Top CSS
/*----------------------------------------*/

@media only screen and (max-width: 575px) {
    .offcanvas {
        width: 280px;
    }
}

.offcanvas-header {
    padding: 1.5rem 1rem !important;
}

.offcanvas-header .close-btn {
    background: none !important;
    border: 0 !important;
    font-size: 18px !important;
    color: #ffffff !important;
    transition: all 0.3s linear !important;
}

.offcanvas-header .close-btn:hover {
    transform: rotate(90deg);
    color: #1d89ff;
}

.offcanvas-logo a img {
    width: 130px;
}

.offcanvas-menu {
    /* padding: 30px 0; */
}

.offcanvas-menu .main-menu li {
    position: relative;
}

.offcanvas-menu .main-menu li a {
    display: block;
    font-size: 16px;
    font-weight: 600;
    font-family: var(--font-family);
    color: #ffffff;
    padding: 20px 0px 20px 20px;
    position: relative;
}

.offcanvas-menu .main-menu li .menu-expand {
    position: absolute;
    right: 20px;
    top: 14px;
    width: 30px;
    height: 30px;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
}

.offcanvas-menu .main-menu li .menu-expand::before {
    position: absolute;
    content: "";
    width: 16px;
    height: 2px;
    background-color: #ffffff;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s linear;
}

.offcanvas-menu .main-menu li .menu-expand::after {
    position: absolute;
    content: "";
    width: 2px;
    height: 16px;
    left: 50%;
    top: 50%;
    bottom: 0;
    background-color: #ffffff;
    transform: translate(-50%, -50%);
    transition: all 0.3s linear;
}

.offcanvas-menu .main-menu li:hover > a {
    color: #1d89ff;
}

.offcanvas-menu .main-menu li.active > .menu-expand::after {
    height: 0;
}

.offcanvas-menu .main-menu li ul {
    padding-left: 6%;
    display: none;
}

.ham__menu {
    display: none;
    font-size: 24px;
}

@media (max-width: 768px) {
    .ham__menu {
        display: block;
    }
    .nav__menu {
        display: none;
    }
}

.offcanvas {
    background: hsl(0 0% 0%) !important;
    width: 300px !important;
}

.offcanvas .offcanvas-header .logo {
    max-width: 50%;
}

.offcanvas .offcanvas-body {
    padding: 32px 0px;
}

.offcanvas .offcanvas-body .side-Nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.offcanvas .offcanvas-body .side-Nav li {
    border-bottom: 1px solid hsl(40deg 98% 51% / 20%);
}

/* For large devices */
@media screen and (min-width: 1023px) {
    .nav {
        height: calc(var(--header-height) + 2rem);
        column-gap: 3rem;
    }
    .nav__close,
    .nav__toggle {
        display: none;
    }
    .nav__menu {
        /* margin-left: auto; */
    }
    .nav__list {
        flex-direction: row;
        column-gap: 3rem;
    }

    .login__form {
        padding: 3rem 2rem 3.5rem;
    }
}

/* .dropdown__item{
  position: relative;
} */

.dropdown__menu {
    display: flex;
    flex-direction: column;
    min-width: 230px;
    background-color: var(--color-white);
    border-radius: 10px;
    position: absolute;
    top: 62px;
    z-index: 1;
    visibility: hidden;
    opacity: 0;
    transform: scale(0.97) translateX(-5px);
    transition: 0.1s ease-in-out;
    box-shadow: var(--shadow);
}

.dropdown__menu.active {
    visibility: visible;
    opacity: 1;
    transform: scale(1) translateX(5px);
}

.dropdown__menu_ul {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1.2rem;
    font-size: 0.95rem;
}

.dropdown__link {
    display: flex;
    padding: 0.5rem 0;
    border-radius: 7px;
    transition: 0.1s ease-in-out;
}

.dropdown__link:hover {
    background-color: var(--color-light-grey);
}

@media (max-width: 1100px) {
    .dropdown__menu {
        display: none;
        min-width: 100%;
        border: none !important;
        border-radius: 5px;
        position: static;
        top: 0;
        left: 0;
        visibility: visible;
        opacity: 1;
        transform: none;
        box-shadow: none;
    }

    .dropdown__menu.active {
        display: block;
    }

    .dropdown__menu ul {
        padding-left: 0.3rem;
    }
}

/* partner section */

.partner .owl-nav{
    display: none;
}

#client-home-default {
    padding: 0.2rem 1rem;
    margin-top: -4rem;
    background: var(--white);
    position: relative;
    z-index: 5;
    box-shadow: 0 0 68px 0 rgba(0, 0, 0, 0.08);
    border-radius: 20px;
}

#client-home-default.owl-carousel .item {
    padding: 1.5rem 1rem;
}

.img-partner {
    text-align: center;
}

.img-partner img {
    background-color: #fff;
    cursor: pointer;
    filter: grayscale(100%);
    -webkit-filter: grayscale(100%);
    mix-blend-mode: multiply;
    opacity: 0.5;
    padding: 1rem;
    transition: all 0.25s linear;
}

.img-partner img:hover {
    box-shadow: 0 0 38px 0 rgba(0, 0, 0, 0.09);
    filter: unset;
    -webkit-filter: unset;
    mix-blend-mode: multiply;
    opacity: 1;
    transform: translateY(-3px);
}

.partner-text {
    font-size: 1rem;
    text-align: center;
}

.partner-text span {
    color: var(--default);
    font-size: 1.5rem;
    font-weight: 700;
}

.partner-text a {
    font-size: 1.125rem;
    font-weight: 700;
}

.partner-title {
    color: var(--primary-clr);
    font-family: var(--font-family);
    font-weight: 500;
}

@media (max-width: 768px) {
    /* .partner.ptb50 {
        padding-top: 0px;
        padding-bottom: 0px;
    }
    .partner {
        position: relative;
        top: -50px;
    } */
}

/*
`hero-section` for styling purposes. */

.background-clip{
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: -1;
}

@media (min-aspect-ratio:16/9) {
    .background-clip{
        width: 100%;
        height: auto;
    }
}

@media (max-aspect-ratio:16/9) {
    .background-clip{
        width: auto;
        height: 100%;
    }
}

.hero-section {
    position: relative;
    min-height: 90vh;
}




.video-bg {
    position: absolute;
    right: 0;
    top: 0;
    min-width: 100%;
    height: 100%;
    z-index: -1;
    object-fit: cover;
}




.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    background-blend-mode: overlay;
}

.hero-content {
    text-align: center;
}

.hero-content p {
    font-family: var(--font-family);
    font-size: 17px;
    font-weight: 400;
    line-height: 30px;
    color: var(--color-white);
    background-color: #0e0e0e;
    display: inline-block;
    padding: 5px 15px;
    border-radius: 10px;
}

.hero-heading {
    color: var(--color-white);
    font-family: var(--font-family);
    font-size: 70px;
    font-weight: 600;
    line-height: 75px;
}

@media screen and (max-width: 1399px) {
    .hero-section {
        min-height: 30vh;
    }

    .hero-content{
        padding-top:80px ;
    }


}

@media (max-width: 768px) {
    .hero-content {
        padding-top: 0px;
        min-height: auto;
    }
    .hero-content p {
        font-size: 13px;
        line-height: 22px;
    }
    .hero-section {
        min-height: 61%;
    }
    .hero-section::before {
        height: auto;
        content: unset;
    }
    .hero-section.ptb50 {
        padding-top: 60px;
    }

    .video-bg {
        height: 70%;
    }
}

.learn {
    margin: 0 auto;
    width: 10%;
    animation: rotate 4s linear infinite;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.partner .owl-item img {
    width: 40% !important;
}

/* 
`service-section` for styling purposes. */
.service-section {
    margin: 0px 0px;
    padding: 0px 0px;
}

.service-card {
}

.gritinai_service_section {
    background-color: #ebf5ff;
}

.gritinai_service__head {
    font-family: var(--font-family);
    font-size: 30px;
    font-weight: 600;
    line-height: 45px;
    text-align: center;
    color: var(--primary-clr);
}

.gritinai_service__p {
    font-family: var(--font-family);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    text-align: center;
}

.gritinai_card {
    background-color: var(--color-white);
    border-radius: 8px;
    transition: transform 0.3s ease;
    /* box-shadow: hsl(232, 69%, 71%); */
    box-shadow: rgba(0, 106, 255, 0.16) 0px 3px 6px, rgba(0, 106, 255, 0.23) 0px 3px 6px;
    box-sizing: border-box;
}


.gritinai_card:hover {
    /* transform: translateY(-5px); */
    transform: scale(1.02);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    box-shadow: 0 8px 16px rgba(0, 106, 255, 0.2), 0 12px 40px rgba(0, 106, 255, 0.2);
}

.gritinai_content {
    padding: 16px;
    box-sizing: border-box;
}

.gritinai_card__heading {
    font-size: 20px;
    font-family: var(--font-family);
    font-weight: 600;
    color: var(--primary-clr);
    line-height: 70px;
}

.gritinai_card a {
    color: #201e1a;
}

.gritinai_card__p {
    font-family: var(--font-family);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: var(--color-black);
    text-align: left;
}

.w-55 {
    width: 54% !important;
}

/* Product style */

.gritinai_product {
    background-color: rgba(17, 25, 40);
    color: var(--color-white);
    transition: transform 0.3s ease;
}

.gritinai_product .gritinai_product__heading .gritinai_product__title {
    font-family: var(--font-family);
    font-size: 30px;
    font-weight: 600;
    line-height: 45px;
    color: var(--color-white);
}

.gritinai_product .gritinai_product__heading .gritinai_product__p {
    font-family: var(--font-family);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    text-align: center;
}

.gritinai_product .gritinai_product__card {
    background-color: var(--color-white);
    border-radius: 8px;
    padding: 16px;
    box-shadow: rgba(0, 106, 255, 0.16) 0px 3px 6px, rgba(0, 106, 255, 0.23) 0px 3px 6px;
}

.gritinai_product
    .gritinai_product__card
    .gritinai_product__card__content
    .gritinai_product__card__heading {
    font-family: var(--font-family);
    font-size: 20px;
    font-weight: 700;
    line-height: 30px;
    text-align: left;
    color: var(--primary-clr);
}

.gritinai_product .gritinai_product__card .gritinai_product__card__content {
    color: #0e0e0e;
}

.gritinai_product
    .gritinai_product__card
    .gritinai_product__card__content
    .gritinai_product__card__p {
    font-family: var(--font-family);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    text-align: left;
    color: #0e0e0e;
}

.gritinai_product__card:hover {
    transform: translateY(-5px);
}

.gritinai_product__card__btn {
    /* display: inline-block;
    padding: 8px 16px;
    background-color: #007bff; */
    color: var(--primary-clr);
    font-family: var(--font-family);
    font-size: 17px;
    font-weight: 400;
    text-decoration: none;
    border-radius: 5px;
    transition: transform 0.3s ease;
}

.gritinai_product__card__btn:hover {
    transform: scale(1.05);
}

/* why choose us */
.gritinai_why_choose_us {
    background-image: url("../../shape-bg-2.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.gritinai_why_choose_us_card {
    transition: transform 0.3s ease;
    /* box-shadow: rgba(0, 106, 255, 0.16) 0px 3px 6px, rgba(0, 106, 255, 0.23) 0px 3px 6px; */
}

.gritinai_why_choose_us_card:hover {
    transform: translateY(-5px);
    /* box-shadow: 0 8px 16px rgba(0, 106, 255, 0.2), 0 12px 40px rgba(0, 106, 255, 0.2); */
}
.gritinai_why_choose_us_card img {
    transition: transform 0.3s ease;
}

.gritinai_why_choose_us_card img:hover {
    transform: scale(1.02);
}
.gritinai_why_choose_us .gritinai_why_choose_us__heading {
    font-family: var(--font-family);
    font-size: 30px;
    font-weight: 600;
    line-height: 45px;
    color: var(--primary-clr);
}

.gritinai_why_choose_us .gritinai_why_choose_us__p {
    font-family: var(--font-family);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    text-align: left;
    color: #0e0e0e;
}

.gritinai_why_choose_us .gritinai_why_choose_us_card {
    background-color: var(--color-white);
    border-radius: 8px;
    padding: 16px;
    box-shadow: rgba(0, 106, 255, 0.16) 0px 3px 6px, rgba(0, 106, 255, 0.23) 0px 3px 6px;
}

.gritinai_why_choose_us .gritinai_why_choose_us_card:hover {
    transform: scale(1.02);
    box-shadow: rgba(0, 106, 255, 0.2) 0px 3px 6px, rgba(0, 106, 255, 0.2) 0px 3px 6px;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.gritinai_why_choose_us
    .gritinai_why_choose_us_card
    .gritinai_why_choose_us_card_title {
    font-family: var(--font-family);
    font-size: 20px;
    font-weight: 700;
    line-height: 30px;
    text-align: left;
    color: #111928;
}

.gritinai_why_choose_us
    .gritinai_why_choose_us_card
    .gritinai_why_choose_us_card_p {
    font-family: var(--font-family);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    text-align: left;
}

.gritinai_why_choose_us .gritinai_why_choose_us_card__icon {
    width: 30px;
}

/*  */

.gritinai_updated_affairs_section .gritinai_updated_affairs_section_title {
    font-family: var(--font-family);
    font-size: 30px;
    font-weight: 600;
    line-height: 45px;
    color: #111928;
}

.gritinai_updated_affairs_section .gritinai_updated_affairs_section_p {
    font-family: var(--font-family);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: #6b7280;
}

.gritinai_updated_affairs_section .gritinai_updated_affairs_section_card {
    padding: 20px;
}

.gritinai_updated_affairs_section .gritinai_updated_affairs_section_card_box {
    background-color: var(--color-white);
    border-radius: 5px;
    box-shadow: 2px 2px 20px rgba(0, 0, 0, 0.12);
    padding: 20px;
}

.gritinai_updated_affairs_section
    .gritinai_updated_affairs_section_card_content
    .gritinai_updated_affairs_section_card_title {
    font-family: var(--font-family);
    font-size: 30px;
    font-weight: 700;
    line-height: 30px;
    color: #111928;
}

.gritinai_updated_affairs_section
    .gritinai_updated_affairs_section_card_content
    .gritinai_updated_affairs_section_card_p {
    font-family: var(--font-family);
    font-size: 16px;
    color: #6b7280;
}

.gritinai_updated_affairs_section_card_image {
    width: 100%;
    height: 300px !important;
    object-fit: cover;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.gritinai-cta-section-04 .cta-right .counter-item span {
    font-size: 48px;
    line-height: 26px;
    font-family: var(--font-family);
    font-weight: 600;
    color: #11ddf5;
}

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

@media only screen and (max-width: 1199px) {
    .gritinai-cta-section-04 .cta-left {
        padding-right: 0px;
    }
    .gritinai-cta-section-04 .cta-right {
        margin-top: 65px;
    }
    .gritinai-cta-section-04 .cta-right::before {
        width: 320px;
    }
    .gritinai-cta-section-04 .cta-right::after {
        height: 240px;
    }
}

@media only screen and (max-width: 767px) {
    .gritinai-cta-section-04 .cta-right .counter-item span {
        font-size: 42px;
    }
}

.gritinai-cta-section-06 {
    background: #010f31;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

@media only screen and (max-width: 991px) {
    .gritinai-cta-section-06 .cta-info {
        margin-top: 50px;
    }
}

.gritinai-cta-section-06 .cta-info .cta-text {
    margin-left: 30px;
    margin-top: 10px;
}

@media only screen and (max-width: 991px) {
    .gritinai-cta-section-06 .cta-info .cta-text {
        margin-left: 0;
    }
}

.gritinai-cta-section-06 .cta-info .cta-text p {
    font-size: 18px;
    line-height: 30px;
    font-family: var(--font-family);
    font-weight: 500;
    color: #ffffff;
}

.gritinai-cta-section-06 .cta-info .cta-text .number {
    font-size: 36px;
    line-height: 42px;
    color: #086ad8;
}

.gritinai-cta-section-07 {
    background: none;
}

.gritinai-cta-section-07 .cta-wrap {
    background: #010f31;
    padding: 105px;
    border-radius: 10px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    margin-bottom: -150px;
    position: relative;
    z-index: 5;
}

@media only screen and (max-width: 1199px) {
    .gritinai-cta-section-07 .cta-info .cta-text {
        margin-left: 0px;
    }
}

@media only screen and (max-width: 991px) {
    .gritinai-cta-section-07 .cta-info {
        margin-top: 50px;
    }
}

@media only screen and (max-width: 767px) {
    .gritinai-cta-section-07 .cta-wrap {
        padding: 80px;
    }
}

@media only screen and (max-width: 575px) {
    .gritinai-cta-section-07 .cta-wrap {
        padding: 60px;
    }
    .gritinai-cta-section-07 .cta-info .cta-text .number {
        font-size: 28px;
        line-height: 40px;
    }
}

@media only screen and (max-width: 449px) {
    .gritinai-cta-section-07 .cta-wrap {
        padding: 45px;
    }
}

/* Testimony */
.gritinai_testimonials_section {
    background-color: #191d28;
}

 .gritinai_testimonials_section_title {
    font-family: var(--font-family);
    font-size: 40px;
    font-weight: 600;
    line-height: 45px;
    color: var(--primary-clr);
}


.testimonials-section{
	width: 100%;
	padding: 0px 8%;
}
.testimonials-section .section-header{
	max-width: 700px;
	text-align: center;
	margin: 30px auto 40px;
}
.section-header h1{
	position: relative;
	font-size: 36px;
	color: var(--primary-clr);
}
.testimonials-container{
	position: relative;
}
.testimonials-container .testimonial-card{
	padding: 20px;
}
.testimonial-card .test-card-body{
	background-color: var(--card-clr);
	box-shadow: 2px 2px 20px rgba(0,0,0,0.12);
	padding: 20px;
}
.test-card-body .quote{
	display: flex;
	align-items: center;
}
.test-card-body .quote i{
	font-size: 45px;
	color: var(--color-white);
	margin-right: 20px;
}
.test-card-body .quote h2{
	color: var(--color-white);
}
.test-card-body p{
	margin: 10px 0px 15px;
	font-size: 14px;
	line-height: 1.5;
	color: var(--color-white);
}
.test-card-body .ratings{
	margin-top: 20px;
}
.test-card-body .ratings i{
	font-size: 17px;
	color: var(--primary-clr);
	cursor: pointer;
}
.testimonial-card .profile{
	display: flex;
	align-items: center;
	margin-top: 25px;
}
.testimonials-container .profile .profile-image{
	width: 55px;
	height: 55px;
	border-radius: 50%;
	overflow: hidden;
	margin-right: 15px;
}
.testimonials-container .profile .profile-image img{
	width: 100%;
	height: 100%;
	border-radius: 50%;
	object-fit: cover;
}
.testimonials-container .profile .profile-desc{
	display: flex;
	flex-direction: column;
}
.testimonials-container .profile-desc span:nth-child(1){
	font-size: 24px;
	font-weight: bold;
	color: var(--primary-clr);
}
.testimonials-container .profile-desc span:nth-child(2){
	font-size: 15px;
	color: var(--text-clr);
}
.testimonials-container .owl-nav{
	position: absolute;
	right: 20px;
	bottom: -10px;
}
.testimonials-container .owl-nav button{
	border-radius: 50% !important;
}
.testimonials-container .owl-nav .owl-prev i,
.testimonials-container .owl-nav .owl-next i{
	padding: 10px !important;
	border-radius: 50%;
	font-size: 18px !important;
	background-color: var(--card-clr) !important;
	color: var(--primary-clr);
	cursor: pointer;
	transition: 0.4s;
}
.testimonials-container .owl-nav .owl-prev i:hover,
.testimonials-container .owl-nav .owl-next i:hover{
	background-color: var(--primary-clr) !important;
	color: #e9e9e9;
}
.testimonials-container .owl-dots{
	margin-top: 15px;
}
.testimonials-container .owl-dots .owl-dot span{
	background-color: #434753 !important;
	padding: 6px !important;
}
.testimonials-container .owl-dot.active span{
	background-color: var(--primary-clr) !important;
}

/* .testimonials_card {
    padding: 20px;
    transition: transform 0.3s ease;
}

.testimonials_card_box {
    background-color: var(--color-white);
    border-radius: 5px;
    padding: 20px;
    box-shadow: 9px 2px 20px rgba(26, 54, 240, 0.12);
}

.testimonials_card .testimonials_card_content_image img {
    width: 100px;
    height: 100px;
    border-radius: 8px;
    margin: 0 auto;
    text-align: center;
}

.testimonials_card
    .testimonials_card_content_text
    .testimonials_card_content_text_title {
    font-family: var(--font-family);
    font-size: 18px;
    font-weight: 600;
    line-height: 27px;
    text-align: center;
    color: #111928;
}

.testimonials_card
    .testimonials_card_content_text
    .testimonials_card_content_text_subtitle {
    font-family: var(--font-family);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    text-align: center;
}
.testimonials_card
    .testimonials_card_content_text
    .testimonials_card_content_p {
    font-family: var(--font-family);
    font-size: 14px;
    font-weight: 400;
    line-height: 21px;
    text-align: center;
    color: #6b7280;
} */

/*--
/*  18 - Blog Details CSS
/*----------------------------------------*/

.section-padding-02 {
    padding-top: 120px;
}

@media only screen and (max-width: 1199px) {
    .section-padding-02 {
        padding-top: 100px;
    }
}

.blog-details-section .blog-details-wrap {
    margin-top: -40px;
}

.blog-details-post {
    padding-right: 30px;
}

.blog-details-post .single-blog-post {
    margin-top: 40px;
}

.blog-details-post .single-blog-post.single-blog .blog-content {
    padding: 30px 0px 0px;
    width: 100%;
    left: 0;
    bottom: 0px;
    transform: translateX(0);
    margin-top: 0px;
}

.blog-details-post .single-blog-post.single-blog .blog-content .blog-meta .tag {
    font-size: 15px;
    line-height: 30px;
    font-weight: 500;
    color: #1d89ff;
}

.blog-details-post .single-blog-post.single-blog .blog-content .title {
    font-size: 36px;
    line-height: 50px;
}

.blog-details-post .single-blog-post.single-blog .blog-content p {
    font-size: 16px;
    line-height: 30px;
    margin-top: 20px;
}

.blog-details-post .blog-details-content .blog-quote {
    background-color: none;
    position: relative;
    margin-left: 50px;
    margin-top: 40px;
}

.blog-details-post .blog-details-content .blog-quote::after {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background: #1d89ff;
    width: 6px;
    height: 105px;
}

@media only screen and (max-width: 575px) {
    .blog-details-post .blog-details-content .blog-quote::after {
        display: none;
    }
}

.blog-details-post .blog-details-content .blog-quote .blockquote {
    padding-right: 125px;
    padding-left: 25px;
    margin-bottom: 0;
    position: relative;
}

@media only screen and (max-width: 1199px) {
    .blog-details-post .blog-details-content .blog-quote .blockquote {
        padding-right: 0;
    }
}

@media only screen and (max-width: 575px) {
    .blog-details-post .blog-details-content .blog-quote .blockquote {
        margin-left: 0;
    }
}

.blog-details-post
    .blog-details-content
    .blog-quote
    .blockquote:not(:first-child) {
    margin-top: 25px;
}

.blog-details-post
    .blog-details-content
    .blog-quote
    .blockquote:not(:last-child) {
    margin-bottom: 25px;
}

.blog-details-post .blog-details-content .blog-quote .blockquote p {
    display: inline;
    font-size: 18px;
    font-family: var(--font-family);
    color: #333333;
    line-height: 32px;
    font-weight: 600;
    margin-top: 0;
}

.blog-details-post .blog-details-content .blog-details-text p {
    font-size: 16px;
    line-height: 30px;
    margin-top: 50px;
}

.blog-details-post .blog-details-content .blog-details-tag-share {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-top: 65px;
    padding-top: 20px;
    border-top: 1px solid #e3e3e5;
}

.blog-details-post
    .blog-details-content
    .blog-details-tag-share
    .blog-details-tag {
    padding-top: 20px;
}

.blog-details-post
    .blog-details-content
    .blog-details-tag-share
    .blog-details-tag
    .sidebar-widget {
    margin-top: 0;
    display: flex;
    align-items: center;
}

.blog-details-post
    .blog-details-content
    .blog-details-tag-share
    .blog-details-tag
    .sidebar-widget
    .label {
    font-size: 14px;
    line-height: 30px;
    font-family: var(--font-family);
    font-weight: 700;
    color: #333333;
    margin-right: 10px;
}

.blog-details-post
    .blog-details-content
    .blog-details-tag-share
    .blog-details-tag
    .sidebar-widget
    .sidebar-tag
    li {
    margin-bottom: 0px;
}

.blog-details-post
    .blog-details-content
    .blog-details-tag-share
    .blog-details-share {
    display: flex;
    align-items: center;
    padding-top: 20px;
}

.blog-details-post
    .blog-details-content
    .blog-details-tag-share
    .blog-details-share
    li {
    display: inline-block;
    margin-right: 10px;
}

.blog-details-post
    .blog-details-content
    .blog-details-tag-share
    .blog-details-share
    li:last-child {
    margin-right: 0;
}

.blog-details-post
    .blog-details-content
    .blog-details-tag-share
    .blog-details-share
    li
    a {
    display: inline-block;
    font-size: 18px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border: 1px solid #ededed;
    text-align: center;
    color: #1d89ff;
    border-radius: 50%;
}

.blog-details-post
    .blog-details-content
    .blog-details-tag-share
    .blog-details-share
    li
    a:hover {
    opacity: 0.9;
}

.blog-details-post .blog-details-content .gritinai-post-pagination {
    display: flex;
    flex-wrap: wrap;
    background: #ffffff;
    box-shadow: 0px 0px 70px 0px rgba(0, 0, 0, 0.16);
    padding: 10px 30px;
    margin-top: 80px;
    overflow: hidden;
    position: relative;
}

@media only screen and (max-width: 1199px) {
    .blog-details-post .blog-details-content .gritinai-post-pagination {
        padding: 10px 20px;
    }
}

@media only screen and (max-width: 575px) {
    .blog-details-post .blog-details-content .gritinai-post-pagination {
        padding: 0 10px;
    }
}

.blog-details-post .blog-details-content .gritinai-post-pagination::before {
    position: absolute;
    content: "";
    width: 1px;
    background-color: #e1e1e1;
    left: 50%;
    transform: translateX(-50%);
    top: 30px;
    bottom: 30px;
}

@media only screen and (max-width: 767px) {
    .blog-details-post .blog-details-content .gritinai-post-pagination::before {
        width: auto;
        height: 1px;
        left: 30px;
        right: 30px;
        top: 50%;
        transform: translateY(-50%);
        bottom: auto;
    }
}

.blog-details-post
    .blog-details-content
    .gritinai-post-pagination
    .previous-post,
.blog-details-post .blog-details-content .gritinai-post-pagination .next-post {
    width: 50%;
}

@media only screen and (max-width: 767px) {
    .blog-details-post
        .blog-details-content
        .gritinai-post-pagination
        .previous-post,
    .blog-details-post
        .blog-details-content
        .gritinai-post-pagination
        .next-post {
        width: 100%;
    }
}

.blog-details-post
    .blog-details-content
    .gritinai-post-pagination
    .blog-pagination-post {
    display: flex;
    align-items: center;
    padding: 30px 0;
}

@media only screen and (max-width: 1199px) {
    .blog-details-post
        .blog-details-content
        .gritinai-post-pagination
        .blog-pagination-post {
        padding: 20px 0;
    }
}

.blog-details-post
    .blog-details-content
    .gritinai-post-pagination
    .blog-pagination-post
    .post-thumb {
    flex-shrink: 0;
}

.blog-details-post
    .blog-details-content
    .gritinai-post-pagination
    .blog-pagination-post
    .post-thumb
    a
    img {
    border-radius: 10px;
    -o-object-position: center;
    object-position: center;
    -o-object-fit: cover;
    object-fit: cover;
}

.blog-details-post
    .blog-details-content
    .gritinai-post-pagination
    .blog-pagination-post
    .post-thumb
    a
    i {
    font-size: 14px;
    color: #1d89ff;
    padding: 0 10px;
}

.blog-details-post
    .blog-details-content
    .gritinai-post-pagination
    .blog-pagination-post
    .post-content {
    flex-grow: 1;
    padding: 0 20px;
}

@media only screen and (max-width: 1199px) {
    .blog-details-post
        .blog-details-content
        .gritinai-post-pagination
        .blog-pagination-post
        .post-content {
        padding: 0 15px;
    }
}

@media only screen and (max-width: 575px) {
    .blog-details-post
        .blog-details-content
        .gritinai-post-pagination
        .blog-pagination-post
        .post-content {
        padding: 0 13px;
    }
}

.blog-details-post
    .blog-details-content
    .gritinai-post-pagination
    .blog-pagination-post
    .post-content
    .title {
    font-size: 18px;
    line-height: 22px;
    font-weight: 600;
    color: #0e0e0e;
}

@media only screen and (max-width: 1199px) {
    .blog-details-post
        .blog-details-content
        .gritinai-post-pagination
        .blog-pagination-post
        .post-content
        .title {
        font-size: 15px;
    }
}

.blog-details-post
    .blog-details-content
    .gritinai-post-pagination
    .blog-pagination-post
    .post-content
    .date {
    font-size: 12px;
    line-height: 22px;
    color: #838383;
}

.blog-details-post
    .blog-details-content
    .gritinai-post-pagination
    .blog-pagination-post
    .post-content
    .date
    i {
    color: #1d89ff;
    margin-right: 6px;
}

.blog-details-post .blog-details-content .comment-wrap .comment-form {
    margin-top: 50px;
}

.blog-details-post
    .blog-details-content
    .comment-wrap
    .comment-form
    .comment-title {
    font-size: 22px;
    line-height: 30px;
    color: #0e0e0e;
}

.blog-details-post .blog-details-content .comment-wrap .comment-form p {
    font-size: 14px;
    line-height: 30px;
    color: #686f7a;
}

.blog-details-post
    .blog-details-content
    .comment-wrap
    .comment-form
    .comment-form-wrap {
    padding-top: 10px;
}

.blog-details-post
    .blog-details-content
    .comment-wrap
    .comment-form
    .comment-form-wrap
    .single-form {
    margin-top: 20px;
}

.blog-details-post
    .blog-details-content
    .comment-wrap
    .comment-form
    .comment-form-wrap
    .single-form
    .form-control {
    border: 1px solid transparent;
    background: #f6f7f9;
    border-radius: 0;
}

.blog-details-post
    .blog-details-content
    .comment-wrap
    .comment-form
    .comment-form-wrap
    .single-form
    .form-control::-webkit-input-placeholder {
    opacity: 0.95;
    font-size: 13px;
    font-family: var(--font-family);
    color: #9d9d9d;
    font-weight: 400;
}

.blog-details-post
    .blog-details-content
    .comment-wrap
    .comment-form
    .comment-form-wrap
    .single-form
    .form-control:-moz-placeholder {
    opacity: 0.95;
    font-size: 13px;
    font-family: var(--font-family);
    color: #9d9d9d;
    font-weight: 400;
}

.blog-details-post
    .blog-details-content
    .comment-wrap
    .comment-form
    .comment-form-wrap
    .single-form
    .form-control::-moz-placeholder {
    opacity: 0.95;
    font-size: 13px;
    font-family: var(--font-family);
    color: #9d9d9d;
    font-weight: 400;
}

.blog-details-post
    .blog-details-content
    .comment-wrap
    .comment-form
    .comment-form-wrap
    .single-form
    .form-control:-ms-input-placeholder {
    opacity: 0.95;
    font-size: 13px;
    font-family: var(--font-family);
    color: #9d9d9d;
    font-weight: 400;
}

.blog-details-post
    .blog-details-content
    .comment-wrap
    .comment-form
    .comment-form-wrap
    .single-form
    .form-control:focus {
    outline: none;
    border-color: #1d89ff;
}

.blog-details-post
    .blog-details-content
    .comment-wrap
    .comment-form
    .comment-form-wrap
    .single-form
    textarea.form-control {
    height: 135px;
    padding-top: 15px;
    font-size: 13px;
    color: #415674;
    font-weight: 600;
    padding: 10px 25px;
    resize: none;
}

.blog-details-post
    .blog-details-content
    .comment-wrap
    .comment-form
    .comment-form-wrap
    .single-form
    textarea.form-control:focus {
    outline: none;
    box-shadow: none;
}

.blog-details-post
    .blog-details-content
    .comment-wrap
    .comment-form
    .comment-form-wrap
    .form-btn
    .btn {
    height: 40px;
    line-height: 38px;
    box-shadow: 11px 10px 38px 0 rgba(46, 63, 99, 0.15);
    margin-top: 25px;
    font-size: 16px;
    padding: 0 40px;
}

/*--
/*  17 - Blog Standard CSS
/*----------------------------------------*/
.blog-standard-wrap {
    margin-top: -40px;
}

.blog-standard-wrap .blog-post-wrap {
    padding-right: 30px;
}

@media only screen and (max-width: 991px) {
    .blog-standard-wrap .blog-post-wrap {
        padding-right: 0;
    }
}

.blog-standard-wrap .blog-post-wrap .pagination {
    margin-top: 55px;
}

.single-blog-post {
    margin-top: 40px;
}

.single-blog-post.single-blog .blog-content {
    padding: 40px 35px 0px;
    width: 94%;
    left: 50%;
    bottom: 10px;
    transform: translateX(-50%);
    margin-top: -60px;
}

@media only screen and (max-width: 767px) {
    .single-blog-post.single-blog .blog-content {
        padding: 40px 30px 0px;
    }
}

@media only screen and (max-width: 575px) {
    .single-blog-post.single-blog .blog-content {
        padding: 25px 0px 0px;
        width: 100%;
        margin-top: 0;
    }
}

.single-blog-post.single-blog .blog-content .blog-meta .tag {
    font-size: 15px;
    line-height: 30px;
    font-weight: 500;
    color: #1d89ff;
}

.single-blog-post.single-blog .blog-content .title {
    font-size: 36px;
    line-height: 1.1;
}

@media only screen and (max-width: 767px) {
    .single-blog-post.single-blog .blog-content .title {
        font-size: 30px;
    }
}

@media only screen and (max-width: 575px) {
    .single-blog-post.single-blog .blog-content .title {
        font-size: 26px;
    }
}

.single-blog-post.single-blog .blog-content p {
    font-size: 16px;
    line-height: 30px;
    margin-top: 20px;
}

.single-blog-post.single-blog .blog-btn .blog-btn-link {
    font-size: 12px;
    font-family: var(--font-family);
    font-weight: 600;
    color: #1d89ff;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 15px;
    transition: all 0.3s linear;
}

.single-blog-post.single-blog .blog-btn .blog-btn-link i {
    transition: all 0.3s linear;
}

.single-blog-post.single-blog .blog-btn .blog-btn-link:hover i {
    margin-left: 5px;
}

.blog-sidebar {
    margin-top: 40px;
    margin-left: 30px;
    position: sticky;
    top: 0;
}

@media only screen and (max-width: 1199px) {
    .blog-sidebar {
        margin-left: 15px;
    }
}

@media only screen and (max-width: 991px) {
    .blog-sidebar {
        margin-left: 0px;
    }
}

.blog-sidebar .sidebar-widget-1 {
    margin-top: 0;
}

.sidebar-widget {
    margin-top: 45px;
}

.sidebar-widget .search-form {
    position: relative;
}

.sidebar-widget
    .search-form
    input:not([type="submit"]):not([type="checkbox"]):not([type="radio"]):not(
        [type="file"]
    ) {
    width: 100%;
    height: 50px;
    margin-bottom: 0;
    border: 0;
    padding-right: 35px;
    background: #f2f4f7;
    color: #415674;
    font-weight: 700;
    outline: none;
    overflow: hidden;
}

.sidebar-widget
    .search-form
    input:not([type="submit"]):not([type="checkbox"]):not([type="radio"]):not(
        [type="file"]
    )::-webkit-input-placeholder {
    opacity: 0.95;
    font-size: 14px;
    font-family: var(--font-family);
    color: #898c94;
    font-weight: 400;
}

.sidebar-widget
    .search-form
    input:not([type="submit"]):not([type="checkbox"]):not([type="radio"]):not(
        [type="file"]
    ):-moz-placeholder {
    opacity: 0.95;
    font-size: 14px;
    font-family: var(--font-family);
    color: #898c94;
    font-weight: 400;
}

.sidebar-widget
    .search-form
    input:not([type="submit"]):not([type="checkbox"]):not([type="radio"]):not(
        [type="file"]
    )::-moz-placeholder {
    opacity: 0.95;
    font-size: 14px;
    font-family: var(--font-family);
    color: #898c94;
    font-weight: 400;
}

.sidebar-widget
    .search-form
    input:not([type="submit"]):not([type="checkbox"]):not([type="radio"]):not(
        [type="file"]
    ):-ms-input-placeholder {
    opacity: 0.95;
    font-size: 14px;
    font-family: var(--font-family);
    color: #898c94;
    font-weight: 400;
}

.sidebar-widget .search-form button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    width: 50px;
    height: 50px;
    background: transparent;
    border: 0;
    border-radius: 5px;
    font-size: 14px;
    color: #111111;
    transition: all 0.3s linear;
}

.sidebar-widget .search-form button:hover {
    background: #1d89ff;
    color: #ffffff;
}

.sidebar-widget .widget-title {
    margin-bottom: 25px;
}

.sidebar-widget .widget-title .title {
    font-size: 20px;
    font-family: var(--font-family);
    font-weight: 700;
    color: #0e0e0e;
    display: inline-block;
}

.sidebar-widget .recent-posts ul li {
    border-top: 1px solid #e5e5e5;
    padding-top: 30px;
    margin-top: 30px;
}

.sidebar-widget .recent-posts ul li:first-child {
    border-top: 0;
    padding-top: 0;
    margin-top: 0;
}

.sidebar-widget .recent-posts ul li .post-link {
    display: flex;
    align-items: center;
}

.sidebar-widget .recent-posts ul li .post-link .post-thumb {
    margin-right: 20px;
}

.sidebar-widget .recent-posts ul li .post-link .post-thumb img {
    width: 70px;
    height: 70px;
    /* border-radius: 50%; */
    image-rendering: crisp-edges;
}

.sidebar-widget .recent-posts ul li .post-link .post-text {
    flex: 1;
}

.sidebar-widget .recent-posts ul li .post-link .post-text .title {
    font-size: 16px;
    line-height: 18px;
    font-family: var(--font-family);
    font-weight: 600;
    transition: all 0.3s linear;
}

.sidebar-widget .recent-posts ul li .post-link .post-text .post-meta {
    font-size: 12px;
    font-family: var(--font-family);
    font-weight: 400;
    line-height: 24px;
    color: #838383;
    display: inline-block;
    margin-top: 5px;
}

.sidebar-widget .recent-posts ul li .post-link .post-text .post-meta i {
    color: #1d89ff;
    margin-right: 5px;
}

.sidebar-widget .recent-posts ul li .post-link:hover .post-text .title {
    color: #1d89ff;
}

.sidebar-widget .widget-banner {
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    border-radius: 5px;
    overflow: hidden;
    padding: 60px 40px 90px;
}

.sidebar-widget .widget-banner .banner-content {
    max-width: 160px;
}

.sidebar-widget .widget-banner .banner-content .title {
    font-size: 36px;
    line-height: 1;
    font-weight: 600;
    color: #ffffff;
}

.sidebar-widget .widget-banner .banner-content .btn {
    height: 40px;
    line-height: 38px;
    font-size: 14px;
    padding: 0 40px;
    margin-top: 30px;
}

.sidebar-widget .category .cate-item {
    border-top: 1px solid #ebebeb;
    padding-top: 10px;
    margin-top: 15px;
}

.sidebar-widget .category .cate-item:first-child {
    border-top: 0;
    padding-top: 0;
    margin-top: 0;
}

.sidebar-widget .category .cate-item a {
    display: flex;
    font-size: 15px;
    font-family: var(--font-family);
    font-weight: 500;
    color: #29303c;
    transition: all 0.3s linear;
}

.sidebar-widget .category .cate-item a i {
    font-size: 10px;
    line-height: 24px;
    color: #1d89ff;
    margin-right: 5px;
}

.sidebar-widget .category .cate-item a .post-count {
    margin-left: auto;
    align-items: flex-start;
    width: 20px;
    height: 20px;
    line-height: 20px;
    text-align: center;
    border-radius: 50%;
    background: #e4f2f8;
    font-size: 14px;
    font-family: var(--font-family);
    font-weight: 400;
    color: #1d89ff;
    transition: all 0.3s linear;
}

.sidebar-widget .category .cate-item a:hover {
    color: #1d89ff;
}

.sidebar-widget .category .cate-item a:hover .post-count {
    background: #1d89ff;
    color: #ffffff;
}

.sidebar-widget .sidebar-tag li {
    display: inline-block;
    margin-bottom: 10px;
    margin-right: 4px;
}

.sidebar-widget .sidebar-tag li a {
    display: inline-block;
    border-radius: 5px;
    padding: 8px 15px;
    font-size: 14px;
    font-family: var(--font-family);
    font-weight: 400;
    color: #666666;
    line-height: 18px;
    background: #f9f9f9;
    transition: all 0.3s linear;
}

.sidebar-widget .sidebar-tag li a:hover {
    background-color: #1d89ff;
    color: #ffffff;
}

/*--
/*  13 - Blog CSS
/*----------------------------------------*/
.gritinai-blog-section {
    padding-bottom: 70px;
}

.gritinai-blog-wrap {
    padding-top: 20px;
}

.single-blog {
    margin-top: 30px;
}

.single-blog .blog-image {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.single-blog .blog-image a {
    display: block;
}

.single-blog .blog-image a img {
    transition: all 0.3s linear;
}

.single-blog .blog-image .top-meta {
    position: absolute;
    top: 35px;
    left: 30px;
}

.single-blog .blog-image .top-meta .date {
    width: 65px;
    height: 65px;
    line-height: 65px;
    text-align: center;
    background: linear-gradient(-180deg, #43baff 0%, #7141b1 100%);
    color: #fff;
    font-size: 14px;
    line-height: 18px;
    border-radius: 5px;
    font-family: var(--font-family);
    display: inline-block;
    text-align: center;
    line-height: 12px;
    padding: 10px;
}

.single-blog .blog-image .top-meta .date span {
    font-size: 28px;
    line-height: 18px;
    font-weight: 500;
    line-height: 30px;
    display: block;
}

.single-blog .blog-content {
    padding: 25px 30px 40px;
    background: #ffffff;
    width: 90%;
    position: relative;
    left: 50%;
    bottom: 10px;
    transform: translateX(-48%);
    margin-top: -40px;
}

@media only screen and (max-width: 1199px) {
    .single-blog .blog-content {
        padding: 25px 20px 40px;
        width: 95%;
    }
}

.single-blog .blog-content .blog-meta span {
    font-size: 13px;
    line-height: 24px;
    font-weight: 500;
    color: #999999;
    margin-right: 15px;
}

@media only screen and (max-width: 575px) {
    .single-blog .blog-content .blog-meta span {
        margin-right: 12px;
    }
}

.single-blog .blog-content .blog-meta span i {
    color: #1d89ff;
    margin-right: 5px;
}

.single-blog .blog-content .title {
    font-size: 22px;
    line-height: 35px;
    font-weight: 600;
    color: #0e0e0e;
    padding-right: 15px;
    margin-top: 15px;
}

@media only screen and (max-width: 1199px) {
    .single-blog .blog-content .title {
        padding-right: 0;
    }
}

.single-blog .blog-btn .blog-btn-link {
    font-size: 12px;
    font-family: var(--font-family);
    font-weight: 600;
    color: #1d89ff;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 15px;
    transition: all 0.3s linear;
}

.single-blog .blog-btn .blog-btn-link i {
    transition: all 0.3s linear;
}

.single-blog .blog-btn .blog-btn-link:hover i {
    margin-left: 5px;
}

.single-blog:hover .blog-image a img {
    transform: scale(1.1);
}

.gritinai-blog-grid-wrap {
    margin-top: -30px;
}

.custom-image {
    width: 1280px !important;
    height: 350px !important;
    object-fit: cover !important;
}

/*--Page Pagination--*/

.footer {
    background-image: url("../../footer_bg.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: #050d36;
    color: #fff !important;
}
.footer .logo img {
    width: 70% !important;
}

.footer .logo img {
    width: 50px;
    margin-right: 10px;
}
.footer .list-unstyled li a {
    text-decoration: none;
    font-family: var(--font-family);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    text-align: left;
    color: #ffffff;
}

.footer .list-unstyled li a:hover {
    color: #00aced;
}

.footer h5 {
    font-family: var(--font-family);
    font-size: 22px;
    font-weight: 700;
    line-height: 36px;
    letter-spacing: -0.01em;
    text-align: left;
    color: #fff;
}

.footer .list-unstyled li {
    padding: 7px 0;
}

.footer .subscribe-input {
    max-width: 300px;
}

.footer .subscribe-input .form-control:focus {
    outline: none;
    box-shadow: none;
}

.footer .bg-dark-footer {
    background-color: #0d1117;
    color: white;
    padding: 10px 0;
    text-align: center;
}

/* breadcrumb */
.breadcrumb-area {
    background-position: top !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    /* position: relative; */
    min-height: 250px;
    background: url("../image/breadcrumb.jpg");
    background-blend-mode: overlay;
    background-color: rgba(0, 0, 0, 0.5);
}

.breadcrumb-area.bg-research{
    background-image: url('../image/raas-banner.webp');
    min-height: 500px;
}


.breadcrumb {
    display: inline-block;
    -ms-flex-wrap: wrap;
    flex-wrap: unset;
    padding: 0;
    margin-bottom: 0;
    list-style: none;
    background-color: unset;
    border-radius: 0;
}
.breadcrumb li {
    display: inline-block;
}
.breadcrumb li a {
    font-size: 16px;
    color: #fff;
    font-weight: 500;
}
.breadcrumb-item + .breadcrumb-item::before {
    display: inline-block;
    padding-right: 15px;
    padding-left: 10px;
    color: #ddd;
    content: "|";
}
.breadcrumb-title h2 {
    font-size:  4rem;
    margin-bottom: 25px;
    line-height: 1;
    color: #fff;
}

@media screen and (max-width: 767px) {
    .breadcrumb-area.bg-research .breadcrumb-title h2 {
        font-size: 2.5rem;
    }
}

.breadcrumb-title p {
    margin-bottom: 0;
    color: #777;
    font-size: 16px;
}
.breadcrumb-item.active {
    color: #00aced !important;
    font-weight: 900;
}

.about-title > span {
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    color: #fff;
    background: #56b8e6;
    height: 30px;
    display: inline-block;
    text-align: center;
    line-height: 30px;
    margin-bottom: 30px;
}
.about-title h2 {
    font-size: 50px;
    line-height: 1.4;
}

.about-title h5 {
    color: #56b8e6 !important;
    font-size: 22px;
    margin-bottom: 15px;
}
.about-title h4 {
    color: #010f2e !important;
}

.product__card {
    background-color: var(--white);
    border-radius: 7px;
    box-shadow: rgba(0, 106, 255, 0.16) 0px 3px 6px, rgba(0, 106, 255, 0.23) 0px 3px 6px;
    font-size: 1rem;
    margin-bottom: 1.875rem;
    padding: 2.8rem 2rem 0.1rem;
    /* text-align: center; */
}

.about-title .title-strong {
    color: #201e1a;
    font-weight: 500;
    font-size: 18px;
}
.about-title .title-strong span {
    padding: 3px 12px;
    background: #56b8e6;
    border-radius: 5px;
    color: #fff;
}
.about-title p span {
    display: inline-block;
    height: 2px;
    width: 40px;
    background: #56b8e6;
    margin-right: 20px;
    position: relative;
    top: -5px;
}
.about-title p {
    margin-bottom: 0;
}

.flex-container {
    overflow: hidden;
}

.flex-container .h3 {
    color: #ffffff;
}

.flex-container .value1 {
    background-color: #56b8e6;
    flex-basis: 50%;
    color: #ffffff;
}

.flex-container .value2 {
    background-color: #050d36;
    flex-basis: 50%;
    color: #ffffff;
}
.flex-container .value3 {
    background-color: #050d36;
    flex-basis: 50%;
    color: #ffffff;
}

.flex-container .value4 {
    background-color: #56b8e6;
    flex-basis: 50%;
    color: #ffffff;
}

.what_we_offer_image {
    background: url("../image/what_we_offer.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: absolute;
    right: 0;
    top: 0;
    width: 50%;
    height: 100%;
}

.community {
    width: 50%;
}

.chatbot {
    position: fixed;
    bottom: 10.4%;
    right: 8%;
    z-index: 9999;
    display: inline-block;
    font-weight: 400;
    color: #ffffff;
    text-align: center;
    user-select: none;
    background-color: transparent;
    border: 1px solid transparent;
    padding: 0.375rem 0.75rem;
    font-size: 1.3rem;
    line-height: 1.5;
    border-radius: 5px;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
        border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

@media only screen and (max-width: 600px) {
    .chatbot {
        bottom: 4.5%;
        right: 21%;
    }
}

.chat-container {
    position: fixed;
    bottom: 20%;
    right: 5%;
    z-index: 9999;
    display: none;
    transition: all 0.8s ease-in-out;
}

.chat-container.chat-open {
    display: block;
    transition: all 0.8s ease-in-out;
}

@media only screen and (max-width: 600px) {
    .chat-container {
        width: 368px;
        right: 1.5%;
    }
}

/* .chat-body{
  position: relative;
  width: 400px;
  height: 500px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
} */

.chat-header {
    display: flex;
    justify-content: space-between;
    padding: 10px;
    color: #333;
    background-color: #56b8e6;
    color: #050d36;
}

.chat-title {
    font-size: 18px;
    font-weight: 600;
}

.chat-close {
    font-size: 22px;
    background-color: #050d36;
    border-radius: 7px;
    color: #fff;
    padding: 0.1rem 0.605rem;
    cursor: pointer;
}

.chat-message {
    padding: 20px;
    height: 300px;
    /*  */
    overflow-y: auto;
}
.chat-messages {
    padding: 20px;
    height: 300px;

    overflow-y: auto;
}

@media only screen and (min-width: 1400px) {
    .chat-message {
        width: 500px;
    }
}

.chat-popup {
    background: #eee;
    transition: all 0.5s ease-in-out;
}

.chat-btn {
    background-color: #56b8e6;
    color: #ffffff;
    padding: 0.34rem 1.5rem;
    border: 1px solid #56b8e6;
    cursor: pointer;
}

.chat-input {
    display: flex;
    justify-content: space-between;
    padding: 10px;
    background-color: #f5f5f5;
}

.services-box {
    border-radius: 10px;
    background-color: rgb(255, 255, 255);
    box-shadow: 1px 1.732px 40px 0px rgba(0, 0, 0, 0.08);
    padding: 20px;
    margin-top: 30px;
}

.services-box .services-icon {
    border: 1px solid #56b8e6;
    display: inline-block;
    padding: 15px;
    width: 60px;
    height: 60px;
    text-align: center;
    border-radius: 50%;
}
.services-box .services-icon img {
    height: 100%;
}

.services-box .services-content2 {
    margin-top: 25px;
    transition: 0.3s;
}
.services-content2 h5 {
    font-size: 20px;
    margin-bottom: 10px;
}
.services-box .ss-btn2 {
    width: 60px;
    height: 60px;
    background: #56b8e6 0% 0% no-repeat padding-box;
    box-shadow: 0px 16px 32px #56b8e633;
    display: none;
    color: #fff;
    line-height: 60px;
    font-size: 31px;
    border-radius: 50%;
    position: absolute;
    left: 42%;
    bottom: -25px;
    transition: 0.3s;
}
.services-box .services-content2:hover .ss-btn2 {
    display: inline-block;
}

.learn__more__btn i {
    color: #1a56db;
}

.section.is_sm {
    padding-top: 100px;
    padding-bottom: 100px;
}
.call2action.has_style1 {
    background: linear-gradient(45deg, #050d36 0, #56b8e6 100%);
    position: relative;
}

.btn-white {
    border: 1px solid rgba(10, 33, 65, 0.05);
    -webkit-box-shadow: 0 2px 4px #7e8eb11f !important;
    box-shadow: 0 2px 4px #7e8eb11f !important;
    background-color: #04113a !important;
    color: #fff !important;
}

.consultant .card {
    background-color: #022e79;
    color: var(--color-white);
}

.postbox__details-wrapper {
    padding-right: 30px;
}
@media only screen and (min-width: 768px) and (max-width: 991px),
    (max-width: 767px) {
    .postbox__details-wrapper {
        padding-right: 0;
        margin-bottom: 70px;
    }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px),
    only screen and (min-width: 768px) and (max-width: 991px),
    (max-width: 767px) {
    .postbox__details-tag a {
        font-size: 13px;
    }
}
.postbox__details-checkmark {
    padding-bottom: 40px;
}
.postbox__details-checkmark ul li {
    list-style-type: none;
    position: relative;
    padding-left: 35px;
    margin-bottom: 20px;
    font-weight: 500;
    font-size: 17px;
    line-height: 1.2;
    color: #202124;
}
@media (max-width: 767px) {
    .postbox__details-checkmark ul li {
        font-size: 14px;
    }
}
.postbox__details-checkmark ul li:last-child {
    margin-bottom: 0;
}
.postbox__details-checkmark ul li i {
    height: 20px;
    width: 20px;
    background-color: var(--it-common-black);
    color: var(--it-common-white);
    border-radius: 50%;
    line-height: 20px;
    text-align: center;
    font-size: 10px;
    transform: translateX(2px);
    position: absolute;
    top: -2px;
    left: 0;
}
.postbox__details-title {
    font-weight: 700;
    font-size: 36px;
    line-height: 1.2;
    color: var(--it-common-black);
    padding-bottom: 10px;
}
@media only screen and (min-width: 1600px) and (max-width: 1800px) {
    .postbox__details-title {
        font-size: 33px;
    }
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
    .postbox__details-title {
        font-size: 33px;
    }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .postbox__details-title {
        font-size: 32px;
    }
    .postbox__details-title br {
        display: none;
    }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .postbox__details-title {
        font-size: 25px;
    }
    .postbox__details-title br {
        display: none;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .postbox__details-title {
        font-size: 30px;
    }
    .postbox__details-title br {
        display: none;
    }
}
@media (max-width: 767px) {
    .postbox__details-title {
        font-size: 20px;
    }
    .postbox__details-title br {
        display: none;
    }
}
.postbox__details-title-box span {
    font-weight: 700;
    font-size: 14px;
    color: #888888;
    display: inline-block;
}
.postbox__details-title-box p {
    font-weight: 400;
    font-size: 16px;
    line-height: 30px;
    margin-bottom: 0;
    padding-bottom: 10px;
    padding-right: 25px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .postbox__details-title-box p {
        font-size: 15px;
    }
    .postbox__details-title-box p br {
        display: none;
    }
}
@media only screen and (min-width: 992px) and (max-width: 1199px),
    only screen and (min-width: 768px) and (max-width: 991px) {
    .postbox__details-title-box p {
        font-size: 15px;
        padding-right: 0;
    }
}
@media (max-width: 767px) {
    .postbox__details-title-box p {
        font-size: 13px;
        padding-right: 0;
    }
    .postbox__details-title-box p br {
        display: none;
    }
}
.postbox__details-img-box {
    padding-bottom: 20px;
}
@media (max-width: 767px) {
    .postbox__details-img-box {
        flex-wrap: wrap;
    }
}
.postbox__details-img-box span img {
    border-radius: 20px;
    margin-bottom: 20px;
}
.postbox__details-img-box span img.img-mr {
    margin-right: 20px;
}
.postbox__details-img-caption {
    font-weight: 400;
    font-size: 13px;
    line-height: 10px;
    color: #87888a;
}
.postbox__details-img-caption i {
    font-style: normal;
    font-weight: 500;
    font-size: 13px;
    line-height: 10px;
    color: #5f6168;
}

@media (max-width: 767px) {
    .postbox__comment-box {
        flex-wrap: wrap;
    }
}
.postbox__content-wrap .it-contact-wrap {
    padding: 0;
}
@media only screen and (min-width: 768px) and (max-width: 991px),
    (max-width: 767px) {
    .postbox__content-wrap .it-contact-wrap {
        margin-bottom: 60px;
    }
}
.postbox__content-wrap .it-contact__textarea-box textarea {
    padding-top: 10px;
    height: 150px;
}
.postbox__p-right {
    margin-right: 20px;
}
@media (max-width: 767px),
    only screen and (min-width: 768px) and (max-width: 991px),
    only screen and (min-width: 992px) and (max-width: 1199px) {
    .postbox__p-right {
        margin-right: 0px;
    }
}
.postbox__thumb img {
    border-radius: 5px;
}
.postbox__thumb .play-btn {
    position: absolute;
    top: calc(50% - 20px);
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 1;
    height: 90px;
    width: 90px;
    background-color: var(--it-common-white);
    text-align: center;
    line-height: 90px;
    color: var(--it-common-black);
    border-radius: 50%;
    animation: pulse 2s infinite;
}
@media (max-width: 767px) {
    .postbox__thumb .play-btn {
        height: 50px;
        width: 50px;
        line-height: 50px;
    }
    .postbox__thumb .play-btn i {
        padding-left: 4px;
    }
}
.postbox__thumb .play-btn:hover {
    background-color: var(--it-common-blue-4);
    color: var(--it-common-white);
}
.postbox__audio {
    height: 100%;
    width: 100%;
}
.postbox__audio iframe {
    width: 100%;
    height: 100%;
    border: none;
}
.postbox__item-single:hover {
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    -ms-box-shadow: none;
    -o-box-shadow: none;
    box-shadow: none;
}
.postbox__content p img {
    margin-bottom: 30px;
    max-width: 100%;
    border-radius: 10px;
}
@media only screen and (min-width: 768px) and (max-width: 991px),
    (max-width: 767px) {
    .postbox__content p img {
        width: 100%;
    }
}
.postbox__content-single {
    padding-left: 0;
    padding-right: 0;
    border: none;
}
.postbox__title {
    color: var(--it-common-black);
    line-height: 1.3;
    font-weight: 600;
    font-size: 36px;
    color: #202124;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .postbox__title {
        font-size: 30px;
    }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .postbox__title {
        font-size: 30px;
    }
    .postbox__title br {
        display: none;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .postbox__title {
        font-size: 30px;
    }
    .postbox__title br {
        display: none;
    }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
    .postbox__title {
        font-size: 22px;
    }
    .postbox__title br {
        display: none;
    }
}
@media (max-width: 767px) {
    .postbox__title {
        font-size: 22px;
    }
    .postbox__title br {
        display: none;
    }
}
.postbox__title a:hover {
    color: var(--it-theme-1);
}
.postbox__meta {
    margin-bottom: 20px;
}
.postbox__meta a {
    font-weight: 400;
    font-size: 17px;
    line-height: 12px;
    color: #888888;
    display: inline-block;
}
.postbox__meta a:hover {
    color: var(--it-theme-1);
}
.postbox__meta-2 {
    padding-bottom: 13px;
}
.postbox__meta-2 a {
    font-weight: 400;
    font-size: 17px;
    line-height: 12px;
    color: #888888;
    display: inline-block;
}
@media only screen and (min-width: 768px) and (max-width: 991px),
    (max-width: 767px) {
    .postbox__meta-2 a {
        font-size: 13px;
    }
}
.postbox__meta-2 a:hover {
    color: var(--it-theme-1);
}
.postbox__text img {
    max-width: 100%;
}
.postbox__text p {
    font-size: 17px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .postbox__text p {
        font-size: 16px;
    }
}
@media only screen and (min-width: 992px) and (max-width: 1199px),
    only screen and (min-width: 768px) and (max-width: 991px),
    (max-width: 767px) {
    .postbox__text p {
        font-size: 14px;
    }
}
.postbox__text-single p {
    margin-bottom: 15px;
}
.postbox__slider button {
    position: absolute;
    left: 50px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 1;
    font-size: 30px;
    color: var(--it-common-white);
}
.postbox__slider button.slick-next {
    left: auto;
    right: 50px;
}
@media (max-width: 767px) {
    .postbox__slider button.slick-next {
        right: 10px;
    }
}
@media (max-width: 767px) {
    .postbox__slider button {
        left: 10px;
    }
}
.postbox__comment ul li {
    margin-bottom: 45px;
    padding-bottom: 30px;
    list-style: none;
    padding: 25px;
    padding-right: 40px;
    border: 1px solid var(--it-theme-1);
}
@media (max-width: 767px) {
    .postbox__comment ul li {
        padding-right: 25px;
    }
}
.postbox__comment ul-title {
    font-size: 20px;
    font-weight: 500;
    color: var(--it-common-black);
    margin-bottom: 40px;
    margin-right: 20px;
}
.postbox__comment-title {
    font-weight: 600;
    font-size: 36px;
    line-height: 18px;
    letter-spacing: -0.02em;
    color: var(--it-common-white);
    margin-bottom: 40px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .postbox__comment-title {
        font-size: 22px;
    }
}
@media only screen and (min-width: 992px) and (max-width: 1199px),
    only screen and (min-width: 768px) and (max-width: 991px),
    (max-width: 767px) {
    .postbox__comment-title {
        font-size: 20px;
    }
}
.postbox__comment-avater img {
    width: 154px;
    height: 154px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -o-border-radius: 50%;
    -ms-border-radius: 50%;
    border-radius: 50%;
}
@media (max-width: 767px) {
    .postbox__comment-avater img {
        width: 65px;
        height: 65px;
    }
}
.postbox__comment-name {
    margin-bottom: 5px;
}
.postbox__comment-name h5 {
    font-weight: 700;
    font-size: 22px;
    line-height: 20px;
    color: var(--it-common-black);
    margin-bottom: 20px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .postbox__comment-name h5 {
        font-size: 18px;
    }
}
@media only screen and (min-width: 992px) and (max-width: 1199px),
    only screen and (min-width: 768px) and (max-width: 991px),
    (max-width: 767px) {
    .postbox__comment-name h5 {
        font-size: 17px;
    }
}
@media (max-width: 767px) {
    .postbox__comment-text {
        margin-left: 0;
        margin-top: 15px;
    }
}
.postbox__comment-text p {
    font-size: 15px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px),
    only screen and (min-width: 992px) and (max-width: 1199px),
    only screen and (min-width: 768px) and (max-width: 991px) {
    .postbox__comment-text p {
        font-size: 15px;
    }
    .postbox__comment-text p br {
        display: none;
    }
}
@media (max-width: 767px) {
    .postbox__comment-text p {
        font-size: 14px;
    }
    .postbox__comment-text p br {
        display: none;
    }
}
.postbox__comment-reply {
    margin-top: 10px;
    padding-bottom: 17px;
}
.postbox__comment-reply span {
    margin-right: 40px;
    display: inline-block;
}
@media (max-width: 767px) {
    .postbox__comment-reply span {
        font-size: 17px;
    }
}
.postbox__comment-reply a {
    display: inline-block;
    font-weight: 500;
    font-size: 17px;
    color: var(--it-common-black);
    transition: 0.3s;
}
@media (max-width: 767px) {
    .postbox__comment-reply a {
        font-size: 14px;
    }
}
.postbox__comment-reply a:hover {
    color: var(--it-theme-1);
}
.postbox__comment-agree {
    margin-bottom: 30px;
}
.postbox__comment-agree .form-check-label {
    font-weight: 500;
    font-size: 14px;
    line-height: 1.3;
    color: #87888a;
}
.postbox__comment-agree .form-check-input:checked {
    background-color: var(--it-common-blue-4);
    border-color: transparent;
}
.postbox__comment-agree .form-check-input:focus {
    box-shadow: none;
}
.postbox__comment-agree .form-check-input.form-check-input[type="checkbox"] {
    border-radius: 2px;
    margin-top: 4px;
}
.postbox__comment-input {
    position: relative;
    margin-bottom: 20px;
}
.postbox__comment-input span {
    font-weight: 600;
    color: var(--it-common-black);
    margin-bottom: 12px;
    display: block;
}
.postbox__comment-input input,
.postbox__comment-input textarea {
    height: 55px;
    padding: 0 20px;
    width: 100%;
    font-size: 14px;
    outline: none;
    border: 1px solid #f7f7f7;
    box-shadow: 0px 16px 24px rgba(189, 196, 205, 0.13);
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    -o-border-radius: 7px;
    -ms-border-radius: 7px;
    border-radius: 7px;
    color: var(--it-common-black);
}
.postbox__comment-input input::placeholder,
.postbox__comment-input textarea::placeholder {
    color: rgba(116, 116, 116, 0.5);
}
.postbox__comment-input input:focus,
.postbox__comment-input textarea:focus {
    border-color: var(--it-common-pink);
    color: var(--it-common-black);
}
.postbox__comment-input textarea {
    height: 175px;
    resize: none;
    padding-top: 20px;
    padding-bottom: 20px;
}
.postbox__tag span {
    font-size: 20px;
    margin-bottom: 17px;
    color: var(--it-common-black);
    margin-right: 30px;
    font-weight: 500;
}
@media only screen and (min-width: 992px) and (max-width: 1199px),
    only screen and (min-width: 768px) and (max-width: 991px),
    (max-width: 767px) {
    .postbox__social {
        margin-top: 40px;
    }
}
.postbox__social span {
    font-size: 20px;
    color: var(--it-common-black);
    font-weight: 500;
}
.postbox__social a {
    font-size: 15px;
    padding-left: 30px;
}
.postbox__social a .it-linkedin {
    color: #0e6ba1;
}
.postbox__social a .it-pinterest {
    color: #d70220;
}
.postbox__social a .it-facebook {
    color: #0e6ba1;
}
.postbox__social a .it-twitter {
    color: #36b6ed;
}
@media (max-width: 767px) {
    .postbox__navigation-more {
        flex-wrap: wrap;
    }
}
.postbox__navigation-img {
    margin-right: 15px;
}
.postbox__navigation-img img {
    border-radius: 12px;
}
@media (max-width: 767px) {
    .postbox__navigation-left {
        margin-bottom: 30px;
    }
}
.postbox__navigation-content a:hover span {
    color: var(--it-common-blue-4);
}
.postbox__navigation-content span {
    font-weight: 500;
    font-size: 12px;
    line-height: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #5f6168;
    padding-bottom: 15px;
    display: inline-block;
    transition: 0.3s;
}
.postbox__navigation-content span i {
    margin-right: 10px;
}
.postbox__navigation-content h5 {
    font-weight: 700;
    font-size: 18px;
    line-height: 16px;
    color: #202124;
    transition: 0.3s;
}
@media (max-width: 767px) {
    .postbox__navigation-content h5 {
        font-size: 16px;
    }
}
.postbox__navigation-content h5:hover {
    color: var(--it-common-blue-4);
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .postbox__navigation-content h5 {
        font-size: 15px;
    }
}
.postbox__navigation-right .postbox__navigation-img {
    margin-right: 0;
    margin-left: 15px;
}
.postbox__navigation-right .postbox__navigation-content span i {
    margin-right: 0;
    margin-left: 10px;
}
.postbox__item {
    padding-top: 10px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.postbox__item i {
    font-size: 48px;
    color: var(--it-theme-1);
    margin-bottom: 20px;
}
.postbox__item p {
    font-size: 20px;
    line-height: 35px;
    font-weight: 700;
    color: var(--it-common-black);
}
@media only screen and (min-width: 992px) and (max-width: 1199px),
    only screen and (min-width: 768px) and (max-width: 991px),
    (max-width: 767px) {
    .postbox__item p {
        font-size: 17px;
    }
}
@media (max-width: 767px) {
    .postbox__details-tag {
        margin-bottom: 20px;
    }
}
.postbox__details-tag span {
    color: var(--it-common-black);
    font-weight: 700;
    display: inline-block;
    padding-right: 5px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px),
    only screen and (min-width: 768px) and (max-width: 991px),
    (max-width: 767px) {
    .postbox__details-tag span {
        font-size: 17px;
    }
}
.postbox__details-tag a {
    padding: 0 15px;
    height: 30px;
    line-height: 30px;
    display: inline-block;
    background-color: #f2f2f2;
    color: var(--it-common-black);
    transition: 0.3s;
    margin-left: 10px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px),
    only screen and (min-width: 768px) and (max-width: 991px) {
    .postbox__details-tag a {
        padding: 0 10px;
        font-size: 14px;
    }
}
@media (max-width: 767px) {
    .postbox__details-tag a {
        padding: 0 10px;
        font-size: 14px;
        margin-bottom: 10px;
    }
}
.postbox__details-tag a:hover {
    background-color: var(--it-theme-1);
    color: var(--it-common-white);
}
.postbox__details-share span {
    color: var(--it-common-black);
    font-weight: 700;
    display: inline-block;
    padding-right: 15px;
}
.postbox__details-share a {
    font-size: 16px;
    color: var(--it-common-black);
    display: inline-block;
    padding: 0 5px;
    transition: 0.3s;
    background-color: #f2f2f2;
    height: 35px;
    line-height: 35px;
    text-align: center;
    width: 35px;
}
.postbox__details-share a:not(:last-child) {
    margin-right: 8px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px),
    only screen and (min-width: 768px) and (max-width: 991px),
    (max-width: 767px) {
    .postbox__details-share a {
        font-size: 14px;
    }
}
.postbox__details-share a:hover {
    color: var(--it-common-white);
    background-color: var(--it-theme-1);
}
.postbox__details-share-wrapper {
    padding-top: 20px;
    padding-bottom: 65px;
}
.postbox__comment-info {
    flex: 0 0 auto;
}
.postbox__meta span {
    display: inline-block;
    padding-bottom: 5px;
    position: relative;
    padding-left: 25px;
    font-size: 16px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .postbox__meta span {
        font-size: 14px;
    }
}
@media (max-width: 767px) {
    .postbox__meta span {
        font-size: 13px;
    }
}
.postbox__meta span:not(:last-child) {
    margin-right: 28px;
}
.postbox__meta span i {
    position: absolute;
    top: 8px;
    left: 0;
    display: inline-block;
    font-size: 16px;
    color: var(--it-theme-1);
}
.postbox__main-thumb img {
    width: 100%;
    border-radius: 5px;
}
.postbox__content-img img {
    width: 100%;
}
@media (max-width: 767px) {
    .postbox__content-img img {
        margin-right: 0;
    }
}
@media (max-width: 767px) {
    .postbox__content-img {
        flex-wrap: wrap;
    }
}

@media (max-width: 767px) {
    .postbox__slider-arrow-wrap {
        display: none;
    }
}
.postbox__slider-arrow-wrap .postbox-arrow-prev {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0px;
    z-index: 9;
}
.postbox__slider-arrow-wrap .postbox-arrow-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0px;
    z-index: 9;
}
.postbox__slider-arrow-wrap button {
    height: 60px;
    width: 60px;
    line-height: 64px;
    background-color: var(--it-common-white);
    color: var(--it-common-black);
    text-align: center;
    font-size: 18px;
}

.rc__post {
    transition: 0.3s;
    padding-top: 30px;
    border-top: 1px solid #e2e1e1;
    line-height: normal;
}
.rc__post:last-child {
    padding-bottom: 30px;
    border-bottom: 1px solid #e2e1e1;
}
.rc__post ul li:not(:last-child) {
    margin-bottom: 15px;
}
.rc__post-thumb {
    flex: 0 0 auto;
    object-fit: cover;
}
.rc__post-title {
    font-weight: 600;
    font-size: 16px;
    margin-right: 30px;
    color: var(--it-common-black);
    line-height: 23px;
    margin-bottom: 0;
}
@media only screen and (min-width: 992px) and (max-width: 1199px),
    only screen and (min-width: 768px) and (max-width: 991px),
    (max-width: 767px) {
    .rc__post-title {
        font-size: 14px;
        margin-right: 0;
    }
}
.rc__post-title a:hover {
    color: var(--it-theme-1);
}
.rc__meta {
    line-height: 0;
}
.rc__meta span {
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 500;
    line-height: normal;
    display: inline-block;
    margin-bottom: 5px;
}
.rc__meta span i {
    color: var(--it-theme-1);
    display: inline-block;
    margin-right: 5px;
}

.sidebar__wrapper {
    padding-left: 40px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px),
    only screen and (min-width: 768px) and (max-width: 991px),
    (max-width: 767px) {
    .sidebar__wrapper {
        padding-left: 0;
    }
}
.sidebar__widget-content ul > li {
    padding: 0 30px;
    height: 50px;
    line-height: 50px;
    list-style-type: none;
    position: relative;
    margin-bottom: 10px;
    transition: 0.3s;
    border: 1px solid #e2e1e1;
}
.sidebar__widget-content ul > li:hover {
    background-color: var(--it-theme-1);
}
.sidebar__widget-content ul > li:hover a {
    color: var(--it-common-white);
}
.sidebar__widget-content ul > li:hover::after {
    color: var(--it-common-white);
}
.sidebar__widget-content ul > li::after {
    content: "\f105";
    right: 30px;
    top: 50%;
    position: absolute;
    transform: translateY(-50%);
    font-family: "Font Awesome 6 Pro";
    color: var(--it-common-black);
    font-size: 18px;
}
.sidebar__widget-content ul > li > a {
    font-weight: 500;
    font-size: 16px;
    color: var(--it-common-black);
    transition: 0.3s;
}
.sidebar__widget-title {
    font-weight: 700;
    font-size: 24px;
    line-height: 16px;
    margin-bottom: 30px;
    text-transform: uppercase;
    color: var(--it-common-black);
    display: inline-block;
}
@media only screen and (min-width: 992px) and (max-width: 1199px),
    only screen and (min-width: 768px) and (max-width: 991px),
    (max-width: 767px) {
    .sidebar__widget-title {
        font-size: 20px;
    }
    .sidebar__widget-title br {
        display: none;
    }
}
.sidebar__widget.color-box {
    padding: 40px 35px;
    background-color: var(--it-common-black);
}
@media only screen and (min-width: 992px) and (max-width: 1199px),
    (max-width: 767px) {
    .sidebar__widget.color-box {
        padding: 40px 20px;
    }
}
.sidebar__widget:last-child-title {
    border-bottom: 0;
}
.sidebar__widget > ul > li {
    list-style: none;
    margin-bottom: 15px;
}
.sidebar__widget > ul > li:last-child {
    margin-bottom: 0;
}
.sidebar__widget > ul > li a {
    font-weight: 500;
    font-size: 14px;
    line-height: 12px;
    color: #5f6168;
    display: flex;
    justify-content: space-between;
}
.sidebar__widget > ul > li a:hover {
    color: var(--it-theme-1);
}
.sidebar__widget > ul > li a i {
    font-size: 18px;
    transform: translateY(2px);
    margin-right: 10px;
}
.sidebar__search {
    position: relative;
}
.sidebar__search input {
    width: 100%;
    height: 60px;
    line-height: 60px;
    padding-left: 30px;
    text-transform: capitalize;
    background-color: #353535;
    border: none;
    padding-right: 60px;
    color: var(--it-common-white);
    outline: none;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .sidebar__search input {
        font-size: 15px;
    }
}
@media (max-width: 767px) {
    .sidebar__search input {
        padding-right: 40px;
        padding-left: 15px;
        font-size: 14px;
    }
}
.sidebar__search input:focus {
    border-color: var(--it-theme-1);
}
.sidebar__search input::placeholder {
    color: #777777;
}
.sidebar__search button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 30px;
    border-radius: 50%;
    display: inline-block;
    color: var(--it-common-white);
    font-size: 18px;
}
.sidebar__banner-content {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 1;
    background: var(--it-theme-1);
}
.sidebar__banner-content h4 {
    padding: 15px 20px;
    font-size: 24px;
    color: var(--it-common-white);
    text-transform: uppercase;
    margin-bottom: 0;
}

.tagcloud.space a {
    padding: 0px 15px;
}
.tagcloud a {
    color: #4d5756;
    background-color: #f2f2f2;
    display: inline-block;
    line-height: 1;
    padding: 0px 50px;
    height: 48px;
    line-height: 48px;
    margin-bottom: 15px;
    margin-right: 10px;
    transition: 0.3s;
    font-weight: 500;
    font-size: 14px;
    text-align: center;
    text-transform: capitalize;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .tagcloud a {
        font-size: 13px;
        padding: 0px 36px;
    }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .tagcloud a {
        font-size: 13px;
        padding: 0px 36px;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .tagcloud a {
        font-size: 13px;
        font-size: 13px;
        padding: 0px 36px;
    }
}
@media (max-width: 767px) {
    .tagcloud a {
        font-size: 13px;
        font-size: 13px;
        padding: 0px 36px;
    }
}
.tagcloud a:hover {
    background: var(--it-theme-1);
    color: var(--it-common-white);
}
.tagcloud span {
    font-weight: 600;
    font-size: 16px;
    line-height: 12px;
    color: #202124;
    margin-right: 8px;
}

.it-pagination ul li {
    padding-top: 30px;
    display: inline-block;
}
.it-pagination ul li:not(:last-child) {
    margin-right: 10px;
}
.it-pagination ul li a,
.it-pagination ul li span {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    transition: 0.3s;
    background: var(--it-theme-1);
    font-family: var(--it-ff-heading);
    color: var(--it-common-white);
    border-radius: 4px;
    box-shadow: 2px 3.464px 20px 0px rgba(4, 23, 26, 0.08);
}
.it-pagination ul li a.current i,
.it-pagination ul li span.current i {
    display: inline-block;
    transform: translateY(2px);
}
.it-pagination ul li a:hover,
.it-pagination ul li a.current {
    background-color: var(--it-theme-5);
}
.it-pagination ul li span:hover,
.it-pagination ul li span.current {
    background-color: var(--it-theme-5);
}
.it-pagination ul li a {
    display: inline-block;
}
.it-pagination ul li a.color {
    background-color: var(--it-theme-5);
    color: var(--it-common-white);
    font-size: 18px;
}

/* .swiper.publucations_swiper {
  width: 100%;
  height: 100%;
} */

/* .swiper-slide.gritinai_updated_affairs {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
} */

.gritinai_updated_affairs_section_carousel .owl-carousel .owl-item img {
    width: 100% !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}

.gritinai_updated_affairs_section_carousel .owl-dots {
    text-align: center;
    padding-top: 15px;
    display: none;
}
.gritinai_updated_affairs_section_carousel .item {
    width: 100% !important;
}

.social-links a {
    font-size: 14px;
    line-height: 0;
    display: inline-block;
    width: 32px;
    height: 32px;
    color: rgba(27, 47, 69, 0.5);
    margin-right: 10px;
    transition: 0.3s;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #00aced;
    color: #fff;
    border-radius: 50px;
}

.social-links a:hover {
    background-color: #38618e;
    color: #ffffff;
}

/*----------------------------------------*/
/*  10. course css start
/*----------------------------------------*/
.it-course-item {
    
    border-radius: 5px;
    position: relative;
    background-color: var(--it-common-white);
}
.it-course-item:hover .it-course-thumb img {
    transform: scale(1.2);
}
.it-course-thumb {
    overflow: hidden;
    border-radius: 5px;
}
.it-course-thumb img {
    object-fit: cover;
    height: 400px;
    width: 100%;
    border-radius: 5px;
    transition: 1s;
}
.it-course-thumb-text {
    position: absolute;
    top: 20px;
    left: 20px;
}
.it-course-thumb-text span {
    display: inline-block;
    padding: 0 10px;
    font-size: 15px;
    font-weight: 400;
    border-radius: 5px;
    color: var(--it-common-white);
    background-color: var(--it-theme-1);
}

.it-course-content{
  padding: 20px;
}

@media (max-width: 767px) {
    .it-course-thumb-text span {
        font-size: 12px;
    }
}
.it-course-rating i {
    color: var(--it-theme-1);
    font-size: 14px;
}
.it-course-rating span {
    color: var(--it-common-black-2);
    font-size: 14px;
    font-family: var(--it-ff-heading);
    font-weight: 500;
}
.it-course-title {
    font-size: 21px;
    font-weight: 600;
    text-transform: capitalize;
    line-height: 1.5;
    transition: 0.3s;
    display: inline-block;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .it-course-title {
        font-size: 19px;
    }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .it-course-title {
        font-size: 17px;
    }
}
@media (max-width: 767px) {
    .it-course-title {
        font-size: 18px;
    }
}
.it-course-title:hover {
    color: var(--it-theme-1);
}
.it-course-info {
    border-bottom: 1px dashed #4d5756;
    gap: 25px;
}
.it-course-info > span {
    font-size: 14px;
    font-weight: 400;
    text-transform: capitalize;
    color: var(--it-common-black-2);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px),
    only screen and (min-width: 992px) and (max-width: 1199px),
    (max-width: 767px) {
    .it-course-info > span {
        font-size: 11px;
    }
}
.it-course-info > span i {
    color: black;
    margin-right: 7px;
}
.it-course-author img {
    border-radius: 50%;
    margin-right: 10px;
}
.it-course-author > span {
    color: var(--it-common-black-2);
    font-size: 16px;
    font-family: var(--it-ff-heading);
    font-weight: 400;
}
@media only screen and (min-width: 992px) and (max-width: 1199px),
    only screen and (min-width: 768px) and (max-width: 991px),
    (max-width: 767px) {
    .it-course-author > span {
        font-size: 14px;
    }
}
.it-course-author > span > i {
    font-style: normal;
    color: var(--it-common-black);
}
.it-course-price-box span {
    font-size: 25px;
    font-weight: 700;
    text-transform: capitalize;
    font-family: var(--it-ff-heading);
    color: var(--it-common-black-2);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px),
    only screen and (min-width: 992px) and (max-width: 1199px),
    only screen and (min-width: 768px) and (max-width: 991px),
    (max-width: 767px) {
    .it-course-price-box span {
        font-size: 21px;
    }
}
.it-course-price-box span i {
    font-style: normal;
    color: var(--it-common-black);
}
.it-course-price-box a {
    font-size: 14px;
    font-weight: 500;
    text-transform: capitalize;
    transition: 0.3s;
    font-family: var(--it-ff-heading);
    color: var(--it-common-black-2);
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .it-course-price-box a {
        font-size: 12px;
    }
}
.it-course-price-box a:hover {
    color: var(--it-common-black);
}
.it-course-price-box a i {
    font-size: 16px;
    margin-right: 7px;
}
.it-course-shape-1 {
    position: absolute;
    top: 0;
    right: 0;
}
.it-course-shape-2 {
    position: absolute;
    top: 235px;
    right: 470px;
    animation: itswing 1s forwards infinite alternate;
    transform-origin: bottom left;
}
.it-course-shape-3 {
    position: absolute;
    top: 180px;
    left: 100px;
    animation: itupdown 0.8s infinite alternate;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
    .it-course-shape-3 {
        top: 120px;
    }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .it-course-shape-3 {
        top: 100px;
    }
}
.it-course-shape-4 {
    position: absolute;
    right: 255px;
    bottom: 195px;
    animation: rotate2 4s linear infinite;
}
.it-course-shape-5 {
    position: absolute;
    top: 0px;
    right: 440px;
}

.it-course-price-box a {
    background-color: #050d36;
    color: #ffffff;
    padding: 5px 10px;
}

.it-course-price-box a:hover {
    color: #ffffff;
}

.program-detail .form-control:focus {
    box-shadow: none !important;
}

@media screen and (max-width: 768px) {
    .what_offer {
        font-size: 16px;
    }
}

@media screen and (max-width: 991px) {
    .what_we_offer_image {
        flex-basis: 100%;
        width: 100%;
        height: 500px;
        position: relative;
    }
    .community {
        width: 100%;
    }
}

@media screen and (min-width: 1024px) {
    .gritinai_service__p {
        inline-size: 670px;
        margin: 0 auto;
        text-align: center;
    }

    .gritinai_card__p {
        /* inline-size: 500px; */
    }

    .gritinai_card__p.services_p {
        inline-size: 400px;
    }

    .gritinai_product .gritinai_product__heading .gritinai_product__p {
        inline-size: 600px;
        margin: 0 auto;
        text-align: center;
    }

    .gritinai_updated_affairs_section .gritinai_updated_affairs_section_p {
        margin: 0 auto;
        text-align: center;
        inline-size: 600px;
    }

    .testimonials_card
        .testimonials_card_content_text
        .testimonials_card_content_p {
        inline-size: 300px;
        text-align: center;
        margin: 0 auto;
    }
}

section {
    overflow: hidden;
}

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

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}



/*---=====================================================
   <!-- Contact Area Css Style Three-->
=========================================================---*/
.style-three .add-white-bg {
    padding: 39px 37px 38px;
    border-radius: 10px;
    background-color: #ffffff;
    /* margin: -313px 0; */
    position: relative;
}

.style-three .single-contact-box {
    /* margin-right: 60px; */
}

.style-three .contact-content h4 {
    font-size: 36px;
    margin: 0 0 35px;
}

.style-three .single-input-box input {
    border: 2px solid rgba(4, 20, 36, 0.1);
    width: 100%;
    height: 60px;
    padding: 0 20px;
    border-radius: 3px;
    outline: 0;
    margin-bottom: 27px;
}

.style-three .single-input-box input::placeholder {
    color: #686868;
    font-weight: 300;
    font-family: "Nunito";
}

.style-three .single-input-box select {
    border: 2px solid rgba(4, 20, 36, 0.1);
    width: 100%;
    height: 60px;
    padding: 0 20px;
    border-radius: 3px;
    outline: 0;
}

.style-three .single-input-box textarea {
    border: 2px solid rgba(4, 20, 36, 0.1);
    width: 100%;
    height: 160px;
    padding: 17px 20px;
    border-radius: 3px;
    outline: 0;
    margin-bottom: 27px;
}

.style-three .single-input-box textarea::placeholder {
    color: #686868;
    font-weight: 300;
    font-family: "Nunito";
}

.style-three .massage-sent-button button {
    border-radius: 3px;
    background-color: #1a56db;
    border: 2px solid #1a56db;
    color: #fff;
    padding: 15px 38px;
    transition: 0.5s;
}

.style-three .massage-sent-button button:hover {
    color: #1a56db;
    background: #fff;
}

.style-three .single-contact-info-box {
    background: url(../image/contact-info-box-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    padding: 60px 49px 49px;
    border-radius: 10px;
}

.style-three .info-content {
    margin-bottom: 50px;
}

.style-three .info-content h4 {
    color: #fff;
    font-size: 30px;
    margin: 0;
}

.style-three .contact-info-box {
    display: flex;
    align-items: center;
    gap: 17px;
    margin-bottom: 48px;
}

.style-three .contact-info-icon i {
    display: inline-block;
    color: #fff;
    border: 2px solid #fff;
    width: 53px;
    height: 53px;
    border-radius: 50%;
    text-align: center;
    line-height: 53px;
}

.style-three .contact-info-content p {
    font-size: 15px;
    color: #ffffff;
    font-weight: 400;
    margin: 0;
}

.style-three .contact-info-content h4 {
    font-size: 20px;
    color: #ffffff;
    font-weight: 600;
    margin: 1px 0 0;
}

/*---=====================================================
   <!-- Contact Area Css-->
=========================================================---*/
.contact-area.style-three.inner {
    padding: 122px 0 122px;
}

.style-three.inner .add-white-bg {
    margin: 0 0;
    filter: drop-shadow(0px 10px 50px rgba(217, 217, 217, 0.5));
}

.style-three .contact-area-info {
    background: url(../image/contact-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    padding: 123px 0 227px;
    overflow: hidden;
}

.style-three.contact-area-info .contact-content h6 {
    font-size: 22px;
    color: #fff;
    font-weight: 500;
    margin-top: 25px;
}

.style-three.contact-area-info .contact-content h1 {
    font-size: 42px;
    color: #fff;
    font-weight: 700;
    margin-top: 27px;
}

.style-three.contact-area-info .contact-content p {
    color: #9ea1a5;
    font-size: 18px;
    line-height: 28px;
    width: 86%;
    margin: 21px 0 0;
}

.style-three.contact-area-info .contact-right {
    position: relative;
}

.style-three.contact-area-info .contact-thumb {
    position: absolute;
    top: -95px;
    right: 84px;
}

.style-three.contact-area-info .contact-shape {
    position: absolute;
    left: -51px;
    top: 120px;
    animation: dance 2s linear infinite;
}

/* Normal desktop :1300px. */
@media (min-width: 1300px) and (max-width: 1399px) {
    .style-three .single-contact-info-box {
        padding: 60px 30px 49px;
    }
}

/* Normal desktop :1200px. */
@media (min-width: 1200px) and (max-width: 1299px) {
    .style-three .single-contact-info-box {
        padding: 60px 30px 49px;
    }
}

@media screen and (min-width: 1024px) {
    .news-p {
        inline-size: 670px;
        margin: 0 auto;
        text-align: center;
    }
}

/* Normal desktop :992px. */
@media (min-width: 992px) and (max-width: 1199px) {
    .style-three .single-contact-info-box {
        padding: 60px 18px 49px;
    }
}

/* Normal desktop :600px. */
@media (min-width: 600px) and (max-width: 767px) {
    .style-three .single-contact-info-box {
        padding: 60px 39px 49px;
    }
    .style-three .single-contact-box {
        margin-right: 0;
    }
}
@media (min-width: 480px) and (max-width: 599px) {
    .style-three .single-contact-info-box {
        padding: 60px 39px 49px;
    }
    .style-three .single-contact-box {
        margin-right: 0;
    }
}
@media (min-width: 320px) and (max-width: 479px) {
    .style-three .single-contact-info-box {
        padding: 60px 18px 49px;
    }
    .style-three .single-contact-box {
        margin-right: 0;
    }
    .style-three .contact-info-box {
        display: block;
        text-align: center;
    }

    .style-three .contact-content h4 {
        font-size: 25px;
        margin: 0 0 28px;
    }

    .style-three .add-white-bg {
        padding: 39px 6px 38px;
    }

    .style-three .info-content h4 {
        text-align: center;
        font-size: 27px;
    }
}

@media (max-width: 768px) {
    .learn {
        bottom: 30%;
        left: 35%;
        width: 30%;
    }

    .header {
        padding: 0.1rem 1.5rem;
    }

    .dropdown__link {
        justify-content: center;
    }

    .hero-heading {
        font-size: 27px;
        line-height: 35px;
    }

    .testimonials_card {
        margin: 10px 5px;
    }
}

@media (max-width: 576px) {
    .breadcrumb-area {
        /* margin-top: 20px; */
    }

    .footer .logo img {
        margin: 0 auto;
        padding-bottom: 30px;
    }
}

.form-control:focus,
.btn-primary:focus {
    box-shadow: none !important;
    outline: none !important;
}

/*--
/*  03 - Counter CSS
/*----------------------------------------*/
.gritinai-counter-section {
    background: #e5effa;
    padding-top: 60px;
    padding-bottom: 80px;
}

.gritinai-counter-section .counter-wrap {
    margin-top: -30px;
}

.single-counter {
    display: flex;
    align-items: center;
    margin-top: 30px;
}

.single-counter .counter-img {
    height: 95px;
    width: 95px;
    line-height: 95px;
    text-align: center;
    padding: 20px 20px;
    background: #ffffff;
    box-shadow: 0px 0px 51px 0px rgba(0, 0, 0, 0.09);
    border-radius: 10px;
}

.single-counter .counter-content {
    margin-left: 20px;
}

.single-counter .counter-content span {
    font-size: 40px;
    line-height: 26px;
    font-family: var(--font-family);
    font-weight: 700;
    color: #75650b;
}

.single-counter .counter-content p {
    font-size: 12px;
    line-height: 26px;
    font-weight: 700;
    text-transform: uppercase;
    color: #4c4d56;
}

.gritinai-counter-section-02 {
    padding: 100px 80px 60px;
    background: #f1f1f1;
    background-image: url("../../buildings.svg");
    background-repeat: no-repeat;
    background-blend-mode: multiply;
    background-size: cover;
    min-height: 200px;
    background-attachment: fixed;
    background-position: center;
}

.gritinai-counter-section-02 .counter-wrap {
    /* border: 1px solid #e1e1e1;
  background: #ffffff; */
    margin-bottom: -120px;
    position: relative;
    top: -60px;
    z-index: 5;
    padding: 15px 25px 75px;
}

.gritinai-counter-section-02 .counter-wrap:last-child {
    border: none;
}

.gritinai-counter-section-02 .single-counter {
    position: relative;
    margin-left: 30px;
}

.gritinai-counter-section-02 .single-counter.single-counter-4::before {
    display: none;
}

@media only screen and (max-width: 1199px) {
    .gritinai-counter-section-02 .counter-wrap {
        padding: 15px 55px 75px;
    }
    .gritinai-counter-section-02 .single-counter {
        margin-left: 0px;
    }
    .gritinai-counter-section-02 .single-counter::before {
        display: none;
    }
}

@media only screen and (max-width: 678px) {
    .gritinai-counter-section-02 {
        padding: 100px 0px 60px;
    }
    .single-counter .counter-content p {
        line-height: 18px;
    }
}

@media only screen and (max-width: 449px) {
    .gritinai-counter-section-02 .counter-wrap {
        padding: 15px 28px 75px;
    }
}

.gritinai-counter-section-03 {
    background: #010642;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    padding-top: 80px;
    padding-bottom: 110px;
    position: relative;
    z-index: 1;
}

.gritinai-counter-section-03::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    background: rgba(1, 1, 63, 0.9);
    width: 100%;
    height: 100%;
    z-index: -1;
}

.single-counter-02 {
    margin-top: 30px;
}

.single-counter-02 span {
    font-size: 50px;
    line-height: 30px;
    font-family: var(--font-family);
    font-weight: 700;
    color: #75650b;
}

.single-counter-02 p {
    font-size: 14px;
    line-height: 30px;
    text-transform: capitalize;
    color: #ffffff;
}

.gritinai-counter-section-04 {
    background: none;
    padding-top: 0;
    padding-bottom: 0;
}

.gritinai-counter-section-04::before {
    display: none;
}

.gritinai-counter-section-04 .counter-wrap {
    background: linear-gradient(55deg, #693eaa 25%, #47bbff 100%);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: -110px;
    padding-top: 65px;
    padding-bottom: 95px;
}

.gritinai-counter-section-04 .counter-wrap .single-counter-02 span {
    color: #ffffff;
}

/* #slider{
    padding: 70px 0px 100px;
}

@media (max-width: 767px) {
    #slider{
        padding: 50px 0px 50px;
    }
} */

.publication-slider-item {
    background: #fff;
    box-shadow: 0 15px 45px -20px rgb(0 0 0 / 73%);
    /* transform: scale(0.9);
    opacity: 0.5;
    text-align: center;
    transition: transform 0.3s ease; */
}

.publication-slider-item .slick-slide {
  padding: 0 15px;
}
.publication-slider-item .slick-list {
  margin: 0 -15px;
}

.publication-slider .publication-slider-image {
    width: 100% !important;
    height: 200px !important;
    object-fit: cover;
}





.slick-container {
    /* position:relative; */
    background-image: url('../../slick.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    padding-bottom: 100px;
    background-color: rgba(39, 42, 108, 0.8);
    background-blend-mode: overlay;
}



@media (max-width: 768px) {
    .slick-container {
        background-position: center top;
       padding-bottom: 40px;
    }
}

.slick-content {
    padding-top: 100px;
    padding-left: 80px;
    color: #ffffff;
    text-align: center;
}

.slick-content h1 {
    font-size: 60px;
    font-weight: 500;
    line-height: 60px;
    font-family: var(--font-family);
    color: #ffffff;
}

.slick-content p {
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
    font-family: var(--font-family);
    color: #ffffff;
    margin-top: 20px;
}

.slick-content a {
    font-size: 20px;
    font-weight: 500;
    line-height: 30px;
}

.section__about {
    padding-top: 100px;
    padding-bottom: 50px;
}

.content__about__text .content__heading__title {
    font-size: 50px;
    font-family: var(--font-family);
    font-weight: 500;
    color: #272a6c;
}


.kids__btn {
    padding: 15px 50px 15px !important;
}

.box__details {
    text-align: center;
}

.section__details {
    padding: 100px 0 70px;
}

/* .section__details__title h1{
  font-size: 50px;
  font-weight: 600;
  color: #272a6c;
  text-align: center;
  margin-bottom: 50px;
} */
.box__details__container{
    display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}
.box__details {
    flex: 1 1 200px; 
    min-height: 200px; 
    background-color: #000E42; 
    color: white;
    border-radius: 10px;
    padding: 30px 20px  20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
   box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
    /* background-color: #050d36;
    padding: 30px 25px 20px 25px;
    border-style: solid;
    border-color: #050d36;
    border-radius: 10px 10px 10px 10px;
    margin-block-end: 0;
    max-height:100px ; */
}

.box__details:hover {
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    transition: 0.3s;
}

.box__details .box__details__icon svg {
    width: 2em;
    height: 2em;
    margin-bottom: 5px;
    fill: #ffffff;
}

.box__details:hover .box__details__icon svg {
    animation: rotate 2s linear infinite reverse;
    fill: #ffcc00;
}

@media (max-width: 768px) {
  .detail-box {
    flex: 1 1 100%;
  }
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.box__details .box__details__text h4 {
    font-size: 25px;
    font-weight: 500;
    color: #ffffff;
    padding-bottom:5px;
    font-family: var(--font-family);
}

.box__details .box__details__text p {
    font-family: var(--font-family);
    font-size: 18px;
    font-weight: 300;
    color: #ffffff;
    line-height: 23px;
}

@media screen and (max-width: 1280px) {
    .box__details {
        /* min-height: 30vh; */
    } 
}

.timeline__section {
    /* parallex */
    background-image: url('../../images/child-making-robot.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
    background-color: rgba(0, 0, 0, .7);
    background-blend-mode: overlay;
    padding: 100px 0 70px;
}

.box__tracks__section {
    padding: 50px 0 50px;
}

.box__tracks {
    /* display: flex; */
    background-color: transparent;
    border: 1px solid #e3edff;
    border-width: 1px 1px 1px 1px;
    border-radius: 10px;
    padding: 2rem;
}

.kids__tracks__title {
    font-family: var(--font-family);
    text-align: center;
    font-size: 50px;
    /* font-size: 32px; */
    line-height: 30px;
    font-weight: 600;
    color: #0f0948;
    margin-bottom: 50px;
}
.kids__programme__title {
    font-family: var(--font-family);
    text-align: center;
    font-size: 50px;
    /* font-size: 32px; */
    line-height: 30px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 50px;
}

.box__tracks__description {
    font-family: var(--font-family);
    text-align: center;
    font-size: 20px;
    line-height: 40px;
    font-weight: 400;
}

.box__tracks__desc{
   font-family: var(--font-family);
    text-align: center;
    font-size: 20px;
    /* line-height: 40px; */
    font-weight: 400;
    color: #ffffff;
}

.box__tracks.active__track {
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    transition: 0.3s;
    background-color: #0f0948;
    color: #ffffff !important;
}

.box__tracks:hover {
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    transition: 0.3s;
    background-color: #0f0948;
    color: #ffffff;
}

.box__tracks__item__content {
    padding-top: 30px;
}

.box__tracks__item__content__heading__title {
    /* font-size: 21px; */
    font-size: 23px;
    font-weight: 700;
    color: #000000;
    line-height: 50px;
}

.box__tracks:hover .box__tracks__item__content__heading__title {
    color: #ffffff;
}

.box__tracks.active__track .box__tracks__item__content__heading__title {
    color: #ffffff;
}

.box__tracks__widget__container .box__tracks__icon__list__items {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.box__tracks__widget__container .box__tracks__icon__list__item {
    align-items: center;
    display: flex;
    padding-bottom: calc(10px / 2);
    font-size: inherit;
}

.box__tracks__icon__list__icon svg {
    fill: #272a6c;
    transition: fill 0.3s;
    margin: 0 calc(1em * 0.25) 0 0;
    height: 1em;
    width: 1em;
}

.box__tracks__icon__list__text {
    font-size: 19px;
    font-weight: 400;
    color: #333333;
    transition: color 0.3s;
}

.box__tracks:hover .box__tracks__icon__list__icon svg {
    fill: #ffcc00;
}

.box__tracks.active__track .box__tracks__icon__list__icon svg {
    fill: #ffcc00;
}

.box__tracks:hover .box__tracks__icon__list__text {
    color: #ffffff;
}

.box__tracks.active__track .box__tracks__icon__list__text {
    color: #ffffff;
}

.timeline {
    list-style: none;
    padding: 20px 0 20px;
    color: #ffffff;
    position: relative;
}

.timeline:before {
    top: 0;
    bottom: 0;
    position: absolute;
    content: " ";
    width: 1px;
    background-color: #d3e6f3;
    left: 50%;
    margin-left: -1.5px;
}

@media (max-width: 700px) {
    ul.timeline:before {
        left: 40px;
    }
}

.timeline li {
    margin-bottom: 21%;
    position: relative;
}

@media screen and (max-width: 700px) {
    .timeline li {
        margin-bottom: 80%;
    }
}

.timeline li:before,
.timeline li:after {
    content: " ";
    display: table;
}

.timeline li .tl-circ {
    position: absolute;
    top: 23px;
    left: 50%;
    text-align: center;
    background: #0f0948;
    color: #fff;
    width: 25px;
    height: 25px;
    line-height: 25px;
    margin-left: -13px;
    border: 5px solid #d2e3f9;
    border-top-right-radius: 50%;
    border-top-left-radius: 50%;
    border-bottom-right-radius: 50%;
    border-bottom-left-radius: 50%;
    z-index: 1;
}

@media (max-width: 700px) {
    ul.timeline li .tl-circ {
        top: 22px;
        left: 28px;
        margin-left: 0;
    }
}

.timeline-panel {
    background-color: #fff;
}

.timeline-panel p {
    color: #333333;
}
.timeline li.timeline-inverted .timeline-panel {
    float: right;
    right: 10%;
}

.timeline li .timeline-panel {
    width: 30%;
    float: left;
    /* background: #fff;
    border: 1px solid #d2e3f9; */
    padding: 15px;
    position: relative;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease-out;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 5px;
    -webkit-box-shadow: 0 1px 6px rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 0 1px 6px rgba(0, 0, 0, 0.15);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);

  background: #0f0948;
  border-radius: 16px;
  position: relative;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease-in-out;

}

.timeline li.timeline-right .timeline-panel {
  left: 5%;
  transform: translateX(40px) translateY(20px);
}

.timeline li.timeline-inverted .timeline-panel{
  right: 10%;
  transform: translateX(-40px) translateY(20px);
}

.timeline li .timeline-panel.show {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 700px) {
    ul.timeline > li > .timeline-panel {
        float: right;
    }
}
@media (max-width: 700px) {
    ul.timeline li .timeline-panel {
        width: calc(100% - 90px);
        width: -moz-calc(100% - 90px);
        width: -webkit-calc(100% - 90px);
    }
}
@media (max-width: 991px) {
    .timeline li .timeline-panel {
        width: 44%;
    }
}

@media (max-width: 700px) {
    .timeline-panel {
        display: block;
    }
}

.timeline li.timeline-inverted .timeline-panel:before {
    border-left-width: 0;
    border-right-width: 15px;
    left: -15px;
    right: auto;
}

@media (max-width: 700px) {
    ul.timeline > li > .timeline-panel:before {
        border-left-width: 0;
        border-right-width: 15px;
        left: -15px;
        right: auto;
    }
}
.timeline li .timeline-panel:before {
    position: absolute;
    top: 26px;
    right: -15px;
    display: inline-block;
    border-top: 15px solid transparent;
    border-left: 15px solid #d2e3f9;
    border-right: 0 solid #d2e3f9;
    border-bottom: 15px solid transparent;
    content: " ";
}

.timeline li.timeline-inverted .timeline-panel:after {
    border-left-width: 0;
    border-right-width: 14px;
    left: -14px;
    right: auto;
}

.timeline li .timeline-panel:after {
    border-left: 14px solid #fff;
    border-right: 0 solid #fff;
}
.timeline li .timeline-panel:after {
    position: absolute;
    top: 27px;
    right: -14px;
    display: inline-block;
    border-top: 14px solid transparent;
    border-left: 14px solid #fff;
    border-right: 0 solid #fff;
    border-bottom: 14px solid transparent;
    content: " ";
}

.timeline li:before,
.timeline li:after {
    content: " ";
    display: table;
}

@media (max-width: 700px) {
    ul.timeline > li > .timeline-panel:after {
        border-left-width: 0;
        border-right-width: 14px;
        left: -14px;
        right: auto;
    }
}

.be-title {
    font-size: 20px;
}

.timeline-panel p {
    color: #ffffff;
}
.be-content p {
    margin-bottom: 5px;
}

.why__join__title{
    font-size: 45px;
    font-weight: 600;
    color: #ffffff;
    font-family: var(--font-family);
}

.why__join__section {
    padding: 50px 0;
    background-color: #010642;
}

.why__join__icon__list__items {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.why__join__icon__list__icon svg {
    transition: fill 0.3s;
    margin: 0 calc(1em * 0.25) 0 0;
    fill: #ffffff;
    width: 1em;
    height: 1em;
}

.why__join__icon__list__item {
    margin: 0;
    padding: 0;
    position: relative;
    padding-bottom: calc(10px / 2);
    align-items: center;
    display: flex;
    font-size: inherit;
}

.why__join__icon__list__text {
    font-size: 19px;
    font-weight: 400;
    color: #ffffff;
    transition: color 0.3s;
}



.faq__section {
    padding: 100px 0 50px;
}

.custom-accordion {
    max-width: 700px;
    margin: 0 auto;
}
.faq-card {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 12px;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
    overflow: hidden;
}
.faq-header {
    cursor: pointer;
    padding: 18px 24px;
    font-weight: 600;
    font-size: 1.1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f7f7f7;
    transition: background 0.2s;
    color: #0f0948;
}
.faq-header:hover {
    background: #f0f0f0;
}
.faq-toggle {
    font-size: 1.5rem;
    transition: transform 0.2s;
}
.faq-body {
    display: none;
    padding: 18px 24px;
    font-size: 1rem;
    color: #0e0e0e;
    font-weight: 400;
    font-family: var(--font-family);
    background: #fafbfc;
    border-top: 1px solid #e0e0e0;
    animation: fadeIn 0.3s;
}
.faq-card.active .faq-body {
    display: block;
}
.faq-card.active .faq-toggle {
    transform: rotate(45deg);
}
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.gallery__section {
    padding: 100px 0 50px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 24px;
}
.gallery-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.2s;
}
.gallery-img:hover {
    transform: scale(1.05);
}
.gallery-lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    padding-top: 60px;
    left: 0; top: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.8);
}
.gallery-lightbox-content {
    margin: auto;
    display: block;
    max-width: 80vw;
    max-height: 80vh;
}
.gallery-lightbox-close {
    position: absolute;
    top: 30px; right: 40px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}
@media (max-width: 991px) {
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 575px) {
    .gallery-grid { grid-template-columns: 1fr; }
    .gallery-img { height: 150px; }
}


.countdown-container {
    text-align: center;
    padding-top: 70px;
}
.countdown-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 600;
}
#countdown {
    display: flex;
    justify-content: center;
    margin: 0 auto;
    gap: 30px;
}
#countdown div {
    background: #f5f5f5;
    padding: 18px 22px;
    border-radius: 10px;
    width: 110px;
    height: 110px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);

}
#countdown span {
    display: block;
    font-size: 2.2rem;
    font-weight: bold;
    color: #2d7be5;
}
#countdown small {
    display: block;
    font-size: 0.9rem;
    color: #555;
    margin-top: 4px;
    letter-spacing: 1px;
}

.object-cover{
    object-fit: cover; 
    height:400px
  }

  .form label{
     font-size: 18px;
     font-weight: 500;
  }

.form .form-control{
   padding: 0.8rem .75rem;
}

.register__section{
  padding: 100px 0 50px;
}

@media screen and (max-width: 768px) {
    .slick-content h1{
      font-size: 35px;
      line-height: 39px;
    }

    .slick-content {
       padding-left: 25px;
    }

    .countdown-container{
      padding-top:40px;
      padding-bottom:30px;
    }
    #countdown{
      gap:13px;
    }

    #countdown div {
    padding: 11px 15px;
    width: 65px;
    height: 70px;
  }

  #countdown span{
    font-size: 20px;
  }

  .content__about__text .content__heading__title {
    font-size: 35px;
  }

  .kids__tracks__title, .kids__programme__title {
    font-size: 35px;
    line-height: 40px;
  }

  .box__tracks__description{
    font-size: 16px;
    line-height: 30px;
  }

  .timeline li.timeline-inverted .timeline-panel {
    right:0%;
  }

  .timeline li.timeline-right .timeline-panel {
    left:0%;
  }

  .object-cover{
    height:auto;
  }

  .slick-content {
    text-align: unset;
  }
}


 .nav-tabs .nav-link {
    border: 1px solid #dee2e6;
    border-radius: .25rem;
    margin-right: 10px;
    color: #495057;
}
.nav-tabs .nav-link.active {
    color: #fff;
    background-color: #007bff;
    border-color: #007bff;
}
.tab-content {
    padding-top: 20px;
}

/* Program Details Page Sections */
.program-details-section {
    padding: 80px 0;
    border-bottom: 1px solid #e0e0e0;
}

.program-details-section:last-of-type {
    border-bottom: none;
}

.program-details-section.dark-bg {
    background-color: #0e2a46; /* Using a color from the existing palette */
    color: #ffffff;
}

.program-details-section.light-bg {
    background-color: #f8f9fa; /* A light grey for contrast */
    color: #0e2a46;
}

.program-details-section h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 30px;
    color: var(--color-white);
}

.program-details-section.dark-bg h2 {
    color: #ffffff;
}

.program-details-section.light-bg h2 {
    color: #0e2a46;
}

.program-details-section p,
.program-details-section ul li {
    font-size: 1.1rem;
    line-height: 1.8;
}

.program-details-nav {
    background-color: #ffffff;
    padding: 15px 0;
    border-bottom: 1px solid #dee2e6;
    /* position: sticky; */
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.program-details-nav .nav-pills .nav-link {
    border: 1px solid #dee2e6;
    border-radius: .25rem;
    margin-right: 10px;
    color: #495057;
    background-color: #f8f9fa;
    padding: .5rem 1rem;
}

.program-details-nav .nav-pills .nav-link.active {
    color: #fff;
    background-color: #007bff;
    border-color: #007bff;
}


#requirements{
    background-color: #000812;
    color:#ffffff;
}

.requirements_box{
    border-radius: 1rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
    -webkit-padding-start: 1rem;
    padding-inline-start: 1rem;
    -webkit-padding-end: 1rem;
    padding-inline-end: 1rem;
    background: rgba(255, 255, 255, 0.20);
}

.css-x5hrsl {
    fill: none;
    width: 2rem;
    height: 2rem;
}

.css-1c38uqx {
    font-weight: 500;
}

.chakra-stack{
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.css-171nx64 {
    display: grid;
    grid-gap: 2rem;
    grid-template-columns: repeat(1, minmax(0, 1fr));
}

.section-title{
    text-align: start;
}
.section-title h2{
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 3rem;
    line-height: 60px;
}

.section-title h6{
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 18px;
    line-height: 50px;
}
.section-title p{
    font-family: var(--font-family-secondary);
    font-weight: 400;
    font-size: 18px;
    margin: 0 auto;
}


@media screen and (max-width: 768px) {
    .section-title h2{
        font-size: 25px;
        line-height: 40px;
    }
    .section-title h6{
        font-size: 16px;
        line-height: 30px;
    }
    .section-title p{
        font-size: 16px;
    }
}


.challenges_research_box {
    border: 1px solid #eee;
    /* box-shadow: 0 4px 8px rgba(52, 83, 199, 0.1); */
    transition: all 0.3s ease-in-out;
    border: 2px solid #05fc !important;
    box-shadow: 0 10px 20px #0055ff80;
    padding: 12px 20px;
}

.challenges_research_box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

.challenges_research_box .challenges-title{
    font-size: 20px;
    font-family: var(--font-family);
    font-weight: 500;
    line-height: 30px;
    margin-bottom: 10px;
}

.challenges_research_box .challenges-text{
    font-size: 16px;
    font-family: var(--font-family);
    font-weight: 400;
    line-height: 30px;
    margin-bottom: 10px;
}

.flex{
    display:flex;
}

@media screen and (max-width: 768px) {
    .flex{
        flex-direction: column;
    }
    .card-body.flex{
      padding: 0;
    }
}

.challenges-heading{
    font-size: 30px;
    font-family: var(--font-family);
    font-weight: 500;
    line-height: 40px;
    /* max-width: 400px; */
    margin-bottom: 10px;
    margin: 0 auto;
    text-transform: capitalize;
}

@media screen and (max-width: 768px) {
    .challenges-heading {
        font-size: 23px;
        line-height: 35px;
    }
}

.challenges_research_icon img{
    color: #05fc;
    width: 50px;
}

.single-challenges-container{
    display: flex;
    gap:20px;
    margin-bottom: 10px;
}

.single-challenges-container .single-challenges-content h3{
    margin-bottom: 0px;
    font-size: 20px;
    font-family: var(--font-family);
    color:var(--primary-clr);
}

.single-challenges-container .single-challenges-content p{
    margin-bottom: 0px;
    font-size: 16px;
    font-family: var(--font-family);
    color:var(--color-black);
}

.single-challenges-container .single-challenges-icon{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 25px;
    height: 25px;
    border-radius: 10px;
    background-color: var(--primary-clr);
    color: var(--color-white);
}

.single-challenges-container .single-challenges-icon .fa-check{
    font-size: 10px;
}

.single-challenges-image{
    object-fit: cover;
    /* width: 100% !important;
    height: 60% !important; */
    box-shadow:  0 4px 8px rgba(52, 83, 199, 0.1);;
}

.challenges-description{
    max-width: 600px;
    margin:0 auto;
    padding-top: 20px;
}

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

.hackathon-title{
   color: var(--primary-clr);
   font-size: 1.4rem;
   font-family: var(--font-family);
   font-weight: 400;
   line-height: 50px;
   text-transform: uppercase;
}

.hackathon-description{
    font-size: 40px;
    font-family: var(--font-family);
    color:var(--color-black);
    font-weight: 600;
}


.lists-container{
    padding-top: 50px;
}

.lists-container  .list li{
    list-style: square !important;
}

.lists-container  .list li{
    font-size: 16px;
    font-family: var(--font-family);
    font-weight: 400;
    color: var(--color-black)
}


.lists-container h3{
    font-size: 30px;
    font-family: var(--font-family);
    font-weight: 600;
    color: var(--color-black);
}

@media screen and (max-width: 768px) {
    .hackathon-description{
        font-size: 20px;
    }
    .hackathon-title{
        font-size: 20px;
    }
    /* .single-challenges-container{
        margin: 0 auto;
        width: 100%;
    }
    .single-challenges-container .single-challenges-icon{
        width: 20px;
        height: 20px;
    } */
}


.news_slider  .slick-slide {
  padding: 0 15px;
}
.news_slider .slick-list {
  margin: 0 -15px;
}

        .event-header-image {
            width: 100%;
            height: 400px;
            object-fit: cover;
        }
        .event-details-card {
            background-color: #fff;
            border-radius: 15px;
            padding: 2.5rem;
            margin-top: -100px;
            position: relative;
            z-index: 10;
            box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.1);
            border: 1px solid #dee2e6;
        }
        .detail-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 1.5rem;
        }
        .detail-item .icon {
            font-size: 1.5rem;
            color: #0d6efd;
            margin-right: 1rem;
            width: 24px;
            text-align: center;
        }
        .detail-item div {
            flex: 1;
        }
        .tickets-section h4 {
            font-weight: bold;
        }
        .ticket-type {
            display: flex;
            justify-content: space-between;
            margin-bottom: 1rem;
            padding-bottom: 1rem;
            border-bottom: 1px solid #eee;
        }
        .ticket-type:last-child {
            border-bottom: none;
        }

.content-card {
    background-color: var(--color-white);
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 106, 255, 0.1), 0 6px 20px rgba(0, 106, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.content-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 106, 255, 0.2), 0 12px 40px rgba(0, 106, 255, 0.2);
}

.card-event {
    border-radius: 0.75rem;
    transition: all 0.3s ease-in-out;
    box-shadow: rgba(0, 106, 255, 0.16) 0px 3px 6px, rgba(0, 106, 255, 0.23) 0px 3px 6px;
    
}

.card-event img{
    height: 465px !important;
    object-fit: cover;
}

.card-event:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 106, 255, 0.2), 0 12px 40px rgba(0, 106, 255, 0.2);
}

.card-event .card-img-top {
    border-top-left-radius: 0.75rem;
    border-top-right-radius: 0.75rem;
}

.training-section {
    padding: 50px 0;
}

.training-card {
    background-color: #161B22;
    border: 1px solid #30363d;
    border-radius: 0.5rem;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    color: #c9d1d9;
}

.training-card img {
    width: 80px;
    height: 80px;
    border-radius: 0.5rem;
    margin-right: 1.5rem;
}

.training-card-content h5 {
    font-size: 1.25rem;
    font-weight: bold;
    color: white;
}

.training-card-content p {
    color: #c9d1d9;
}

.training-card-content a {
    color: #58a6ff;
    text-decoration: none;
}

.explore-resource-card {
    background-color: #161B22;
    border: 1px solid #30363d;
    border-radius: 0.5rem;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    color: #c9d1d9;
}

.explore-resource-card img {
    width: 100%;
    border-radius: 0.5rem;
    margin-bottom: 1.5rem;
}

.explore-resource-card-content h5 {
    font-size: 1.25rem;
    font-weight: bold;
    color: white;
}

.explore-resource-card-content p {
    color: #c9d1d9;
}
