/**========================================================================
 *                                  Roots
 *========================================================================**/

:root {
    --blue: #0078d4;
    --blueDark: #0062ad;
    --dark-blue: #005393;
    --orange: #d83b01;
}

/**========================================================================
 *                                 GENERAL
 *========================================================================**/

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

body {
    font-family: "Open Sans", sans-serif;
    font-size: 16px !important;
    scroll-behavior: smooth;
}

.full-body {
    overflow-x: hidden !important;
}

/* BUTTONS */

.btn {
    display: flex;
    padding: 10px 24px;
    font-size: 0.8rem;
    border: 2px solid #fff;
    border-radius: 2rem;
    line-height: 1;
    /* margin: 0 0.2rem; */
    transition: 0.3s;
    white-space: nowrap;
}

/* FONT SIZE */

.text-xs {
    font-size: 13px !important;
}

/*  */
.checkbox {
    display: inline-block;
    transform: translateZ(0);
}

.checkbox label {
    cursor: pointer;
    padding-left: 0;
    position: unset;
    display: unset;
    color: black;
    font-size: 15px;
}

.checkbox input[type="checkbox"] {
    opacity: 0;
    position: absolute;
    margin: 0;
    z-index: -1;
    width: 0;
    height: 0;
    overflow: hidden;
    left: 0;
    pointer-events: none;
}

.checkbox .checkbox-material {
    vertical-align: middle;
    position: relative;
    top: 3px;
    padding-right: 10px;
}

.checkbox .checkbox-material:before {
    position: absolute;
    left: 8px;
    top: 2px;
    content: "";
    background-color: rgba(0, 0, 0, 0.5);
    height: 4px;
    width: 4px;
    border-radius: 100%;
    z-index: 1;
    opacity: 0;
    margin: 0;
}

.checkbox .checkbox-material .check {
    position: relative;
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid;
    border-radius: 2px;
    overflow: hidden;
    z-index: 1;
}

.checkbox .checkbox-material .check:before {
    position: absolute;
    content: "";
    transform: rotate(45deg);
    display: block;
    margin-top: -4px;
    margin-left: 6px;
    width: 0;
    height: 0;
    box-shadow: 0 0 0 0, 0 0 0 0, 0 0 0 0, 0 0 0 0, 0 0 0 0, 0 0 0 0,
        0 0 0 0 inset;
    animation: checkbox-off 0.3s forwards ease-out;
}

.checkbox input[type="checkbox"]:focus+.checkbox-material .check:after {
    opacity: 0.2;
}

.checkbox input[type="checkbox"]:checked+.checkbox-material .check:before {
    box-shadow: 0 0 0 10px, 10px -10px 0 10px, 32px 0px 0 20px, 0px 32px 0 20px,
        -5px 5px 0 10px, 20px -12px 0 11px;
    animation: checkbox-on 0.3s forwards ease-out;
}

.checkbox input[type="checkbox"]:not(:checked)+.checkbox-material:before {
    animation: rippleOff 700ms forwards ease-out;
}

.checkbox input[type="checkbox"]:checked+.checkbox-material:before {
    animation: rippleOn 700ms forwards ease-out;
}

.checkbox input[type="checkbox"]:not(:checked)+.checkbox-material .check:after {
    animation: rippleOff 700ms forwards ease-out;
}

.checkbox input[type="checkbox"]:checked+.checkbox-material .check:after {
    animation: rippleOn 700ms forwards ease-out;
}

.checkbox input[type="checkbox"][disabled]:not(:checked)~.checkbox-material .check:before,
.checkbox input[type="checkbox"][disabled]+.circle {
    opacity: 0.5;
}

.checkbox input[type="checkbox"][disabled]+.checkbox-material .check:after {
    background-color: rgba(0, 0, 0, 0.84);
    transform: rotate(-45deg);
}

.checkbox-material .check {
    color: #0783e9;
}

.checkbox-material:before {
    background-color: #0783e9;
}

input[type="checkbox"]:checked+.checkbox-material .check {
    color: #0783e9;
}

@keyframes checkbox-on {
    0% {
        box-shadow: 0 0 0 10px, 10px -10px 0 10px, 32px 0px 0 20px,
            0px 32px 0 20px, -5px 5px 0 10px, 15px 2px 0 11px;
    }

    50% {
        box-shadow: 0 0 0 10px, 10px -10px 0 10px, 32px 0px 0 20px,
            0px 32px 0 20px, -5px 5px 0 10px, 20px 2px 0 11px;
    }

    100% {
        box-shadow: 0 0 0 10px, 10px -10px 0 10px, 32px 0px 0 20px,
            0px 32px 0 20px, -5px 5px 0 10px, 20px -12px 0 11px;
    }
}

@keyframes checkbox-off {
    0% {
        box-shadow: 0 0 0 10px, 10px -10px 0 10px, 32px 0px 0 20px,
            0px 32px 0 20px, -5px 5px 0 10px, 20px -12px 0 11px, 0 0 0 0 inset;
    }

    25% {
        box-shadow: 0 0 0 10px, 10px -10px 0 10px, 32px 0px 0 20px,
            0px 32px 0 20px, -5px 5px 0 10px, 20px -12px 0 11px, 0 0 0 0 inset;
    }

    50% {
        transform: rotate(45deg);
        margin-top: -4px;
        margin-left: 6px;
        width: 0px;
        height: 0px;
        box-shadow: 0 0 0 10px, 10px -10px 0 10px, 32px 0px 0 20px,
            0px 32px 0 20px, -5px 5px 0 10px, 15px 2px 0 11px, 0 0 0 0 inset;
    }

    51% {
        transform: rotate(0deg);
        margin-top: -2px;
        margin-left: -2px;
        width: 20px;
        height: 20px;
        box-shadow: 0 0 0 0, 0 0 0 0, 0 0 0 0, 0 0 0 0, 0 0 0 0, 0 0 0 0,
            0px 0px 0 10px inset;
    }

    100% {
        transform: rotate(0deg);
        margin-top: -2px;
        margin-left: -2px;
        width: 20px;
        height: 20px;
        box-shadow: 0 0 0 0, 0 0 0 0, 0 0 0 0, 0 0 0 0, 0 0 0 0, 0 0 0 0,
            0px 0px 0 0px inset;
    }
}

@keyframes rippleOn {
    0% {
        opacity: 0.5;
    }

    100% {
        opacity: 0;
        transform: scale(13, 13);
    }
}

@keyframes rippleOff {
    0% {
        opacity: 0.5;
    }

    100% {
        opacity: 0;
        transform: scale(13, 13);
    }
}

p {
    line-height: 1.8;
    color: #4e4e4e;
}

p a,
p a:visited {
    color: var(--blue) !important;
    text-decoration: none;
    transition: color 0.3s ease;
    outline: 0;
}

p a:hover,
p a:focus {
    color: #ff9900 !important;
}

/**========================================================================
 *                                 CLASSES
 *========================================================================**/

.btn-base {
    background-color: var(--blue) !important;
    padding: 10px 24px;
    color: white;
    border-radius: 4px;
    font-weight: 500;
    font-size: 16px;
    border: 2px solid var(--blue);
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.btn-orange {
    background-color: var(--orange) !important;
    border: 2px solid var(--orange);
}

.btn-base:hover {
    background-color: white !important;
    border-color: var(--blue);
    color: var(--blue);
}

.btn-orange:hover {
    border-color: var(--orange);
    color: var(--orange);
}

.btn-base i {
    font-size: 18px;
    opacity: 0;
    margin-left: -18px;
    transition: all 0.3s ease;
}

.btn-base:hover i {
    opacity: 1;
    margin: 0;
}

.btn-secondary {
    background-color: var(--blue);
    padding: 8px 24px;
    color: white;
    font-weight: 500;
    font-size: 16px;
    text-align: center;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: var(--dark-blue);
}

.btn_blue_outline {
    color: var(--blue);
    background: none;
    border: 2px solid var(--blue);
    border-radius: 3px;
    font-size: 12px;
    letter-spacing: 2px;
    font-weight: 600;
    text-transform: uppercase;
    padding: 14px 19px 14px;
    transition: all 0.3s ease;
}

.btn_blue_outline:hover {
    background: var(--blue);
    color: white;
}

.btn_white_outline {
    background: none;
    border: 2px solid #ffffff;
    font-size: 12px;
    color: #ffffff;
    text-shadow: none;
    letter-spacing: 2px;
    font-weight: 600;
    text-transform: uppercase;
    padding: 14px 19px 14px;
    transition: all 0.3s ease;
    border-radius: 3px;
}

.btn_white_outline:hover {
    color: var(--blue);
    background: #fff;
}

.btn_rounded {
    border-radius: 30px;
}

.btn_effect {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn_effect span {
    visibility: hidden;
    margin-bottom: -1px;
}

.btn_effect::before,
.btn_effect::after {
    content: attr(title);
    position: absolute;
    width: 100%;
    text-align: center;
    transition: all 0.111s linear 0.111s;
    text-indent: 0;
}

.btn_effect::after {
    transform: translateY(100%);
    opacity: 0;
    display: inline-block;
}

.btn_effect:hover::before {
    transform: translateY(-100%);
    opacity: 0;
}

.btn_effect:hover::after {
    transform: translateY(0);
    opacity: 1;
}

.big-heading {
    font-size: 50px;
    text-transform: uppercase;
    font-weight: 700;
}

.section-heading {
    color: black !important;
    font-size: 24px;
    text-transform: capitalize !important;
    line-height: 1.3;
}

.sub-heading {
    color: black !important;
    font-size: 24px;
    text-transform: capitalize !important;
    line-height: 1.3;
}

.cover-heading {
    font-size: 35px;
    text-transform: capitalize !important;
    text-shadow: 0 0 12px rgb(0 0 0 / 75%);
}

.left-line.top-heading {
    position: relative;
    padding-left: 62px;
}

.left-line.top-heading::before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    height: 2px;
    width: 50px;
    background-color: var(--blue);
}

.secondary-heading {
    color: black !important;
    font-size: 29px;
    line-height: 1.2;
}

.title {
    position: relative;
}

.title::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 0);
    height: 3px;
}

.title::after {
    content: "";
    position: absolute;
    background-color: var(--blue);
    width: 140px;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 0);
    height: 3px;
    width: 140px;
}

.title.title-light::after {
    background-color: white;
}

.heading-underline {
    position: relative;
}

.heading-underline::before {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 0;
    border-left: 12px solid transparent !important;
    border-right: 12px solid transparent !important;
    border-bottom: 18px solid var(--blue);
    z-index: 2;
    transform: translate(-50%);
}

.heading-underline::after {
    content: "";
    position: absolute;
    left: 50%;
    width: 0;
    height: 0;
    bottom: -3px;
    background-color: transparent;
    -webkit-backface-visibility: hidden;
    border: 0;
    border-left: 8px solid transparent !important;
    border-right: 8px solid transparent !important;
    border-bottom: 12px solid #fff !important;
    transform: translate(-50%) rotate(0);
    z-index: 2;
}

.secondary-heading-underline {
    position: relative;
}

.secondary-heading-underline::before {
    content: "";
    position: absolute;
    width: 140px;
    height: 3px;
    background: var(--blue);
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 0);
}

.secondary-heading-underline::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 13px;
    height: 13px;
    background-color: #fff;
    transform: translate(-50%) rotate(45deg);
    border: 2px solid var(--blue);
    z-index: 2;
}

.big-text {
    font-size: 18px !important;
}

.text {
    font-size: 16px !important;
}

.small-text {
    font-size: 14px !important;
}

.ext-small-text {
    font-size: 11px !important;
}

/*=======  Colors  =======*/

.text-blue {
    color: var(--blue);
}

.text-gray {
    color: #666;
}

.border-blue {
    border-color: var(--blue);
}

.text-orange {
    color: var(--orange);
}

.bg-orange {
    background-color: var(--orange);
}

.bg-red {
    background-color: #f32027 !important;
}

.bg-blue {
    background-color: var(--blue) !important;
}

.text-gradient {
    display: inline-block;
    background: linear-gradient(to right,
            var(--blue),
            var(--dark-blue)) !important;
    background-clip: text;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    text-transform: none;
}

