.header-section {
    border-top: 2px solid var(--lightGray);
    /*background-color: var(--lightGray);*/
}

.logo {
    font-size: 34px;
    color: var(--red);
    font-weight: bold
}

.login-page .logo {
    font-size: 50px;
}

.logo:hover, .logo:focus-visible, .logo:active {
    color: var(--red) !important;
    outline: none;
}

.logo span {
    color: var(--darkBlue);
}

header {
    box-shadow: 0px 2px 10px 0px #00000040;
}

header .nav-link {
    font-size: 20px;
    font-weight: 600;
    line-height: 100%;
    color: var(--darkBlue);
}

header .nav-link:focus, header .nav-link:hover {
    color: var(--textColor) !important;
}

header .nav-item.active {
    border-bottom: 2px solid var(--darkBlue);
}


.localization {
    list-style: none;
}

.localization a.active-lang {
    border-bottom: 2px solid #0242f5;
}

.search-container {
    position: relative;
}

.search-container i {
    position: absolute;
    left: 8px;
    top: 50%;
    transform: translateY(-50%);
}

.home-page-slider-section-box img, .home-page-partners-section-box img {
    object-fit: contain;
}

.home-page-partners-section-box h2, .home-page-service-section-box h2,.home-page-product-section-box h2,.home-page-categories-section-box h2 {
    font-size: 32px;
    font-weight: 700;
}

.home-page-categories-section-box .view-more{
    color: var(--darkGray);
    text-decoration: none;
    font-size: 20px;
}
.home-page-categories-section-box .view-more:hover{
    color: var(--darkBlue);
}
/*.home-page-partners-section-box img {*/
/*    height: 65px;*/
/*}*/

.contact-us-form {
    border-radius: 20px;
    background-color: #dee6fc;
}

.contact-us-form button {
    border-radius: 12px;
    background-color: #81a0fd;
}

.contact-us-page iframe {
    width: 100%;
}

.file-box .file-img {
    width: 108px;
    height: 76px;
    object-fit: cover;
}


.category-card:after {
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    aspect-ratio: 199 / 123;
    will-change: opacity;
    /*background-color: #000000b3;*/
    background-color: #525f8896;
}

.category-card {
    aspect-ratio: 199 / 123;
    /*box-shadow: 0 5px 10px -5px rgba(0, 0, 0, 0.3);*/
    position: relative;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    -webkit-transition: all 800ms cubic-bezier(0, 0, 0.18, 1);
    -moz-transition: all 800ms cubic-bezier(0, 0, 0.18, 1);
    -o-transition: all 800ms cubic-bezier(0, 0, 0.18, 1);
    transition: all 800ms cubic-bezier(0, 0, 0.18, 1);
    box-shadow: 0px 2px 10px 0px #00000040;
}

.category-card:hover {
    /*box-shadow: 0 5px 10px -5px rgba(0, 0, 0, 0.3);*/
    transform: scale(1.05);
}

.category-card-title {

    font-size: 20px;
    font-weight: 600;
    line-height: 24px;
    /*color: var(--white);*/
    word-break: break-word;
    z-index: 1;
    background-color: rgba(255, 255, 255, 0.5);
    color: var(--darkColor);
    min-width: 60%;
}


/*:root {*/
/*    --z-distance: 8.519vw;*/
/*    --from-left: 1;*/
/*    --mobile-bkp: 650px;*/
/*}*/

.slider {
    width: 100% !important;
    height: 500px;
    display: flex;
    perspective: 1000px;
    transform-style: preserve-3d;
}

.slider::before, .slider::after {
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 500px;
    background-position: center;
    background-size: cover;
    will-change: opacity;
    z-index: -1;
    /*box-shadow: 0 0 0 50vmax rgba(0, 0, 0, 0.7) inset;*/
    box-shadow: 0 0 0 50vmax #525f8896 inset;
}

.slider::before {
    background-image: var(--img-prev);
}

.slider::after {
    transition: opacity 0.7s;
    opacity: 0;
    background-image: var(--img-next);
}

