@font-face {
    font-family: IranYekan;
    font-style: normal;
    font-weight: 100;
    font-display: fallback;
    src: url(../font/iranyekan/IRANYEKANTHIN.TTF) format("truetype");
}

@font-face {
    font-family: IranYekan;
    font-style: normal;
    /*font-weight: 300;*/
    font-display: fallback;
    src: url(../font/iranyekan/IRANYEKANLIGHT.TTF) format("truetype");
}

@font-face {
    font-family: IranYekan;
    font-style: normal;
    font-weight: normal;
    font-display: fallback;
    src: url(../font/iranyekan/IRANYEKANREGULAR.TTF) format("truetype");
}

@font-face {
    font-family: IranYekan;
    font-style: normal;
    font-weight: 500;
    font-display: fallback;
    src: url(../font/iranyekan/IRANYEKANMEDIUM.TTF) format("truetype");
}

@font-face {
    font-family: IranYekan;
    font-style: normal;
    font-weight: 700;
    font-display: fallback;
    src: url(../font/iranyekan/IRANYEKANBOLD.TTF) format("truetype");
}

@font-face {
    font-family: IranYekan;
    font-style: normal;
    font-weight: 800;
    font-display: fallback;
    src: url(../font/iranyekan/IRANYEKANEXTRABOLD.TTF) format("truetype");
}

@font-face {
    font-family: IranYekan;
    font-style: normal;
    font-weight: 900;
    font-display: fallback;
    src: url(../font/iranyekan/IRANYEKANBLACK.TTF) format("truetype");
}

@font-face {
    font-family: IranYekan;
    font-style: normal;
    font-weight: 950;
    font-display: fallback;
    src: url(../font/iranyekan/IRANYEKANEXTRABLACK.TTF) format("truetype");
}

:root {
    --bs-link-color: #002288;
    --bs-body-line-height: 1.8;
}

html {
    font-family: IranYekan, sans-serif;
}

body {
    font-family: IranYekan, sans-serif;
    overflow-x: hidden;
}

section {
    margin-top: 72px;
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: #0044bb;
}

p {
    margin: 0;
}

a {
    text-decoration: none;
}

@media only screen and (max-width: 992px) {
    section {
        margin-top: 48px;
    }
}

@keyframes moveInRight {
    0% {
        transform: translateX(100px);
    }
    80% {
        transform: translateX(1px);
    }
    100% {
        transform: translate(0);
    }
}

/* header */
.dark-background {
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    z-index: 100;
    position: fixed;
    background-color: rgba(0, 0, 0, 0.2);
    display: none;
}

.nav-menu {
    background: linear-gradient(180deg, #002288 0%, rgba(8, 68, 238, 0.32) 100%);
    background: rgb(0, 52, 143);
    background: linear-gradient(0deg, rgba(0, 52, 143, 1) 0%, rgba(8, 68, 238, 1) 100%);
    border-bottom: 0.4px solid #ffffff;
    padding: 16px 5rem;
}

.nav-menu .logo {
    margin-left: auto;
}

.logo {
    margin: 0 30px;
}

.header-mobile__btn {
    cursor: pointer;
}

.header-desktop__btn {
    cursor: pointer;
}

.header-container-mobile {
    width: 330px;
    height: 100%;
    position: fixed;
    top: 0;
    right: 0;
    background: #ffffff;
    border-radius: 16px 0px 0px 16px;
    z-index: 101;
    display: none;
    overflow-y: auto;
    animation: 1s moveInRight;
}

.header-container-mobile::-webkit-scrollbar {
    width: 5px;
}

.header-container-mobile__display {
    display: block;
}

.header-container-mobile ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.header-container-desktop {
    width: 288px;
    height: 100%;
    position: fixed;
    top: 0;
    right: 0;
    background: #ffffff;
    border-radius: 16px 0px 0px 16px;
    z-index: 101;
    display: none;
    overflow: initial;
    animation: 1s moveInRight;
}

.header-container-desktop::-webkit-scrollbar {
    width: 5px;
}

.header-container-desktop__display {
    display: block;
}

.header-container-desktop ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.menu .menu-item {
    padding: 10px 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    height: 53px;
}

.menu .menu-item img {
    width: 32px;
    height: 32px;
}

.menu .menu-item ul .menu-item:last-child {
    border: none;
}

.menu .menu-item.menu-item-has-children {
    position: relative;
}

.menu .menu-item.menu-item-has-children > a {
    position: relative;
}

.menu .menu-item.menu-item-has-children > a::after {
    content: url(../img/vector.svg);
    position: absolute;
    left: 0;
    top: 5px;
    transition: 0.3s all ease-in;
}

.header-container-mobile .menu .menu-item.menu-item-has-children.active > a:not(:only-child):after {
    transform: rotate(-90deg);
}

.menu .menu-item a {
    font-weight: 500;
    font-size: 14px;
    line-height: 24px;
    color: #404e88;
    opacity: 0.86;
    text-decoration: none;
    display: inline-block;
    width: 100%;
    text-wrap: nowrap;
}

.menu .menu-item a:hover {
    color: #404e88;
}

.menu-logo {
    padding: 24px 4px;
    margin-bottom: 25px;
    border-bottom: 1px solid #0044bb;
    display: block;
}

@media only screen and (max-width: 992px) {
    .menu-logo {
        display: flex;
        justify-content: center;
    }
}

/* Sub-menu */
.header-container-desktop .sub-menu {
    position: absolute;
    right: 289px;
    top: 0;
    background: #fff;
    transition: all 1s ease;
    z-index: 10;
    width: max-content;
    display: none;
    padding: 0;
    /* border-radius: 10px 0 0 10px; */
    /* overflow: hidden; */
}

.header-container-desktop .sub-menu .menu-item-has-children .sub-menu {
    right: calc(100% + 1px);
}

.header-container-desktop .sub-menu .menu-item {
    padding: 10px 30px;
    height: 53px;
}

.header-container-desktop .menu-item-has-children:hover > .sub-menu {
    display: block;
}

.header-container-desktop
.menu
.menu-item.menu-item-has-children
.sub-menu
.menu-item.menu-item-has-children
> a::after {
    content: url(../img/vector.svg);
    position: absolute;
    left: -20px;
    top: 3px;
    transition: 0.3s all ease-in;
}

.header-container-desktop
.menu
.menu-item.menu-item-has-children
.sub-menu
.menu-item.menu-item-has-children
.sub-menu
.menu-item.menu-item-has-children
> a::after {
    content: url(../img/vector.svg);
    position: absolute;
    left: -20px;
    top: 3px;
    transition: 0.3s all ease-in;
}

.header-container-mobile .sub-menu {
    display: none;
    padding-right: 12px;
    border-right: 0.5px solid rgba(0, 0, 0, 0.1);
    margin-right: 12px;
}

.header-phone {
    display: flex;
    direction: initial;
    align-items: center;
    background: url(../img/telephone.png);
    backdrop-filter: opacity(0.4);
    background-repeat: no-repeat;
}

.header-phone a {
    color: #ffffff;
}

.header-phone a:hover, .header-phone a:focus {
    color: #ffdd28;
}

.header-phone .area-code {
    font-weight: 400;
    font-size: 1.1em;
    line-height: 24px;
    margin-right: 4px;
}

.header-phone .phone-num {
    font-weight: 600;
    font-size: 1.4em;
    line-height: 28px;
}

.search-input {
    width: 0px !important;
    transition: all 1s;
    padding: 6px 0;
    margin-left: 5px;
}

/* .search-input.active {
  display: flex;
  margin-left: 5px;
  width: 300px !important;
  padding: 6px 0.75rem;
} */
.search-desktop {
    cursor: pointer;
    display: flex;
    align-items: stretch;
    width: 100%;
    position: relative;
    justify-content: left;
}

.search-desktop span {
    position: absolute;
    left: 0;
    background-color: #002058;
    border-radius: 0.25rem;
    height: 40px;
    padding: 5px 10px;
}

.search-desktop.active .search-input {
    display: flex;
    margin-left: 5px;
    width: 300px !important;
    padding: 6px 10px 6px 30px;
}

.search-desktop.active span {
    border-radius: 0.25rem 0 0 0.25rem;
}

.search-desktop span img {
    width: 24px;
    height: 24px;
}

.search-desktop input {
    border: none;
    outline: none;
}

@media only screen and (max-width: 992px) {
    .nav-menu {
        padding: 16px 0rem;
    }

    .logo {
        margin: 0 12px;
    }

    .search-desktop span img {
        width: 30px;
        height: 20px;
    }

    .header-phone .area-code,
    .header-phone .phone-num {
        font-size: 1em;
    }
}

/* breadcrumbs */
.breadcrumbs {
    padding-left: var(--bs-gutter-x, 5.75rem);
    padding-right: var(--bs-gutter-x, 5.75rem);
    padding-top: 22px;
    /*font-weight: 300;*/
    font-size: 14px;
    line-height: 24px;
    color: #404e88;
}

@media only screen and (max-width: 992px) {
    .breadcrumbs {
        padding-left: 0;
        padding-right: 0;
        display: flex;
        justify-content: center;
    }
}

/* banner-slider */

#banner-slider {
    direction: ltr;
    margin-top: -10px;
}