.border-blue {
    border-color: var(--blue) !important;
}

.section-gray {
    background-color: #f9f8f7;
}

.section-gray-dark {
    background-color: #dee0f24d;
}

/*=======  SECTIONS PADDING & MARGINS  =======*/

.section-my {
    margin-bottom: 120px !important;
    margin-top: 120px !important;
}

.section-mb {
    margin-bottom: 120px !important;
}

.section-mt {
    margin-top: 120px !important;
}

.section-py {
    padding-top: 120px !important;
    padding-bottom: 120px !important;
}

.section-pb {
    padding-bottom: 120px !important;
}

.section-pt {
    padding-top: 120px !important;
}

.section-padding {
    padding: 120px;
}

/**========================================================================
 *                                 HEADER
 *========================================================================**/

.header {
    position: relative;
    border-bottom: 1px solid var(--blue);
    box-shadow: 0 1px 23px -8px rgb(0 120 212 / 55%);
}

.mob_top_bar {
    display: flex;
    justify-content: center;
    background-color: var(--blue);
    width: 100%;
    padding: 12px 0;
    position: fixed;
    z-index: 999;
    top: 0;
}

.mob_top_bar p {
    color: white;
    font-size: 14px;
}

.top_bar {
    background: var(--blue);
}

.top_bar * {
    color: #ffffff;
    text-shadow: 0 1px 0 rgb(0 0 0 / 18%);
}

.top_bar .top_links {
    color: #ffffff;
    font-size: 14px;
    line-height: 51px;
    font-weight: 400;
}

.top_bar .top_links a {
    font-size: 10px;
    text-transform: uppercase;
    font-weight: 400;
    letter-spacing: 0.6px;
    margin: 0;
    border-right: 1px solid rgba(255, 255, 255, 0.5);
    padding: 0 6px;
    transition: 0.2s all ease;
}

.top_bar .top_links a:first-child {
    padding-left: 0;
}

.top_bar .top_links a:last-child {
    border: none;
}

.top_bar .top_right_links {
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 15px;
}

.top_bar .top_right_links a {
    font-size: 14px;
    transition: 0.2s all ease;
}

.top_bar .top_right_links p i {
    color: white;
    font-size: 16px;
    margin: 7px 10px;
}

.top_bar .top_right_links .social_links {
    display: flex;
    gap: 15px;
    margin-left: 65px;
}

.top_bar .top_right_links .social_links i {
    font-size: 16px;
}

.header .navbar {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 28px;
    padding: 15px 0;
}

.header .navbar .header_logo {
    max-height: 38px;
}

.header .navbar .header_logo.icon {
    display: none;
}

.header .navbar .nav {
    display: flex;
    /* gap: 30px; */
    align-items: center;
}

.header .navbar .nav .nav-item {
    /* position: relative; */
}

.header .navbar .nav .nav-link {
    /* position: relative; */
    color: #262626;
    font-size: 13px;
    padding: 30px 13px;
    text-transform: capitalize;
    transition: 0.2s all ease;
}

.header .navbar .nav .nav-link span.line {
    position: relative;
    padding: 2px 0;
}

.header .navbar .nav .nav-link span.line:before {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 0;
    content: " ";
    height: 1px;
    background-color: #000;
    transform: scaleX(0);
    transition: all 0.2s ease-out;
}

.header .navbar .nav .nav-link:hover span.line::before {
    transform: scaleX(1);
}

.header .navbar .nav .nav-link.active span.line::before {
    transform: scaleX(1);
}

.header .navbar .nav .nav-link.active {
    color: var(--blue);
}

.header .navbar .nav .nav-link:hover {
    color: var(--blue);
}

.header .navbar .nav .nav-item:hover .sub-menu {
    top: 100%;
    border-radius: 0;
    visibility: visible;
    background-color: #f2f2f2;
    display: block;
    opacity: 1;
    user-select: auto;
}

.header .navbar .nav .nav-item .sub-menu {
    position: absolute;
    background-color: #f2f2f2;
    top: 80px;
    left: 45.7%;
    transform: translateX(-50%);
    /* padding: 20px 0 10px; */
    min-width: 900px;
    z-index: 999;
    box-shadow: 0 1px 0px rgba(0, 0, 0, 0.6), 0 0 20px rgba(255, 255, 255, 0.5);
    visibility: hidden;
    opacity: 0;
    transition: all 0.2s ease;
    font-size: 13px;
    user-select: none;
    display: none;
}

.header .navbar .nav .nav-item.erp-dropdown {
    position: relative;
}

.header .navbar .nav .nav-item.erp-dropdown .sub-menu {
    min-width: 570px;
    left: 0;
    top: 47.1px;
    transform: none;
}

.header .navbar .nav .nav-item.partners-dropdown .sub-menu {
    min-width: 0;
    transform: none;
    white-space: nowrap;
}

.sticky_nav .nav .nav-item .sub-menu {
    top: 75px !important;
}

.sticky_nav .nav .nav-item.erp-dropdown .sub-menu {
    top: 48px !important;
}

.vertical-divider {
    width: 0.5px;
    height: 276px;
    background-color: #ccc;
}

.vertical-divider-2 {
    width: 0.5px;
    height: 197px;
    background-color: #ccc;
}

.header .navbar .nav .nav-item .sub-menu .menu-item {
    color: var(--blue);
    position: relative;
    transition: all 0.3s ease;
}

/* .header .navbar .nav .nav-item .sub-menu .menu-item:hover {
    background-color: #E6E6E6;
    color: black;
} */

.header .navbar .nav .nav-item .sub-menu .menu-item a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 10px;
    font-size: 13px;
    min-height: 30px;
    color: black;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.header .navbar .nav .nav-item .sub-menu .menu-item a:hover {
    color: var(--blueDark);
    transform: translateX(5px);
}

.header .navbar .nav .nav-item .sub-menu .menu-item a i {
    font-weight: 400;
}

.header .navbar .nav .nav-item .sub-menu .menu-item .sub-menu {
    /* display: none; */
    position: absolute;
    left: 220px;
    top: 20px;
    padding: 5px 0;
    visibility: hidden;
    opacity: 0;
}

.header .navbar .nav .nav-item .sub-menu .menu-item:hover .sub-menu {
    visibility: visible;
    opacity: 1;
    top: 0;
}

.header .navbar .nav .nav-item .sub-menu .menu-item:hover .sub-menu .menu-item {
    visibility: visible;
    opacity: 1;
    top: 0;
}

/**========================================================================
 *                               MOBILE NAV
 *========================================================================**/

/**========================================================================
 *                           MOBILE NAVIGATION
 *========================================================================**/

.mob-navbar {
    background-color: white;
    padding: 20px 0 0;
}

.mob-logo {
    width: 100px;
}

.navbar-toggler {
    background-image: url(../img/icons/menu_toggler.png);
    background-position: center;
    background-size: cover;
    padding: 18px;
}

.mob-navbar .navbar-nav {
    display: flex;
    justify-content: center;
    flex-direction: column;
    margin: 0px 0 0;
    background-color: #f2f2f2;
}

.mob-navbar .mob-nav-item {
    padding: 15px 0;
    border-bottom: 1px solid #e6e6e6;
}

.mob-navbar .mob-nav-link {
    font-size: 14px;
    letter-spacing: 1px;
    color: #262626;
    padding: 0 20px;
    display: block;
}

.mob-navbar .dropdown-menu {
    width: 100%;
    padding: 0;
    background-color: transparent;
    border: none !important;
    overflow: hidden;
    transition: height 0.5s ease !important;
}

.mob-navbar .dropdown-menu li {
    border-bottom: 1px solid #e6e6e6;
    padding: 12px 20px;
}

.mob-navbar .dropdown-menu li a {
    font-size: 15px;
    color: #262626 !important;
}

.mob-navbar li.mob-nav-item.dropdown {
    padding: 0;
}

.mob-navbar li a.mob-nav-link.dropdown-toggle {
    padding: 15px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mob-navbar .dropdown-item {
    font-weight: 600;
    transition: all 0.5s ease;
    color: rgb(0, 0, 0);
    background-color: white;
    padding: 0 15px;
}

.mob-navbar .dropdown-item:hover {
    background-color: white;
    color: black;
}

.mob-navbar .dropdown-toggle::after {
    display: none;
    transform: rotate(-450deg);
    transition: all 0.6s ease;
}

.mob-navbar .dropdown-toggle::after {
    display: inline-block;
    margin-left: 0.255em;
    vertical-align: 0.255em;
    content: "";
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-bottom: 0;
    border-left: 0.3em solid transparent;
    margin-left: auto;
}

.mob-navbar .dropdown-toggle.show::after {
    transform: rotate(0) !important;
}

.sub-dropdown-menu.show {
    display: block;
}

/*-----------------------------------------------------------------------------------*/
/* STICKY NAVIGATION */
/*-----------------------------------------------------------------------------------*/

.sticky_nav {
    position: fixed;
    width: 100%;
    top: -130px;
    background-color: rgba(255, 255, 255, 1) !important;
    transition-property: top;
    transition-duration: 0.6s;
    transition-timing-function: ease-out;
    padding-top: 4px;
    z-index: 999;
    border-bottom: 1px solid var(--blue);
    box-shadow: 0 1px 23px -8px rgb(0 120 212 / 55%);
}

.sticky_nav .navbar .nav {
    display: flex;
    /* gap: 30px; */
    /* margin-top: 13px; */
}

/* .sticky_nav .navbar .header_logo {
    width: 125px;
} */

.show_sticky {
    top: 0;
}

/**========================================================================
 *                                BREADCRUMB
 *========================================================================**/

.section-breadcrumb {
    height: 460px;
    background-size: cover !important;
    position: relative;
}

.section-breadcrumb.breadcrumb-light::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0)); */
}

.section-breadcrumb .banner-text {
    position: relative;
    display: inline-block;
    padding: 40px 125px 40px 0px;
    border-top: 5px solid rgb(0, 120, 212, 0.5);
    border-bottom: 5px solid rgb(0, 120, 212, 0.5);
    border-right: 5px solid rgb(0, 120, 212, 0.5);
    z-index: 1;
}

.section-breadcrumb .banner-text:before {
    position: absolute;
    left: 0px;
    top: 0px;
    content: "";
    width: 5px;
    height: 30px;
    background: rgb(0, 120, 212, 0.5);
    content: "";
}

.section-breadcrumb .banner-text:after {
    position: absolute;
    left: 0;
    bottom: 0px;
    content: "";
    width: 5px;
    height: 30px;
    background: rgb(0, 120, 212, 0.5);
    content: "";
}