.slider--bg-next::after {
    opacity: 1;
}

#slider-content-box {
    width: 90%;
}

.slider__content {
    margin: auto;
    width: 100%;
    height: 100%;
    max-height: 400px;
    will-change: transform;
    transform-style: preserve-3d;
    pointer-events: none;
    transform: translateZ(var(--z-distance));
}

.slider__images {
    overflow: hidden;
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 0;
    box-shadow: 0 0 5em #000;
}

.slider__images-item {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    will-change: transform;
    transition-timing-function: ease-in;
    visibility: hidden;
    transition: transform 0.8s ease;
}

.slider__images-item img {
    display: block;
    position: relative;
    left: -1em;
    top: -1em;
    width: calc(100% + 1em * 2);
    height: calc(100% + 1em * 2);
    object-fit: cover;
    will-change: transform;
}

.slider__images-item--active {
    z-index: 20;
    visibility: visible;
}

.slider__images-item--subactive {
    z-index: 15;
    visibility: visible;
}

.slider__images-item--next {
    transform: translateX(100%);
}

.slider__images-item--prev {
    transform: translateX(-100%);
}

.slider__images-item--transit {
    transition: transform 0.7s, opacity 0.7s;
}

.slider__text {
    position: relative;
    height: 100%;
}

.slider__text-item {
    position: absolute;
    width: 100%;
    height: 100%;
    padding: 8px;
    perspective: 1000px;
    transform-style: preserve-3d;
}

.slider__text-item > * {
    overflow: hidden;
    position: absolute;
}

.slider__text-item h3, .slider__text-item p {
    transition: transform 0.35s ease-out;
    line-height: 1.5;
    overflow: hidden;
    color: var(--darkColor);
}

.slider__text-item h3 {
    background-color: rgba(255, 255, 255, 0.5);
}

.slider__text-item p {
    color: var(--white);
    text-align: center;
    background-color: rgba(0, 0, 0, 0.5);
}

.slider__text-item h3::before, .slider__text-item p::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 105%;
    height: 100%;
    transform: translateX(0);
    transition: transform 0.35s ease-out 0.28s;
}

.slider__text-item h3::before {
    background-color: #000;
}

.slider__text-item p::before {
    background-color: #fff;
}

.slider__text-item h3 {
    margin: 0;
    font-size: 32px;
    position: relative;
    font-weight: 700;
    transform: translateX(-100%);
}

.slider__text-item p {
    margin: 0;
    transform: translateX(100%);
}

.slider__text-item-head {
    top: -8px;
    transform: translateZ(3em);
}

.slider__text-item-info {
    bottom: 0;
    right: 0;
    max-width: 75%;
    min-width: min-content;
    transform: translateZ(2em);
}

.slider__text-item--active h3, .slider__text-item--active p {
    transform: translateX(0);
}

.slider__text-item--active h3::before {
    transform: translateX(102%);
}

.slider__text-item--active p::before {
    transform: translateX(-102%);
}

.slider__text-item--backwards h3::before, .slider__text-item--backwards p::before {
    transition: transform 0.35s ease-in;
}

.slider__text-item--backwards h3, .slider__text-item--backwards p {
    transition: transform 0.35s ease-in 0.35s;
}

.slider__nav {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    text-align: center;
}