.banner-slider {
    width: 100%;
    height: 50vh;
    background-size: cover;
    background-position: center;
}

.slider-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    transform: translate(-3%, 15%);
    width: 100%;
    height: 100%;
}

.banner-slider .slider-title {
    font-weight: 700;
    font-size: 47px;
    line-height: 80px;
    color: #ffffff;
}

.banner-slider .seemore-link {
    font-weight: 500;
    font-size: 19px;
    line-height: 32px;
    color: #0044bb;
    text-decoration: none;
    background-color: #ffdd28;
    padding: 8px 12px;
}

.banner-slider .seemore-link img {
    margin-right: 12px;
}

.splide__pagination {
    right: 72px;
    bottom: 24px;
    left: unset;
}

.splide__pagination__page {
    border-radius: 0;
    width: 12px;
    height: 12px;
    margin: 0 8px;
}

.splide__pagination__page.is-active {
    width: 16px;
    height: 16px;
    background-color: #ffffff;
    opacity: 1;
}

@media only screen and (max-width: 992px) {
    .banner-slider {
        height: 50vh;
    }

    .banner-slider .slider-title {
        font-weight: 700;
        font-size: 32px;
        line-height: 40px;
        color: #ffffff;
        direction: rtl;
        text-align: right;
        margin-bottom: 30px;
    }

    .banner-slider .seemore-link {
        font-weight: 500;
        font-size: 16px;
        line-height: 28px;
        color: #0044bb;
        text-decoration: none;
        background-color: #ffdd28;
        padding: 6px 8px;
    }
}

/* video */
.video-section .section-title {
    font-weight: 800;
    font-size: 37px;
    line-height: 64px;
    text-align: center;
    color: #0044bb;
    margin-bottom: 24px;
}

.video {
    display: flex;
    justify-content: center;
    max-width: 960px;
    margin: auto;
}

@media only screen and (max-width: 992px) {
    .video-section h2 {
        font-weight: 800;
        font-size: 19px;
        line-height: 32px;
        text-align: center;
        color: #0044bb;
        margin-bottom: 16px;
    }
}

/* about */
.about-section {
    position: relative;
    padding: 48px 0;
}

.about-section::before {
    content: "";
    background: url(../img/about-bg.svg);
    position: absolute;
    bottom: 0px;
    width: 100%;
    height: 356px;
    z-index: -1;
    background-size: cover;
}

.about-section h2 {
    font-weight: 800;
    font-size: 37px;
    line-height: 64px;
    text-align: center;
    color: #0044bb;
    margin-bottom: 24px;
}

.about-features {
    display: flex;
    justify-content: center;
}

.features {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0 11px;
    background: #ffdd28;
    padding: 24px;
    flex-basis: 33.33%;
}

.features:first-child {
    margin-right: 0;
}

.features:last-child {
    margin-left: 0;
}

.features img {
    margin-bottom: 12px;
}

.features p {
    font-weight: 700;
    font-size: 19px;
    line-height: 32px;
    color: #002266;
}

.about-heading {
    font-weight: 500;
    font-size: 28px;
    line-height: 48px;
    color: #ffffff;
    margin-top: 20px;
    margin-bottom: 8px;
}

.about {
    /*font-weight: 300;*/
    font-size: 16px;
    line-height: 28px;

    text-indent: 6px;
    color: #ffffff;
}

@media only screen and (max-width: 992px) {
    .about-section h2 {
        font-weight: 800;
        font-size: 19px;
        line-height: 32px;
        text-align: center;
        color: #0044bb;
        margin-bottom: 16px;
    }

    .about-features {
        display: flex;
        justify-content: center;
        flex-direction: column;
    }

    .features {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        margin: 8px 0;
        background: #ffdd28;
        padding: 8px;
    }

    .features img {
        width: 48px;
        height: 48px;
        margin: 0;
    }

    .features p {
        font-size: 16px;
        line-height: 28px;
    }

    .about-heading {
        font-weight: 700;
        font-size: 16px;
        line-height: 28px;
        color: #ffffff;
        margin-top: 16px;
        margin-bottom: 8px;
    }

    .about {
        /*font-weight: 300;*/
        font-size: 12px;
        line-height: 20px;

        text-indent: 6px;
        color: #ffffff;
    }
}

/* product */

.product-section h2 {
    font-weight: 800;
    font-size: 37px;
    line-height: 64px;
    text-align: center;
    color: #0044bb;
    margin-bottom: 24px;
}

.product-slider {
    direction: ltr;
}

.product-slider .products {
    direction: rtl;
}

.product-slider .products .product-img img {
    width: 100%;
    height: auto;
}

.product-section .cat_thumbnails {
    display: flex;
    margin: 1rem auto 0;
    padding: 0;
    justify-content: center;
    gap: 10px;
}

.product-section .cat_thumbnail {
    width: 220px;
    height: 140px;
    overflow: hidden;
    list-style: none;
    cursor: pointer;
    position: relative;
}

.product-section .cat_thumbnail h3 {
    position: absolute;
    bottom: 0;
    font-weight: 400;
    text-align: center;
    color: #ffffff;
    width: 100%;
    transition: 0.5s all;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 5px;
    padding: 5px;
    font-size: 1em;
}

.product-section .cat_thumbnail.is-active h3 {
    bottom: 10px;
}

.product-section .cat_thumbnail img {
    width: 100%;
    height: 100%;
    filter: grayscale(1);
    transition: all 0.3s;
}

.product-section .cat_thumbnail.is-active img {
    filter: grayscale(0);
}

.product-section .splide__arrow {
    background: transparent;
}

.product-section .splide__arrow--prev {
    left: -2em;
}

.product-section .splide__arrow--next {
    right: -2em;
}

