/*--==========*** CSS Variables ***==========---*/
:root{
    --primary-color:#28A2D9;
    --secondary-color:#F49222;
    --primary-second:#8196B9;
    --site-font:"Helvetica Neue", sans-serif;
}
/*--==========*** Global CSS ***==========---*/
body, .post, .page{
    margin: 0;
    padding: 0;
    font-family: var(--site-font);
}
body.custom-background {
    background-color: #000;
}
*{
    box-sizing: border-box;
    scroll-behavior: smooth;
}
img{
    max-width: 100%;
}
a{
    text-decoration: none;
}
a:active, a:focus, a:hover, button:focus, button:hover, input:focus{
    outline: none;
}
ul{
    list-style: none;
    margin: 0;
}
.custom-container{
    max-width: 100%;
    padding: 0 16px;
    margin: 0 auto;
}
.page_heading {
    font-size: 36px;
    letter-spacing: 0px;
    line-height: 0.778;
    font-weight: 700;
    text-align: center;
    color: var(--secondary-color);
    margin: 0;
    padding-bottom: 36px;
    text-transform: capitalize;
}
.product_headingWrapper p{
    font-size: 30px;
    letter-spacing: 0px;
    line-height: 1.3;
    font-weight: 400;
    text-align: center;
    color: #ffffff;
    margin: 0;
}
.priorities_boxMenus{
    padding: 18px;
    border: 1px solid var(--primary-second);
    background-color: #23A4DD26;
    border-radius: 8px;
    min-height: 124px;
}
.product_slider_title_wrapper {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: -36px;
    height: 400px;
    border-radius: 16px;
    background-color: var(
    --secondary-color);
    min-width: 74px;
    padding: 15px 0;
    display: flex;
    align-items: center;
    z-index: 1;
    justify-content: center;
    text-align: center;
    word-wrap: break-word;
}
.postid-103 .product_slider_title_wrapper {
    height: 350px;
    bottom: auto;
    top: 40px;
    transform: translateY(0);
    
}
.product_slider_title {
    writing-mode: vertical-rl;
    transform: scale(-1);
    letter-spacing: 3px;
    color: #FFFFFF;
    font-size: 24px;
    line-height: 1.286;
    font-weight: 700;
    text-transform: uppercase;
}
.main_heading{
    position: relative;
    font-size: 30px;
    line-height: 0.867;
    letter-spacing: 0px;
    margin: 0;
    color: #ffffff;
    font-weight: 700;
    text-transform: capitalize;
}
.main_heading::after{
    content: '';
    position: absolute;
    left: 0;
    bottom: -15px;
    width: 60px;
    height:3px;
    background-color: var(--secondary-color);
}
/*--==========*** Header ***==========---*/
.site-header .header-wrapper {
    border-bottom: 1px solid rgb(82 82 82 / 80%);
    padding: 30px 0 37px;
}
.site-header .header-wrapper .navigation {
    display: flex;
    align-items: center;
}
.header-wrapper .navigation  .logo{
    max-width: 640px;
}
.header-wrapper .navigation  .logo, .header-wrapper .navigation  .header-heading {
    flex: 1;
}
.site-header .navigation .logo img {
    height: auto;
    max-width: 352px;
}
.site-header .navigation .header-heading .wp-block-heading {
    text-align: left;
    letter-spacing: 2.2px;
    color: #FFFFFF;
    opacity: 1;
    font-size: 55px;
    font-weight: 400;
    text-transform: capitalize;
    line-height: 1;
    margin: 0;
}
/*--==========*** HR Top Priorities Options ***==========---*/
.top_priorties_options .section_wrapper {
    padding: 90px 0 48px;
}
.priorties_options-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    grid-gap: 75px 65px;
    margin: 0 auto;
    max-width: 1530px;
}
.priorties_options-wrapper .priorties_optionsInner {
    position: relative;
    flex: 1 1 calc(25% - 65px);
    max-width: 334px;
}
.priorties_optionContentBox {
    background-color: #172234B3;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 125px;
    border-radius: 6px;
    padding: 12px;
    border: 1px solid var(--primary-second);
}
.priorties_optionImg {
    --size:60px;
    left: 0;
    position: absolute;
    bottom: calc(100% - calc(var(--size) / 2));
    right: 0;
    margin: 0 auto;
    background:var(--primary-color);
    border-radius: 6px;
    width: var(--size);
    height: var(--size);
    display: flex;
    align-items: center;
    justify-content: center;
}
.priorties_optionImg img {
    max-width: 30px;
}
.priorties_optionContentBox .priorties_optionContent {
    letter-spacing: 0.48px;
    color: #FFFFFF;
    opacity: 1;
    font-size: 24px;
    line-height: 1.25;
    text-align: center;
    margin: 0;
    max-width: 275px;
    padding-top: 22px;
    text-transform: capitalize;
}
/*--==============================*** 
        Priorities Product Page 
***==============================---*/
/*--==========*** BreadCrum ***==========--*/
.hrps_breadcrums_wrapper {
    padding-top: 20px;
}
.breadcrums_inner .breadcurms_items {
    display: flex;
    align-items: center;
    padding: 0;
}
.breadcurms_items .breadcrum_item .breadcrum_link.active_breadcrum {
    font-size: 16px;
    color: var(--secondary-color);
    transition: all 0.5s ease;
}
.breadcurms_items .breadcrum_item .breadcrum_link.active_breadcrum:hover{
    color: #fff;
    text-decoration: underline;
}
.breadcurms_items .breadcrum_item.disable_bedcrum {
    color: #cccccc;
    font-size: 16px;
    text-transform: capitalize;
}
.breadcrums_inner .breadcurms_items .breadcrum_item:not(:last-child)::after {
    content: '>';
    margin: 0 12px;
    color: #fff;
    font-size: 16px;
}
.breadcurms_items .breadcrum_item {
    letter-spacing: 2px;
}
/*--==========*** Priorities Product ***==========--*/
section.priorities-products {
    padding-top: 65px;
}
.product_headingWrapper {
    max-width: 1040px;
    margin: 0 auto 90px;
}
.priorities_boxMenus_warpper {
    max-width: 1140px;
    margin: 0 auto;
}
.priorities_boxMenus_warpper .priorities_boxMenus {
    display: flex;
    align-items: center;
    grid-gap: 0 24px;
}
.priorities_boxMenus_warpper .priorities_boxMenus:not(:last-child) {
    margin-bottom: 30px;
}
.priorities_boxMenus_warpper .priorities_boxMenus .product_logo {
    max-width: 200px;
    width: 100%;
    height: 90px;
    background-color: #fff;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
}
.product_titleWith_description {
    font-size: 20px;
    letter-spacing: 0px;
    color: #FFFFFF;
    font-weight: 400;
    line-height: 1.3;
}
.product_titleWith_description strong{
    text-transform: capitalize;
}
.product_titleWith_description p {
    margin: 0;
    display: inline;
}
section.priorities_products_details {
    padding-bottom: 120px;
}
.product_details_wrapper {
    padding-top: 120px;
}
.products_details_inner {
    display: flex;
    grid-gap: 0 60px;
    flex-wrap: wrap;
}
.product_details_wrapper:nth-child(even) .products_details_inner{
    flex-direction: row-reverse;
}
.products_details_inner .product_details_slider_wrapper, .products_details_inner .products_details_column {
    flex: 1  calc(50% - 60px);
    width: 50%;
}
.product_details_slider_inner {
    position: relative;
    margin-left: 36px;
}
.products_details_heading + .products_details_content p {
    margin: 0;
    padding: 40px 0 25px;
    color: #ffffff;
    font-size: 18px;
    line-height: 1.445;
    letter-spacing: 0;
    font-weight: 400;
}
.products_details_heading + .products_details_content ul + p {
    padding: 25px 0 25px;
}
.products_details_content ul {
    padding: 0;
}
.products_details_content ul li {
    color: #FFFFFF;
    opacity: 1;
    font-size: 18px;
    position: relative;
    line-height: 1.889;
    padding-left: 16px;
}
.products_details_content ul li::before {
    content: '''';
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--secondary-color);
    top: 13px;
    left: 0;
}
.products_details_content ul li li::before{
    background-color: #ffffff;
}
.products_details_content h4 {
    color: #ffffff;
    font-size: 20px;
    margin: 0;
    padding-bottom: 24px;
    font-weight: 700;
    letter-spacing: 0;
    line-height: 1.2;
}
.products_details_content h4 +ul + h4 {
    padding-top: 30px;
}
.product_details_description p {
    margin: 0;
    font-size: 18px;
    color: #ffffff;
    line-height: 1.889;
}
.product_details_description {
    padding-top: 30px;
}
.product_details_slider_wrapper .product_detial_slider .slick-list.draggable {
    border-radius: 20px;
}
.product_details_slider_wrapper .product_detial_slider .slick-dots{
    bottom: -38px;
}
.product_details_slider_wrapper .product_detial_slider .slick-dots li {
    width: 10px;
    height: 10px;
    margin: 0 5px;
    background-color: #fff;
    opacity: 0.4;
    border-radius: 100%;
}
.product_details_slider_wrapper .product_detial_slider .slick-dots li.slick-active{
    opacity: 1;
}
.product_details_slider_wrapper .product_detial_slider .slick-dots li button:before{
    display: none;
}
.product_details_slider_items {
    border: 20px;
    overflow: hidden;
    margin-bottom: -10px;
}
.product_details_slider_items img {
    width: 100%;
    height: 490px;
    object-fit: cover;
    border-radius: 20px;
    object-position: left;
}
.postid-103 .product_details_slider_items img {
    height: 100%;
}
/*--==============================*** 
            404 Page CSS 
***==============================---*/
.custom-404 {
    padding:120px 0 120px;
}
.page_Not_Found_inner {
    text-align: center;
}
.page_Not_Found_inner .page-title {
    font-size: 200px;
    line-height: 1;
    color: #ffffff;
    margin: 0;
}
.page_Not_Found_inner p {
    font-size: 30px;
    color: #A8A8A8;
    margin: 20px 0 40px;
    line-height: 1;
}
.page_Not_Found_inner .custom-btn {
    color: #fff;
    font-size: 21px;
    background-color: var(--secondary-color);
    padding: 15px 40px;
    border-radius: 8px;
    display: inline-block;
    transition: all 0.5s ease;
    text-transform: capitalize;
}
/*--==========*** Footer ***==========---*/
.site-footer .footer-wrapper {
    border-top: 1px solid rgb(255 255 255 / 30%);
    padding: 26px 0;
}
.site-footer .footer-wrapper .copyright p {
    margin: 0;
    text-align: center;
    letter-spacing: 0px;
    color: #A8A8A8;
    opacity: 1;
    font-size: 14px;
    font-weight: 400;
    line-height: 2.429;
}
/*--==========*** Responsive Container ***==========---*/
@media (min-width:992px){
    .custom-container{
        max-width: 960px;
    }
}
@media (min-width:1200px){
    .custom-container{
        max-width: 1140px;
    }
}
@media (min-width:1400px){
    .custom-container{
        max-width: 1320px;
    }
}
@media (min-width:1751px){
    .custom-container{
        max-width: 1688px;
    }
}
/*--==========*** Responsive ***==========---*/
@media (max-width:1750px){
    /* Home Page Responsive CSS */
    .header-wrapper .navigation  .logo {
        max-width: 500px;
    }
    .site-header .navigation .logo img{
        max-width: 300px;
    }
    .site-header .navigation .header-heading .wp-block-heading{
        font-size: 48px;
    }
    .priorties_options-wrapper {
        max-width: 1200px;
        grid-gap: 75px 50px;
    }
    .priorties_options-wrapper .priorties_optionsInner {
        flex: 1 1 calc(25% - 50px);
        max-width: 263px;
    }
    .priorties_optionContentBox .priorties_optionContent{
        font-size: 20px;
    }
    /* Priorities Product Page Responsive CSS */
    .product_headingWrapper {
        margin-bottom: 60px;
        max-width: 900px;
    }
    .page_heading {
        font-size: 32px;
        padding-bottom: 20px;
    }
    .product_headingWrapper p {
        font-size: 24px;
    }
    .main_heading{
        font-size: 28px;
    }
    .priorities_boxMenus_warpper .priorities_boxMenus:not(:last-child) {
        margin-bottom: 20px;
    }
    .product_titleWith_description {
        font-size: 18px;
    }
    .products_details_heading + .products_details_content p {
        padding: 40px 0 20px 0;
        font-size: 16px;
    }
    .products_details_content ul li {
        font-size: 16px;
    }
    .products_details_content ul li::before {
        top: 12px;
    }
    .products_details_content h4 {
        font-size: 18px;
        padding-bottom: 15px;
    }
    .product_details_description p {
        font-size: 16px;
    }
    .products_details_content h4 +ul + h4 {
        padding-top: 20px;
    }
    .product_details_slider_items {
        height: 450px;
    }
    .postid-103 .product_details_slider_items{
        height: 100%;
    }
    .postid-103 .product_slider_title_wrapper {
        height: 275px;
        bottom: auto;
        top: 30px;
    }
    .product_slider_title {
        letter-spacing: 4px;
        font-size: 20px;
    }
    .product_slider_title_wrapper {
        height: 375px;
    }
    .product_details_slider_items img{
        object-position: left;
    }
    .postid-103 .product_slider_title_wrapper .product_slider_title{
        letter-spacing: 3px;
        font-size: 18px;
    }
}
@media (max-width:1399px){
    /* Header Responsive CSS */
    .header-wrapper .navigation  .logo {
        max-width: 400px;
    }
    .site-header .navigation .logo img {
        max-width: 250px;
    }
    .site-header .navigation .header-heading .wp-block-heading {
        font-size: 45px;;
    }
    /* Home Page Responsive CSS */
    .priorties_options-wrapper {
        grid-gap: 75px 30px;
        max-width: 100%;
    }
    .priorties_options-wrapper .priorties_optionsInner {
        flex: 1 1 calc(25% - 30px);
        max-width: 240px;
    }
    /* Priorities Product Page Responsive CSS */
    .product_headingWrapper {
        max-width: 800px;
    }
    .page_heading {
        font-size: 28px;
    }
    .product_headingWrapper p {
        font-size: 20px;
    }
    .products_details_inner {
        grid-gap: 0 30px;
    }
    .products_details_inner .product_details_slider_wrapper, .products_details_inner .products_details_column {
        flex: 1  calc(50% - 30px);
    }
    .priorities_boxMenus_warpper {
        max-width: 1024px;
    }
    .postid-103 .product_slider_title_wrapper {
        height: 230px;
        bottom: auto;
    }
    .postid-103 .product_slider_title {
        letter-spacing: 1px;
        font-size: 16px;
    }
    .product_details_slider_wrapper {
        position: sticky;
        top: 40px;
        height: 100%;
    }
    .product_titleWith_description {
        font-size: 16px;
        letter-spacing: 0.5px;
        line-height: 1.5;
    }
    .postid-103 .product_slider_title_wrapper .product_slider_title{
        letter-spacing: 2px;
        font-size: 16px;
    }
}
@media (max-width:1199px){
    /* Home Page Responsive CSS */
    .header-wrapper .navigation  .logo {
        max-width: 325px;
    }
    .site-header .navigation .header-heading .wp-block-heading {
        font-size: 40px;
    }
    .priorties_optionContentBox .priorties_optionContent {
        font-size: 16px;
    }
    /* Priorities Product Page Responsive CSS */
    .products_details_inner .product_details_slider_wrapper, .products_details_inner .products_details_column {
        flex: auto;
        width: 100%;
    }
    .products_details_inner {
        grid-gap: 50px 0;
    }
    .product_details_slider_items {
        height: 100%;
    }
    .product_titleWith_description {
        font-size: 16px;
        line-height: 1.6;
    }
    .product_headingWrapper p {
        font-size: 22px;
    }
    .page_heading {
        font-size: 28px;
        padding-bottom: 25px;
    }
    .product_details_wrapper {
        padding-top: 60px;
    }
    section.priorities_products_details {
        padding-bottom: 60px;
    }
    .product_details_slider_wrapper {
        position: static;
    }
    .product_headingWrapper {
        max-width: 100%;
        margin: 0 auto 60px;
    }
    .priorities_boxMenus_warpper .priorities_boxMenus{
        flex-wrap: wrap;
        grid-gap: 15px;
    }
    .product_logo {
        height: 90px !important;
    }
    .product_titleWith_description {
        flex: 1;
    }
    .product_details_slider_items img{
        height: 100%;
    }
}
@media (max-width:991px){
    /* Header Responsive CSS */
    .header-wrapper .navigation  .logo {
        max-width: 350px;
    }
    .site-header .navigation .logo img {
        max-width: 250px;
    }
    .site-header .navigation .header-heading .wp-block-heading {
        font-size: 36px;
    }
    /* Home Page Responsive CSS */
    .priorties_options-wrapper .priorties_optionsInner {
        flex: 1 1 calc(33.3% - 30px);
        max-width: 33.3%;
    }
    /* Priorities Product Page Responsive CSS */
    .priorities_boxMenus{
        height: 100%;
    }
    /* Breadcrum Responsive CSS */
    .breadcrums_inner .breadcurms_items{
        justify-content: center;
    }
    /* 404 Page Responsive CSS */
    .custom-404 {
        padding: 60px 0;
    }
    .page_Not_Found_inner .page-title {
        font-size: 100px;
    }
    .page_Not_Found_inner p {
        font-size: 20px;
        margin: 20px 0;
    }
}
@media (max-width:767px){
    /* Header Responsive CSS */
    .site-header .header-wrapper {
        padding: 20px 0 20px;
    }
    .site-header .header-wrapper .navigation {
        flex-wrap: wrap;
        grid-gap: 15px;
    }
    .header-wrapper .navigation .logo, .header-wrapper .navigation .header-heading {
        width: 100%;
        max-width: 100%;
        flex: auto;
        text-align: center;
    }
    .site-header .navigation .logo img {
        max-width: 300px;
    }
    .site-header .navigation .header-heading .wp-block-heading {
       text-align: center;
    }
    /* Home Page Responsive CSS */
    .priorties_options-wrapper .priorties_optionsInner {
        flex: 2 1 calc(50% - 30px);
        max-width: 50%;
    }
    /* Priorities Product Page Responsive CSS */
    .main_heading {
        font-size: 24px;
        line-height: 1.4;
    }
    .product_headingWrapper p {
        font-size: 16px;
    }
    .page_heading {
        font-size: 24px;
        padding-bottom: 15px;
        line-height: 1.25;
    }
    .product_titleWith_description {
        flex: auto;
    }
    .priorities_boxMenus {
        padding: 15px;
    }
    .product_slider_title_wrapper{
        display: none;
    }
    .product_details_slider_inner{
        margin-left: 0;
    }
}
@media (max-width:575px){
    /* Header Responsive CSS */
    .site-header .navigation .header-heading .wp-block-heading {
        font-size: 30px;
        letter-spacing: 1px;
    }
    /* Home Page Responsive CSS */
    .priorties_optionContentBox .priorties_optionContent {
        font-size: 18px;
    }
    .priorties_options-wrapper .priorties_optionsInner {
        flex: auto;
        width: 100%;
        max-width: 100%;
    }
    .priorties_options-wrapper {
        grid-gap: 60px;
    }
    /* Footer Responsive CSS */
    .site-footer .footer-wrapper {
        padding: 15px 0;
    }
    /* Priorities Product Page Responsive CSS */
    section.priorities-products {
        padding-top: 30px;
    }
    .products_details_content ul li {
        font-size: 14px;
    }
    .products_details_content ul li::before {
        top: 10px;
        width: 6px;
        height: 6px;
    }
    .product_details_slider_wrapper .product_detial_slider .slick-list.draggable, .product_details_slider_items, .product_details_slider_items img{
        border-radius: 10px;
    }
    .product_titleWith_description {
        font-size: 15px;
        line-height: 1.6;
        letter-spacing: 0.3px;
    }
    .products_details_content ul ul{
        margin: 0;
    }
    .products_details_inner {
        grid-gap: 25px 0;
    }
    .product_details_wrapper {
        padding-top: 30px;
    }
    section.priorities_products_details {
        padding-bottom: 40px;
    }
    .product_headingWrapper {
        margin: 0 auto 30px;
    }
    /* Breadcrum Responsive CSS */
    .breadcrums_inner .breadcurms_items {
        flex-wrap: wrap;
        text-align: center;
        flex-direction: column;
        justify-content: normal;
        align-items: normal;
    }
}
@media (max-width:350px){
    /* Header Responsive CSS */
    .site-header .navigation .logo img {
        max-width: 85%;
    }
    /* Priorities Product Page Responsive CSS */
    .priorities_boxMenus_warpper .priorities_boxMenus .product_logo {
        max-width: 100%;
        height: 75px;
    }
    .priorities_boxMenus_warpper .priorities_boxMenus .product_logo img {
        max-width: 80%;
    }
}