.slider__nav-arrows {
    display: flex;
    justify-content: space-between;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.slider__nav-arrow {
    height: 500px;
    width: 50vw;
    text-indent: -9999px;
    white-space: nowrap;
}

.slider__nav-arrow--left {
    --arrow: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 4 4'%3E %3Cpolyline points='3 1 1 2 3 3' stroke='white' stroke-width='.3' stroke-opacity='.5' fill='none'%3E%3C/polyline%3E %3C/svg%3E");
    cursor: var(--arrow) 40 40, auto;
}

.slider__nav-arrow--right {
    --arrow: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 4 4'%3E %3Cpolyline points='1 1 3 2 1 3' stroke='white' stroke-width='.3' stroke-opacity='.5' fill='none'%3E%3C/polyline%3E %3C/svg%3E");
    cursor: var(--arrow) 40 40, auto;
}

.slider__nav-dots {
    display: inline-flex;
    position: relative;
    pointer-events: none;
    bottom: 5px;
}

.slider__nav-dot.slider__nav-dot--active {
    /*background: #0a53be;*/
    background-color: rgba(255, 255, 255, 0.9);
    transition: transform 0.7s ease-out;
}

.slider__nav-dot {
    margin: 0 1em;
    width: 1em;
    height: 0.5em;
    border: 2px solid rgba(255, 255, 255, 0.5);
    cursor: crosshair;
    pointer-events: all;
    display: inline-block;
    position: relative;
}

.slider__nav-dot:hover {
    border-color: rgba(255, 255, 255, 0.7);
}

.slider__nav-dot:active {

    border-color: rgba(255, 255, 255, 0.5);
}


/*@media only screen and (max-width: 650px) {*/
/*    .slider {*/
/*        height: 500px;*/
/*    }*/

/*    .slider::before,*/
/*    .slider::after {*/
/*        display: none;*/
/*    }*/

/*    .slider__images {*/
/*        box-shadow: none;*/
/*    }*/

/*    #slider-content-box {*/
/*        width: 100%;*/
/*    }*/

/*    .slider__content {*/
/*        height: 500px;*/
/*    }*/

/*    .slider__text-item-info {*/
/*        bottom: 50%;*/
/*        left: 50%;*/
/*        transform: translate(-50%, 50%);*/
/*    }*/

/*    .slider__text-item-info p {*/
/*        padding: 1em .8em;*/
/*    }*/

/*    .slider__text-item-head {*/
/*        top: 5vh;*/
/*        left: 10vw;*/
/*        transform: translateZ(0);*/
/*    }*/
/*    */
/*    .slider__nav-dots {*/
/*        background-color: rgba(0, 0, 0, 0.3);*/
/*    }*/

/*    .slider__nav-arrow {*/
/*        width: 10vw;*/
/*        position: relative;*/
/*        cursor: auto;*/
/*    }*/

/*    .slider__nav-arrow:active {*/
/*        filter: brightness(0.5);*/
/*    }*/

/*    .slider__nav-arrow::before {*/
/*        content: '';*/
/*        background-image: var(--arrow);*/
/*        background-size: cover;*/
/*        width: 8vw;*/
/*        height: 8vw;*/
/*        position: absolute;*/
/*        top: 50%;*/
/*        left: 50%;*/
/*        transform: translate(-50%, -50%);*/
/*    }*/

/*    .slider__nav-arrow--left {*/
/*        background-image: none;*/
/*    }*/

/*    .slider__nav-arrow--left:active {*/
/*        background-image: none;*/
/*    }*/

/*    .slider__nav-arrow--right {*/
/*        background-image: none;*/
/*    }*/

/*    .slider__nav-arrow--right:active {*/
/*        background-image: none;*/
/*    }*/
/*}*/


/* Partners*/

.partnersSwiper.swiper,.trustUsSwiper.swiper {
    width: 100%;
    padding-top: 50px;
    padding-bottom: 50px;
}

.partnersSwiper .swiper-slide,.trustUsSwiper .swiper-slide {
    background-position: center;
    background-size: cover;
    width: 250px;
    height: 200px;
}

.partnersSwiper .swiper-slide img,.trustUsSwiper .swiper-slide img{
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}


.product-card:hover {
    box-shadow: 0px 0px 10px 0px var(--gray);
}


.accordion-button::after {
    height: 14px;
    width: 14px;
    background-size: contain;
}


footer {
    /*background-color: var(--light);*/
    background-color: var(--darkBlue);
}

footer .icon {
    /*color: var(--darkBlue);*/
    color: var(--white);
}

footer img {
    filter: brightness(0) invert(1);
}

.footer-text {
    font-size: 16px;
    color: var(--white);
    text-decoration: none;
}


footer h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--white);
    text-transform: capitalize;
}


.footer-all-right span {
    /*color: var(--darkColor);*/
    color: var(--white);
}