.slider-pro {
    display: flex;
    flex-direction: row-reverse;
}

.slider-pro .pro_thumbnails .splide__list {
    flex-direction: column;
    max-height: 260px;
    overflow: auto;
    padding: 15px !important;
}

.splide__slide {
    padding: 10px;
}

.slider-pro .main-slider .splide__slide img {
    object-fit: cover;
    border-radius: 12px;
}

.slider-pro .pro_thumbnails > .splide__track > .splide__list > .splide__slide.is-active {
    border: 1px solid #002266;
}

.slider-pro .pro_thumbnails > .splide__track > .splide__list > .splide__slide:not(:last-child) {
    margin-bottom: 15px;
}

.slider-pro .pro_thumbnails > .splide__track > .splide__list > .splide__slide {
    border: 1px solid #e2e2e2;
    border-radius: 6px;
    padding: 4px;
}

@media only screen and (max-width: 1200px) {
    .slider-pro {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .slider-pro .pro_thumbnails .splide__list {
        flex-direction: row;
        justify-content: space-between;
    }

    .slider-pro .pro_thumbnails > .splide__track > .splide__list > .splide__slide:not(:last-child) {
        margin-bottom: 0px;
        margin: 0 8px;
    }
}

.product-section .product-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: right;
}

.product-section .product-info .product-heading {
    font-weight: 500;
    font-size: 23px;
    line-height: 40px;
    color: #224dff;
}

.product-section .product-info .product-desc {
    /*font-weight: 300;*/
    font-size: 16px;
    line-height: 28px;

    color: #404e88;
    max-width: 560px;
    margin: 8px 0;
}

.product-section .product-info .product-call {
    direction: initial;
    /*font-weight: 300;*/
    font-size: 21px;
    line-height: 36px;
    color: #404e88;
    margin-bottom: 12px;
}

.product-section .product-info .product-link {
    font-weight: 500;
    font-size: 19px;
    line-height: 32px;
    color: #0044bb;
    background: #ffdd28;
    border: 1px solid #ffdd28;
    padding: 12px;
    margin-top: 8px;
    text-decoration: none;
}

@media only screen and (max-width: 992px) {
    .product-section h2 {
        font-weight: 800;
        font-size: 19px;
        line-height: 32px;
        text-align: center;
        color: #0044bb;
        margin-bottom: 16px;
    }

    .product-slider .products {
        flex-direction: column-reverse;
        width: 80%;
        margin: auto;
    }

    .product-section .splide__arrow--prev {
        left: 0em;
    }

    .product-section .splide__arrow--next {
        right: 0em;
    }

    .product-section .product-info .product-heading {
        font-weight: 500;
        font-size: 16px;
        line-height: 28px;
        color: #404e88;
    }

    .product-section .product-info .product-desc {
        /*font-weight: 300;*/

        line-height: 18px;

        letter-spacing: -0.0068em;
        color: #404e88;
    }

    .product-section .product-info .product-call {
        direction: initial;
        /*font-weight: 300;*/
        font-size: 19px;
        line-height: 32px;
        color: #404e88;
        margin-bottom: 8px;
    }

    .product-section .product-info .product-link {
        font-size: 16px;
        line-height: 28px;
        padding: 6px 8px;
    }
}

/* contact */

.contact-section {
    background: #003a9d url(../img/contact-bg.jpg) no-repeat center;
    background-size: cover;
    padding: 64px 0;
}

.contact-section .container-fluid {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.contact-section .contact-heading {
    font-weight: 500;
    font-size: 23px;
    line-height: 40px;
    color: #ffffff;
}

.contact-section .contact-desc {
    /*font-weight: 300;*/
    font-size: 16px;
    line-height: 28px;

    color: #ffffff;
    max-width: 880px;
    margin: 8px 0;
}

.contact-section .contact-call {
    direction: initial;
    font-weight: 400;
    font-size: 28px;
    line-height: 48px;
    color: #ffffff;
    margin-bottom: 12px;
}

.contact-section .contact-link {
    font-weight: 500;
    font-size: 19px;
    line-height: 32px;
    color: #0044bb;
    background: #ffdd28;
    padding: 12px;
    text-decoration: none;
}

@media only screen and (max-width: 992px) {
    .contact-section {
        padding: 24px 0;
        background-image: none;
    }

    .contact-section .contact-heading {
        font-weight: 800;
        font-size: 19px;
        line-height: 32px;
    }

    .contact-section .contact-desc {
        font-size: 12px;
        line-height: 20px;
    }

    .contact-section .contact-call {
        font-size: 19px;
        line-height: 32px;
    }

    .contact-section .contact-link {
        font-size: 16px;
        line-height: 28px;
        padding: 6px 8px;
    }
}

/* calculator */

.calculator-section h2 {
    font-weight: 800;
    font-size: 37px;
    line-height: 64px;
    text-align: center;
    color: #0044bb;
    margin-bottom: 24px;
}

@media only screen and (max-width: 992px) {
    .calculator-section h2 {
        font-weight: 800;
        font-size: 19px;
        line-height: 32px;
        text-align: center;
        color: #0044bb;
        margin-bottom: 16px;
    }
}

/* project */

.project-section h2 {
    font-weight: 800;
    font-size: 37px;
    line-height: 64px;
    text-align: center;
    color: #0044bb;
    margin-bottom: 24px;
}

.projects {
    margin: auto;
    display: grid;
    justify-content: center;
    grid-template-columns: 440px 880px;
    grid-template-rows: 440px 480px;
    gap: 0px 0px;
    grid-template-areas:
    "project1 project2"
    "project3 project3";
}

.project1 {
    grid-area: project1;
    position: relative;
}

.project2 {
    grid-area: project2;
    position: relative;
}

.project3 {
    grid-area: project3;
    position: relative;
}

.project-info {
    position: absolute;
    display: flex;
    flex-direction: column;
    right: 32px;
    bottom: 32px;
    color: #ffffff;
}

.project-info h3 {
    font-weight: 500;
    font-size: 23px;
    line-height: 40px;
}

.project-details {
    display: flex;
}

.project-details .details-title {
    font-weight: 500;
    font-size: 14px;
    line-height: 24px;
    margin-left: 12px;
    display: flex;
    flex-direction: column;
}

.project-details .details {
    /*font-weight: 300;*/
    font-size: 14px;
    line-height: 24px;
    display: flex;
    flex-direction: column;
    max-width: 256px;
}

@media only screen and (max-width: 1400px) {
    .projects {
        margin: auto;
        display: grid;
        justify-content: center;
        grid-template-columns: 440px 700px;
        grid-template-rows: 440px 480px;
        gap: 0px 0px;
        grid-template-areas:
      "project1 project2"
      "project3 project3";
    }
}

@media only screen and (max-width: 1200px) {
    .projects {
        margin: auto;
        display: grid;
        justify-content: center;
        grid-template-columns: 440px 520px;
        grid-template-rows: 440px 480px;
        gap: 0px 0px;
        grid-template-areas:
      "project1 project2"
      "project3 project3";
    }
}

@media only screen and (max-width: 992px) {
    .project-section h2 {
        font-weight: 800;
        font-size: 19px;
        line-height: 32px;
        text-align: center;
        color: #0044bb;
        margin-bottom: 16px;
    }

    .projects {
        margin: auto;
        display: grid;
        grid-template-columns: 440px;
        grid-template-rows: 440px 440px 480px;
        gap: 0px 0px;
        grid-template-areas:
      "project1 "
      "project2 "
      "project3 ";
    }

    .project-info h3 {
        font-weight: 500;
        font-size: 16px;
        line-height: 28px;
    }

    .project-details .details-title {
        font-weight: 500;

        line-height: 18px;
        margin-left: 12px;
    }

    .project-details .details {
        /*font-weight: 300;*/

        line-height: 18px;
        max-width: 208px;
    }
}

@media only screen and (max-width: 440px) {
    .projects {
        margin: auto;
        display: grid;
        grid-template-columns: 100%;
        grid-template-rows: 440px 440px 480px;
        gap: 0px 0px;
        grid-template-areas:
      "project1 "
      "project2 "
      "project3 ";
    }
}

/* transportation */

.transportation-section h2 {
    font-weight: 800;
    font-size: 37px;
    line-height: 64px;
    text-align: center;
    color: #0044bb;
    margin-bottom: 24px;
}

@media only screen and (max-width: 992px) {
    .transportation-section h2 {
        font-weight: 800;
        font-size: 19px;
        line-height: 32px;
        text-align: center;
        color: #0044bb;
        margin-bottom: 16px;
    }
}

/* comment */

.comment-section h2 {
    font-weight: 800;
    font-size: 37px;
    line-height: 64px;
    text-align: center;
    color: #0044bb;
    margin-bottom: 24px;
}

.comment-slider {
    direction: ltr;
}

.card-slider-box {
    direction: rtl;
    display: flex;
    flex-direction: column;
    text-align: right;
    height: 100%;
    justify-content: center;
}

.card-slider-box .customer {
    display: flex;
    flex-direction: row;
}

.card-slider-box .customer .customer-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-right: 12px;
}