.section-breadcrumb .banner-title h2 {
    color: var(--dark-blue);
    font-weight: 800;
    position: relative;
    z-index: 2;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.section-breadcrumb ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.section-breadcrumb ul li {
    position: relative;
    margin-right: 15px;
    z-index: 2;
}

.breadcrumbs>ul>li:last-child:after {
    display: none;
}

.section-breadcrumb ul li,
.section-breadcrumb ul li a {
    position: relative;
    color: var(--dark-blue);
    font-weight: 600;
    display: inline-block;
    text-transform: capitalize;
}

.section-breadcrumb ul li:after {
    position: absolute;
    content: "/";
    color: var(--dark-blue);
    /* font-weight: 600; */
    right: -16px;
    top: 0;
}

.breadcrumb-shadow.banner-text {
    text-shadow: 0px 0px 20px white, 0px 0px 20px white, 0px -1px 4px white,
        0px 2px 4px white;
}

.breadcrumb-shadow ul li,
.breadcrumb-shadow ul li a {
    text-shadow: 0px 0px 10px white, 0px 0px 10px white, 0px -1px 3px white,
        0px 1px 3px white;
}

.section-breadcrumb.breadcrumb-light .banner-text {
    border-color: rgba(255, 255, 255, 0.8) !important;
}

.section-breadcrumb.breadcrumb-light .banner-text:before,
.section-breadcrumb.breadcrumb-light .banner-text::after {
    background: rgba(255, 255, 255, 0.8);
}

.section-breadcrumb.breadcrumb-light .banner-title h2 {
    color: white;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

.section-breadcrumb.breadcrumb-light ul li:after {
    color: white;
}

.section-breadcrumb.breadcrumb-light ul li,
.section-breadcrumb.breadcrumb-light ul li a {
    color: white;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

.section-breadcrumb.breadcrumb-light .breadcrumb-shadow .banner-text {
    text-shadow: 0px 0px 20px #000, 0px 0px 20px #000, 0px -1px 4px #000,
        0px 2px 4px #000;
}

/**=============================================================
 *                       ERP BREADCRUMB
 *=============================================================**/

.section-erp-breadcrumb {
    background-image: url("../../img/breadcrumb/erp_breadcrumb_img.png");
    background-position: center;
    background-size: cover;
    height: 420px;
}

.section-erp-breadcrumb .banner-text .banner-title h2 {
    text-align: center;
    font-weight: 800;
    color: white;
    text-transform: capitalize;
}

/**=============================================================
 *                       HOME PAGE
 *=============================================================**/

/* HOME SLIDER */

a#slide-16-layer-17 {
    transition: all 0.3s ease !important;
}

a#slide-16-layer-17:hover {
    background-color: var(--blueDark) !important;
}

/* SECTION TOP */

.top-box {
    background-color: #f2f2f2;
}

/* SECTION FEATURES */

.section-features .feature-box {
    transition: all 0.4s ease;
}

.section-features .feature-box:hover {
    padding-top: 74px;
    padding-bottom: 74px;
}

.section-features .feature-box h6 {
    transition: all 0.3s ease;
}

.section-features .feature-box:hover h6 {
    color: var(--blue);
}

/* OUR CLIENTS SLIDER */

[class*="clinic-slider"] .slick-slide {
    text-align: center;
    margin: 20px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

[class*="clinic-slider"] img {
    max-width: 200px;
}

.inner {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: rgb(0 0 0 / 15%) 0px 3px 16px;
}

/**============================================
 *               TESTIMONIALS
 *=============================================**/

/**============================================
 *               SECTION TESTIMONIAL
 *=============================================**/

.section-testimonial {
    background-repeat: no-repeat;
    background-position: 50% 50%;
    -webkit-background-size: cover;
    background-size: cover;
    margin-top: auto;
}

.section-testimonial .testimonial {
    cursor: grab;
}

.section-testimonial .testimonial-space {
    margin: auto;
    max-width: 800px;
    padding: 40px 5%;
}

.section-testimonial .testimonial-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 42px;
}

.section-testimonial .testimonial-img img {
    border-radius: 50%;
    width: 140px;
    height: auto;
    overflow: hidden;
    transition: all 0.3s ease;
}

.section-testimonial .testimonial-text {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.section-testimonial .testimonial-text * {
    color: white;
    font-style: italic;
}

.section-testimonial .testimonial-text .testimonial-message {
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    margin-bottom: 18px;
}

.section-testimonial .testimonial-text .testimonial-name {
    font-size: 16px;
    font-weight: 600;
    position: relative;
    padding-left: 19px;
    text-align: center;
    color: #ccc;
}

.section-testimonial .testimonial-text .testimonial-name::before {
    content: "";
    height: 1.5px;
    width: 25px;
    background-color: #ccc;
    position: absolute;
    left: 50%;
    bottom: -10px;
    transform: translateX(-50%);
}

.section-testimonial .slick-arrow {
    z-index: 9;
    width: 40px;
    bottom: 50%;
    width: 40px;
    padding: 8px;
    border: none;
    font-size: 26px;
    position: absolute;
    transform: translateY(50%);
    background-color: transparent;
    transition: all 0.3s ease;
    color: #ddd;
}

.section-testimonial .slick-prev {
    left: 0;
}

.section-testimonial .slick-next {
    right: 0;
}

.slick-dots {
    position: absolute;
    bottom: -25px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center;
}

.section-testimonial .slick-dots button {
    font-size: 0;
    width: 7px;
    height: 7px;
    background-color: #999;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.section-testimonial .slick-dots li {
    padding: 4px;
}

.section-testimonial .slick-dots li:hover button {
    background-color: #666;
}

.section-testimonial .slick-dots li.slick-active button,
.section-testimonial .slick-dots li:hover .slick-active button {
    width: 10px;
    height: 10px;
    background-color: var(--blue);
}

/**========================================================================
 *                           SOFTWARES PAGE
 *========================================================================**/

/*================== PICTURES SECTION =================*/

.gallery-img {
    position: relative;
    height: 220px;
}

.youtube-intro-page .gallery-img {
    height: 175px;
}

.gallery-img video {
    box-shadow: 0 6px 24px 0px rgb(0 0 0 / 15%) !important;
}

.gallery-img h2 {
    color: var(--blue);
}

.gallery-img img,
.gallery-img video {
    object-fit: cover;
    width: 100%;
    height: 100%;
    box-shadow: 0 6px 24px -8px rgb(0 0 0 / 15%);
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 3px solid var(--teal);
}

.gallery-img:hover img,
.gallery-img:hover video {
    transform: scale(1.04);
    box-shadow: 0 11px 26px -11px rgb(0 0 0 / 20%);
}

.gallery-btn {
    color: var(--blue);
    transition: all 0.3s ease;
}

.gallery-btn:hover {
    color: var(--orange) !important;
}

.section_erp_softwares .gallery-img {
    height: 180px;
}

/**========================================================================
 *                           PRICING PAGE
 *========================================================================**/

.pricing-table-wrapper {
    overflow-x: scroll;
    height: 633px;
}

table.pricing-table {
    width: 100%;

    border-collapse: separate;
    border-spacing: 0;
}

table.pricing-table thead tr th.number,
table.pricing-table tbody tr td:first-child {
    padding: 6px;
}

table.pricing-table tbody tr:nth-child(odd) {
    background-color: #f3f3f3;
}

table.pricing-table.main-table>thead>tr>th {
    z-index: 9 !important;
}

table.pricing-table th,
table.pricing-table td {
    /* cell */
    padding: 10px 1rem;
    font-weight: 600;
    text-align: center;
}

table.pricing-table td p {
    color: black;
}

table.pricing-table th {
    padding: 12px 1.25rem;
    color: white;
}

table.pricing-table th {
    /* header cell */
    font-weight: 700;
    color: #fff;
    border-right: 1px solid rgb(255 255 255 / 40%);

    position: sticky;
    top: 0;
    background-color: var(--blue);
    padding: 13px 1.25rem;
}

table.pricing-table td {
    color: #000000;
    border-right: 1px solid #ccc;
}

table.pricing-table td .thumbnail {
    width: 70px;
}

/* SUB TABLE */

table.pricing-table tbody td th {
    background: transparent;
    color: black;
    font-size: 18px;
    font-weight: 700;
    padding: 10px 16px;
}

table.pricing-table tbody td tr {
    background-color: transparent !important;
}

/* Table Addons */

table.pricing-table th.table-addons-heading {
    background-color: var(--blue) !important;
}

table.pricing-table .table-addon-row th {
    padding-top: 10px !important;
    padding-bottom: 10px !important;
}

/**=============================================================
 *                       CONTACT US PAGE
 *=============================================================**/

.contactUsPage .section-breadcrumb {
    padding-bottom: 95px !important;
}

/**============================================
 *               SECTION INFO
 *=============================================**/

.section-contact-info .info-grid {
    transform: translateY(-50%);
}

.section-contact-info .info-grid .info-col {
    border: 3px solid var(--blue);
}

.section-contact-info .info-grid .icon {
    display: flex;
    justify-content: center;
    align-items: center;

    position: relative;
    font-size: 22px;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    color: #fff;
    background: linear-gradient(95.45deg,
            var(--blue) 0.64%,
            var(--dark-blue) 98.23%);
    box-shadow: 0px 10px 25px rgb(0, 120, 212, 0.6);
    z-index: 1;
    margin-top: -45px;
    margin-bottom: 0px;
    transform: translatey(-35%);
}

/**============================================
 *               SECTION CONTACT FORM
 *=============================================**/

.section-form .contact-form input,
.section-form .contact-form textarea,
.section-form .contact-form select {
    width: 100%;
    border: 1px solid #ddd;
    padding: 12px;
    font-style: italic;
    font-family: "Lato", sans-serif;
}

.section-form .contact-form input:last-child {
    margin-bottom: 0 !important;
}

/**============================================
  *               SECTION CONTACT SIDE INFO
  *=============================================**/

.contact-side-info {
    background: var(--blue);
    color: #fff;
    padding: 48px 30px;
    margin-bottom: auto;
}

.contact-side-info .single-address {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-bottom: 30px;
}

.contact-side-info .address-icon {
    align-self: flex-end;
    min-width: 43px;
}

.contact-side-info .address-icon i {
    border: 2px solid white;
    color: white;
    display: table-cell;
    font-size: 16px;
    height: 43px;
    vertical-align: middle;
    width: 43px;
    text-align: center;
    border-radius: 3px;
}

.contact-side-info .single-address:first-child .address-icon i {
    width: 60px;
}

.contact-side-info .address-info {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.contact-side-info .address-info>h6 {
    color: #d8d8d8;
    text-transform: uppercase;
}

.contact-side-info .address-info>h5 {
    color: #fff;
    text-transform: uppercase;
    line-height: 18px;
    margin-top: auto;
}

.contact-side-info .address-info>h5 a:hover {
    color: var(--orange);
}

/**=============================================================
 *                         ABOUT US PAGE
 *=============================================================**/

.section_about .packages_card {
    color: rgb(0, 0, 0);
    text-align: center;
    padding: 39px 0 25px;
    transition: 0.4s ease-out;
    border: 1px solid var(--blue);
}

.section_about .seo_services p {
    font-weight: 300;
    margin-bottom: 20px;
}

.section_about .packages_card:hover {
    background: rgba(0, 120, 212, 0.7) url(../../img/pattern-bg.png) top repeat;
    color: white !important;
    border: none;
}

.section_about .packages_card i {
    display: inline-block;
    width: 57px;
    height: 57px;
    color: white;
    background: var(--blue);
    border-radius: 4px;
    padding: 12px;
    font-size: 30px;
    line-height: 1;
    margin-bottom: 25px;
}

.section_about .packages_card h4,
.section_about .packages_card h4 strong {
    font-size: 21px;
    text-transform: capitalize;
    margin-bottom: 19px;
}

.section_about .packages_card h6 {
    font-size: 16px;
    line-height: 1.3;
    margin-bottom: 4px;
}

.section_about .packages_card p {
    font-size: 16px;
    padding: 0 24px;
    margin-bottom: 10px;
    line-height: 1.75;
}

.section_about .packages_card:hover p {
    color: white;
}

/**============================================
 *               SECTION SOFTWARES
 =============================================*/

/*================== SOFTWARE SLIDER =================*/

.slick-arrow {
    z-index: 9;
    width: 40px;
    bottom: 50%;
    border: none;
    font-size: 26px;
    position: absolute;
    transform: translateY(0);
    background-color: transparent;
    transition: all 0.3s ease;
    color: var(--blue);
}

.slick-arrow:hover {
    color: rgb(0, 0, 0);
}

.slick-prev {
    left: -40px;
}

.slick-next {
    right: -40px;
}

/**============================================
 *               SECTION COUNTER
 =============================================*/

.section-counter {
    background-image: url("../../img/home/counter_img.jpg");
    background-position: center;
    background-size: cover;
}

.section-counter .counter-bg {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    width: 100%;
    padding: 90px 0;
    background-color: rgba(0, 0, 0, 0.631);
}

.section-counter .counter-box {
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-right: 1px solid white;
    padding: 0 100px;
}

.section-counter .counter-box:last-child {
    border: none;
}

.section-counter .counter-box .counter {
    font-size: 55px;
    font-weight: bold;
}

.section-counter .counter-box .counter-text {
    font-size: 15px;
    margin-bottom: 0;
    font-weight: bold;
    color: #ddd;
}

/**============================================
*               SECTION TEAM
*=============================================**/

.profile_card {
    position: relative;
    width: 320px;
    height: 150px;
    background: #fff;
    transition: 0.5s;
    box-shadow: 0px 4px 21px -5px rgb(0 0 0 / 35%);
}

.profile_card:not(.ceo_card):hover {
    height: 380px;
}

.profile_card_lg:hover {
    height: 330px !important;
}

.profile_card_md:hover {
    height: 380px !important;
}

.manager_card:hover {
    height: 350px;
}

/* .rawen-card:hover {
    height: 200px !important;
} */

.anita-card:hover {
    height: 470px !important;
}

.alphio-card:hover {
    height: 440px !important
}

@media screen and (max-width: 500px) {
    .profile_card {
        height: 390px !important;
    }

    .profile_card_lg.profile_card {
        height: 345px !important;
    }

    .profile_card_md.profile_card {
        height: 415px !important;
    }

    .manager_card.profile_card {
        height: 380px !important;
    }
}

.profile_card .lines {
    position: absolute;
    inset: 5px;
    background: #444;
    overflow: hidden;
}

.profile_card .lines:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 120px;
    background: linear-gradient(transparent,
            #45f3ff,
            #45f3ff,
            #45f3ff,
            transparent);
    animation: animate 4s linear infinite;
}

@keyframes animate {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.profile_card .lines::after {
    content: "";
    position: absolute;
    inset: 3px;
    background: #f8f8f8;
}

.profile_card .imgBx {
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 150px;
    background-color: #444;
    z-index: 10;
    overflow: hidden;
    transition: 0.5s;
}

.profile_card .imgBx::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 150px;
    background: linear-gradient(transparent,
            #ff9d3c,
            #ff9d3c,
            #ff9d3c,
            transparent);
    animation: animate2 4s linear infinite;
}

@keyframes animate2 {
    0% {
        transform: translate(-50%, -50%) rotate(360deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
}

.profile_card .imgBx::after {
    content: "";
    position: absolute;
    inset: 3px;
    background-color: #ffffff;
}

.profile_card .imgBx img {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 1;
    width: calc(100% - 20px);
    height: calc(100% - 20px);
    transition: 0.5s;
    object-fit: cover;
    object-position: top;
}

.profile_card .content {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    overflow: hidden;
    position: relative;
}

.profile_card .content .details {
    padding: 30px 18px 25px;
    text-align: center;
    width: 100%;
    transition: 0.5s;
    opacity: 0;
    position: absolute;
    visibility: hidden;
    top: 230px;
}

.profile_card .content .details h2 {
    font-size: 18px;
    font-weight: 600;
    color: var(--orange);
}

.profile_card .content .details h2 span {
    font-size: 16px;
    font-weight: 500;
    color: var(--orange);
}

.profile_card .content .details h3 {
    font-size: 16px;
    font-weight: 500;
    color: var(--blue);
    line-height: 1.7;
}

.profile_card:hover .content .details h2 {
    margin-bottom: 20px;
}

.profile_card:hover .content .details {
    visibility: visible;
    opacity: 1;
    top: 90px;
}

.ceo_card {
    height: 378px;
    margin: 0 auto;
}

.ceo_card .imgBx {
    width: 210px;
    height: 210px;
}

.ceo_card .content .details {
    transform: translateY(0px);
    padding: 30px 40px;
    visibility: visible;
    opacity: 1;
    top: 160px;
}

.ceo_card:hover .content .details {
    top: 160px;
}

.ceo_card .content .details h2 {
    margin-bottom: 0 !important;
}

/**============================================
*               SECTION ACCORDION
*=============================================**/

.section_accordion .accordion-item {
    border-radius: 0px;
    margin-bottom: 20px;
}

.section_accordion .accordion-item .accordion-button {
    border-radius: 0px;
    color: var(--blue);
    padding: 15px 15px;
    border: 1px solid #454545;
    background-color: transparent;
}

.section_accordion .accordion-item .accordion-body {
    line-height: 1.7;
    background: rgba(0, 0, 0, 0.1);
    padding: 15px 15px;
    border: 1px solid #454545;
    background-color: transparent;
}

.section_accordion .accordion-item .accordion-button::before {
    content: "";
    width: 1rem;
    height: 0.1rem;
    display: block;
    position: absolute;
    right: 1rem;
    top: 1.7rem;
    background-color: var(--blue);
}

.section_accordion .accordion-item .accordion-button::before,
.section_accordion .accordion-item .accordion-button:after {
    content: "";
    width: 1rem;
    height: 0.1rem;
    display: block;
    position: absolute;
    right: 1rem;
    top: 1.7rem;
    background-color: var(--blue);
}

.section_accordion .accordion-item .accordion-button:after {
    transform: rotate(90deg);
}

.section_accordion .accordion-item .accordion-button:not(.collapsed) .accordion-item {
    border: 0px;
}

.section_accordion .accordion-item .accordion-button:not(.collapsed)::after {
    transform: rotate(-180deg);
}

.section_accordion .accordion-item:last-of-type .accordion-button.collapsed {
    border-radius: 0px;
}

/**=============================================================
 *                    PACKAGES PRICING TABLE
 *=============================================================**/

.pricing-table {
    text-align: center;
    margin-bottom: 35px;
    border-radius: 5px;
    border: 6px solid #efefef;
    transition: all 0.36s ease;
}

.pricing-table.featured {
    border: 6px solid var(--blue);
}

.pricing-table.featured .pt-header .plan-title {
    background: var(--blue);
    color: white !important;
}

.pricing-table.featured .pt-header .plan-price {
    background: var(--blue);
    color: white !important;
}

.pricing-table.featured .pt-header .plan-price span,
.pricing-table.featured .pt-header .plan-price small {
    background: var(--blue);
    color: white !important;
}

.pricing-table.featured .pt-header .plan-price:after {
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-top: 10px solid var(--blue);
}

.pricing-table.featured .pt-footer {
    background-color: var(--blue);
}

.pricing-table .pt-header .plan-title {
    text-transform: uppercase;
    font-weight: bold;
    font-size: 18px;
    line-height: 36px;
    padding: 16px 15px 8px;
    margin-bottom: 0;
    background: #efefef;
    color: #4a4a4a;
}

.pricing-table .pt-header .plan-price {
    background: #efefef;
    padding: 0 12px 37px;
    transition: all 0.5s ease;
    position: relative;
}

.pricing-table .pt-header .plan-price span {
    font-size: 18px;
    font-weight: bold;
}

.pricing-table .pt-header .plan-price small {
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
}

.pricing-table .pt-header .plan-price span,
.pricing-table .pt-header .plan-price small {
    color: var(--blue);
    transition: all 0.8s ease;
}

.pricing-table .pt-header .plan-price:after {
    content: "";
    position: absolute;
    top: 100%;
    right: 50%;
    transform: translate(50%, 0);
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-top: 10px solid #efefef;
    transition: all 0.5s ease;
}

.pricing-table .pt-features {
    padding: 40px 25px 0;
    margin-bottom: 30px;
    text-align: start;
}

.pricing-table .pt-features li {
    padding: 3px 0;
    list-style: none;
    font-size: 14px;
    font-weight: 400;
    color: #616161;
    line-height: 23px;
    margin-bottom: 10px;
}

.pricing-table .pt-features li i {
    font-size: 13px;
    padding-right: 7px;
    color: var(--blue);
}

.pricing-table .pt-footer {
    line-height: 46px;
    background: #efefef;
    padding: 5px 15px 5px;
    font-size: 23px;
    font-weight: 700;
    color: var(--blue);
    transition: all 0.5s ease;
}

.pricing-table .pt-footer a {
    font-size: 11px;
    color: var(--blue);
    background: #fff;
    border: 2px solid;
    border-radius: 60px;
    padding: 10px 19px;
    margin-bottom: 14px;
    text-transform: uppercase;
    border: none;
    transition: all 0.25s ease;
    letter-spacing: 1px;
}

.pricing-table .pt-footer a:hover {
    color: #fff !important;
    background: var(--blue);
}

/**=============================================================
 *                         PACKAGES PAGE
 *=============================================================**/

/* PRICING PLAN */

.pricing_plan {
    position: relative;
    z-index: 8;
    background: #fff;
    border: 1px solid #e3e3e3;
    overflow: hidden;
    padding: 28px 25px 29px 25px;
    transition: 0.5s cubic-bezier(0.25, 0.5, 0.06, 0.85);
}

.pricing_plan .ppflag {
    position: absolute;
    top: 25px;
    right: -38px;
    font-size: 14px;
    text-transform: uppercase;
    background: var(--blue);
    color: white;
    padding: 6px 45px;
    transform: rotate(45deg);
}

.pricing_plan .ppheader {
    display: inline-block;
}

.pricing_plan .ppheader h4 {
    font-size: 18px;
    font-weight: 700;
    color: #000;
    text-transform: uppercase;
    padding-bottom: 3px;
    margin-bottom: 12px;
}

.pricing_plan .ppfeatures li {
    list-style: none;
    margin-bottom: 0;
    padding-bottom: 12px;
    font-size: 14px;
    text-transform: capitalize;
    color: #616161;
}

.pricing_plan .ppfeatures li i {
    padding-right: 8px;
    color: var(--blue);
}

.pricing_plan .ppfooter {
    float: right;
    position: absolute;
    bottom: 23px;
    right: 23px;
    text-align: center;
}

.pricing_plan .ppfooter h4 {
    font-size: 18px;
    color: var(--blue);
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 12px;
    transition: 0.5s cubic-bezier(0.25, 0.5, 0.06, 0.85);
}

/**=============================================================
 *                      SERVICES SOCIAL MEDIA PAGE
 *=============================================================**/

.service-overlap-padding {
    height: 100%;
    padding-bottom: 120px;
}

.fixed-image {
    background-position: center;
    background-attachment: fixed;
    background-size: cover;
    padding: 200px 0px;
}

ul.list-style-1 {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

ul.list-style-1 li {
    position: relative;
    padding-left: 25px;
}

ul.list-style-1 li::before {
    content: "";
    background-color: var(--blue);
    position: absolute;
    top: 6.5px;
    left: 0;
    width: 12px;
    height: 12px;
    border-radius: 2px;
    transform: rotate(45deg);
}

/**=============================================================
*                      FLYER PAGES
*=============================================================**/

.flyer-table thead th {
    text-align: start;
}

.flyer-table thead th,
.flyer-table tbody tr td {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 12px 24px !important;
}

.services-flyer-page p a,
.services-flyer-page h2 a {
    color: var(--blue);
}

.services-flyer-page p a:hover,
.services-flyer-page h2 a:hover {
    text-decoration: underline;
}

.services-flyer-page .sidebar .list-style-1 a {
    transition: all 0.3s ease;
}

.services-flyer-page .sidebar .list-style-1 a:hover {
    color: var(--blue);
}

/**=============================================================
 *                      SERVICES PAGES
 *=============================================================**/

.service_box {
    border: 2px solid var(--blue);
    background-color: #fff;
    color: var(--blue);
}

.services_page_services_cont {
    position: relative;
    text-align: center;
    background-color: #fff;
    border: 1px solid #e5e5e5;
    padding: 36px 20px 28px;
    text-shadow: none;
    box-shadow: 0 2px 0 0px rgb(0 0 0 / 2%);
    margin: 40px 15px 30px;
}

.services_page_services_cont i {
    box-shadow: 0 0 0 7px transparent, 0 0 0 8px transparent;
    font-size: 36px;
    padding: 20px;
    background: #fff;
    color: var(--blue);
    position: absolute;
    top: 0;
    transform: translate(-50%, -50%);
    left: 50%;
    border-radius: 100%;
    cursor: default;
    width: 76px;
    height: 76px;
    text-align: center;
    transition: all 0.3s ease-in-out;
}

.services_page_services_cont:hover i {
    background: var(--blue);
    color: #fff !important;
    box-shadow: 0 0 0 7px #fff, 0 0 0 8px #e5e5e5;
}

.services_page_services_cont h4 {
    color: #363636;
    margin-top: 30px;
    margin-bottom: 20px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.services_page_services_cont p {
    color: #818181;
    margin-bottom: 30px;
    font-size: 15px;
    line-height: 1.82;
    padding-left: 15px;
    padding-right: 15px;
}

.bg-overlay-dark {
    position: relative;
}

.bg-overlay-dark::before {
    content: "";
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.2),
            rgba(0, 0, 0, 0.7));
    background-repeat: repeat;
    background-size: 10px;
    position: absolute;
    inset: 0;
}

/**============================================
 *               SERVICE STYLISH BOX
 *=============================================**/

.services-img-cont {
    position: relative;
    height: 100%;
    z-index: 1;
}

.services-img-cont.reflected {
    transform: scaleX(-1);
}

.services-img-cont.reflected .services-img {
    transform: scaleX(-1);
}

.services-img-cont .services-img-pattern {
    background-image: url(../../img/pattern/dot.svg);
    background-size: 10px;
    width: 120px;
    height: 120px;
    position: absolute;
    top: -25px;
    right: -25px;
    z-index: -1;
}

.services-img-cont .services-img-btm {
    position: absolute;
    top: 50%;
    left: -1px;
    transform: translateY(-50%);
    width: 100%;
    height: 85%;
    background-color: var(--blue);
    border-radius: 8px;
    z-index: -1;
}

.services-img-cont .services-img {
    border: 12px solid #fff;
    border-radius: 5px;
    box-shadow: 0px 0px 25px -5px rgba(0, 0, 0, 0.15);
    width: 92%;
    margin-left: auto;
}

.services-form .contact-form-wrapper {
    background-color: white;
    padding: 40px 50px 50px;
    position: relative;
    z-index: 1;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.1);
}

.services-form .contact-form-wrapper .title {
    margin-bottom: 30px;
    font-size: 22px;
    font-weight: 600;
    border-left: 2px solid var(--blue);
    padding-left: 10px;
}

.services-form .contact-form-wrapper .title::before,
.services-form .contact-form-wrapper .title::after {
    display: none;
}

.services-form .contact-form .contact-form-grid {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 28px;
}

.services-form .contact-form .contact-form-grid .form-input {
    grid-column: span 6 / span 6;
    position: relative;
}

.services-form .contact-form .contact-form-grid .form-input .input-wrapper {
    position: relative;
}

.services-form .contact-form .contact-form-grid .form-input .input-label {
    display: block;
    margin-bottom: 14px;
}

.services-form .contact-form .contact-form-grid .form-input.message-input {
    grid-column: span 12 / span 12;
}

.services-form .contact-form .contact-form-grid .form-input.message-input textarea {
    min-height: 150px;
    resize: vertical;
    padding: 15px 20px;
}

.services-form .contact-form .contact-form-grid .form-input.message-input .icon {
    top: 30px;
}

.services-form .contact-form .contact-form-grid .form-input .icon {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 20px;
    font-size: 17px;
    color: var(--blue);
    z-index: 1;
}

.services-form .contact-form .contact-form-grid .form-input select::after {
    display: none;
}

select .list {
    width: 100%;
}

/* .services-form
    .contact-form
    .contact-form-grid
    .form-input
    select::before {
    content: "\f15b";
    font-size: 17px;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    font-family: "Font Awesome 5 Pro";
    font-weight: 900;
    color: var(--blue);
} */

.services-form .contact-form .contact-form-grid .form-input.payment-input select::before {
    content: "\f09d";
}

.services-form .contact-form .contact-form-grid .form-input.experience select::before {
    content: "\f080";
}

.services-form .contact-form .contact-form-grid .form-input select .current {
    color: #8cb2b2;
    font-size: 14px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.services-form .contact-form .contact-form-grid .form-input input,
.services-form .contact-form .contact-form-grid .form-input select,
.services-form .contact-form .contact-form-grid .form-input textarea {
    font-family: "Nunito Sans", sans-serif;
    background-color: white;
    border: 2px solid #e4ecf2;
    padding: 16px 48px 16px 20px;
    height: 54px;
    font-weight: 500;
    font-size: 14px;
    color: #000000;
    width: 100%;
    border-radius: 0;
    transition: all 0.3s ease;
}

.services-form .contact-form .contact-form-grid .form-input input::placeholder,
.services-form .contact-form .contact-form-grid .form-input textarea::placeholder {
    color: #d1dbe2 !important;
}

.services-form .contact-form .contact-form-grid .form-input select {
    color: #d1dbe2;
}

.services-form .contact-form .contact-form-grid .form-input select.black {
    color: #000;
}

.services-form .contact-form .contact-form-grid .form-input select option:not([value=""]) {
    color: #000;
    font-size: 17px;
}

.services-form .contact-form .contact-form-grid .form-input input::placeholder,
.services-form .contact-form .contact-form-grid .form-input select::placeholder,
.services-form .contact-form .contact-form-grid .form-input textarea::placeholder {
    color: #d1dbe2 !important;
}

.services-form .contact-form .contact-form-grid .form-input input::placeholder,
.services-form .contact-form .contact-form-grid .form-input textarea::placeholder {
    color: #8cb2b2;
}

.services-form .contact-form .contact-form-grid .form-input input:focus,
.services-form .contact-form .contact-form-grid .form-input textarea:focus,
.services-form .contact-form .contact-form-grid .form-input select:focus {
    outline: none;
    border-width: 1px;
    border-color: var(--blue);
}

.services-form .contact-form .contact-form-grid .checkbox-input {
    grid-column: span 12 / span 12;
    margin-bottom: 30px;
}

.services-form .contact-form .contact-form-grid .checkbox-input .styled-checkbox {
    position: absolute;
    opacity: 0;
    height: 20px;
    width: 20px;
}

.services-form .contact-form .contact-form-grid .checkbox-input .styled-checkbox+label {
    font-family: "Nunito Sans", sans-serif;
    position: relative;
    cursor: pointer;
    padding: 0;
    color: #5c727d;
    display: flex;
    align-items: center;
}

.services-form .contact-form .contact-form-grid .checkbox-input .styled-checkbox+label:before {
    content: "";
    margin-right: 10px;
    display: inline-block;
    vertical-align: text-top;
    min-width: 18px;
    width: 18px;
    height: 18px;
    background: white;
    border: 1px solid #000;
    border-radius: 3px;
}

.services-form .contact-form .contact-form-grid .checkbox-input .styled-checkbox:checked+label::after {
    content: "\f00c";
    font-family: "Font Awesome 5 Pro";
    position: absolute;
    font-size: 13px;
    left: 3px;
    top: 50%;
    transform: translateY(-50%);
    color: white;
}

.services-form .contact-form .contact-form-grid .checkbox-input .styled-checkbox:checked+label:before {
    background: var(--blue);
    border: none;
}

/* 
.services-form .contact-form .contact-form-grid .form-input button {
    background-color: var(--blue);
    font-family: "Poppins", sans-serif;
    padding: 17px 40px;
    transition: all 0.3s ease 0s;
    position: relative;
    z-index: 1;
    text-transform: uppercase;
    border: 1px solid transparent;
    margin-bottom: 20px;
    border-radius: 0;
}

.services-form .contact-form .contact-form-grid .form-input button::after {
    content: "";
    position: absolute;
    z-index: -1;
    width: 0%;
    height: 100%;
    top: 0;
    left: 0;
    background: white;
    transition: all 0.3s;
}

.services-form .contact-form .contact-form-grid .form-input button:hover {
    color: #071c1f;
    background-color: #000000;
    border: 1px solid black;
}

.services-form .contact-form .contact-form-grid .form-input button:hover:after {
    width: 100%;
} */

.contact-map-wrapper {
    width: 100%;
}

/*================== DATE INPUT =================*/

input[type="date"]::-webkit-calendar-picker-indicator {
    display: none;
}

input[type="date"]::-moz-calendar-picker-indicator {
    display: none;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    /* display: none; <- Crashes Chrome on hover */
    -webkit-appearance: none;
    margin: 0;
    /* <-- Apparently some margin are still there even though it's hidden */
}

input[type="number"] {
    -moz-appearance: textfield;
}

/* Firefox */
input[type="number"] {
    -moz-appearance: textfield;
    /* Firefox */
}

@media only screen and (max-width: 500px) {
    /**========================================================================
    *                           CONTACT US PAGE DESIGN 6
    *========================================================================**/

    .services-form .contact-details-area .contact-details-grid {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }

    .services-form .contact-details-area .contact-details-grid .contact-details-item {
        grid-column: span 1 / span 1;
    }

    .services-form .contact-details-area .contact-details-grid .contact-details-item h3 {
        font-size: 20px;
    }

    .services-form .contact-details-area .contact-details-grid .contact-details-item p {
        font-size: 14px;
    }

    .services-form .contact-form-wrapper {
        padding: 40px 20px 50px;
    }

    .services-form .contact-form .contact-form-grid {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }

    .services-form .contact-form .contact-form-grid .form-input {
        grid-column: span 1 / span 1;
    }

    .services-form .contact-form .contact-form-grid .form-input:nth-child(5) {
        grid-column: span 1 / span 1;
    }

    .services-form .contact-form .contact-form-grid .form-input button {
        margin-bottom: 0;
        padding: 12px 30px;
    }

    .services-form .contact-form .contact-form-grid .checkbox-input .styled-checkbox+label:before {
        width: 28px;
    }

    .services-form .contact-form .contact-form-grid .checkbox-input .styled-checkbox:checked+label::after {
        left: 2px;
        top: 11px;
    }

    .services-form .contact-form .contact-form-grid .form-input .icon {
        font-size: 16px;
    }
}

/**=============================================================
 *                    SERVICES WEB DESIGN PAGE
 *=============================================================**/

.our_process_cont {
    background: url(../../img/services/our_process.png) left top no-repeat;
    background-size: contain;
    display: table;
    padding: 84px 40px 0;
}

.our_process_cont .our_process_item {
    text-align: center;
    padding: 0 10px;
    display: table-cell;
}

.our_process_cont .our_process_item i {
    background: #fff;
    position: relative;
    color: #52535c;
    font-size: 27px;
    display: inline-block;
    clear: both;
    border-radius: 50%;
    border: 2px solid #f4f3f3;
    transition: all 0.4s ease-in-out;
    width: 120px;
    height: 120px;
    text-shadow: none;
    box-shadow: 0 2px 0 0px rgb(0 0 0 / 2%);
}

.our_process_cont .our_process_item:hover i {
    border-color: var(--blue);
    color: var(--blue);
}

.our_process_cont .our_process_item i:before {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.our_process_cont .our_process_item h4 {
    font-size: 18px;
    text-transform: uppercase;
    color: #171c24;
    margin: 34px 0 25px;
}

.our_process_cont .our_process_item p {
    font-size: 14px;
    line-height: 1.6;
    padding: 0 15px;
}

/**=============================================================
 *                  SERVICES PAGE GRID FOUR BOXES
 *=============================================================**/

.services_border_box {
    background-color: var(--blue);
    color: white;
    font-weight: 400;
}

.section-text {
    font-size: 16px;
}

.section-text::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    background-color: black;
    font-weight: bold;
}

/**=============================================================
 *                      SECTION GET STARTED
 *=============================================================**/

.section_get_started {
    height: 452px;
    background-image: url(../../img/get_started_your_project.jpg);
    background-position: center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

/**=============================================================
 *                          NEWSLETTER
 *=============================================================**/

.newsletter {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    background: #1a1a1a;
    padding: 50px;
    box-sizing: border-box;
    transform: translateY(50%);
    position: relative;
    z-index: 9;
}

.newsletter .newsletter-textbox {
    width: 50%;
    float: left;
    text-transform: uppercase;
    box-sizing: border-box;
}

.newsletter .newsletter-textbox .f-sub-heading {
    color: #ffffff;
    width: 100%;
    float: left;
    font-weight: 700;
    font-size: 18px;
    box-sizing: border-box;
}

.newsletter .newsletter-textbox .heading {
    width: 100%;
    float: left;
    font-size: 29px;
    line-height: 52px;
    color: white;
    text-align: left;
    padding: 0;
    text-transform: none;
    box-sizing: border-box;
}

.newsletter .newsletter-textbox .heading span {
    display: inline-block;
    font-weight: 700;
    box-sizing: border-box;
    color: white;
}

.newsletter-box {
    width: 50%;
    float: right;
    box-sizing: border-box;
    position: relative;
}

.newsletter-box .newsletter-box-input {
    width: 100%;
    height: 50px;
    float: left;
    background: white;
    padding: 0 200px 0 30px;
    border-radius: 40px;
    color: #1a1a1a;
    font-size: 13px;
    box-sizing: border-box;
}

.newsletter-box .newsletter-box-input::placeholder {
    color: #1a1a1a;
    font-size: 13px;
}

.newsletter-box button {
    height: 50px;
    float: right;
    background: white;
    border: 2px solid #1a1a1a;
    padding: 0 40px;
    color: #1a1a1a;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 40px;
    text-transform: uppercase;
    box-sizing: border-box;
    position: absolute;
    z-index: 22;
    top: 0;
    right: 0px;
}

/**=============================================================
 *                            FOOTER
 *=============================================================**/

.footer {
    background-color: #f2f2f2;
    background-position: center;
    background-size: cover;
    padding: 170px 0 0;
    font-size: 12px !important;
    color: #616161 !important;
}

.footer .footer-heading {
    font-size: 15px !important;
}

.footer input::placeholder {
    color: white;
}

.footer .f_services_links,
.footer .quick_links {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer .f_services_links li a,
.footer .quick_links li a {
    color: #616161;
    transition: all 0.3s ease;
}

.footer .f_services_links li a:hover,
.footer .quick_links li a:hover {
    color: var(--blue);
    text-decoration: underline;
}

.footer .contact_details p {
    color: #616161;
    margin-bottom: 15px;
}

.f-social-icons {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.f-social-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 27px;
    height: 27px;
    font-size: 12px;
    border: 1px solid #616161;
    border-radius: 50%;
    color: #616161;
    transition: all 0.3s ease;
}

.f-social-icon:hover {
    background-color: #616161;
    color: #ffffff;
}

.copyright-cont {
    grid-template-columns: auto 1fr auto;
}

@media only screen and (min-width: 500px) {
    .copyright-text {
        position: absolute;
        top: 50%;
        right: 50%;
        transform: translate(50%, -50%);
        background: #f2f2f2;
        padding: 20px 24px;
    }
}

.f-nav-link span {
    padding-bottom: -2px;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.f-nav-link:hover span {
    color: white;
    border-bottom: 1px solid white;
}

.bg-overly-img {
    position: relative;
}

/* .bg-overly-img:after {
    content: "";
    background: url(../assets//img/footer/overly-img.png) no-repeat center;
    background-size: cover;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
} */

/**=============================================================
 *                        Right Side Button
 *=============================================================**/

.widget-call-wrap {
    position: fixed;
    bottom: 2%;
    left: 1%;
    z-index: 99;
    margin-bottom: 20px;
}

.widget-call-wrap a {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    margin-bottom: 16px;
    margin-bottom: 10px;
    height: 48px;
    width: 48px;
    text-align: center;
    background-color: green;
    color: #fff;
    border-radius: 100%;
}

.widget-call-wrap.minimize .action .icon-close,
.widget-call-wrap.minimize .btn-chat {
    display: none;
}

.widget-call-wrap i {
    line-height: 47px;
    font-size: 1.4em;
}

.widget-call-wrap a.contact1 {
    background-color: #4ec248;
}

.widget-call-wrap a.contact2 {
    background-color: #0093ff;
}

.widget-call-wrap a.contact3 {
    background-color: #113f6d;
}

.widget-call-wrap.active a {
    text-decoration: none;
}

.widget-call-wrap.minimize .action .btn-icon-close {
    display: none;
}

.widget-call-wrap.active .action {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
    -webkit-transition: -webkit-transform 0.4s ease;
    transition: transform 0.4s ease;
}

.widget-call-wrap.active .action .btn-icon-open {
    display: none;
}

.widget-call-wrap.active .action .btn-icon-close {
    display: inline;
}

/**========================================================================
*                           BLOG SINGLE PAGES
*========================================================================**/

.page-gray {
    background-color: #f5f5f5 !important;
}

.blog-single-page .blog-heading {
    color: black;
    font-size: 34px;
    line-height: 40px;
    font-weight: 300;
    font-size: 34px;
}

.blog-single-page .blog-time {
    color: #666;
}

.blog-single-page .blog-social-icons {
    display: flex;
    align-items: center;
    gap: 6px;
}

.blog-single-page .blog-social-icons .blog-social-icon {
    width: 32px;
    height: 32px;
    color: #fff;
    font-size: 17px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #222;
    transition: all 0.3s ease;
}

.blog-single-page .blog-social-icons .blog-social-icon:nth-child(1) {
    background-color: #d62976;
}

.blog-single-page .blog-social-icons .blog-social-icon:nth-child(1):hover {
    background-color: #b80254;
}

.blog-single-page .blog-social-icons .blog-social-icon:nth-child(2) {
    background-color: #3b5998;
}

.blog-single-page .blog-social-icons .blog-social-icon:nth-child(2):hover {
    background-color: #24458d;
}

.blog-single-page .blog-social-icons .blog-social-icon:nth-child(3) {
    background-color: #000000;
}

.blog-single-page .blog-social-icons .blog-social-icon:nth-child(3):hover {
    background-color: #161616;
}

.blog-single-page .blog-social-icons .blog-social-icon:nth-child(4) {
    background-color: #0077b5;
}

.blog-single-page .blog-social-icons .blog-social-icon:nth-child(4):hover {
    background-color: #00659b;
}

.blog-single-page .blog-social-icons .blog-social-icon img {
    width: 22px;
    height: 22px;
}

/* .blog-single-page .blog-img {
    height: 450px;
}

.blog-single-page .blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
} */

.blog-single-page .blog-img img {
    width: 100%;
    height: auto;
}

.blog-single-page .blog-social-icons .blog-social-icon:hover {
    cursor: pointer;
}

.blog-single-page .blog-tags p {
    margin-bottom: 8px;
}

.blog-single-page .blog-tags p a {
    text-decoration: underline;
    font-weight: 400;
    margin-right: 2px;
}

.blog-single-page .blog-tags p a:hover {
    color: var(--blue) !important;
}

.sidebar-sidebar-form .sidebar-inputs {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.sidebar-sidebar-form .sidebar-input {
    width: 100%;
}

.contact-msg,
.sidebar-sidebar-form .sidebar-input .contact-msg {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 18px;
    gap: 12px;
}

.sidebar-sidebar-form .sidebar-input input,
.sidebar-sidebar-form .sidebar-input select,
.sidebar-sidebar-form .sidebar-input textarea {
    width: 100%;
    -webkit-appearance: none;
    box-sizing: border-box;
    border: 1px solid #ddd;
    outline: 0;
    font-size: 14px;
    padding: 12px 20px;
    text-align: left;
    background: #fff;
    color: rgba(0, 0, 0, 1);
    box-shadow: 0 7px 15px -5px rgb(203 203 203 / 35%);
}

.contact-msg .close-btn,
.sidebar-sidebar-form .sidebar-input .contact-msg .close-btn {
    padding: 12px;
    margin: -12px;
    font-size: 18px;
    cursor: pointer;
}

/*================== BLOG CONTENT =================*/

/* figure.prs-image {
    margin-left: -24px;
    margin-right: -24px;
    margin-bottom: 32px;
    height: 450px;
}

figure.prs-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
} */

figure.image {
    margin-left: -24px;
    margin-right: -24px;
    margin-bottom: 32px;
}

figure.image img {
    width: 100%;
    height: auto;
}

.blog-content a {
    text-decoration: underline;
}

.blog-content .p:last-child {
    margin-bottom: 8px;
}

.blog-content h1,
.blog-content h2,
.blog-content h3,
.blog-content h4,
.blog-content h5,
.blog-content h6 {
    color: var(--blue);
    margin-bottom: 12px;
}

.blog-content h1 strong,
.blog-content h2 strong,
.blog-content h3 strong,
.blog-content h4 strong,
.blog-content h5 strong,
.blog-content h6 strong {
    font-weight: 400;
}

.blog-content h1 {
    font-size: 36px;
}

.blog-content h2 {
    font-size: 28px;
}

.blog-content h3 {
    font-size: 24px;
}

.blog-content h4 {
    font-size: 18px;
    font-weight: 500;
}

.blog-content h5 {
    font-size: 16px;
    font-weight: 500;
}

.blog-content p {
    font-size: 16px;
    font-weight: 500;
}

/**========================================================================
*                           SECTION HEADER
*========================================================================**/

.recent-post-box {
    background-color: #fff;
    display: grid;
    grid-template-columns: 112px 1fr;
    gap: 16px;
    align-items: center;
}

.recent-post-box .recent-post-img {
    width: 100%;
    height: 68px;
}

.recent-post-box .recent-post-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.recent-post-box .recent-post-date {
    color: #666;
    font-size: 12px;
    margin-bottom: 3px;
}

.recent-post-box .recent-post-heading {
    position: relative;
}

.recent-post-box .recent-post-heading a:hover h3 span {
    text-decoration: underline;
}

.recent-post-box .recent-post-heading a h3 {
    font-size: 15px;
    line-height: 1.5;
    font-weight: 500;
    max-width: 600px;
}

.recent-post-box .recent-post-heading a h3:after {
    content: "\f054";
    font-family: "Font Awesome 5 Pro";
    font-size: 12px;
    font-weight: 300;
    position: relative;
    margin-left: 1px;
    margin-top: -1px;
    vertical-align: middle;
    line-height: inherit;
    text-decoration: none !important;
    color: #000 !important;
}

/*==== END OF RECENT ====*/

.blog-single-page .blog_page-heading {
    font-size: 34px;
    font-weight: 600;
    margin-bottom: 32px;
}

.blog-single-page .blog_page-subheading {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 32px;
}

.blog-single-page .blog-content p,
.blog-single-page .blog-content ul,
.blog-single-page .blog-content ol {
    font-size: 15px;
    margin-bottom: 32px;
    color: #222;
}

.blog-single-page .blog-content ol li,
.blog-single-page .blog-content ul li {
    margin-bottom: 8px;
}

.blog-single-page ul,
.blog-single-page ol {
    padding-left: 40px;
}

.blog-single-page ul {
    list-style: disc;
}

.blog-single-page ol {
    list-style: decimal;
}

.blog-single-page a {
    transition: all 0.3s ease;
}

.blog-single-page a:hover {
    color: var(--orange);
}

/**========================================================================
*                                FOOTER WHATSAPP ICON
*========================================================================**/

.widget-call-wrap {
    position: fixed;
    bottom: 1%;
    left: 1%;
    z-index: 99;
}

.widget-call-wrap a {
    display: block;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 10px 16px;
    height: 48px;
    width: 48px;
    text-align: center;
    background-color: green;
    color: #fff;
    border-radius: 100%;
}

.widget-call-wrap.minimize .action .icon-close,
.widget-call-wrap.minimize .btn-chat {
    display: none;
}

.widget-call-wrap svg {
    line-height: 47px;
    font-size: 1.4em;
}

.widget-call-wrap a.contact1 {
    background-color: #4ec248;
}

.widget-call-wrap a.contact2 {
    background-color: #0093ff;
}

.widget-call-wrap a.contact3 {
    background-color: #113f6d;
}

.widget-call-wrap.active a {
    text-decoration: none;
}

.widget-call-wrap.minimize .action .btn-icon-close {
    display: none;
}

.widget-call-wrap.active .action {
    transform: rotate(360deg);
    transition: transform 0.4s ease;
}

.widget-call-wrap.active .action .btn-icon-open {
    display: none;
}

.widget-call-wrap.active .action .btn-icon-close {
    display: inline;
}

/**========================================================================
 *                           BLOG PAGE
 *========================================================================**/

.post_icon {
    margin-top: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    border-radius: 50%;
    text-transform: uppercase;
    height: 16px;
    background-size: cover;
    width: 16px;
    padding: 11px;
}

/* ELEMENTS */

.blog-slider {
    border-radius: 30px !important;
    overflow: hidden;
}

.blog-slider .slide {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
}

.blog-slider .slide img {
    object-fit: cover;
    width: 100%;
    height: 500px;
}

.blog-slider .slide img::after {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(to top,
            rgba(0, 0, 0, 0.882),
            rgba(0, 0, 0, 0.333),
            transparent);
}

.blog-slider .slide .info {
    position: absolute;
    width: 100%;
    bottom: 0;
    padding: 4vw;
    color: #fff;
}

.blog-slider .img-cont:after {
    content: "";
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    background-image: linear-gradient(to right,
            rgb(0 0 0 / 60%),
            rgb(0 0 0 / 10%));
}

/*  SWIPER SLIDER */

.swiper.swiper-initialized.swiper-horizontal.swiper-pointer-events.swiper-backface-hidden {
    overflow: hidden;
    border-radius: 30px;
}

.swiper-slide h2.title,
.swiper-slide .date.small.mb-20 {
    text-shadow: 0 0 7px rgb(0, 0, 0);
}

.swiper-button-next:after,
.swiper-button-prev:after {
    color: #000;
    font-size: 16px;
    font-weight: bold;
}

.swiper-button-next,
.swiper-button-prev {
    width: 40px;
    height: 40px;
    border-radius: 5px;
    background: #fff;
    transition: all 0.4s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: #000 !important;
}

.swiper-button-next:hover::after,
.swiper-button-prev:hover::after {
    color: #fff;
    transition: all 0.4s ease;
}

.blog-slider .swiper-button-prev {
    left: -40px;
    transform: rotate(45deg);
    border-radius: 15px;
    width: 60px;
    height: 60px;
    background: #fff;
}

.blog-slider .swiper-button-prev::after {
    font-size: 16px;
    margin-left: 27px;
    margin-bottom: 27px;
    transform: rotate(-45deg);
}

.blog-slider .swiper-button-next {
    right: -40px;
    transform: rotate(45deg);
    border-radius: 15px;
    width: 60px;
    height: 60px;
    background: #fff;
}

.blog-slider .swiper-button-next::after {
    font-size: 16px;
    margin-left: -27px;
    margin-bottom: -27px;
    transform: rotate(-45deg);
}

/* Pagination Circle */

.blog-slider .swiper-pagination {
    width: 100%;
    bottom: 0;
    text-align: right;
    padding: 30px 4vw;
    position: absolute;
    transition: 0.3s opacity;
    transform: translate3d(0, 0, 0);
    z-index: 10;
}

.blog-slider .swiper-pagination-bullet {
    background-color: #fff;
    opacity: 1;
}

.blog-slider .swiper-pagination {
    width: 100%;
    bottom: 0;
    text-align: right;
    padding: 30px 4vw;
    position: absolute;
    transition: 0.3s opacity;
    transform: translate3d(0, 0, 0);
    z-index: 10;
    left: 0;
}

.blog-slider .swiper-pagination-bullet {
    background-color: #fff;
    opacity: 1;
}

.blog-slider .swiper-pagination-bullet-active {
    background-color: var(--orange);
}

/***************************************/
/***************************************/
/* POPULAR POSTS */

.blog-color-change {
    animation: color-change 2s infinite;
    background-color: #fff;
    border-radius: 6px;
    padding: 8px 18px !important;
}

.popular-posts .post-sc-title {
    font-weight: 700;
    letter-spacing: 2px;
    text-align: center;
    text-transform: uppercase;
}

.card.border-0.bg-transparent.rounded-0.mb-30.mb-lg-0.d-block {
    padding: 0 48px !important;
}

.post_img {
    height: 200px;
    display: block;
    border-radius: 20px !important;
    overflow: hidden !important;
}

.post_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-top-left-radius: calc(0.25rem - 1px);
    border-top-right-radius: calc(0.25rem - 1px);
}

.post_content .top_part {
    font-size: 10px !important;
    margin-top: 10px !important;
    line-height: 1.7;
    font-weight: 700 !important;

    display: flex;
    justify-content: space-between;
}

.post_content .top_part .news {
    border-color: #0002 !important;
    color: #000 !important;
    text-transform: uppercase !important;
}

.post_content .top_part .posted_at {
    opacity: 0.8;
}

.popular-posts .post-sc-title {
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 20px;
}

.popular-posts .card {
    padding: 0 48px;
}

.popular-posts .card .img {
    height: 200px;
    overflow: hidden;
}

.popular-posts .card .img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.popular-posts .card .title a:hover {
    color: var(--orange);
}

.popular-posts .card a:hover {
    color: var(--orange);
}

.small,
small {
    font-size: 13px;
    line-height: 1.7;
    display: inline-block;
}

/* All News SECTION */

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

.img-cover {
    display: block;
}

small.text {
    font-size: 12px;
    line-height: 2;
}

.blog-page .all-news .card .img.img-cover {
    height: 200px !important;
}

.blog-page .all-news .card .card-body .card-title {
    min-height: unset;
    max-width: unset;
}

.blog-page .all-news .card .card-body {
    position: relative;
    height: 100%;
}

.blog-page .all-news .card .card-body p {
    font-size: 14px;
    line-height: 1.7;
    margin-top: 10px;
}

.blog.style-3 {
    position: relative;
}

.blog.style-3 .v_lines {
    position: absolute;
    top: 100px;
    left: 50%;
    height: calc(100% - 340px);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}

.blog.style-3 .card .card-body .date span {
    font-size: 11px;
    letter-spacing: 1px;
}

.blog.style-3 .card .card-body .card-title {
    font-size: 18px;
    font-weight: bold;
    max-width: 85%;
    margin-top: 10px;
    min-height: 45px;
}

.blog.style-3 .card .card-body .small {
    font-size: 10px;
}

.blog.style-3 .client-logos .img img {
    -webkit-filter: grayscale(1);
    filter: grayscale(1);
    opacity: 0.6;
}

.blog.style-3 .client-logos .img:hover img {
    -webkit-filter: grayscale(0);
    filter: grayscale(0);
    opacity: 1;
}

/* .blog-page .all-news .card .card-body .auther-comments {} */

.blog-page .all-news .card a:hover {
    color: var(--orange);
}

.section_all_news .left_side_news .news_data {
    position: relative;
    height: 100%;
}

/*
.section_all_news .left_side_news .auther-comments {
    margin-top: auto;
} */

.pagination.style-5 a {
    width: 30px;
    height: 30px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    min-width: -webkit-max-content;
    min-width: -moz-max-content;
    min-width: max-content;
    border: 1px solid #9993;
    border-radius: 8px;
    margin-right: 5px;
    font-size: 11px;
    color: #666;
}

.pagination.color-4 a {
    transition: all 0.3s ease;
}

.pagination.color-4 a:hover {
    border-color: var(--orange);
    color: var(--orange);
}

.pagination.color-4 a.active {
    color: #fff;
    border-color: var(--orange);
    background-color: var(--orange);
}

/* RIGHT SIDE BLOG */

.blog-page .side-blog {
    position: -webkit-sticky;
    position: sticky;
    top: 30px;
}

.blog-page .side-blog .title {
    font-size: 16px;
    font-weight: 600 !important;
    letter-spacing: 2px;
}

.blog-page .side-blog .search-form .form-group .form-control {
    min-height: 50px;
    font-size: 12px;
    padding: 10px 50px 10px 20px;
}

.blog-page .side-blog .search-form .form-group .search-btn {
    position: absolute;
    right: 20px;
    bottom: 30px;
}

.blog-page .side-blog .side-recent-post .post-card {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.blog-page .side-blog .side-recent-post .post-card .img {
    height: 70px;
    width: 30%;
    border-radius: 10px;
    margin-top: auto;
    margin-bottom: auto;
    overflow: hidden;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.blog-page .side-blog .side-recent-post .post-card .img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.blog-page .side-blog .side-recent-post .post-card .inf h6 {
    color: #000;
    font-size: 13px;
    font-weight: bold;
    margin-bottom: 5px;
}

.blog-page .side-blog .side-recent-post .post-card .inf p {
    font-size: 12px;
    color: #666;
}

.blog-page .side-blog .side-recent-post .post-card:hover .inf h6 {
    color: var(--orange);
}

.blog-page .side-blog .side-newsletter {
    background-color: #eaeef2;
    padding: 50px 30px;
    border-radius: 20px;
}

.blog-page .side-blog .side-newsletter .text {
    font-size: 11px;
    color: #666;
    line-height: 1.5;
}

.blog-page .side-blog .side-share .social-icon {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: inline-flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    background-color: #f3f7fe;
    color: #666;
    font-size: 12px;
    margin: 0 3px;
}

.blog-page .side-blog .side-share .social-icon:hover {
    background-color: var(--orange);
    color: #fff;
}

.blog-page .side-blog .side-insta .insta-img {
    height: 80px;
    width: 31%;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 10px;
}

.blog-page .side-blog .side-insta .insta-img::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-color: #000;
    opacity: 0;
    z-index: 2;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.blog-page .side-blog .side-insta .insta-img .icon {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 3;
    color: #fff;
    margin-top: 15px;
    opacity: 0;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.blog-page .side-blog .side-insta .insta-img:hover::after {
    opacity: 0.3;
}

.blog-page .side-blog .side-insta .insta-img:hover .icon {
    opacity: 1;
    margin: 0;
}

.blog-page .side-blog .side-categories .cat-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    color: #666;
    font-size: 11px;
    text-transform: uppercase;
    padding: 10px 0;
    border-bottom: 1px solid #9995;
}

.blog-post-meta {
    margin-bottom: 1.25rem;
    color: #727272;
}

.blog-post-content {
    color: black !important;
}

.blog-post-image {
    display: block;
    height: 220px;
    width: 100%;
    line-height: 200px;
    overflow: hidden;
}

.blog-post-title {
    color: black;
    font-family: var(--thm-font);
    font-weight: 700;
    font-size: 20px;
}

.post-header h1 {
    font-size: 42px;
    font-weight: 700;
    color: black;
    line-height: normal;
    font-family: var(--thm-font);
}

.post-image img {
    max-width: 100%;
    width: 100%;
}

.post-content {
    margin-top: 35px;
}

.post-content h1 {
    font-size: 2em;
    font-family: var(--thm-font);
    line-height: normal;
    padding: 0px;
}

.post-content h2 {
    color: black !important;
    font-weight: 700;
    font-size: 1.5em;
    font-family: var(--thm-font);
    line-height: normal;
    padding: 0px;
}

.post-content h2 strong {
    font-weight: 900;
}

.post-content h3 {
    color: black !important;
    font-weight: 700;
    font-size: 1.17em;
    font-family: var(--thm-font);
    line-height: normal;
    padding: 0px;
}

.post-content h3 strong {
    font-weight: 900;
}

.post-content h4 {
    color: black !important;
    font-weight: 700;
    font-size: 1em;
    font-family: var(--thm-font);
    line-height: normal;
    padding: 0px;
}

.post-content h4 strong {
    font-weight: 900;
}

.post-content h5 {
    color: black !important;
    font-weight: 700;
    font-size: 0.83em;
    font-family: var(--thm-font);
    line-height: normal;
    padding: 0px;
}

.post-content h5 strong {
    font-weight: 900;
}

.post-content h6 {
    color: black !important;
    font-weight: 700;
    font-size: 0.67em;
    font-family: var(--thm-font);
    line-height: normal;
    padding: 0px;
}

.post-content h6 strong {
    font-weight: 900;
}

.post-content h1,
.post-content h2,
.post-content h3,
.post-content h4,
.post-content h5,
.post-content h6 {
    margin: 0 0 0.5em;
}

.post-content p {
    margin-top: 0px;
    margin-bottom: 25px;
}

.post-content a {
    text-decoration: underline;
}

p.empty-line {
    margin-bottom: 0px;
}

.post-content ol,
.post-content ul {
    padding-left: 20px !important;
}

.post-content .prs-image-stretched {
    width: 100%;
}

.post-content .prs-image {
    margin-bottom: 25px;
    display: block;
}

.post-content .align-left {
    text-align: left;
}

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

.post-content .align-right {
    text-align: right;
}

.post-content .align-justify {
    text-align: justify;
}

/* .blog-page .card-body {
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.125);
    border-radius: 5px;
}
.blog-page .card-body .btn {
    position: absolute;
    bottom: 15px;
} */
.blog-page .row .card:nth-child(n + 4) {
    /* margin-top: 15px; */
}

.comments-block textarea {
    padding: 15px 15px !important;
    box-sizing: border-box;
    border-radius: 3px;
    background: white !important;
    box-shadow: 0px 0px 6px 0 #b2b2b2 !important;
    font-size: 16px;
    border: none;
    height: 120px;
    min-height: 100px;
    resize: none;
}

.comments-block textarea:disabled {
    background: #d6d6d6 !important;
}

.comments-block textarea:focus {
    outline: none;
}

.form-dark label {
    color: white !important;
}

.form-dark input {
    color: white !important;
}

.comments-block label {
    font-size: 16px !important;
}

.comments-block a {
    color: var(--thm-base);
}

.form-control.is-invalid {
    border-color: #dc3545 !important;
    padding-right: calc(1.5em + 0.75rem) !important;
    background-image: url("data:image/svg+xml,%3csvg xmlns=http://www.w3.org/2000/svg viewBox=0 0 12 12 width=12 height=12 fill=none stroke=%23dc3545%3e%3ccircle cx=6 cy=6 r=4.5/%3e%3cpath stroke-linejoin=round d=M5.8 3.6h.4L6 6.5z/%3e%3ccircle cx=6 cy=8.2 r=.6 fill=%23dc3545 stroke=none/%3e%3c/svg%3e") !important;
    background-repeat: no-repeat !important;
    background-position: right calc(0.375em + 0.1875rem) center !important;
    background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem) !important;
}

.blog-comments-row .comment-data {
    color: black;
}

#editCommentModal textarea,
#replyCommentModal textarea {
    border: 1px solid #dddddd !important;
    transform: translateY(0px);
    min-height: 100px;
    height: 120px;
    resize: none;
    padding: 15px !important;
}

.page-link {
    line-height: 22px;
}

.blog-post__tags svg {
    width: 15px;
}

.blog-post__tags a {
    color: var(--thm-base);
    text-decoration: none;
    font-weight: bold;
}

.blog-page input,
.blog-page select,
.blog-page textarea {
    outline: none !important;
    border: none !important;
    border-bottom: 1px solid #dddddd !important;
    border-radius: 0px !important;
    background: transparent !important;
    padding: 6px 0px !important;
    font-family: "Nunito", sans-serif !important;
    font-size: 16px !important;
    width: 100% !important;
    margin-bottom: 20px;
}

textarea.comment-textarea {
    height: 40px;
    resize: none;
    overflow-y: hidden;
    display: block;
}

.comment-single-block {
    margin-top: 10px;
    margin-bottom: 10px;
}

.comment-single-profile-img-block {
    display: block;
    float: left;
    height: 32px;
    width: 32px;
}

.commet-user-name {
    font-weight: bold;
    font-size: 16px;
}

.commet-admin {
    font-size: 11px;
}

.comment-single-msg-block {
    display: inline-block;
    word-break: break-word;
    border-top-left-radius: 18px;
    border-bottom-left-radius: 18px;
    border-top-right-radius: 18px;
    border-bottom-right-radius: 18px;
    margin-left: 10px;
    padding-left: 12px;
    padding-bottom: 8px;
    padding-right: 12px;
    max-width: 90%;
    padding-top: 8px;
    font-size: 13px;
    line-height: 18px;
    background-color: #f0f2f5;
}

.comment-single-edit-block {
    display: inline-block;
    word-break: break-word;
    margin-left: 10px;
    padding-left: 12px;
    padding-bottom: 8px;
    padding-right: 12px;
    max-width: 90%;
    padding-top: 8px;
    font-size: 13px;
    line-height: 18px;
}

.comment-edit-delete-block {
    display: inline-block;
}

.comment-edit-delete-button {
    padding: 0px 7px;
    border: 2px solid;
    border-radius: 35px;
}

.comment-edit-delete-button::after {
    margin: 0px;
    border: 0px solid !important;
}

.comment-single-reply-like-block {
    font-size: 12px;
    line-height: 16px;
}

.comment-single-reply-like-block {
    margin-top: 3px;
    margin-left: 38px;
}

.comment-single-reply-like-block i {
    font-size: 13px;
}

.comment-total-like,
.comment-total-dislike {
    margin-right: 7px;
}

i.comment-like-button.fas,
i.comment-dislike-button.fas {
    color: #00aeff !important;
}

.comment-single-reply-like-block a.comment-reply {
    color: #ffaa00;
    text-decoration: none;
    margin-right: 5px;
    cursor: pointer;
    font-size: 13px;
}

.comment-reply-block {
    margin-top: 3px;
    margin-left: 38px;
}

.comment-add-reply-block {
    margin-top: 3px;
    margin-left: 38px;
}

.blog-page .form-control:focus {
    border-top-color: transparent !important;
    border-left-color: transparent !important;
    border-right-color: transparent !important;
    box-shadow: 0 0 !important;
}

.comment-like-button {
    cursor: pointer;
}

.comment-dislike-button {
    cursor: pointer;
}

button.btn-custom.btn-small {
    padding: 0px 15px;
    border: 2px solid;
    background: var(--green);
    color: white;
    border-color: var(--green);
}

.blog-page .dropdown-menu {
    min-width: 100px;
}

.blog-page .dropdown-menu .dropdown-item {
    width: 100%;
}

.blog-page .dropdown-menu .dropdown-item:hover,
.blog-page .dropdown-menu .dropdown-item:active {
    background: white;
}

.swal2-styled.swal2-confirm {
    border: 0;
    border-radius: 0.25em;
    background: initial;
    background-color: #3085d6 !important;
    color: #fff;
    font-size: 1.0625em;
    margin: 0.3125em;
    padding: 0.625em 2em;
    box-shadow: none;
    font-weight: 500;
}

.swal2-styled.swal2-cancel {
    border: 0;
    border-radius: 0.25em;
    background: initial;
    background-color: #ed1b24 !important;
    color: #fff;
    font-size: 1.0625em;
    margin: 0.3125em;
    padding: 0.625em 2em;
    box-shadow: none;
    font-weight: 500;
    position: relative;
    box-shadow: 0px 4px 0px #c50a13 !important;
}

.swal2-styled.swal2-cancel:active {
    top: 7px;
    box-shadow: inset 0px -1px 0px #c50a13 !important;
}

/**========================================================================
 *                           HR SOLUTIONS
 *========================================================================**/

/*================== SECOND ACCORDION DESIGN =================*/

.section-accordion-2 .accordion-2 .accordion .accordion-button {
    border-color: #ddd;
    border-style: solid;
    border-right-width: 1px;
    border-bottom-width: 1px;
    border-left-width: 1px;
}

.section-accordion-2 .accordion-2 .accordion .accordion-body {
    border-color: #ddd;
    border-style: solid;
    border-bottom-width: 1px;
    border-left-width: 1px;
}

.section-accordion-2 .accordion-2 .accordion .accordion-body {}

.section-accordion-2 .accordion-2 .accordion .accordion-button:not(.collapsed) {
    background-color: var(--blue);
    border-color: var(--blue);
    border: 0;
    color: white;
}

.section-accordion-2 .accordion-2 .accordion .accordion-button.collapsed {
    background-color: #fff;
}

.section-accordion-2 .accordion-2 .accordion .accordion-button:before {
    width: 14px;
    height: 14px;
    background-size: 12px;
    background-position: center;
    margin: 0 20px 0 0 !important;
    transition: transform 0.3s ease;
}

.accordion-button:not(.collapsed):before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3C!-- Font Awesome Pro 5.15.4 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) --%3E%3Cpath d='M416 208H272V64c0-17.67-14.33-32-32-32h-32c-17.67 0-32 14.33-32 32v144H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h144v144c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32V304h144c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z'/%3E%3C/svg%3E");
    filter: invert(1);
    transform: rotate(180deg);
}

.accordion-button.collapsed:before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3C!-- Font Awesome Pro 5.15.4 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) --%3E%3Cpath d='M416 208H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z'/%3E%3C/svg%3E");
    transform: rotate(0);
    /* background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3C!-- Font Awesome Pro 5.15.4 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) --%3E%3Cpath d='M416 208H32c-17.67 0-22 14.23-22 22v22c0 17.67 14.23 22 22 22h384c17.67 0 22-14.33 22-22v-22c0-17.67-14.23-22-22-22z'/%3E%3C/svg%3E"); */
}

.mob_nav {
    display: flex;
    align-items: center;
    padding: 0 20px;
    position: relative;
    top: 0px;
    width: 100%;
    z-index: 9;
}

.logo-container {
    flex: 1;
    display: flex;
    align-items: center;
}

.nav-btn {
    flex: 3;
    display: flex;
}

.nav-links {
    flex: 2;
}

.logo {
    color: #000000;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    line-height: 3rem;
}

.btn.solid,
.btn.transparent:hover {
    background-color: #fff;
    color: #69bde7;
}

.btn.transparent,
.btn.solid:hover {
    background-color: transparent;
    color: #fff;
}

.nav-links>ul {
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav-link {
    position: relative;
}

.nav-link>a {
    line-height: 3rem;
    color: #fff;
    padding: 0 0.8rem;
    letter-spacing: 1px;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: 0.5s;
}

.nav-link>a>i {
    margin-left: 0.2rem;
}

.nav-link:hover>a {
    transform: scale(1.1);
}

@keyframes animation {
    from {
        opacity: 0;
        transform: translateY(15px);
    }

    to {
        opacity: 1;
        transform: translateY(0px);
    }
}

.iti {
    width: 100%;
}

/**========================================================================
 *                           USER PROFILE
 *========================================================================**/

.section-info {
    padding: 120px 0;
    background-color: #f2f2f2;
    font-size: 14px;
}

.section-info .profile-header {
    display: flex;
    justify-content: space-between;
    padding-bottom: 48px;
}

.section-info .profile-header .profile-change-pwd {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
}

.section-info .profile-header .profile-change-pwd .icon {
    background-color: #cfe5f6;
    color: #006fc9;
    border-radius: 50%;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-info .profile-header .profile-change-pwd .content h2 {
    color: #323130;
    font-weight: 600;
    font-size: 12px;
}

.section-info .profile-header .profile-change-pwd .content p {
    color: #605e5c;
    font-size: 12px;
}

.section-info .profile-card {
    background-color: white;
    border-radius: 8px;
    box-shadow: rgba(0, 0, 0, 0.133) 0px 1.6px 3.6px 0px,
        rgba(0, 0, 0, 0.11) 0px 0.3px 0.9px 0px;
}

.section-info .profile-card:not(:first-child) {
    margin-top: 16px;
}

.section-info .profile-card .profile-row {
    border-bottom: 1px solid #e8e8e8;
    padding: 8px 20px;
    display: grid;
    align-items: center;
    grid-template-columns: 242px 242px 1fr;
    min-height: 56px;
}

.section-info .profile-card .profile-img-row {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 24px 20px;
    border-bottom: 1px solid #e8e8e8;
}

.section-info .profile-card .profile-row .profile-col:nth-child(2) p {
    font-weight: 600;
    color: black;
}

.section-info .profile-card .profile-row .profile-img {
    width: 160px;
    height: 160px;
    border-radius: 50%;
}

.section-info .profile-card .profile-img-row .profile-info {
    width: 260px;
    display: flex;
    flex-direction: column;
    align-items: start;
}

.section-info .profile-card .profile-img-row .profile-info p {
    color: #323130;
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 15px;
}

.section-info .profile-img-card .profile-name-row {
    padding: 8px 20px;
    font-size: 14px;
}

.section-info .profile-img-card .profile-name-row .profile-col:last-child {
    display: flex;
    justify-content: end;
}

.section-info .profile-img-card .profile-name-row .profile-col:last-child a {
    color: #006fc9;
}

.section-info .profile-card .profile-row-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 20px;
    min-height: 56px;
}

.section-info .profile-card .profile-row-title .name {
    font-weight: 600;
    color: #323130;
}

.section-info .profile-card .profile-row .link {
    color: #006fc9;
}

.section-info .profile-card .profile-row .link:hover {
    color: #005499;
    text-decoration: underline;
}

.section-info .profile-card .profile-row-dark {
    background-color: rgb(250, 250, 250);
    border-radius: 8px;
    display: flex;
}

.section-info .profile-card .profile-row-dark .profile-col {
    display: flex;
    align-items: center;
    gap: 16px;
}

.section-info .profile-card .profile-row .profile-col.with-icon {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.section-info .profile-card .profile-row .profile-col.with-icon .icon {
    color: #605e5c;
}