.el-wrapper {
    /*width: 360px;*/
    /*padding: 15px;*/
    /*margin: 15px auto;*/
    background-color: var(--white);
    box-shadow: 0px 2px 10px 0px #00000040;
}

/*@media (max-width: 991px) {*/
/*    .el-wrapper {*/
/*        width: 345px;*/
/*    }*/
/*}*/

/*@media (max-width: 767px) {*/
/*    .el-wrapper {*/
/*        width: 290px;*/
/*        margin: 30px auto;*/
/*    }*/
/*}*/

.el-wrapper:hover .h-bg {
    left: 0px;
}

.el-wrapper:hover .price, .el-wrapper:hover .save {
    display: none;
}

.el-wrapper:hover .add-to-cart {
    left: 50%;
}

.el-wrapper:hover .img {
    webkit-filter: blur(7px);
    -o-filter: blur(7px);
    -ms-filter: blur(7px);
    filter: blur(7px);
    filter: progid:DXImageTransform.Microsoft.Blur(pixelradius='7', shadowopacity='0.0');
    opacity: 0.4;
}

.el-wrapper:hover .info-inner {
    bottom: 155px;
}

.el-wrapper:hover .a-size {
    -webkit-transition-delay: 300ms;
    -o-transition-delay: 300ms;
    transition-delay: 300ms;
    bottom: 50px;
    opacity: 1;
}

.el-wrapper .box-down {
    width: 100%;
    height: 60px;
    position: relative;
    overflow: hidden;
}

.el-wrapper .box-up {
    width: 100%;
    /*height: 300px;*/
    position: relative;
    overflow: hidden;
    text-align: center;
}

.el-wrapper .img {
    /*aspect-ratio: 215/242;*/
    aspect-ratio: 1/1;
    object-fit: contain;
    -webkit-transition: all 800ms cubic-bezier(0, 0, 0.18, 1);
    -moz-transition: all 800ms cubic-bezier(0, 0, 0.18, 1);
    -o-transition: all 800ms cubic-bezier(0, 0, 0.18, 1);
    transition: all 800ms cubic-bezier(0, 0, 0.18, 1);
    /* ease-out */
    -webkit-transition-timing-function: cubic-bezier(0, 0, 0.18, 1);
    -moz-transition-timing-function: cubic-bezier(0, 0, 0.18, 1);
    -o-transition-timing-function: cubic-bezier(0, 0, 0.18, 1);
    transition-timing-function: cubic-bezier(0, 0, 0.18, 1);
    /* ease-out */
}

.h-bg {
    -webkit-transition: all 800ms cubic-bezier(0, 0, 0.18, 1);
    -moz-transition: all 800ms cubic-bezier(0, 0, 0.18, 1);
    -o-transition: all 800ms cubic-bezier(0, 0, 0.18, 1);
    transition: all 800ms cubic-bezier(0, 0, 0.18, 1);
    /* ease-out */
    -webkit-transition-timing-function: cubic-bezier(0, 0, 0.18, 1);
    -moz-transition-timing-function: cubic-bezier(0, 0, 0.18, 1);
    -o-transition-timing-function: cubic-bezier(0, 0, 0.18, 1);
    transition-timing-function: cubic-bezier(0, 0, 0.18, 1);
    /* ease-out */
    width: 660px;
    height: 100%;
    /*background-color: #3f96cd;*/
    background-color: var(--gray);
    position: absolute;
    left: -659px;
}

.h-bg .h-bg-inner {
    width: 50%;
    height: 100%;
    /*background-color: #464646;*/
    background-color: var(--darkBlue);
    /*background-color: var(--darkGray);*/
}

.info-inner {
    -webkit-transition: all 400ms cubic-bezier(0, 0, 0.18, 1);
    -moz-transition: all 400ms cubic-bezier(0, 0, 0.18, 1);
    -o-transition: all 400ms cubic-bezier(0, 0, 0.18, 1);
    transition: all 400ms cubic-bezier(0, 0, 0.18, 1);
    /* ease-out */
    -webkit-transition-timing-function: cubic-bezier(0, 0, 0.18, 1);
    -moz-transition-timing-function: cubic-bezier(0, 0, 0.18, 1);
    -o-transition-timing-function: cubic-bezier(0, 0, 0.18, 1);
    transition-timing-function: cubic-bezier(0, 0, 0.18, 1);
    /* ease-out */
    position: relative;
    width: 100%;
    /*bottom: -24px;*/
    /*bottom: 12px;*/
}