.card-slider-box .customer .customer-info .customer-name {
    font-weight: 400;
    font-size: 23px;
    line-height: 40px;
    color: #224dff;
}

.card-slider-box .customer .customer-info .customer-title {
    /*font-weight: 300;*/
    font-size: 19px;
    line-height: 32px;
    color: #646464;
}

.card-slider-box .customer-comment {
    margin-top: 24px;
    /*font-weight: 300;*/
    font-size: 16px;
    line-height: 28px;
    color: #404e88;
    opacity: 1;
}

.comment-slider .splide__slide.is-prev,
.comment-slider .splide__slide.is-next {
    scale: 0.9;
    opacity: 0.32;
}

.comment-slider .splide__slide .card-slider-box .customer-comment {
    opacity: 0;
}

.comment-slider .splide__slide.is-active .card-slider-box .customer-comment {
    opacity: 1;
}

.comment-slider .splide__slide.is-prev .card-slider-box .customer-comment {
    opacity: 0;
}

.comment-slider .splide__slide.is-next .card-slider-box .customer {
    justify-content: flex-end;
}

.comment-slider .splide__slide.is-next .card-slider-box .customer-comment {
    opacity: 0;
}

.comment-slider .splide__arrow--next {
    right: 25%;
    background: transparent;
}

.comment-slider .splide__arrow--prev {
    left: 30%;
    background: transparent;
}

@media only screen and (max-width: 992px) {
    .comment-section h2 {
        font-weight: 800;
        font-size: 19px;
        line-height: 32px;
        text-align: center;
        color: #0044bb;
        margin-bottom: 16px;
    }

    .card-slider-box {
        padding: 0 60px 0 10px;
    }

    .comment-slider .splide__arrow--next {
        right: 0%;
        background: transparent;
    }

    .comment-slider .splide__arrow--prev {
        left: 0%;
        background: transparent;
    }

    .card-slider-box .customer .customer-info .customer-name {
        font-weight: 400;
        font-size: 16px;
        line-height: 28px;
        color: #224dff;
    }

    .card-slider-box .customer .customer-info .customer-title {
        /*font-weight: 300;*/
        font-size: 12px;
        line-height: 20px;
        color: #646464;
    }

    .card-slider-box .customer-comment {
        margin-top: 8px;
        /*font-weight: 300;*/
        font-size: 14px;
        line-height: 24px;
        color: #404e88;
        transition: 0.5s all;
        opacity: 1;
    }
}

/* consultation */