.info-inner .p-name,
.info-inner .p-company {
    display: block;
}

.info-inner .p-name {
    font-size: 18px;
    color: #252525;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    overflow: hidden;
    height: 54px;
}

.info-inner .p-company {
    font-size: 12px;
    text-transform: uppercase;
    color: var(--darkGray);
}

.a-size {
    -webkit-transition: all 300ms cubic-bezier(0, 0, 0.18, 1);
    -moz-transition: all 300ms cubic-bezier(0, 0, 0.18, 1);
    -o-transition: all 300ms cubic-bezier(0, 0, 0.18, 1);
    transition: all 300ms cubic-bezier(0, 0, 0.18, 1);
    /* ease-out */
    -webkit-transition-timing-function: cubic-bezier(0, 0, 0.18, 1);
    -moz-transition-timing-function: cubic-bezier(0, 0, 0.18, 1);
    -o-transition-timing-function: cubic-bezier(0, 0, 0.18, 1);
    transition-timing-function: cubic-bezier(0, 0, 0.18, 1);
    /* ease-out */
    position: absolute;
    width: 100%;
    bottom: -20px;
    color: var(--darkGray);
    opacity: 0;
}

.a-size .size {
    color: var(--darkColor);
}

.cart {
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    font-weight: 700;
    background-color: transparent;
    border: 0;
}

.cart .price {
    -webkit-transition: all 600ms cubic-bezier(0, 0, 0.18, 1);
    -moz-transition: all 600ms cubic-bezier(0, 0, 0.18, 1);
    -o-transition: all 600ms cubic-bezier(0, 0, 0.18, 1);
    transition: all 600ms cubic-bezier(0, 0, 0.18, 1);
    /* ease-out */
    -webkit-transition-timing-function: cubic-bezier(0, 0, 0.18, 1);
    -moz-transition-timing-function: cubic-bezier(0, 0, 0.18, 1);
    -o-transition-timing-function: cubic-bezier(0, 0, 0.18, 1);
    transition-timing-function: cubic-bezier(0, 0, 0.18, 1);
    /* ease-out */
    -webkit-transition-delay: 100ms;
    -o-transition-delay: 100ms;
    transition-delay: 100ms;
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    font-size: 16px;
    color: var(--darkColor);
}

.cart .add-to-cart {
    -webkit-transition: all 600ms cubic-bezier(0, 0, 0.18, 1);
    -moz-transition: all 600ms cubic-bezier(0, 0, 0.18, 1);
    -o-transition: all 600ms cubic-bezier(0, 0, 0.18, 1);
    transition: all 600ms cubic-bezier(0, 0, 0.18, 1);
    /* ease-out */
    -webkit-transition-timing-function: cubic-bezier(0, 0, 0.18, 1);
    -moz-transition-timing-function: cubic-bezier(0, 0, 0.18, 1);
    -o-transition-timing-function: cubic-bezier(0, 0, 0.18, 1);
    transition-timing-function: cubic-bezier(0, 0, 0.18, 1);
    /* ease-out */
    -webkit-transition-delay: 100ms;
    -o-transition-delay: 100ms;
    transition-delay: 100ms;
    display: block;
    position: absolute;
    top: 50%;
    left: 110%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.cart .add-to-cart .txt {
    font-size: 12px;
    color: var(--white);
    letter-spacing: 0.045em;
    text-transform: uppercase;
    white-space: nowrap;
}


.save {
    -webkit-transition: all 600ms cubic-bezier(0, 0, 0.18, 1);
    -moz-transition: all 600ms cubic-bezier(0, 0, 0.18, 1);
    -o-transition: all 600ms cubic-bezier(0, 0, 0.18, 1);
    transition: all 600ms cubic-bezier(0, 0, 0.18, 1);
    /* ease-out */
    -webkit-transition-timing-function: cubic-bezier(0, 0, 0.18, 1);
    -moz-transition-timing-function: cubic-bezier(0, 0, 0.18, 1);
    -o-transition-timing-function: cubic-bezier(0, 0, 0.18, 1);
    transition-timing-function: cubic-bezier(0, 0, 0.18, 1);
    /* ease-out */
    -webkit-transition-delay: 100ms;
    -o-transition-delay: 100ms;
    transition-delay: 100ms;
    display: block;
    position: absolute;
    top: 50%;
    right: 8px;
    bottom: 0;
    -webkit-transform: translate(-10%, -50%);
    -ms-transform: translate(-10%, -50%);
    -o-transform: translate(-10%, -50%);
    transform: translate(-10%, -50%);
}


.custom-select-wrapper {
    position: relative;
    width: fit-content;
    cursor: pointer;
}

.custom-select-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px 10px 5px 0;
    /*border: 1px solid var(--gray);*/
    background: var(--white);
}

.custom-select-trigger img {
    width: 28px;
    border: 1px solid var(--darkBlue);
}

.custom-options {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    /*border: 1px solid var(--gray);*/
    background: white;
    display: none;
    z-index: 999;
}

.custom-option {
    display: flex;
    align-items: center;
    padding: 5px 10px 5px 0;
}

.custom-option img {
    width: 28px;
}

.custom-option:hover {
    background: var(--light);
}

.custom-options.show {
    display: block;
}


.header-contact-section .social-links svg {
    height: 18px;
    width: auto;
}


.header-contact-section .contact-links svg {
    height: 18px;
    width: auto;
}


.header-contact-section .contact-links .contact-phone {
    color: var(--darkBlue);
    font-size: 16px;
    font-weight: 600;
}

.header-contact-section .contact-links .contact-phone:hover {
    color: var(--darkBlue);
}

.header-contact-section .contact-links .contact {
    padding: 16px 36px;
    color: var(--white);
    background: linear-gradient(90deg, #657AC1 0%, #2C4081 100%);;
}

#searchModal .modal-content {
    background-color: #525f8896;
}

.search-form {
    border: 1px solid var(--white);
    max-width: 800px;
}

.search-form input {
    height: 60px;
    color: var(--white);
    font-size: 20px;
    line-height: 24px;
}

.search-form input::placeholder {
    color: var(--white);
    font-size: 18px;
}

.search-form input:focus-visible {
    outline: none;
}

.service-img-box {
    border: 1.5px solid var(--gray);
    /*border-radius: 50px;*/
}

.service-img-box img {
    aspect-ratio: 492/328;
    object-fit: cover;
    /*border-radius: 35px;*/
}

.service-content h3 {
    font-size: 28px;
    color: var(--darkColor);
    font-weight: 700;
}

.service-content h3 span {
    color: var(--darkBlue);
}

.service-content p {
    font-size: 18px;
    font-weight: 500;
    color: var(--darkColor);
}


.service-content a {
    border-radius: 1.5px solid var(--darkBlue);
    background-color: var(--darkBlue);
    color: var(--white);
    padding: 12px 30px;
    font-size: 16px;
    line-height: 16px;
    text-decoration: none;
}

footer .social-links svg {
    height: 18px;
    width: auto;
}


.favorite-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    line-height: 12px;
    height: 20px;
    min-width: 20px;
    border-radius: 50%;
    padding: 6px;
    color: var(--white);
    background-color: var(--red);
    bottom: 10px;
    left: 12px;

}
@media (max-width: 768px) {
    .viewLinkBtn {
        border: 1px solid rgba(116, 116, 130, 0.3);
        border-radius: 8px;
        padding: 12px 24px;
        text-align: center;
        margin-top: 32px;
    }
}


figure {
    display: grid;
    border-radius: 1rem;
    overflow: hidden;
    cursor: pointer;
    object-fit: contain;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    height: 250px;
}
figure > * {
    grid-area: 1/1;
    transition: .4s;
}