.consultation-section {
    background: url(..//img/consultation-bg.png);
    background-position: center;
    background-size: cover;
    position: relative;
    padding-top: 44px;
}

.consultation {
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.consultation-img img {
    width: 100%;
    height: auto;
}

.consultation-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.consultation-heading {
    font-weight: 500;
    font-size: 23px;
    line-height: 40px;
    color: #ffffff;
}

.consultation-desc {
    /*font-weight: 300;*/
    font-size: 16px;
    line-height: 28px;

    color: #ffffff;
    max-width: 410px;
    margin: 12px 0 24px;
}

.consultation-info form {
    display: flex;
    flex-direction: row;
}

.consultation-input {
    background: #ffffff;
    border: 0.6px solid #448fff;
    padding: 12px;
    /*font-weight: 300;*/
    font-size: 14px;
    line-height: 24px;
    text-align: right;
    color: rgb(136, 139, 142, 0.6);
    width: 243px;
    margin-left: 12px;
}

.consultation-submit {
    font-weight: 500;
    font-size: 19px;
    line-height: 32px;
    color: #0044bb;
    background: #ffdd28;
    padding: 8px 12px;
}

@media only screen and (max-width: 992px) {
    .consultation-section {
        padding-top: 24px;
    }

    .consultation {
        flex-direction: column;
    }

    .consultation-img {
        max-width: 264px;
        margin: auto;
        margin-top: 32px;
    }

    .consultation-heading {
        font-weight: 800;
        font-size: 19px;
        line-height: 32px;
    }

    .consultation-desc {
        font-size: 12px;
        line-height: 20px;
        margin: 8px 0;
    }

    .consultation-input {
        padding: 8px;
        width: 184px;
    }

    .consultation-submit {
        font-size: 16px;
        line-height: 28px;
        padding: 6px 8px;
    }
}

/* topproduct */

.topproduct-section h2 {
    font-weight: 800;
    font-size: 37px;
    line-height: 64px;
    text-align: center;
    color: #0044bb;
    margin-bottom: 24px;
}

.topproduct-img {
    width: 100%;
    height: auto;
}

.topproduct-subheading {
    font-weight: 500;
    text-align: end;
    font-size: 23px;
    line-height: 40px;
    color: #224dff;
}

.topproduct-desc {
    /*font-weight: 300;*/
    font-size: 16px;
    line-height: 28px;

    text-indent: 6px;
    color: #404e88;
    margin-bottom: 8px;
}

.topproduct-link {
    font-weight: 500;
    font-size: 19px;
    line-height: 32px;
    color: #0044bb;
    background: #ffdd28;
    padding: 12px;
    text-decoration: none;
}

@media only screen and (max-width: 992px) {
    .topproduct-section h2 {
        font-weight: 800;
        font-size: 19px;
        line-height: 32px;
        text-align: center;
        color: #0044bb;
        margin-bottom: 16px;
    }

    .topproduct-img {
        margin: 8px 0;
    }

    .topproduct-subheading {
        font-weight: 500;
        text-align: start;
        font-size: 16px;
        line-height: 28px;
        color: #404e88;
    }

    .topproduct-desc {
        font-size: 12px;
        line-height: 20px;
        color: #404e88;
        margin-bottom: 0px;
    }

    .topproduct-link {
        font-size: 16px;
        line-height: 28px;
        padding: 6px 8px;
    }
}

/* mbanner */
.mbanner-section {
    background: linear-gradient(180deg, rgba(0, 68, 187, 0) 0%, #0044bb 100%), url(../img/mbanner.png);
    height: 384px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.mbanner-section p {
    position: absolute;
    bottom: 48px;
    right: 72px;
    font-weight: 500;
    font-size: 37px;
    line-height: 64px;
    color: #ffffff;
    margin: 0;
}

@media only screen and (max-width: 992px) {
    .mbanner-section {
        height: 256px;
    }

    .mbanner-section p {
        bottom: 24px;
        right: 16px;
        font-size: 19px;
        line-height: 32px;
    }
}

/* blog */
.blog-section h2 {
    font-weight: 800;
    font-size: 37px;
    line-height: 64px;
    text-align: center;
    color: #0044bb;
    margin-bottom: 24px;
}

.post-card {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.post-card .post-img {
    padding: 5px;
    margin-bottom: .5em;
}

.post-card .post-img img {
    width: 100%;
    height: auto;
}

.post-card .post-info {
    padding: 0 5px;
}

.post-card .post-info h2 {
    font-size: 19px;
    line-height: 32px;
    color: #404e88;
    margin-top: 0;
    margin-bottom: 6px;
}

.post-card .post-info h2 a {
    text-decoration: none;
}

.post-card .post-excerpt {
    font-size: .9em;
    margin-bottom: .7em;
}

.post-card .post-meta {
    display: flex;
    justify-content: space-between;
    font-weight: 500;
    font-size: 14px;
    line-height: 24px;
    color: #404e88;
    padding: 0 5px;
}

.blog-link {
    font-weight: 500;
    font-size: 19px;
    line-height: 32px;
    color: #0044bb;
    background: #ffdd28;
    padding: 8px;
    margin-top: 24px;
    text-decoration: none;
}

@media only screen and (max-width: 992px) {
    .blog-section h2 {
        font-size: 19px;
        line-height: 32px;
        margin-bottom: 16px;
    }

    .post-card {
        margin-bottom: 24px;
    }

    .post-card .post-info h3 {
        font-size: 16px;
        line-height: 28px;
        margin-top: 8px;
        margin-bottom: 4px;
    }

    .post-card .post-excerpt {
        line-height: 18px;
    }

    .blog-link {
        font-size: 16px;
        line-height: 28px;
        padding: 6px 8px;
        margin-top: 0px;
    }
}

/* about-page */
.about-page h1 {
    font-weight: 800;
    font-size: 37px;
    line-height: 64px;
    text-align: center;
    color: #0044bb;
    margin-bottom: 48px;
}

.about-page img {
    width: 100%;
    height: auto;
}

.about-page .row {
    margin-bottom: 72px;
}

.about-page-desc {
    /*font-weight: 300;*/
    font-size: 16px;
    line-height: 28px;

    text-indent: 6px;
    color: #404e88;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.about-page-desc h3 {
    font-weight: 500;
    font-size: 23px;
    line-height: 40px;
    color: #224dff;
    margin-bottom: 24px;
}

.about-page-desc hr {
    margin: 6px 0;
    opacity: 0;
}

.value-section {
    background: url(../img/value-bg.png);
    background-position: center;
    background-size: cover;
    padding: 48px 0 60px;
}

.value-section h2 {
    font-weight: 800;
    font-size: 37px;
    line-height: 64px;
    color: #ffffff;
    text-align: center;
    margin-bottom: 24px;
}

.value-desc {
    max-width: 880px;
    /*font-weight: 300;*/
    font-size: 19px;
    line-height: 36px;

    text-indent: 6px;
    color: #ffffff;
    margin: auto;
}

.value-desc hr {
    margin: 6px 0;
    opacity: 0;
}

.future-section h2 {
    font-weight: 800;
    font-size: 37px;
    line-height: 64px;
    color: #0044bb;
    margin-bottom: 48px;
    text-align: center;
}

.future-section img {
    width: 100%;
    height: auto;
}

.produce-section h2 {
    font-weight: 800;
    font-size: 37px;
    line-height: 64px;
    text-align: center;
    color: #0044bb;
    margin-bottom: 24px;
}

.produce-card {
    direction: rtl;
    text-align: right;
    padding: 13px;
}

.produce-img img {
    width: 100%;
    height: auto;
}

.produce-card .produce-title {
    font-weight: 500;
    font-size: 19px;
    line-height: 32px;

    color: #404e88;
    margin: 12px 0 8px;
}

.produce-card .produce-title a {
    color: #404e88;
    text-decoration: none;
}

.produce-card .produce-excerpt {
    margin-bottom: 1em;
}

.produce-card .produce-link {
    font-weight: 500;
    font-size: 19px;
    color: #0044bb;
    background: #ffdd28;
    border: 1px solid #ffdd28;
    padding: 8px 12px;
    text-decoration: none;
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

@media only screen and (max-width: 992px) {
    .about-page h1 {
        font-size: 19px;
        line-height: 32px;
        margin-bottom: 16px;
    }

    .about-page .row {
        margin-bottom: 0px;
    }

    .about-page-desc {
        font-size: 12px;
        line-height: 20px;
    }

    .about-page-desc h3 {
        font-weight: 500;
        font-size: 16px;
        line-height: 28px;
        color: #404e88;
        margin-bottom: 8px;
    }

    .about-page img {
        margin: 12px 0;
    }

    .about-reverse {
        flex-direction: column-reverse;
    }

    .value-section {
        padding: 48px 0;
    }

    .value-section h2 {
        font-size: 19px;
        line-height: 32px;
        margin-bottom: 16px;
    }

    .value-desc {
        font-size: 12px;
        line-height: 20px;
    }

    .future-section h2 {
        font-size: 19px;
        line-height: 32px;
        margin-bottom: 16px;
    }

    .future-section img {
        margin-top: 12px;
    }

    .produce-section h2 {
        font-size: 19px;
        line-height: 32px;
        margin-bottom: 16px;
    }

    .produce-card .produce-link {
        font-size: 16px;
        line-height: 28px;
        padding: 6px 8px;
    }
}

@media only screen and (max-width: 576px) {
    .produce-card .produce-link {
        justify-content: center;
    }
}

/* contact-page */
.contact-page h1 {
    font-weight: 800;
    font-size: 37px;
    line-height: 64px;
    text-align: center;
    color: #0044bb;
    margin-bottom: 48px;
}

.contact-desc {
    /*font-weight: 300;*/
    font-size: 16px;
    line-height: 28px;

    text-indent: 6px;
    color: #404e88;
    margin-bottom: 24px;
}

.contact-desc h3 {
    font-weight: 500;
    font-size: 23px;
    line-height: 40px;
    color: #224dff;
}

.contact {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.contact .contact-info {
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;
    text-align: right;
    letter-spacing: 0.04em;
    color: #0044bb;
    margin-bottom: 12px;
}

.contact .contact-info a {
    color: #0044bb;
    text-decoration: none;
}

.contact .contact-info img {
    margin-left: 4px;
}

.contact .map-iframe {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.contact-us {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.custom-select select {
    -webkit-appearance: none;
    width: 100%;
    /*font-weight: 300;*/
    font-size: 16px;
    line-height: 28px;
    color: #0044bb;
    padding: 12px;
    border: 0.6px solid #448fff;
    outline: none;
}

.custom-select select:focus {
    outline: none;
}

.custom-select {
    position: relative;
    width: 100%;
}

.contact-us .custom-select::after {
    content: "⛛";
    position: absolute;
    top: 30%;
    left: 4%;
    color: #0044bb;
}

.contact-us input {
    width: 100%;
    /*font-weight: 300;*/
    font-size: 16px;
    line-height: 28px;
    color: #0044bb;
    padding: 12px;
    border: 0.6px solid #448fff;
    outline: none;
    text-align: right;
}

.contact-us textarea {
    width: 100%;
    /*font-weight: 300;*/
    font-size: 16px;
    color: #0044bb;
    padding: 12px;
    border: 0.6px solid #448fff;
    outline: none;
}

.contact-us input[type="submit"] {
    width: 100%;
    font-weight: 500;
    font-size: 19px;
    line-height: 32px;
    color: #0044bb;
    padding: 8px 12px;
    background: #ffdd28;
    border: 1px solid #ffdd28;
    outline: none;
    text-align: center;
}

@media only screen and (max-width: 992px) {
    .contact-page h1 {
        font-size: 19px;
        line-height: 32px;
        margin-bottom: 16px;
    }

    .contact-desc {
        font-size: 12px;
        line-height: 20px;
        margin-bottom: 16px;
    }

    .contact-desc h3 {
        font-size: 16px;
        line-height: 28px;
        color: #404e88;
    }

    .contact .contact-info {
        font-size: 14px;
        line-height: 24px;
        margin-bottom: 4px;
        display: flex;
        align-items: flex-start;
    }

    .contact .contact-info img {
        width: 24px;
        height: 24px;
    }

    .contact-us {
        margin-top: 12px;
    }

    .custom-select select {
        margin-top: 12px;
    }

    .contact-us input {
        margin-top: 12px;
    }

    .contact-us textarea {
        margin-top: 12px;
    }
}

/* blog-page */
.archive-section h1 {
    font-weight: 800;
    font-size: 37px;
    line-height: 64px;
    text-align: center;
    color: #0044bb;
    margin-bottom: 48px;
}

.archive-section .post-info .post-title {
    font-size: 1.5em;
}

.pagination .page-numbers {
    width: 40px;
    height: 40px;
    margin: 0 4px;
    display: flex;
    font-weight: 700;
    font-size: 18px;
    line-height: 32px;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease-in-out;
    background: #fff;
    color: #448fff;
    border: 0.4px solid #448fff;
    cursor: pointer;
    text-decoration: none;
}

.pagination .page-numbers:hover,
.pagination .page-numbers.current {
    color: #0044bb;
    background: #ffdd28;
    border: 0.4px solid #ffdd28;
}

.pagination .page-numbers.dots {
    border: 0;
}

@media only screen and (max-width: 992px) {
    .archive-section h1 {
        font-size: 19px;
        line-height: 32px;
        margin-bottom: 16px;
    }
}

/* single */

.article-body .entry-title {
    font-weight: 800;
    font-size: 28px;
    line-height: 48px;
    color: #404e88;
    padding-bottom: 12px;
    border-bottom: 1px solid #448fff;
    margin: 36px 0 12px;
}

.article-body .the_excerpt {
    /*font-weight: 300;*/
    font-size: 15px;
    line-height: 24px;

    margin-bottom: 12px;
    color: #404e88;
}

.article-body .entry-meta {
    display: flex;
    justify-content: space-between;
}

.article-body .entry-meta .the_author,
.article-body .entry-meta .time {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.article-body .entry-meta img {
    margin-left: 8px;
}

.article-body .entry-content {
    margin-top: 36px;
    font-size: 16px;
    color: #404e88;
}

.article-body .entry-content h2,
.article-body .entry-content h3,
.article-body .entry-content h4,
.article-body .entry-content h5,
.article-body .entry-content h6 {
    margin-top: 1em;
}

.article-body .entry-content h2,
.article-body .entry-content h3,
.article-body .entry-content h4 {
    font-weight: 500;
    font-size: 23px;
    line-height: 40px;
    color: #0044bb;
    margin-bottom: 8px;
}

.article-body .entry-content img {
    width: 100%;
    height: auto;
    margin: 24px 0;
}

.blog-comments {
    margin-top: 36px;
    padding-top: 12px;
    border-top: 1px solid #cacaca;
}

.blog-comments .comments-count {
    font-size: 1.2em;
    display: block;
    margin-bottom: 2em;
}

.blog-comments .comment-reply-title {
    font-weight: 500;
    font-size: 19px;
    line-height: 32px;
    color: #404e88;
}

.blog-comments .comment-notes {
    display: none;
}

.blog-comments .required-field-message {
    display: none;
}

.blog-comments .logged-in-as {
    margin: 12px 0;
}

.blog-comments form textarea {
    margin: 12px 0;
    border: 0.6px solid #448fff;
    outline: none;
    /*font-weight: 300;*/
    font-size: 14px;
    line-height: 24px;
    color: rgb(0, 68, 187, 0.32);
}

.blog-comments form input {
    margin: 0 0 12px 0;
    border: 0.6px solid #448fff;
    outline: none;
    color: rgb(0, 68, 187, 0.32);
    /*font-weight: 300;*/
    font-size: 14px;
    line-height: 24px;
}

.blog-comments .form-submit button {
    background: #ffdd28;
    border: 1px solid #ffdd28;
    padding: 8px 12px;
    font-weight: 500;
    font-size: 19px;
    line-height: 32px;
    color: #0044bb;
}

.commentlist .comment {
    padding: 10px;
    margin-bottom: 1.5em;
    border-radius: 5px;
}

.commentlist .comment.even {
    background-color: #f1fbff;
}

.commentlist .comment.odd {
    background-color: #fff9f1;
}

.commentlist .comment-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: .7em;
}

.commentlist .avatar {
    border-radius: 5px;
    margin-left: 10px;
}

.article-page {
    margin-top: 0;
}

@media only screen and (max-width: 992px) {
    .article-body .entry-title {
        font-size: 19px;
        line-height: 32px;
        padding-bottom: 8px;
        margin: 16px 0 8px;
    }

    .article-body .the_excerpt {

        line-height: 22px;
        margin-bottom: 8px;
    }

    .article-body .entry-meta img {
        width: 20px;
        height: 20px;
    }

    .article-body .entry-content {
        margin-top: 16px;
        /*font-weight: 300;*/
        font-size: 14px;
        line-height: 24px;
    }

    .article-body .entry-content h2,
    .article-body .entry-content h3,
    .article-body .entry-content h4 {
        font-size: 16px;
        line-height: 28px;
    }

    .article-body .entry-content img {
        width: 100%;
        height: auto;
        margin: 16px 0;
    }

    .blog-comments {
        margin-top: 16px;
        padding-top: 8px;
        border-top: 1px solid #404e88;
    }

    .blog-comments .comment-reply-title {
        font-size: 16px;
        line-height: 28px;
    }

    .blog-comments .logged-in-as {
        margin: 8px 0;
    }

    .blog-comments form textarea {
        margin: 8px 0;
    }

    .blog-comments form input {
        margin: 0 0 8px 0;
    }

    .blog-comments .form-submit button {
        padding: 6px 8px;
        font-weight: 500;
        font-size: 16px;
        line-height: 28px;
    }
}

/* footer */

footer {
    margin-top: 72px;
    background-color: #002288;
    padding: 44px 0;
    margin-bottom: 70px;
}

.footer-heading {
    font-weight: 500;
    font-size: 19px;
    line-height: 32px;
    color: #ffffff;
    margin-bottom: 12px;
}

.footer-logo {
    max-width: 200px;
}

.footer-about-desc {
    color: #ffffff;
    margin: 12px 0;
}

.footer-social a {
    margin-left: 2px;
}

.footer-info {
    margin: 12px 0;
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 0.04em;
    color: #ffffff;

    display: flex;
    align-items: flex-start;
}

.footer-info img {
    margin-left: 4px;
}

.footer-info a {
    color: #ffffff;
    text-decoration: none;
}

.menu-footer-menu-container .menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.menu-footer-menu-container .menu .menu-item {
    border: none;
    padding: 5px 0;
    height: auto;
}

.menu-footer-menu-container .menu .menu-item a {
    color: #ffffff;
}

@media only screen and (max-width: 992px) {
    footer {
        margin-top: 48px;
        padding: 32px 0;
    }

    footer .row > div:not(:last-child) {
        margin-bottom: 1rem;
    }

    .footer-heading {
        margin-bottom: 8px;
    }

    .footer-about-desc {
        line-height: 18px;
        margin: 8px 0;
    }
}

/*shortcode*/

.link {
    padding: 12px;
    border: 1px solid #448fff;
    width: 100%;
    font-weight: 400;
    font-size: 18px;
    line-height: 32px;
    color: #448fff;
    margin: 2em .5em;
}

.link a,
.link a:hover {
    color: #448fff;
}

.highlight {
    background: #b4d4ff;
    padding: 24px;
    font-weight: 400;
    font-size: 18px;
    line-height: 32px;
    color: #0044bb;
    margin: 12px 0;
}

.ctac {
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    background: #0044bb;
    padding: 24px;
    margin: 12px 0;
}

.ctac .content {
    font-weight: 500;
    font-size: 19px;
    line-height: 48px;
    width: 75%;
    color: #ffffff;
}

.ctac .phone-num {
    font-weight: 400;
    font-size: 25px;
    line-height: 48px;
    color: #ffffff;
    direction: initial;
}

.ctac .phone-link {
    background: #ffdd28;
    padding: 8px 12px;
    text-decoration: none;
    font-weight: 500;
    font-size: 19px;
    line-height: 32px;
    color: #0044bb;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.ctac .phone-link img {
    margin: 0 8px;
    width: 32px;
    height: 32px;
}

@media (max-width: 1400px) {
    .ctac {
        display: flex;
        flex-direction: column;
    }
}

@media (max-width: 992px) {
    .link {
        font-size: 14px;
        line-height: 24px;
    }

    .highlight {
        font-size: 13px;
        line-height: 22px;
    }

    .ctac .content {
        font-size: 16px;
        line-height: 28px;
        text-align: center;
    }

    .ctac .phone-num {
        font-size: 23px;
        line-height: 40px;
    }

    .ctac .phone-link {
        padding: 6px 8px;
        font-size: 16px;
        line-height: 28px;
    }

    .ctac .phone-link img {
        margin: 0 4px;
        width: 28px;
        height: 28px;
    }
}

/* sidebar */

#blog-sidebar .post-card {
    border: 1px solid #448fff;
    padding: 12px;
    margin: 12px 0;
    background-color: #f1fbff;
}

#blog-sidebar .aside_h4 {
    font-weight: 700;
    font-size: 18px;
    line-height: 32px;
    color: #404e88;
}

#blog-sidebar .post-card .post-info h3 {
    font-size: 15px;
    line-height: 24px;
    font-weight: bold;
}

#blog-sidebar .sidebar-ctac {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #0044bb;
    padding: 25px;
    margin-bottom: 24px;
}

#blog-sidebar .sidebar-ctac .ctac-desc {
    color: #ffffff;
    margin-bottom: 12px;
}

#blog-sidebar .sidebar-ctac .ctac-phone {
    font-weight: 400;
    font-size: 28px;
    line-height: 48px;
    direction: initial;
    color: #ffffff;
}

#blog-sidebar .sidebar-ctac .ctac-link {
    background: #ffdd28;
    padding: 8px 12px;
    text-decoration: none;
    font-weight: 500;
    font-size: 19px;
    line-height: 32px;
    color: #0044bb;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
}

/* single-product */
.single-product h1 {
    font-weight: 800;
    font-size: 37px;
    line-height: 50px;
    color: #0044bb;
    margin-bottom: 25px;
}

.single-product .product-img img {
    width: 100%;
    height: auto;
}

.single-product .product-info {
    display: flex;
    flex-direction: column;
}

.single-product .product-info h2 {
    font-weight: 700;
    font-size: 28px;
    line-height: 48px;
    color: #224dff;
    padding-bottom: 12px;
    border-bottom: 1px solid #000000;
    margin-bottom: 12px;
}

.single-product .product-info h3 {
    font-weight: 400;
    font-size: 23px;
    line-height: 40px;
    color: #224dff;
    margin-bottom: 12px;
}

.single-product .product-info .product-excerpt {
    /*font-weight: 300;*/
    font-size: 16px;
    line-height: 28px;

    color: #404e88;
}

.single-product .product-info .product-feature {
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;
    color: #224dff;
}

.single-product .product-info .product-feature p {
    margin: 12px 0;
}

.product-ctac {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #0044bb;
    padding: 25px;
    margin-bottom: 24px;
}

.product-ctac .ctac-desc {
    color: #ffffff;
    margin-bottom: 12px;
}

.product-ctac .ctac-phone {
    font-size: 28px;
    direction: initial;
    color: #ffffff;
    margin-bottom: .6em;
}

.product-ctac .ctac-link {
    background: #ffdd28;
    padding: 8px 12px;
    text-decoration: none;
    font-weight: 500;
    font-size: 19px;
    line-height: 32px;
    color: #0044bb;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.single-product-video h1 {
    font-weight: 800;
    font-size: 37px;
    line-height: 64px;
    text-align: center;
    color: #0044bb;
    margin-bottom: 32px;
}

.single-product-content {
    /*font-weight: 300;*/
    /*font-size: 16px;*/
    /*line-height: 28px;*/

    /*color: #404e88;*/
}

.single-product-content h2,
.single-product-content h3,
.single-product-content h4,
.single-product-content h5,
.single-product-content h6 {
    margin-top: 1em;
}

.single-product-content h2 {
    font-weight: 800;
    font-size: 37px;
    line-height: 64px;
    text-align: center;
    color: #0044bb;
    margin-bottom: 32px;
}

.single-product-content img {
    width: 100%;
    height: auto;
    margin: 1rem 0;
}

.single-product-content.last-child img {
    margin: 16px 0;
}

.single-product-content h3 {
    font-weight: 500;
    font-size: 23px;
    line-height: 40px;
    color: #224dff;
    margin-bottom: 8px;
}

@media (max-width: 992px) {
    .single-product .product-info h2 {
        font-size: 19px;
        line-height: 32px;
        color: #404e88;
        padding-bottom: 8px;
        margin-bottom: 8px;
    }

    .single-product .product-info .product-excerpt {
        line-height: 18px;
        margin-bottom: 16px;
    }

    .single-product .product-info .product-feature {
        font-size: 12px;
        line-height: 20px;
        margin-bottom: 12px;
    }

    .single-product .product-info .product-feature p {
        margin: 4px 0;
    }

    .single-product .product-info .product-feature img {
        width: 20px;
        height: 20px;
    }

    .product-ctac {
        padding: 16px;
        margin-bottom: 24px;
    }

    .product-ctac .ctac-desc {
        margin-bottom: 8px;
    }

    .product-ctac .ctac-phone {
        font-size: 23px;
        line-height: 40px;
    }

    .product-ctac .ctac-link {
        padding: 6px 8px;
        font-size: 16px;
        line-height: 28px;
    }

    .single-product-video h1 {
        font-size: 19px;
        line-height: 32px;
        margin-bottom: 16px;
    }

    .single-product-content {
        font-size: 12px;
        line-height: 20px;
    }

    .single-product-content img {
        margin: 8px 0;
    }

    .single-product-content h3 {
        font-size: 16px;
        line-height: 28px;
        color: #404e88;
    }
}

.subcat-list {
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.subcat-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 8px;
    margin: 0 24px;
    border: 0.4px solid #448fff;
}

.subcat-card a {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: #224dff;
}

.subcat-card .subcat-info h3 {
    font-size: 13px;
    line-height: 22px;
    font-weight: 500;
    margin-top: 8px;
    margin-bottom: 0;
}

.product-table {
    overflow-y: scroll;
    max-height: 450px;
    direction: ltr;
}

.product-table::-webkit-scrollbar {
    width: 4px;
    height: 4px;
}

.product-table::-webkit-scrollbar-track {
    background: transparent;
}

.product-table::-webkit-scrollbar-thumb {
    background: #0044bb;
}

.product-table table {
    counter-reset: rowNumber;
    direction: rtl;
    font-weight: 500;
    font-size: 16px;
    line-height: 28px;
    color: #0044bb;
    min-width: 650px;
}

.product-table table thead {
    padding: 12px;
    background: #ffdd28;
}

.product-table table tbody tr {
    counter-increment: rowNumber;
}

.product-table table tbody tr td {
    direction: initial;
}

.product-table table tbody tr:nth-child(odd) {
    background-color: #f4f6ff;
}

.product-table table tbody tr:nth-child(even) {
    background-color: #fefeff;
}

.table > :not(:last-child) > :last-child > * {
    border-bottom: 2px solid #0044bb;
}

.product-table table thead,
.product-table table tbody {
    text-align: center;
}

.product-table table tbody tr td:first-child::before {
    content: counter(rowNumber);
    min-width: 1em;
    margin-right: 0.5em;
}

.sell-link {
    padding: 0px 8px;
    background: #ffdd28;
    font-weight: 500;
    font-size: 16px;
    line-height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0044bb;
    text-decoration: none;
}

.sell-link img {
    width: 28px;
    height: 28px;
    margin: 0 4px 0 0;
}

@media (max-width: 992px) {
    .single-product h1 {
        font-size: 19px;
        line-height: 32px;
        margin-bottom: 16px;
        text-align: center;
    }

    .single-product .product-info h3 {
        font-weight: 500;
        font-size: 16px;
        line-height: 28px;
        color: #404e88;
        margin-bottom: 8px;
        margin-top: 16px;
    }

    .single-product-content h2 {
        font-size: 19px;
        line-height: 32px;
        margin-bottom: 16px;
        margin-top: 16px;
    }

    .product-table table {
        font-size: 12px;
        line-height: 20px;
    }

    .sell-link {
        font-size: 12px;
        line-height: 20px;
    }

    .sell-link img {
        width: 20px;
        height: 20px;
    }
}

/* 404 */
.not-found-box {
    width: 100%;
    height: 100%;
}

.not-found {
    position: relative;
}

.not-found img {
    width: 100%;
    height: auto;
}

.go-home {
    position: absolute;
    left: 50%;
    top: 90%;
    transform: translate(-50%, -50%);
    font-size: 18px;
    font-weight: bold;
    background-color: #0044bb;
    border-radius: 10px;
    color: #fff;
    padding: 15px 25px;
    text-decoration: none;
}

.go-home:hover {
    color: #fff;
}


.fix-footer {
    background: #0044bb;
    transition: all 0.3s;
    box-shadow: 0px -3px 12px rgba(0, 0, 0, 0.12);
    display: flex;
    position: fixed;
    bottom: 0;
    align-items: center;
    z-index: 100;
    justify-content: space-around;
    width: 100%;
    padding: 10px;
}
.cta-form-fix{
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.3rem;
}
.cta-form-fix input {
    padding: 8px;
    border: 1px solid #eeee;
    border-radius: 2px;
    text-align: center;
}
.cta-form-fix button {
    font-weight: 500;
    font-size: 16px;
    line-height: 32px;
    color: #0044bb;
    text-decoration: none;
    background-color: #ffdd28;
    padding: 7px 15px;
    border: none;
    border-radius: 2px;
    width: 100%;
}
.spinner {
   width: 32px;
   height: 32px;
   border-radius: 50%;
   border: 6.4px solid;
   border-color: #dbdcef;
   border-right-color: #0044bb;
   animation: spinner-d3wgkg 0.8s infinite linear;
}

@keyframes spinner-d3wgkg {
   to {
      transform: rotate(1turn);
   }
}
.box-alert {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}
.alert-text {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: -1px;
    color: #fff;
    display: block !important;
}
.alert-text-cta {
    font-size: 17px;
    font-weight: 600;
    letter-spacing: -1px;
    color: #fff;
    width: 50%;
    line-height: 25px;
}
.sub-alert-text {
    font-size: 14px;
    color: #fff;
}

.sub-cta-text {
    font-size: 17px;
    color: #002288;
    font-weight: 500;
    position: relative;
    background: #ffdd28;
    padding: 10px;
}
.sub-cta-text span {
    position:relative;
    top:0px;
    margin-left: 6px;
}
@media (max-width: 991px){
   .d-smo-none{
        display:none !important;
    } 
    .box-alert {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center !important;
}
}
.f-13 {
    font-size: 13px;
}
.namad {
    width: 100%;
}
.namad img {
    width: 100%;
}

article.article-body a {
    color: #d2b100;
}
#button {
  display: inline-block;
  background-color: #ffdd28;
  width: 50px;
  height: 50px;
  text-align: center;
  border-radius: 4px;
  position: fixed;
  bottom: 30px;
  right: 30px;
  transition: background-color .3s, 
    opacity .5s, visibility .5s;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
}
#button::after {
  content: url(../img/svg0-svg.png);
  font-weight: normal;
  font-style: normal;
  font-size: 2em;
  line-height: 50px;
  color: #fff;
}
#button:hover {
  cursor: pointer;
  background-color: #333;
}
#button:active {
  background-color: #555;
}
#button.show {
  opacity: 1;
  visibility: visible;
}
@media (min-width: 500px) {
  .content {
    width: 43%;
  }
  #button {
    margin: 30px;
  }
}




.ctac .contents{
    width:65%; 
    font-weight: 500;
    font-size: 19px;
    line-height: 48px;
    color: #ffffff;
}
.ctaform input {
    padding: 8px;
    border: 1px solid #eeee;
    border-radius: 2px;
    text-align: center;
}
.ctaform button {
    font-weight: 500;
    font-size: 16px;
    line-height: 32px;
    color: #0044bb;
    text-decoration: none;
    background-color: #ffdd28;
    padding: 7px 15px;
    border: none;
    border-radius: 2px;
}
.box-alerts {
    display: flex;
    width: 30%;
    align-items: center;
    text-align: center;
}
section.single-product-content p a {
    color: #d2b100;
}

.wpDataTablesWrapper {
    margin-bottom: 20px;
    overflow: scroll;
}
.banner-slider img {
    position: absolute;
    right: 0;
    left: 0;
    width: 100%;
}