.sec-title{
    position:relative;
    z-index: 1;
    margin-bottom:60px;
}

.sec-title .title{
    position: relative;
    display: block;
    font-size: 18px;
    line-height: 24px;
    color: var(--darkBlue);
    font-weight: 500;
    margin-bottom: 15px;
}

.sec-title h2{
    position: relative;
    display: block;
    font-size:40px;
    line-height: 1.28em;
    color: #222222;
    font-weight: 600;
    padding-bottom:18px;
}

.sec-title h2:before{
    position:absolute;
    content:'';
    left:0px;
    bottom:0px;
    width:50px;
    height:3px;
    background-color:#d1d2d6;
}

.sec-title .text{
    position: relative;
    font-size: 16px;
    line-height: 26px;
    color: #848484;
    font-weight: 400;
    margin-top: 35px;
}

.sec-title.light h2{
    color: #ffffff;
}

.sec-title.text-center h2:before{
    left:50%;
    margin-left: -25px;
}

.list-style-one{
    position:relative;
    list-style: none;
}

.list-style-one li{
    position:relative;
    font-size:16px;
    line-height:26px;
    color: #222222;
    font-weight:400;
    /*padding-left:10px;*/
    margin-bottom: 12px;
}

/*.list-style-one li:before {*/
/*    content: "\f058";*/
/*    position: absolute;*/
/*    left: 0;*/
/*    top: 0px;*/
/*    display: block;*/
/*    font-size: 18px;*/
/*    padding: 0px;*/
/*    color: #ff2222;*/
/*    font-weight: 600;*/
/*    -moz-font-smoothing: grayscale;*/
/*    -webkit-font-smoothing: antialiased;*/
/*    font-style: normal;*/
/*    font-variant: normal;*/
/*    text-rendering: auto;*/
/*    line-height: 1.6;*/
/*    font-family: "Font Awesome 5 Free";*/
/*}*/


.list-style-one li a:hover{
    color: #44bce2;
}

.btn-style-one{
    position: relative;
    display: inline-block;
    font-size: 17px;
    line-height: 30px;
    color: #ffffff;
    padding: 10px 30px;
    font-weight: 600;
    overflow: hidden;
    letter-spacing: 0.02em;
    background-color: #2a417f;
}

.btn-style-one:hover{
    background-color: #001e57;
    color: #ffffff;
}
.about-section{
    position: relative;
    padding: 120px 0 70px;
}

.about-section .sec-title{
    margin-bottom: 45px;
}

.about-section .content-column{
    position: relative;
    margin-bottom: 50px;
}

.about-section .content-column .inner-column{
    position: relative;
    padding-left: 30px;
}

.about-section .text{
    margin-bottom: 40px;
    font-size: 16px;
    line-height: 26px;
    color: #848484;
    font-weight: 400;
}

.about-section .list-style-one{
    margin-bottom: 45px;
}

.about-section .btn-box{
    position: relative;
}

.about-section .btn-box a{
    padding: 15px 50px;
}

.about-section .image-column{
    position: relative;
}

.about-section .image-column .text-layer{
    position: absolute;
    right: -110px;
    top: 50%;
    font-size: 325px;
    line-height: 1em;
    color: #ffffff;
    margin-top: -175px;
    font-weight: 500;
}

.about-section .image-column .inner-column{
    position: relative;
    padding-left: 120px;
    padding-bottom: 125px;
}

.about-section .image-column .inner-column:before{
    position: absolute;
    left: -75px;
    top: 65px;
    height: 520px;
    width: 520px;
    background-image:url(https://i.ibb.co/fxJ1jtC/about-circle-1.png);
    content: "";
}

.about-section .image-column .image-1{
    position: relative;
}

.about-section .image-column .image-2{
    position: absolute;
    left: 0;
    bottom: 0;
}

.about-section .image-column .image-2 img,
.about-section .image-column .image-1 img{
    object-fit: cover;
    box-shadow: 0 30px 50px rgba(8,13,62,.15);
}

.about-section .image-column .video-link{
    position: absolute;
    left: 70px;
    top: 170px;
}
.page-head{
    background: var(--darkBlue);
    color: #fff;
    width: 100%;
    padding: 10px;
    vertical-align: middle;
}
.about_video{
    max-width: 960px;
    margin: 0 auto;
    padding: 30px;
    background-color: #fff;
    box-shadow: 2px 2px 6px -2px #00000040;
}

.about_hero img{
    height: 600px;
    max-width: 100%;
    width: 100%;
    object-fit: cover;
    vertical-align: middle;
}
.small-image-about-us{
    float: right;
    width: 350px;
    margin: 0 0 20px 40px;
}

.card a{
    position: relative;
}
.region_text {
    position: absolute;
    bottom: 30px;
    padding-left: 30px;
    padding-right: 30px;
}
.region_text h5 {
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--darkBlue);
}

.region_buttons {
    color: var(--gray);
    width: fit-content;
    padding: 7px 20px;
    border-radius: 100px;
    background-color: var(--darkBlue);
    border: 2px solid transparent;
}
.catalog-image img{
    object-fit: cover;
}


/*Contact Us*/
.contact-page-section {
    padding: 60px 0;
    min-height: 100vh;
}
.contact-info {
    display: inline-block;
    width: 100%;
    text-align: center;
    margin-bottom: 10px;
    min-height: 230px;
    height: 100%;
}
.contact-info-icon {
    margin-bottom: 15px;
}
.contact-info-item {
    background: var(--darkBlue);
    padding: 30px 0px;
    height: 100%;
}
.contact-page-sec .contact-page-form h2 {
    color: #071c34;
    text-transform: capitalize;
    font-size: 22px;
    font-weight: 700;
}
.contact-page-form .col-md-6.col-sm-6.col-xs-12 {
    padding-left: 0;
}
.contact-page-form.contact-form input {
    margin-bottom: 5px;
}
.contact-page-form.contact-form textarea {
    height: 110px;
}
.contact-page-form.contact-form input[type="submit"] {
    background: #071c34;
    width: 150px;
    border-color: #071c34;
}
.contact-info-icon i {
    font-size: 48px;
    color: #fff;
}
.contact-info-text p{margin-bottom:0px;}
.contact-info-text h4 {
    color: #fff;
    font-size: 15px;
    text-transform: capitalize;
    font-weight: 600;
    margin-top: 10px;
}
.contact-info-text span,.contact-info-text a {
    color: #999999;
    font-size: 16px;
    font-weight: 700;
    display: inline-block;
    width: 100%;
    word-wrap: break-word;
}

.contact-page-form input {
    background: #f9f9f9 none repeat scroll 0 0;
    border: 1px solid #b1b1b1;
    margin-bottom: 20px;
    /*padding: 12px 16px;*/
    /*width: 100%;*/
    border-radius: 4px;
}

.contact-page-form .message-input {
    display: inline-block;
    width: 100%;
    padding-left: 0;
}
.single-input-field textarea {
    background: #f9f9f9 none repeat scroll 0 0;
    border: 1px solid #b1b1b1 !important;
    width: 100%;
    height: 120px;
    padding: 12px 16px;
    border-radius: 4px;
}
.single-input-fieldsbtn input[type="submit"] {
    background: #2a417f none repeat scroll 0 0;
    color: #fff;
    display: inline-block;
    font-weight: 600;
    padding: 10px 0;
    text-transform: capitalize;
    width: 150px;
    margin-top: 20px;
    font-size: 16px;
}
.single-input-fieldsbtn input[type="submit"]:hover{background:#071c34;transition: all 0.4s ease-in-out 0s;border-color:#071c34}
.single-input-field  h4 {
    color: #464646;
    text-transform: capitalize;
    font-size: 14px;
}
.contact-page-form {
    display: inline-block;
    width: 100%;
    margin-top: 30px;
}

.contact-page-map {
    margin-top: 36px;
}
.contact-page-form form {
    padding: 20px 15px 0;
}
