@font-face {
    font-family: MontserratMedium;
    src: url(../fonts/Montserrat/Montserrat-Medium.ttf);
}

@font-face {
    font-family: MontserratSemiBold;
    src: url(../fonts/Montserrat/Montserrat-SemiBold.ttf);
}

@font-face {
    font-family: MontserratBold;
    src: url(../fonts/Montserrat/Montserrat-Bold.ttf);
}

@font-face {
    font-family: RobotoMedium;
    src: url(../fonts/Roboto/Roboto-Medium.ttf);
}

@font-face {
    font-family: RobotoRegular;
    src: url(../fonts/Roboto/Roboto-Regular.ttf);
}

.text-MontserratBold {
    font-family: MontserratBold;
}

.text-MontserratMedium {
    font-family: MontserratMedium;
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
    font-family: "MontserratMedium", sans-serif;
    color: #2D2828;
    font-size: 14px;
    /*background-color: #f6f6f6;*/
}

.iframe-youtube-video {
    height: 506px;
}

.testimonials-image-container {
    width: 100% !important;
    height: 500px !important;
}

.testimonials-image {
    object-fit: fill;
}

.mobile_image {
    width: 100% !important;
    height: 340px !important;
    display: none;
}

.mobile_image_item {
    display: none !important;
}

@media (max-width: 767px) {
    .iframe-youtube-video {
        height: 280px !important;
    }
    .mobile_image_item .testimonials-image-container {
        height: 340px !important;
        width: 100% !important;
        }
    .testimonials-image {
        object-fit: cover;
    }
    .mobile_image {
        display: block;
        object-fit: cover;
    }
    .mobile_image_item {
        display: block !important;
    }
    .testimonials-image-container {
        height: auto !important;
    }
}

a {
    color: #1A5468;
}

.error {
    color: red;
}

a:hover {
    color: #123947;
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "MontserratSemiBold", sans-serif;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
    position: fixed;
    display: none;
    right: 15px;
    bottom: 15px;
    z-index: 99999;
}

.back-to-top i {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    width: 40px;
    height: 40px;
    border-radius: 50px;
    background: #1A5468;
    color: #fff;
    transition: all 0.4s;
}

.back-to-top i:hover {
    background: #123947;
    color: #fff;
}

/*--------------------------------------------------------------
# Disable AOS delay on mobile
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
    [data-aos-delay] {
        transition-delay: 0 !important;
    }
}

/*--------------------------------------------------------------
# Global for section
--------------------------------------------------------------*/
.c-title {
    font-size: 14px;
    font-weight: 100;
    padding: 15px;
    line-height: 1px;
    margin: 0 0 5px 0;
    color: #1A5468;
}

.c-s-title {
    margin: 0;
    font-size: 25px;
    font-family: "MontserratSemiBold", sans-serif;
    color: #2a2c39;
    text-align: center;
}

.c-details {
    font-size: 13px;
    color: #949494;
    display: inline-block;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#contactUsHeader {
    background: #1A5468;
    color: #ffffff;
    font-size: 14px;
    height: 45px;
}

#header {
    height: 70px;
    transition: all 0.5s;
    z-index: 997;
    transition: all 0.5s;
    font-family: MontserratMedium;
}

#header {
    height: 70px;
    transition: all 0.5s;
    z-index: 997;
    transition: all 0.5s;
    font-family: MontserratMedium;
}

#header .container {
    margin-top: 1rem;
    margin-bottom: 1rem;
}

#header.header-scrolled {
    background: rgb(255 255 255);
    box-shadow: 0 0 5px #ccc;
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
}

#header .logo h1 {
    font-size: 28px;
    margin: 0;
    padding: 0;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 1px;
}

#header .logo h1 a,
#header .logo h1 a:hover {
    color: #fff;
    text-decoration: none;
}

#header .logo img {
    padding: 0;
    margin: 0;
    width: 80px;
    max-height: 63px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
.nav-menu {
    margin-left: auto !important;
}

.nav-menu,
.nav-menu * {
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-menu>ul>li {
    position: relative;
    white-space: nowrap;
    float: left;
}

.nav-menu a:not(.dropdown-item) {
    margin-left: 5px;
}

.nav-menu a {
    display: block;
    position: relative;
    color: #2D2828;
    padding: 7px 15px 7px 15px;

    transition: 0.3s;
    font-size: 0.9rem;
    font-family: "MontserratMedium";
    border-bottom: 2px solid transparent;
}

.nav-menu a:hover,
.nav-menu .active>a,
.nav-menu li:hover>a {
    border-bottom-color: #1A5468;
    color: #2D2828;
    text-decoration: none;
    background-color: transparent;
}

.nav-menu .drop-down ul {
    display: block;
    position: absolute;
    left: 0;
    top: calc(100% - 30px);
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    padding: 10px 0;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: ease all 0.3s;
    border-radius: 15px;
    margin-top: 5px;
}

.nav-menu .drop-down:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
}

.nav-menu .drop-down li {
    min-width: 180px;
    position: relative;
}

.nav-menu .drop-down ul a {
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    text-transform: none;
    color: #2a2c39;
}

.nav-menu .drop-down ul a:hover,
.nav-menu .drop-down ul .active>a,
.nav-menu .drop-down ul li:hover>a {
    color: #154252;
    background: none;
}

.nav-menu .drop-down>a:after {
    content: "\ea99";
    font-family: IcoFont;
    padding-left: 5px;
}

.nav-menu .drop-down .drop-down ul {
    top: 0;
    left: calc(100% - 30px);
}

.nav-menu .drop-down .drop-down:hover>ul {
    opacity: 1;
    top: 0;
    left: 100%;
}

.nav-menu .drop-down .drop-down>a {
    padding-right: 35px;
}

.nav-menu .drop-down .drop-down>a:after {
    content: "\eaa0";
    font-family: IcoFont;
    position: absolute;
    right: 15px;
}

@media (max-width: 1366px) {
    .nav-menu .drop-down .drop-down ul {
        left: -90%;
    }

    .nav-menu .drop-down .drop-down:hover>ul {
        left: -100%;
    }

    .nav-menu .drop-down .drop-down>a:after {
        content: "\ea9d";
    }
}

/* Mobile Navigation */
.mobile-nav-toggle {
    /*position: fixed;*/
    margin-right: 15px;
    right: 15px;
    top: 113px;
    z-index: 9998;
    border: 0;
    background: none;
    font-size: 24px;
    transition: all 0.4s;
    outline: none !important;
    line-height: 1;
    cursor: pointer;
    text-align: right;
}

.mobile-nav-toggle i {
    color: #1A5468;
}

.mobile-nav {
    position: fixed;
    top: 118px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    z-index: 9999;
    overflow-y: auto;
    background: #fff;
    transition: ease-in-out 0.2s;
    opacity: 0;
    visibility: hidden;
    border-radius: 10px;
    padding: 10px 0;
    width: 93%;
}

.mobile-nav * {
    margin: 0;
    padding: 0;
    list-style: none;
}

.mobile-nav a {
    display: block;
    position: relative;
    color: #2a2c39;
    padding: 10px 20px;
    font-weight: 500;
    outline: none;
}

.mobile-nav a:hover,
.mobile-nav .active>a,
.mobile-nav li:hover>a {
    color: #154252;
    text-decoration: none;
}

.mobile-nav .drop-down>a:after {
    content: "\ea99";
    font-family: IcoFont;
    padding-left: 10px;
    position: absolute;
    right: 15px;
}

.mobile-nav .active.drop-down>a:after {
    content: "\eaa1";
}

.mobile-nav .drop-down>a {
    padding-right: 35px;
}

.mobile-nav .drop-down ul {
    display: none;
    overflow: hidden;
}

.mobile-nav .drop-down li {
    padding-left: 20px;
}

.mobile-nav-overly {
    width: 100%;
    height: 100%;
    z-index: 9997;
    top: 0;
    left: 0;
    position: fixed;
    background: rgba(20, 21, 28, 0.6);
    overflow: hidden;
    display: none;
    transition: ease-in-out 0.2s;
}

.mobile-nav-active {
    overflow: hidden;
}

.mobile-nav-active .mobile-nav {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-active .mobile-nav-toggle i {
    color: #fff;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
    width: 100%;
    overflow: hidden;
    position: relative;
    /*background:linear-gradient(0deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.5) 100%);*/
    background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 0;
    min-height: 526px;
    height: auto;
    /*animation: imageBg 4s alternate;*/

    /*-webkit-animation: imageBg 4s;*/
    /*animation: imageBg 4s;*/

    /*-webkit-animation-fill-mode: forwards;*/
    /*animation-fill-mode: forwards;*/

    /*-webkit-animation-iteration-count: revert;*/
    /*animation-iteration-count: infinite;*/

    /*-webkit-animation-direction: alternate;*/
    /*animation-direction: alternate;*/

}

@keyframes imageBg {
    from {
        background-position: top;
        /*background-size: 100%;*/
        opacity: .5;
    }

    to {
        background-position: center;
        /*background-size: 100%;*/
        opacity: 1;
    }
}

@keyframes imageBgTop {
    from {
        background-position: top;
        /*background-size: 100%;*/
        opacity: .5;
    }

    to {
        background-position: center;
        /*background-size: 100%;*/
        opacity: 1;
    }
}

@media (max-width: 768px) {
    @keyframes imageBg {
        from {
            background-position: left;
        }

        to {
            background-position: center;
        }
    }

    @keyframes imageBgTop {
        from {
            background-position: right;
        }

        to {
            background-position: center;
        }
    }
}

#hero .carousel-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    position: relative;
    height: 84vh;
    /*height: 100vh;*/
    /*padding-top: 12rem;*/
}

#hero h2 {
    color: #1A5468;
    margin-bottom: 12px;
    font-size: 2rem;
    white-space: pre-wrap;
    width: 60%;
    display: inline-block;
    letter-spacing: 20px;
    font-family: 'MontserratMedium';
}

#hero h1 {
    color: #1A5468;
    margin-bottom: 19px;
    font-size: 3rem;
    width: 60%;
    display: inline-block;
    font-family: 'MirzaMedium';
}

#hero p {
    width: 80%;
    -webkit-animation-delay: 0.4s;
    animation-delay: 0.4s;
    /*margin: 0 auto 30px auto;*/
    color: #1A5468;
    font-family: 'MontserratMedium';
}

@media (max-width: 767px) {
    #hero h2 {
        font-size: 1.4rem;
        width: 100%;
    }

    #hero h1 {
        font-size: 2rem;
        width: 90%;
        margin-bottom: 0px;
    }

}

#hero .carousel-control-prev,
#hero .carousel-control-next {
    width: 10%;
    /* padding-top: 98px; */
}

@media (max-width: 768px) {
    #hero .carousel-control-prev,
    #hero .carousel-control-next {
        padding-top: 0px;
    }
}

#hero .carousel-control-next-icon,
#hero .carousel-control-prev-icon {
    background: none;
    font-size: 48px;
    line-height: 1;
    width: auto;
    height: auto;
}

#hero .btn-get-started {
    font-family: "MontserratSemiBold", sans-serif;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 12px 32px;
    border-radius: 50px;
    transition: 0.5s;
    line-height: 1;
    margin: 10px;
    color: #fff;
    -webkit-animation-delay: 0.8s;
    animation-delay: 0.8s;
    border: 2px solid #1A5468;
}

#hero .btn-get-started:hover {
    background: #154252;
    color: #fff;
    text-decoration: none;
}

.slider-video-container{
    width: 100%;
    height: 86vh;
}

@media (min-width: 1024px) {
    #hero p {
        width: 60%;
    }

    #hero .carousel-control-prev,
    #hero .carousel-control-next {
        width: 5%;
    }
}

@media (max-width: 768px) {
    #hero {
        height: auto;
    }

    #hero .carousel-container {
        height: 500px;
        padding-top: 111px;
        padding-bottom: 111px;
    }

    #hero h2 {
        font-size: 2rem;
    }

        .slider-video-container {
            width: 100%;
            height: 520px;
        }
}

.font-size-15-rem {
    font-size: 1.5rem;
}

.hero-waves {
    display: block;
    width: 100%;
    height: 60px;
    position: relative;
}

.wave1 use {
    -webkit-animation: move-forever1 10s linear infinite;
    animation: move-forever1 10s linear infinite;
    -webkit-animation-delay: -2s;
    animation-delay: -2s;
}

.wave2 use {
    -webkit-animation: move-forever2 8s linear infinite;
    animation: move-forever2 8s linear infinite;
    -webkit-animation-delay: -2s;
    animation-delay: -2s;
}

.wave3 use {
    -webkit-animation: move-forever3 6s linear infinite;
    animation: move-forever3 6s linear infinite;
    -webkit-animation-delay: -2s;
    animation-delay: -2s;
}

@-webkit-keyframes move-forever1 {
    0% {
        transform: translate(85px, 0%);
    }

    100% {
        transform: translate(-90px, 0%);
    }
}

@keyframes move-forever1 {
    0% {
        transform: translate(85px, 0%);
    }

    100% {
        transform: translate(-90px, 0%);
    }
}

@-webkit-keyframes move-forever2 {
    0% {
        transform: translate(-90px, 0%);
    }

    100% {
        transform: translate(85px, 0%);
    }
}

@keyframes move-forever2 {
    0% {
        transform: translate(-90px, 0%);
    }

    100% {
        transform: translate(85px, 0%);
    }
}

@-webkit-keyframes move-forever3 {
    0% {
        transform: translate(-90px, 0%);
    }

    100% {
        transform: translate(85px, 0%);
    }
}

@keyframes move-forever3 {
    0% {
        transform: translate(-90px, 0%);
    }

    100% {
        transform: translate(85px, 0%);
    }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
    padding: 40px 0 0 0;
    overflow: hidden;
}

.section-title {
    padding-bottom: 40px;
}

.section-title h2 {
    font-size: 16px;
    font-weight: 400;
    padding: 15px;
    margin: 0 0 5px 0;
    text-align: center;
    color: #1C1C1C;
}

.section-title h2::after {
    /*content: "";*/
    width: 120px;
    height: 1px;
    display: inline-block;
    background: #1A5468;
    margin: 4px 10px;
}

.section-title p {
    margin: 0;
    font-size: 18px;
    /* font-weight: 700; */
    /*text-transform: uppercase;*/
    font-family: "MontserratBold", sans-serif;
    color: #1A5468;
    text-align: center;
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about {
    padding-top: 80px;
}

.about .content h3 {
    font-weight: 600;
    font-size: 26px;
}

.about .content ul {
    list-style: none;
    padding: 0;
}

.about .content ul li {
    padding-left: 28px;
    position: relative;
}

.about .content ul li+li {
    margin-top: 10px;
}

.about .content ul i {
    position: absolute;
    left: 0;
    top: 2px;
    font-size: 20px;
    color: #1A5468;
    line-height: 1;
}

.about .content p:last-child {
    margin-bottom: 0;
}

.about .content .btn-learn-more {
    font-family: "MontserratSemiBold", sans-serif;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 12px 32px;
    border-radius: 5px;
    transition: 0.3s;
    line-height: 1;
    color: #1A5468;
    -webkit-animation-delay: 0.8s;
    animation-delay: 0.8s;
    margin-top: 6px;
    border: 2px solid #1A5468;
}

.about .content .btn-learn-more:hover {
    background: #154252;
    color: #fff;
    text-decoration: none;
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services {
    background-color: #ffffff;
    padding: 60px 0 60px 0;
}

.services .section-title {
    padding-bottom: 15px;
}

.services .section-title h2,
.services .section-title p {
    text-align: left;
    padding-left: 0;
}

.services h3 {
    font-weight: 600;
    font-size: 26px;
}

.services ul {
    list-style: none;
    padding: 0;
}

.services ul li {
    padding-bottom: 10px;
}

.services ul i {
    font-size: 20px;
    padding-right: 4px;
    color: #1A5468;
}

.services .tab-pane p:last-child {
    margin-bottom: 0;
}

.services ul li {
    padding-top: 15px;
}

.services ul li span.details-li {
    font-size: 14px;
    color: #949494;
    max-width: 411px;
    display: inline-block;
}

.services ul li h6 {
    font-size: 16px;
    font-weight: 600;
}

.services-icon {
    width: 50px;
    height: 50px;
    border: 1px solid #154252;
    text-align: center;
    border-radius: 50%;
}

.services-icon img {
    width: 22px;
    height: 22px;
}

/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/
.cta {
    background: #2a2c39;
    padding: 80px 0;
}

.cta h3 {
    color: #fff;
    font-size: 28px;
    font-weight: 700;
}

.cta p {
    color: #fff;
}

.cta .cta-btn {
    font-family: "MontserratSemiBold", sans-serif;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    transition: 0.5s;
    margin: 10px;
    color: #fff;
    background: #1A5468;
}

.cta .cta-btn:hover {
    background: #fff;
    color: #154252;
}

@media (max-width: 1024px) {
    .cta {
        background-attachment: scroll;
    }
}

@media (min-width: 769px) {
    .cta .cta-btn-container {
        display: flex;
        align-items: center;
        justify-content: flex-end;
    }
}

/*--------------------------------------------------------------
# Products
--------------------------------------------------------------*/
.products {
    padding: 0;
    min-height: 360px;
    position: relative;
}


.products .btn-get-started {
    font-family: "MontserratSemiBold", sans-serif;
    text-transform: uppercase;
    /* font-weight: 700; */
    font-size: 12px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 8px 19px;
    border-radius: 50px;
    transition: 0.5s;
    margin: 10px;
    color: #fff;
    background: #1A5468;
    margin-top: 60px;
}

.products .products-btn:hover {
    background: #fff;
    color: #154252;
}

.products .carousel-indicators {
    justify-content: end;
    margin-bottom: 2.5rem;
}

.products .carousel-indicators li {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    opacity: 1;
    border: 1px solid #fff;
}

.products .carousel-indicators span {
    line-height: 0.8;
    color: #fff;
    padding-right: 13px;
    font-weight: 100;
}

.products .carousel-indicators li:not(.active) {
    background-color: transparent;
}

@media (max-width: 1024px) {
    .products {
        background-attachment: scroll;
        min-height: 500px
    }

    .products .btn-get-started {
        margin-top: 10px !important;
    }

    .products .carousel-indicators {
        justify-content: center;
        bottom: -70px;
    }

    .products .carousel-inner {
        text-align: center;
    }

    .products p {
        padding-top: 30px;
    }
}

@media (min-width: 769px) {
    .products .products-btn-container {
        display: flex;
        align-items: center;
        justify-content: flex-end;
    }
}

/*--------------------------------------------------------------
# Features
--------------------------------------------------------------*/
.features .icon-box {
    padding: 30px;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 2px 29px 0 rgba(68, 88, 144, 0.12);
    transition: all 0.4s ease-in-out;
    width: 100%;
    height: 100%;
}

.features .icon-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 2px 35px 0 rgba(68, 88, 144, 0.2);
}

.features .icon {
    position: absolute;
    left: -20px;
    top: calc(50% - 30px);
}

.features .icon i {
    font-size: 64px;
    line-height: 1;
    transition: 0.5s;
}

.features .title {
    margin-left: 40px;
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 18px;
}

.features .title a {
    color: #2a2c39;
    transition: ease-in-out 0.3s;
}

.features .title a:hover {
    color: #154252;
}

.features .description {
    font-size: 14px;
    margin-left: 40px;
    line-height: 24px;
    margin-bottom: 0;
}

/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio .section-title p {
    text-align: left;
}

.portfolio .section-title p .title {
    text-align: left;
    margin-right: 5rem;
}

.portfolio .section-title p .details {
    font-size: 1rem;
    color: #949494;
    max-width: 411px;
    display: inline-block;
    font-weight: 100;
    font-family: "MontserratSemiBold", sans-serif;
}

.portfolio #portfolio-flters {
    list-style: none;
    margin-bottom: 40px;
    padding-left: 0;
}

.portfolio #portfolio-flters li {
    cursor: pointer;
    display: inline-block;
    padding: 10px 15px;
    margin-right: 12px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    color: #444444;
    transition: all 0.3s ease-in-out;
    border-radius: 7px;
}

.portfolio .portfolio-info h4 {
    font-size: 16px;
    font-weight: 600;
    padding: 20px 0;
    margin-bottom: 10px;
    position: relative;
}

.portfolio .portfolio-info h4:before {
    content: '';
    position: absolute;
    bottom: 0;
    border-bottom: 2px solid #e6e6e6;
    width: 75%;
}

.portfolio .portfolio-info p {
    font-size: 14px;
    margin-bottom: 0.5rem;
    color: #8e8e8e;
}

.portfolio .portfolio-info p span:first-child {
    font-weight: 600;
}

.portfolio #portfolio-flters li:hover,
.portfolio #portfolio-flters li.filter-active {
    color: #fff;
    background-color: #154252;
}

.portfolio #portfolio-flters li.filter-active::before,
.portfolio #portfolio-flters li.filter-active::after {
    color: #154252;
}

.portfolio .portfolio-item {
    margin-bottom: 30px;
}

.portfolio .portfolio-item .portfolio-img {
    overflow: hidden;
    border-radius: 7px;
}

.portfolio .portfolio-item .portfolio-img img {
    transition: all 0.8s ease-in-out;
}

.portfolio .portfolio-item .portfolio-info .preview-link,
.portfolio .portfolio-item .portfolio-info .details-link {
    position: absolute;
    right: 40px;
    font-size: 24px;
    top: calc(50% - 18px);
    color: #fff;
    transition: 0.3s;
}

.portfolio .portfolio-item .portfolio-info .preview-link:hover,
.portfolio .portfolio-item .portfolio-info .details-link:hover {
    color: #154252;
}

.portfolio .portfolio-item .portfolio-info .details-link {
    right: 10px;
}

.portfolio .portfolio-item .portfolio-links {
    opacity: 0;
    left: 0;
    right: 0;
    text-align: center;
    z-index: 3;
    position: absolute;
    transition: all ease-in-out 0.3s;
}

.portfolio .portfolio-item .portfolio-links a {
    color: #fff;
    margin: 0 2px;
    font-size: 28px;
    display: inline-block;
    transition: 0.3s;
}

.portfolio .portfolio-item .portfolio-links a:hover {
    color: #154252;
}

.portfolio .portfolio-item:hover .portfolio-img img {
    transform: scale(1.2);
}

.portfolio .portfolio-item:hover .portfolio-info {
    opacity: 1;
}

@media (max-width: 767px) {
    .portfolio .portfolio-item {
        text-align: center;
    }

    .portfolio .portfolio-info h4:before {
        width: 39% !important;
    }
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials .testimonial-item {
    /*box-sizing: content-box;*/
    padding: 30px 17px 0 17px;
    margin: 30px 15px;
    /*text-align: center;*/
    min-height: 200px;
    /*box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);*/
    border-radius: 12px;
    width: 216px;
    background-color: #fff;
}

.testimonials .testimonial-item .testimonial-img {
    width: 63px;
    /*border-radius: 50%;*/
    border: 4px solid #fff;
    /*margin: 0 auto;*/
}

.testimonials .testimonial-item h3 {
    font-size: 0.97rem;
    font-weight: 600;
    margin: 20px 0 5px 0;
    color: #111;
    display: table-caption;
    width: 104px;
    line-height: 1.7;
}

.testimonials .testimonial-item h4 {
    font-size: 25px;
    color: #999;
    margin: 0;
    text-align: right;
}

.testimonials .testimonial-item h4 a {
    color: #999;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
    color: #fedac0;
    font-size: 26px;
}

.testimonials .testimonial-item .quote-icon-left {
    display: inline-block;
    left: -5px;
    position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
    display: inline-block;
    right: -5px;
    position: relative;
    top: 10px;
}

.testimonials .testimonial-item p {
    font-style: italic;
    margin: 0 auto 15px auto;
}

.testimonials .owl-nav,
.testimonials .owl-dots {
    margin-top: 5px;
    text-align: center;
}

.testimonials .owl-dot {
    display: inline-block;
    margin: 0 5px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ddd !important;
}

.testimonials .owl-dot.active {
    background-color: #154252 !important;
}

@media (max-width: 767px) {
    .testimonials {
        margin: 30px 10px;
    }
}

.testimonials .owl-stage {
    display: -webkit-box;
}

.testimonials .owl-carousel.owl-drag .owl-item {
    width: 224px !important;
}

.testimonials .owl-carousel .owl-stage-outer {
    overflow: initial !important;
}

.owl-item,
.owl-item.cloned {
    opacity: 0.3 !important;
}

.owl-item.cloned.active,
.owl-item.active {
    opacity: 1 !important;
}

/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/
.pricing .box {
    padding: 20px;
    background: #fff;
    text-align: center;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.12);
    border-radius: 5px;
    position: relative;
    overflow: hidden;
}

.pricing h3 {
    font-weight: 400;
    margin: -20px -20px 25px -20px;
    padding: 30px 15px;
    font-size: 18px;
    font-weight: 600;
    color: #777777;
    background: #f8f8f8;
}

.pricing h4 {
    font-size: 36px;
    color: #1A5468;
    font-weight: 600;
    font-family: "MontserratSemiBold", sans-serif;
    margin-bottom: 20px;
}

.pricing h4 sup {
    font-size: 20px;
    top: -15px;
    left: -3px;
}

.pricing h4 span {
    color: #bababa;
    font-size: 16px;
    font-weight: 300;
}

.pricing ul {
    padding: 0;
    list-style: none;
    color: #444444;
    text-align: center;
    line-height: 20px;
    font-size: 14px;
}

.pricing ul li {
    padding-bottom: 16px;
}

.pricing ul i {
    color: #1A5468;
    font-size: 18px;
    padding-right: 4px;
}

.pricing ul .na {
    color: #ccc;
    text-decoration: line-through;
}

.pricing .btn-wrap {
    margin: 20px -20px -20px -20px;
    padding: 20px 15px;
    background: #f8f8f8;
    text-align: center;
}

.pricing .btn-buy {
    background: #1A5468;
    display: inline-block;
    padding: 8px 35px 10px 35px;
    border-radius: 50px;
    color: #fff;
    transition: none;
    font-size: 14px;
    font-weight: 400;
    font-family: "Raleway", sans-serif;
    font-weight: 600;
    transition: 0.3s;
}

.pricing .btn-buy:hover {
    background: #154252;
}

.pricing .featured {
    border: 2px solid #1A5468;
}

.pricing .featured h3 {
    color: #fff;
    background: #1A5468;
}

.pricing .advanced {
    width: 200px;
    position: absolute;
    top: 18px;
    right: -68px;
    transform: rotate(45deg);
    z-index: 1;
    font-size: 14px;
    padding: 1px 0 3px 0;
    background: #1A5468;
    color: #fff;
}

/*--------------------------------------------------------------
# F.A.Q
--------------------------------------------------------------*/
.faq {
    padding: 60px 0;
}

.faq .faq-list {
    padding: 0;
    list-style: none;
}

.faq .faq-list li {
    padding: 0 0 20px 25px;
}

.faq .faq-list a {
    display: block;
    position: relative;
    /*font-family: #ef6603;*/
    font-size: 18px;
    font-weight: 500;
}

.faq .faq-list i {
    font-size: 18px;
    position: absolute;
    left: -25px;
    top: 6px;
}

.faq .faq-list p {
    margin-bottom: 20px;
    font-size: 15px;
}

.faq .faq-list a.collapse {
    color: #154252;
}

.faq .faq-list a.collapsed {
    color: #343a40;
}

.faq .faq-list a.collapsed:hover {
    color: #154252;
}

.faq .faq-list a.collapsed i::before {
    content: "\eab2" !important;
}

/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.team {
    background: #fff;
    padding: 60px 0;
}

.team .member {
    margin-bottom: 20px;
    overflow: hidden;
    border-radius: 5px;
    background: #fff;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

.team .member .member-img {
    position: relative;
    overflow: hidden;
}

.team .member .social {
    position: absolute;
    left: 0;
    bottom: 30px;
    right: 0;
    opacity: 0;
    transition: ease-in-out 0.3s;
    text-align: center;
}

.team .member .social a {
    transition: color 0.3s;
    color: #2a2c39;
    margin: 0 3px;
    padding-top: 7px;
    border-radius: 50px;
    width: 36px;
    height: 36px;
    background: #1A5468;
    display: inline-block;
    transition: ease-in-out 0.3s;
    color: #fff;
}

.team .member .social a:hover {
    background: #154252;
}

.team .member .social i {
    font-size: 18px;
}

.team .member .member-info {
    padding: 25px 15px;
}

.team .member .member-info h4 {
    font-weight: 700;
    margin-bottom: 5px;
    font-size: 18px;
    color: #2a2c39;
}

.team .member .member-info span {
    display: block;
    font-size: 13px;
    font-weight: 400;
    color: #aaaaaa;
}

.team .member .member-info p {
    font-style: italic;
    font-size: 14px;
    line-height: 26px;
    color: #777777;
}

.team .member:hover .social {
    opacity: 1;
    bottom: 15px;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info {
    width: 100%;
    background: #fff;
}

.contact .info i {
    font-size: 20px;
    color: #1A5468;
    float: left;
    width: 44px;
    height: 44px;
    background: #ffecde;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    transition: all 0.3s ease-in-out;
}

.contact .info h4 {
    padding: 0 0 0 60px;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #2a2c39;
}

.contact .info p {
    padding: 0 0 0 60px;
    margin-bottom: 0;
    font-size: 14px;
    color: #555974;
}

.contact .info .email,
.contact .info .phone {
    margin-top: 40px;
}

.contact .info .email:hover i,
.contact .info .address:hover i,
.contact .info .phone:hover i {
    background: #154252;
    color: #fff;
}

.contact .php-email-form {
    width: 100%;
    background: #fff;
}

.contact .php-email-form .form-group {
    padding-bottom: 8px;
}

.contact .php-email-form .validate {
    display: none;
    color: red;
    margin: 0 0 15px 0;
    font-weight: 400;
    font-size: 13px;
}

.contact .php-email-form .error-message {
    display: none;
    color: #fff;
    background: #ed3c0d;
    text-align: left;
    padding: 15px;
    font-weight: 600;
}

.contact .php-email-form .error-message br+br {
    margin-top: 25px;
}

.contact .php-email-form .sent-message {
    display: none;
    color: #fff;
    background: #18d26e;
    text-align: center;
    padding: 15px;
    font-weight: 600;
}

.contact .php-email-form .loading {
    display: none;
    background: #fff;
    text-align: center;
    padding: 15px;
}

.contact .php-email-form .loading:before {
    content: "";
    display: inline-block;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    margin: 0 10px -6px 0;
    border: 3px solid #18d26e;
    border-top-color: #eee;
    -webkit-animation: animate-loading 1s linear infinite;
    animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
    border-radius: 0;
    box-shadow: none;
    font-size: 14px;
}

.contact .php-email-form input {
    height: 44px;
}

.contact .php-email-form textarea {
    padding: 10px 12px;
}

.contact .php-email-form button[type="submit"] {
    background: #1A5468;
    border: 0;
    padding: 10px 24px;
    color: #fff;
    transition: 0.4s;
    border-radius: 50px;
}

.contact .php-email-form button[type="submit"]:hover {
    background: #154252;
}

@-webkit-keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }

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

@keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }

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

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
    padding: 15px 0;
    margin-top: 0;
    min-height: 390px;
    background: url(../img/unsplash-2.png) top no-repeat;
    background-size: cover;
    /*text-align: center;*/
}

.breadcrumbs p {
    margin-top: 50px;
    color: #1A5468;
    font-size: 1rem;
}

.breadcrumbs h2 {
    margin-top: 14rem;
    font-size: 32px;
    font-weight: 400;
    color: #1A5468;
}

.breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 25px 0 0 0;
    margin: 0;
    font-size: 18px;
    /*justify-content: center;*/
}

@media (max-width: 992px) {
    .breadcrumbs ol {
        margin-top: 10px;
    }
}

.breadcrumbs ol li+li {
    padding-left: 10px;
}

.breadcrumbs ol li {
    color: #1A5468;
}

.breadcrumbs ol li a {
    color: #434343;
}

.breadcrumbs ol li+li::before {
    display: inline-block;
    padding-right: 10px;
    color: #1A5468;
    content: "\f138";
    font: normal normal normal 14px/1 FontAwesome;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
}

@media (max-width: 768px) {
    .breadcrumbs .d-flex {
        display: block !important;
    }

    .breadcrumbs ol {
        display: block;
    }

    .breadcrumbs ol li {
        display: inline-block;
    }
}

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
    padding-top: 40px;
}

.portfolio-details .portfolio-details-container {
    position: relative;
}

.portfolio-details .portfolio-details-carousel {
    position: relative;
    z-index: 1;
}

.portfolio-details .portfolio-details-carousel .owl-nav,
.portfolio-details .portfolio-details-carousel .owl-dots {
    margin-top: 5px;
    text-align: left;
}

.portfolio-details .portfolio-details-carousel .owl-dot {
    display: inline-block;
    margin: 0 10px 0 0;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ddd !important;
}

.portfolio-details .portfolio-details-carousel .owl-dot.active {
    background-color: #1A5468 !important;
}

.portfolio-details .portfolio-info {
    padding: 30px;
    position: absolute;
    right: 0;
    bottom: -70px;
    background: #fff;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.portfolio-details .portfolio-info h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.portfolio-details .portfolio-info ul {
    list-style: none;
    padding: 0;
    font-size: 15px;
}

.portfolio-details .portfolio-info ul li+li {
    margin-top: 10px;
}

.portfolio-details .portfolio-description {
    padding-top: 50px;
}

.portfolio-details .portfolio-description h2 {
    width: 50%;
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
    padding: 0 0 0 0;
}

@media (max-width: 768px) {
    .portfolio-details .portfolio-info {
        position: static;
        margin-top: 30px;
    }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
    background: #113650;
    /*background-image: url(../img/bgFooter.png);*/
    background-position: initial;
    background-repeat: no-repeat;
    background-size: cover;
    color: #ffffff;
    font-size: 14px;
    /* text-align: center; */
    padding: 1px 0 20px 0;
}

#footer h3 {
    font-size: 36px;
    font-weight: 700;
    color: #2D2828;
    position: relative;
    font-family: "MontserratSemiBold", sans-serif;
    padding: 0;
    margin: 0 0 15px 0;
}

#footer p {
    font-size: 15px;
    font-style: italic;
    padding: 0;
    margin: 0 0 40px 0;
}

#footer .data_link_icon {
    width: 20px;
    display: flex;
}

#footer .data_link{
    display: flex;
    align-items: center;
    gap: 10px;
}

#footer .social-links {
    margin: 0 0 40px 0;
}

@media (max-width: 767px) {
    #footer .data_link {
        justify-content: center;
    }
    #footer .social-links {
        margin: 0 0 0 0;
    }
}

#footer .social-links a {
    font-size: 18px !important;
    display: inline-block;
    color: #2D2828;
    line-height: 1;
    padding: 8px 0;
    margin-right: 4px;
    border-radius: 50%;
    text-align: center;
    width: 20px;
    height: 36px;
    transition: 0.3s;
}

#footer .social-links a:hover {
    color: #1A5468;
    text-decoration: none;
}

#footer .copyright {
    margin: 0 0 5px 0;
}

#footer .credits {
    font-size: 13px;
    text-align: center;
}

#footer hr {
    border-top: 1px solid rgba(255, 255, 255, 0.09);
}

#footer .subscribe {
    line-height: 2.5;
    text-align: center;
    display: block;
}

#footer .subscribe-form {
    justify-items: center;
    display: inline-flex;
}

#footer .subscribe-form input {
    font-size: 13px;
    height: auto;
    border: 0;
}

#footer .subscribe-form button {
    font-size: 13px;
}

#footer .footer-logo {
    max-width: 176px;
}

#footer .footer-logo-two {
    display: block;
    margin-top: 10px;
    max-width: 176px;
    margin-left: -2px;
}

#footer .footer-p-details {
    margin: 20px 0 40px 0;
    font-size: 14px;
    font-style: normal;
}

#footer .contact-us span {
    display: block;
    padding-top: 5px;
    font-size: 13px;
    font-style: normal;
}

#footer .useful-links ul {
    list-style-type: none;
}

#footer .useful-links ul li {
    padding-top: 4px;
}

#footer .useful-links ul li a {
    color: #ffffff;
    font-size: 13px;
}

#footer.inner-page {
    background: #ffffff;
    color: #949494;
    font-size: 14px;
    /*text-align: center;*/
    padding: 30px 0;
}

#footer.inner-page h3 {
    font-size: 36px;
    font-weight: 700;
    color: #949494;
    position: relative;
    font-family: "MontserratSemiBold", sans-serif;
    padding: 0;
    margin: 0 0 15px 0;
}

#footer.inner-page h6 {
    font-weight: 600;
    color: #0c3a59;
}

#footer.inner-page p {
    font-size: 15px;
    font-style: italic;
    padding: 0;
    margin: 0 0 40px 0;
}

#footer.inner-page .social-links {
    margin: 0 0 40px 0;
}

#footer.inner-page .social-links a {
    font-size: 18px;
    display: inline-block;
    color: #949494;
    line-height: 1;
    padding: 8px 0;
    margin-right: 4px;
    border-radius: 50%;
    text-align: center;
    width: 36px;
    height: 36px;
    transition: 0.3s;
}

#footer.inner-page .social-links a:hover {
    color: #1A5468;
    text-decoration: none;
}

#footer.inner-page .copyright {
    margin: 0 0 5px 0;
}

#footer.inner-page .credits {
    font-size: 13px;
    text-align: center;
}

#footer.inner-page hr {
    border-top: 1px solid #c9c9c9;
}

#footer.inner-page .subscribe {
    line-height: 2.5;
    text-align: center;
    display: block;
}

#footer.inner-page .subscribe-form {
    justify-items: center;
    display: inline-flex;
}

#footer.inner-page .subscribe-form input {
    font-size: 13px;
    height: auto;
    /*border: 0;*/
}

#footer.inner-page .subscribe-form input[type="text"] {
    border: 1px solid #ebebeb !important;
}

#footer.inner-page .subscribe-form button {
    font-size: 13px;
}

#footer.inner-page .footer-logo {
    max-width: 85px;
    height: auto;
}

#footer.inner-page .footer-p-details {
    margin: 20px 0 40px 0;
    font-size: 0.8rem;
    font-style: normal;
}

#footer.inner-page .contact-us span {
    display: block;
    padding-top: 5px;
    font-size: 13px;
    font-style: normal;
}

#footer.inner-page .useful-links ul {
    list-style-type: none;
}

#footer.inner-page .useful-links ul li {
    padding-top: 4px;
}

#footer.inner-page .useful-links ul li a {
    color: #949494;
    font-size: 13px;
}


#hero .social-links a {
    color: #1A5468;
    padding: 0 10px;
}

#hero .social-links a:hover {
    color: #1A5468;
}

#hero fieldset {
    min-width: unset !important;
    padding: 20px !important;
    margin: unset !important;
    border: 1px solid #ccc !important;
    transform: rotate(180deg) !important;
}

#hero fieldset * {
    transform: rotate(180deg);
}

#hero legend {
    font-size: 1rem;
    color: #1A5468;
    width: auto;
    padding-left: 15px;
    padding-right: 15px;
}

#header .cta-btn {
    font-family: "MontserratSemiBold", sans-serif;
    text-transform: uppercase;
    font-size: 0.8rem;
    display: inline-block;
    padding: 7px 30px;
    border-radius: 50px;
    color: #fff;
    background: #1A5468;
}

#header .cta-btn:hover {
    background: #fff;
    color: #154252;
}

.statistics * {
    font-family: 'MontserratSemiBold' !important;
}

.statistics p {
    width: auto !important;
}

/*--------------------------------------------------------------
# Ourclient
--------------------------------------------------------------*/
#ourclient {
    background: linear-gradient(0deg, #ffffff 0%, #f9f9f9 25%, #f9f9f9 50%, #f9f9f9 75%, #ffffff 100%);
    padding-bottom: 60px;
}

.ourclient .ourclient-item {
    background-color: #fff;
    text-align: center;
    border-radius: 4px;
    overflow: hidden;
    padding: 10px;
    margin: 15px;
    width: 239px;
    height: 97px;
}

.ourclient .ourclient-item img {
    max-height: 76px;
    height: auto;
    max-width: 200px;
    width: auto;
    margin: 0 auto;
}

.ourclient p.details {
    font-size: 14px;
    color: #949494;
    max-width: 285px;
    display: inline-block;
}

.ourclient .section-title h2,
.ourclient .section-title p {
    text-align: left;
    padding-left: 0;
}

.ourclient .btn-get-started {
    font-family: "MontserratSemiBold", sans-serif;
    text-transform: uppercase;
    /* font-weight: 700; */
    font-size: 14px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 26px;
    border-radius: 9px;
    transition: 0.5s;
    margin: 10px 10px 10px 0;
    color: #fff;
    background: #1A5468;
    margin-top: 62px
}

/*--------------------------------------------------------------
# HappyClient
--------------------------------------------------------------*/
.happyClient {
    background: #ffffff;
    padding-bottom: 60px;
}

.happyClient .container {
    background: url(../img/happy-client-bg.png) no-repeat center;
    background-size: 100%;
    background-position: center 83px;
}

.happyClient .comma {
    font-family: 'MontserratSemiBold', sans-serif;
    font-size: 112px;
    letter-spacing: -7px;
    color: #1A5468;
    display: block;
    line-height: 0.5;
    padding-top: 57px;
}

.happyClient .section-title .details {
    font-size: 13px;
    color: #949494;
    max-width: 630px;
    display: inline-block
}

.happyClient .client-details img {
    max-width: 68px;
    max-height: 68px;
    width: auto;
    height: auto;
    border-radius: 50%;
}

.happyClient .owl-stage {
    display: flex;
}

.happyClient .happyClient-item {
    /*margin: 0 15px;*/
    text-align: center;
}

.happyClient .owl-item.active.center {
    padding-top: 50px;
    padding-left: 30px;
    padding-right: 15px;
}

.happyClient .client-details .happyClient-position {
    display: block;
    font-size: 12px;
    text-align: center;
}

.happyClient .client-details .happyClient-name {
    display: block;
    font-size: 12px;
    text-align: center;
    font-weight: bold;
    padding-top: 15px;
}

.happyClient .owl-item,
.happyClient .owl-item.active {
    opacity: 0.3 !important;
}

.happyClient .happyClient-details-carousel .owl-item.active {
    opacity: 1 !important;
}

.happyClient .happyClient-details-carousel .owl-item {
    display: inline-flex;
}

.happyClient .owl-item .happyClient-name,
.happyClient .owl-item .happyClient-position,
.happyClient .owl-item.active .happyClient-name,
.happyClient .owl-item.active .happyClient-position {
    display: none;
}

.happyClient .owl-item.active.center {
    opacity: 1 !important;
}

.happyClient .owl-item.active.center .happyClient-name,
.happyClient .owl-item.active.center .happyClient-position {
    display: block;
}

.happyClient .owl-item.active.center img {
    max-width: 85px;
    max-height: 85px;
    width: auto;
    height: auto;
}

/*--------------------------------------------------------------
# Last News
--------------------------------------------------------------*/
.lastNews {
    /*background: #fff;*/
    padding: 50px 0;
}

.lastNews .member {
    margin-bottom: 20px;
    overflow: hidden;
    min-height: 328px;
    /*border-radius: 5px;*/
    /*background: #fff;*/
    width: 100%;
}

.lastNews .member .member-img {
    position: relative;
    overflow: hidden;
    background-color: #f7f7f7;
    padding: 40px;
}

.lastNews .member .member-img img {
    max-height: 277px;
    width: 100%;
    height: 240px;
}

.lastNews .member .social {
    position: absolute;
    left: 0;
    bottom: 30px;
    right: 0;
    opacity: 0;
    transition: ease-in-out 0.3s;
    text-align: center;
}

.lastNews .member .social a {
    transition: color 0.3s;
    color: #2a2c39;
    margin: 0 3px;
    padding-top: 7px;
    border-radius: 50px;
    width: 36px;
    height: 36px;
    background: #1A5468;
    display: inline-block;
    transition: ease-in-out 0.3s;
    color: #fff;
}

.lastNews .member .social a:hover {
    background: #154252;
}

.lastNews .member .social i {
    font-size: 18px;
}

.lastNews .member .member-info {
    padding: 25px 15px 25px 15px;
    border: 1px solid #DFDFDF;
    border-top-color: transparent;
}


.lastNews .member .member-info h4 {
    margin-bottom: 10px;
    font-size: 16px;
    color: #2D2828;
    font-family: MontserratMedium;
    /*white-space: nowrap;*/
    /*text-overflow: ellipsis;*/
    /*overflow: hidden;*/
}

.lastNews .member .member-info p {
    font-size: 14px;
    color: #707070;
}

.lastNews .member:hover .social {
    opacity: 1;
    bottom: 15px;
}

.lastNews .badge {
    padding: 0.5em 3em;
    border-radius: 16px;
    font-weight: 100;
    margin-right: 15px;
    font-size: 12px;
}

.lastNews .member-info span.details {
    font-size: 13px;
    color: #1C1C1C;
    height: 77px;
}

@media (max-width: 767px) {
    .lastNews .member-info span.details {
        height: auto !important;
    }
}

.gallery {
    background-image: url("../img/products-bg.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-color: #F3F3F3;
}

.lastNews.gallery .member .member-info {
    padding: 25px;
    border: 0;
    background-color: #DEDEDE;
    border-bottom: 4px solid #1A5468;
}

.lastNews.gallery .member .member-info h4 {
    color: #1A5468;
    font-family: MontserratSemiBold;
    transition: all 0.3s ease;
}

.lastNews.gallery .member {
    position: relative;
}

.lastNews.gallery .member .gallery-details {
    display: none;
    position: absolute;
    color: #ffffff;
    background-color: rgba(26, 84, 104, 0.9);
    width: 100%;
    height: 100%;
    justify-items: center;
    top: 0;
    left: 0;
    padding: 25px 15px;
    z-index: 8;
}

.lastNews.gallery .member .gallery-details a {
    color: #ffffff;
}

.lastNews.gallery .member:hover .gallery-details {
    display: flex !important;
}

/*********************************************
Categories List Grid (New WP)
*********************************************/
.banner-category-list {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 30px;
    position: relative;
}

.banner-category-list-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #11365087;
}

.categories-list-grid {
    display: flex;
    flex-direction: column;
    /*gap: 20px;*/
    min-height: 344px;
    flex-direction: column;
    justify-content: center;
    padding: 20px;
}

.categories-list-grid-second {
    padding: 0;
    min-height: 260px;
}

.lastNews.gallery .member.grid_cat {
    min-height: fit-content;
    display: block;
    width: 230px;
    margin-bottom: 0;
    text-align: start;
    position: relative;
    z-index: 2;
    background: transparent;
}

.categories-list-grid-second .member.grid_cat {
    width: 244px !important;
}

.lastNews.gallery .member.grid_cat:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background-color: #1A5468;
    z-index: 1;
    transition: all 0.3s ease;
    display: none;
}

.lastNews.gallery .member.grid_cat .gallery-details {
    padding: 10px;
    background-color: rgba(26, 84, 104, 0.65) !important;
    transition: all 0.3s ease;
}

.lastNews.gallery .member.grid_cat .member-info {
    background: transparent;
    border: none;
    position: relative;
    z-index: 2;
    padding-block: 33px !important;
    padding-inline: 22px;
}

.lastNews.gallery .member.grid_cat .cat_desc {
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    /* white-space: nowrap; */
}

.lastNews.gallery .categories-list-grid-second .member.grid_cat .member-info {
    padding: 22px 16px;
}

.lastNews.gallery .member.grid_cat .member-info h4 {
    font-size: 20px !important;
    /* color: #fff !important;~ */
}

.lastNews.gallery .categories-list-grid-second .member.grid_cat .member-info h4 {
    font-size: 19px !important;
}

.lastNews.gallery .member.grid_cat:hover:after {
    width: 100%;
}

.lastNews.gallery .member.grid_cat:hover .member-info h4 {
    color: transparent !important;
}

@media screen and (max-width: 767px) {
    .category_description_m p span{
        font-size: 15px !important;
    }
}

/**
COLORS
 */
.text-warning {
    color: #1A5468 !important;
}

a.text-warning:focus,
a.text-warning:hover {
    color: #154252 !important;
}

.btn-warning {
    color: #ffffff;
    background-color: #113650;
    border-color: #113650;
    padding: .375rem 1.75rem;
}

.btn-warning:not(:disabled):not(.disabled).active,
.btn-warning:not(:disabled):not(.disabled):active,
.show>.btn-warning.dropdown-toggle {
    color: #ffffff;
    background-color: #174566;
    border-color: #174566;
    box-shadow: none !important;
}

.btn-warning.focus,
.btn-warning:focus,
.btn-warning:hover {
    color: #ffffff;
    background-color: #174566;
    border-color: #174566;
}

.btn-primary {
    color: #ffffff;
    background-color: #2DAFE6;
    border-color: #2DAFE6;
    padding: .375rem 1.75rem;
}

.btn-primary:not(:disabled):not(.disabled).active,
.btn-primary:not(:disabled):not(.disabled):active,
.show>.btn-primary.dropdown-toggle {
    color: #ffffff;
    background-color: #2792bf;
    border-color: #2792bf;
    box-shadow: none !important;
}

.btn-primary.focus,
.btn-primary:focus,
.btn-primary:hover {
    color: #ffffff;
    background-color: #2792bf;
    border-color: #2792bf;
}


.text-warning-cc {
    color: #1A5468;
}

.btn-outline-warning {
    color: #113650;
    border-color: #113650;
}

.btn-outline-warning:hover {
    color: #ffffff;
    background-color: #174566;
    border-color: #174566;
}

.btn-outline-warning:not(:disabled):not(.disabled).active,
.btn-outline-warning:not(:disabled):not(.disabled):active,
.show>.btn-outline-warning.dropdown-toggle {
    color: #ffffff;
    background-color: #174566;
    border-color: #174566;
}

.btn-outline-warning:not(:disabled):not(.disabled).active:focus,
.btn-outline-warning:not(:disabled):not(.disabled):active:focus,
.show>.btn-outline-warning.dropdown-toggle:focus,
.btn-outline-warning.focus,
.btn-outline-warning:focus {
    box-shadow: none;
}

.text-primary-2 {
    color: #62aeff !important;
}

.btn-light {
    color: #1A5468;
    background-color: #EFF7FD;
    border-color: #EFF7FD;
    padding: .375rem 1.75rem;
}

.btn-light:not(:disabled):not(.disabled).active,
.btn-light:not(:disabled):not(.disabled):active,
.show>.btn-light.dropdown-toggle {
    color: #1A5468;
    background-color: #e0ebf3;
    border-color: #e0ebf3;
    box-shadow: none !important;
}

.btn-light.focus,
.btn-light:focus,
.btn-light:hover {
    color: #1A5468;
    background-color: #e0ebf3;
    border-color: #e0ebf3;
}

/**
Radius
 */
.border-radius-right-0 {
    border-bottom-right-radius: 0 !important;
    border-top-right-radius: 0 !important;
}

.border-radius-left-0 {
    border-bottom-left-radius: 0 !important;
    border-top-left-radius: 0 !important;
}

@media (max-width: 767px) {
    .text-sm-center {
        text-align: center;
    }
}

@media (min-width: 768px) {
    .text-sm-center {
        text-align: initial !important;
    }
}

/* **************************************
              Sub Pages
************************************** */
.sub-pages .nav-menu a {
    color: #000000;
}

.nav-menu a:hover,
.nav-menu .active>a,
.nav-menu li:hover>a {
    color: #2D2828;
}

#header.sub-pages {
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 0 5px #ccc;
}

/*--------------------------------------------------------------
# Services Page
--------------------------------------------------------------*/
.servicesPage {
    padding: 60px 0;
    background: linear-gradient(0deg, #ffffff 0%, #f6f6f6 25%, #f6f6f6 75%, #ffffff 100%);
}

.servicesPage .icon-box {
    padding: 30px;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 2px 29px 0 rgba(68, 88, 144, 0.12);
    transition: all 0.4s ease-in-out;
    width: 100%;
    height: 100%;
}

.servicesPage .icon-box .icon img {
    width: 60px;
}

.servicesPage .icon-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 2px 35px 0 rgba(68, 88, 144, 0.2);
}

/*.servicesPage .icon {*/
/*  position: absolute;*/
/*  left: -20px;*/
/*  top: calc(50% - 30px);*/
/*}*/

.servicesPage .icon i {
    font-size: 64px;
    line-height: 1;
    transition: 0.5s;
}

.servicesPage .title {
    font-size: 14px;
    font-weight: bold;
    margin: 20px 0 5px 0;
    color: #000;
    display: table-caption;
    width: 96px;
    line-height: 1.7;
}

.servicesPage .title a {
    color: #2a2c39;
    transition: ease-in-out 0.3s;
}

.services .title a:hover {
    color: #154252;
}

.servicesPage .description {
    margin: 20px 0 5px 0;
    font-size: 12px;
    line-height: 24px;
    color: #949494;
}

/*--------------------------------------------------------------
# Products Page
--------------------------------------------------------------*/
.productsPage {
    padding-bottom: 60px;
    background: linear-gradient(180deg, #ffffff 0%, #f6f6f6 25%, #f6f6f6 90%, #ffffff 100%);
}

.productsPage .section-title p {
    max-width: 595px;
}

.productsPage .product-container {
    background-color: #ffffff;
    padding: 50px 50px 0 50px;
    text-align: center;
}

.productsPage>.product-container>.row>.col-md-4:first-child {
    padding-left: 40px;
}

.productsPage>.product-container>.row>.col-md-4:last-child {
    padding-right: 40px;
}

.productsPage .cta-btn {
    font-family: "MontserratSemiBold", sans-serif;
    text-transform: uppercase;
    font-size: 13px;
    display: inline-block;
    padding: 9px 40px;
    border-radius: 50px;
    color: #fff;
    background: #1A5468;
}

.productsPage .img-fixed-width {
    max-width: 630px;
    width: 100%;
}

.productsPage.productsPage-2 {
    /*margin-bottom: 60px;*/
    background: #113650;
}

.productsPage.productsPage-2 .section-title p {
    max-width: 595px;
}

.productsPage.productsPage-2 .product-container {
    background-color: transparent;
    padding: 50px 50px 0 50px;
    text-align: center;
}

.productsPage.productsPage-2 .product-container .c-s-title,
.productsPage.productsPage-2 .product-container .c-details {
    color: #ffffff;
}

.productsPage.productsPage-2>.product-container>.row>.col-md-4:first-child {
    padding-left: 40px;
}

.productsPage.productsPage-2>.product-container>.row>.col-md-4:last-child {
    padding-right: 40px;
}

.productsPage.productsPage-2 .cta-btn {
    font-family: "MontserratSemiBold", sans-serif;
    text-transform: uppercase;
    font-size: 13px;
    display: inline-block;
    padding: 9px 40px;
    border-radius: 50px;
    color: #fff;
    background: #1A5468;
}

.productsPage.productsPage-2 .img-fixed-width {
    max-width: 630px;
    width: 100%;
}

/*--------------------------------------------------------------
# Careers Page
--------------------------------------------------------------*/
.careersPage {
    background: linear-gradient(180deg, #ffffff 0%, #f6f6f6 100%);
}

.careersPage .section-title p .title {
    max-width: 260px;
}

.careersPage .section-title p .details {
    font-size: 13px;
    color: #949494;
    max-width: 545px;
    display: inline-block;
    font-weight: 100;
    font-family: "MontserratSemiBold", sans-serif;
}

/*--------------------------------------------------------------
# Careers Page sections
--------------------------------------------------------------*/
.careersPage-sections {
    background: url(../img/wave.svg) no-repeat;
    min-height: 120px;
    height: auto;
}

.careersPage-sections .main-icon {
    background-color: #fff;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: inline-flex;
}

.careersPage-sections .number {
    color: #949494;
    font-size: 13px;
    padding-top: 10px;
}

.careersPage-sections .title {
    color: #000000;
    font-size: 13px;
    font-weight: 600;
}

/*--------------------------------------------------------------
# Careers Page search
--------------------------------------------------------------*/
.careersPage-search {
    padding-bottom: 60px;
    background: linear-gradient(180deg, #f6f6f6 0%, #f6f6f6 90%, #ffffff 100%);
}

.careersPage-search .card {
    border: 0;
    border-radius: 10px;
}

.careersPage-search .card .card-body {
    padding: 2rem;
}

.careersPage-search .card .card-body .card-title {
    font-weight: 600;
}

.careersPage-search .card .card-body .card-subtitle {
    font-size: 12px;
}

.careersPage-search .card .card-body .card-subtitle .time {
    color: #1A5468;
    background-color: #E8EFF7;
    padding: 3px 10px;
    border-radius: 3px;
}

.careersPage-search .card .card-body .card-text {
    color: #5C7587;
    font-size: 13px;
}

.careersPage-search .card .card-body a {
    border-radius: 10px;
}

/*--------------------------------------------------------------
# Career Details
--------------------------------------------------------------*/
.careerDetails {
    padding-bottom: 60px;
    background: linear-gradient(180deg, #f6f6f6 0%, #f6f6f6 90%, #ffffff 100%);
}

.careerDetails .career-left-details,
.careerDetails .career-right-details-1,
.careerDetails .career-right-details-2 {
    background-color: #ffffff;
    margin-top: 15px;
}

.careerDetails .career-right-details-1,
.careerDetails .career-right-details-2 {
    font-size: 12px;
}

.careerDetails .time {
    color: #1A5468;
    background-color: #E8EFF7;
    padding: 3px 10px;
    border-radius: 3px;
}

.careerDetails .text-muted {
    font-size: 12px;
    color: #434343 !important;
}

.careerDetails .text-muted span {
    margin-right: 40px;
}

.careerDetails .content-title {
    font-size: 14px;
}

.careerDetails .content-details {
    line-height: 1.9;
}

.careerDetails ul {
    padding-inline-start: 13px;
}

.careerDetails .career-right-details-title {
    font-size: 14px;
}

.careerDetails .dash {
    position: relative;
}

.careerDetails .dash:before {
    content: '';
    position: absolute;
    bottom: -1px;
    border-bottom: 2px solid #1A5468;
    width: 35%;
}

.border-radius-10 {
    border-radius: 10px;
}

.font-size-12 {
    font-size: 0.8rem !important;
}

.font-size-14 {
    font-size: 1.2rem !important;
}

.font-size-20 {
    font-size: 20px !important;
}

.margin-left-80 {
    margin-left: 80px;
}

/*--------------------------------------------------------------
# Contact Us page
--------------------------------------------------------------*/
.contactUs-first-details {
    position: relative;
    padding-top: 0;
    overflow: initial;
    background: linear-gradient(180deg, #ffffff 0%, #f6f6f6 50%, #f6f6f6 75%, #ffffff 100%);
    min-height: 200px;
}

.contactUs-first-details .contactUs-details-container {
    /*position: absolute;*/
    /*width: 100%;*/
    background-color: #ffffff;
    min-height: 50px;
    margin-top: -20px;
    text-align: center;
}

.contactUs-first-details .contactUs-circle {
    text-align: center;
    height: 60px;
    width: 60px;
    border-radius: 50%;
    background-color: #1A5468;
    color: #ffffff;
    display: inline-block;
    font-size: 41px;
    margin-bottom: 20px;
}

.contactUs-first-details .v-dash {
    position: relative;
}

.contactUs-first-details .v-dash:before {
    content: '';
    position: absolute;
    top: 20px;
    border-right: 1px solid #ccc;
    height: 75%;
    right: 0;
}

.contactUs-second-details {
    background-color: #ffffff;
}

.contactUs-second-details .section-title p {
    max-width: 377px;
}

.input-icon {
    position: absolute;
    top: 4px;
    right: 10px;
    color: #1A5468;
}

.contactUs-third-details {
    padding-top: 0;
    height: 350px;
}

/*--------------------------------------------------------------
# About Us page
--------------------------------------------------------------*/
.aboutUs {
    background-color: #ffffff;
}

.aboutUs .max-width-395 {
    width: 395px;
    line-height: 2;
}

.aboutUs .img-first-section {
    text-align: center;
    width: 415px;
    height: 415px;
    overflow: hidden;
    border-radius: 50%;
    /*position: relative;*/
}

.aboutUs .img-first-section:before {
    content: ' ';
    background-image: url(../img/half-c.png);
    background-size: 400px;
    background-repeat: no-repeat;
    position: absolute;
    top: 30px;
    right: 6%;
    width: 415px;
    height: 415px;
}

@media (max-width: 767px) {
    .aboutUs .img-first-section {
        text-align: center;
        width: 315px;
        height: 315px;
        overflow: hidden;
        border-radius: 50%;
        /*position: relative;*/
    }

    .aboutUs .img-first-section:before {
        content: ' ';
        background-image: url(../img/half-c.png);
        background-size: 300px;
        background-repeat: no-repeat;
        position: absolute;
        top: 30px;
        right: 6%;
        width: 315px;
        height: 315px;
    }
}

.aboutUs-3 {
    background-color: #113650;
    padding: 0;
    min-height: 500px;
}

.aboutUs-3 .container {
    background-image: url(../img/about-3-bg.png);
    background-repeat: no-repeat;
    background-position: 60% bottom;
    background-size: 100%;
    height: 100%;
}

/*.aboutUs-3 .portfolio-container{*/
/*  max-width: 770px;*/
/*}*/
.aboutUs-3 .portfolio-item {
    margin-bottom: 20px;
}

.aboutUs-3 .portfolio-item .portfolio-img {
    overflow: hidden;
    border-radius: 7px;
    padding: 20px;
}

.aboutUs-3 .portfolio-item .portfolio-img img {
    transition: all 0.8s ease-in-out;
}

.aboutUs-3 .portfolio-item:hover .portfolio-img img {
    transform: scale(1.2);
}

@media (max-width: 767px) {
    .aboutUs-3 .portfolio-item {
        text-align: center;
    }

    .aboutUs-3 .portfolio-item {
        margin-bottom: 5px;
    }

    .aboutUs-3 .portfolio-item .portfolio-img {
        overflow: hidden;
        border-radius: 7px;
        padding: 5px;
    }
}

.aboutUs-2 {
    background-image: url(../img/about-2-bg.png), linear-gradient(0deg, #ffffff 0%, #f6f6f6 25%, #f6f6f6 50%, #f6f6f6 75%, #ffffff 100%);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 0;
    min-height: 500px;
    height: auto;
}

.aboutUs-2 .d-1 {
    padding: 20px;
    text-align: center;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background-color: #FFFFFF;
    font-size: 3rem;
}

@media (max-width: 767px) {
    .aboutUs-2 .d-1 {
        padding: 20px;
        text-align: center;
        width: 100px;
        height: 100px;
        border-radius: 50%;
        background-color: #FFFFFF;
        font-size: 2rem;
    }
}

.aboutUs-2 .d-2 {
    padding: 20px;
    text-align: center;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background-color: transparent;
    border: 1px dashed #898989;
    direction: ltr;
}

.aboutUs-2 .d-2 .data-01 {
    position: absolute;
    top: -90px;
    left: 113px;
}

.aboutUs-2 .d-2 .data-01 .number {
    display: block;
    color: #37C827;
    font-size: 1rem;
}

.aboutUs-2 .d-2 .data-01 .title {
    display: block;
    color: #6c757d;
    font-size: 1rem;
    padding-top: 5px;
    padding-bottom: 5px;
}

.aboutUs-2 .d-2 .data-01 .circle {
    background-color: #37C827;
    width: 70px;
    height: 70px;
    border-radius: 50%;
}

.aboutUs-2 .d-2 .data-02 {
    position: absolute;
    top: 42px;
    right: -193px;
    text-align: left;
}

.aboutUs-2 .d-2 .data-02 .number {
    display: block;
    color: #F8C90D;
    font-size: 1rem;
    padding-left: 10px;
}

.aboutUs-2 .d-2 .data-02 .title {
    display: block;
    color: #6c757d;
    font-size: 1rem;
    padding: 5px;
    padding-left: 10px;
    max-width: 80%;
}

.aboutUs-2 .d-2 .data-02 .circle {
    background-color: #F8C90D;
    width: 70px;
    height: 70px;
    border-radius: 50%;
}

.aboutUs-2 .d-2 .data-03 {
    position: absolute;
    bottom: 40px;
    right: -194px;
    text-align: left;
}

.aboutUs-2 .d-2 .data-03 .number {
    display: block;
    color: #113CE9;
    font-size: 1rem;
    padding-left: 10px;
}

.aboutUs-2 .d-2 .data-03 .title {
    display: block;
    color: #6c757d;
    font-size: 1rem;
    padding: 5px;
    padding-left: 10px;
    max-width: 80%;
}

.aboutUs-2 .d-2 .data-03 .circle {
    background-color: #113CE9;
    width: 70px;
    height: 70px;
    border-radius: 50%;
}

.aboutUs-2 .d-2 .data-04 {
    position: absolute;
    bottom: -90px;
    left: 101px;
}

.aboutUs-2 .d-2 .data-04 .number {
    display: block;
    color: #F92C48;
    font-size: 1rem;
}

.aboutUs-2 .d-2 .data-04 .title {
    display: block;
    color: #6c757d;
    font-size: 1rem;
    padding-top: 5px;
    padding-bottom: 5px;
}

.aboutUs-2 .d-2 .data-04 .circle {
    background-color: #F92C48;
    width: 70px;
    height: 70px;
    border-radius: 50%;
}


.aboutUs-2 .d-2 .data-05 {
    position: absolute;
    bottom: 40px;
    left: -163px;
    text-align: right;
}

.aboutUs-2 .d-2 .data-05 .number {
    display: block;
    color: #1A5468;
    font-size: 1rem;
    padding-right: 15px;
}

.aboutUs-2 .d-2 .data-05 .title {
    display: block;
    color: #6c757d;
    font-size: 1rem;
    padding: 5px;
    max-width: 95%;
}

.aboutUs-2 .d-2 .data-05 .circle {
    background-color: #1A5468;
    width: 70px;
    height: 70px;
    border-radius: 50%;
}


.aboutUs-2 .d-2 .data-06 {
    position: absolute;
    top: 42px;
    left: -166px;
    text-align: right;
}

.aboutUs-2 .d-2 .data-06 .number {
    display: block;
    color: #C229D9;
    font-size: 1rem;
    padding-right: 15px;
}

.aboutUs-2 .d-2 .data-06 .title {
    display: block;
    color: #6c757d;
    font-size: 1rem;
    padding: 5px;
    max-width: 95%;
}

.aboutUs-2 .d-2 .data-06 .circle {
    background-color: #C229D9;
    width: 70px;
    height: 70px;
    border-radius: 50%;
}

.aboutUs-2 .d-2 .data-01,
.aboutUs-2 .d-2 .data-02,
.aboutUs-2 .d-2 .data-03,
.aboutUs-2 .d-2 .data-04,
.aboutUs-2 .d-2 .data-05,
.aboutUs-2 .d-2 .data-06 {
    cursor: pointer;
}

@keyframes fadein {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Firefox < 16 */
@-moz-keyframes fadein {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Safari, Chrome and Opera > 12.1 */
@-webkit-keyframes fadein {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Internet Explorer */
@-ms-keyframes fadein {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Opera < 12.1 */
@-o-keyframes fadein {
    from {
        display: none;
    }

    to {
        display: block;
    }
}

.data-slider {
    display: none;
    -webkit-animation: fadein 2s;
    /* Safari, Chrome and Opera > 12.1 */
    -moz-animation: fadein 2s;
    /* Firefox < 16 */
    -ms-animation: fadein 2s;
    /* Internet Explorer */
    -o-animation: fadein 2s;
    /* Opera < 12.1 */
    animation: fadein 2s;
}

.data-slider.active {
    display: block;
}

/*.aboutUs-2 .d-2 .data-01 .circle,*/
/*.aboutUs-2 .d-2 .data-02 .circle,*/
/*.aboutUs-2 .d-2 .data-03 .circle,*/
/*.aboutUs-2 .d-2 .data-04 .circle,*/
/*.aboutUs-2 .d-2 .data-05 .circle,*/
/*.aboutUs-2 .d-2 .data-06 .circle{*/
/*  padding: 1.2rem;*/
/*}*/
/*.aboutUs-2 .d-2 .data-01 .circle img,*/
/*.aboutUs-2 .d-2 .data-02 .circle img,*/
/*.aboutUs-2 .d-2 .data-03 .circle img,*/
/*.aboutUs-2 .d-2 .data-04 .circle img,*/
/*.aboutUs-2 .d-2 .data-05 .circle img,*/
/*.aboutUs-2 .d-2 .data-06 .circle img{*/
/*  width: 100%;*/
/*  height: auto;*/
/*}*/
.d-2-data-logo img {
    height: auto;
    width: 1.5rem;
}

.min-h-58ex {
    height: 58ex;
}

@media (max-width: 767px) {
    .aboutUs-2 .d-2 {
        width: 262px;
        height: 262px;
    }

    .aboutUs-2 .d-2 .data-01 {
        top: -90px;
        left: 96px;
    }

    .aboutUs-2 .d-2 .data-04 {
        bottom: -90px;
        left: 85px;
    }

    .d-slider-section .title {
        visibility: hidden;
    }

    .min-h-58ex {
        height: 40ex;
    }
}

.padding-top-6-rem {
    padding-top: 6rem !important;
}

@media (min-width: 1024px) {
    .title-fluid-h2 {
        min-width: 404px !important;
    }

    .img-fluid-p {
        max-width: 87% !important;
    }

    .pl-88 {
        padding-left: 88px !important;
    }
}

.img-fluid-p {
    max-width: 100%;
}

.title-fluid-h2 {
    min-width: unset;
}

.carousel-indicators {
    margin-right: 13%;
    margin-left: 13%;
}

.pl-88 {
    padding-left: 0;
}

.empty-space {
    max-width: 162px;
    background-color: #fff1e1 !important;
}

/*******************
Happy client slider

********************/
.happyClient-details-carousel.slider-for {
    max-width: 635px;
    text-align: center;
    margin: 0 auto;
}

.happyClient-details-carousel .slick-slide {
    float: unset !important;
}

.happyClient-carousel.slider-nav button {
    display: none !important;
}

.happyClient .happyClient-carousel .happyClient-item.slick-slide {
    opacity: 0.6;
    padding-top: 0;
    transition: 20ms opacity linear, 20ms padding-top linear;
}

.happyClient-carousel .slick-active.slick-center {
    padding-top: 38px !important;
    opacity: 1 !important;
}

.happyClient .happyClient-carousel .slick-active.slick-center .client-details img {
    max-width: 84px;
    max-height: 84px;
}

.font-size-08rem {
    font-size: 1rem !important;
}

.w-120px {
    width: 120px;
}

.lh-1 {
    line-height: 1;
}

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

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

.fs-12 {
    font-size: 12px !important;
}

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

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

.circle-container {
    position: relative;
    display: block;
}

.circle-container .red-circle {
    width: 400px;
    height: 400px;
    background: linear-gradient(180deg, rgba(143, 21, 55, 0.5) 0%, rgba(143, 21, 55, 1) 100%);
    border-radius: 50%;
}

.circle-container .image-circle {
    position: absolute;
    width: 400px;
    height: 400px;
    top: 0;
    left: 20px;
    border-radius: 50%;
    overflow: hidden;
}

.circle-container .image-circle img {
    width: 460px;
    max-width: 560px;
}

.circle-container .text-circle {
    position: absolute;
    width: 150px;
    height: 150px;
    bottom: 20px;
    right: 70px;
    border-radius: 50%;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 0 5px #707070;
    padding: 15px;
}

.text-circle-content {
    width: 100%;
    height: 100%;
    border: 1px dashed #707070;
    border-radius: 50%;
    position: relative;
    text-align: center;
    padding-top: 22px;
}

.text-707070 {
    color: #707070;
}

.text-1A5468 {
    color: #1A5468 !important;
}

.fw-600 {
    font-weight: 600;
}

.text-Mirza {
    font-family: "MirzaMedium";
}

.contactUs-title {
    font-size: 2.3rem;
}

.form-control {
    border-radius: 0.4rem;
}

.map-container {
    width: 100%;
    display: block;
    max-height: 350px;
}

@media (max-width: 767px) {
    .new_details img{
        width: 100%;
        height: 400px;
    }
    .map-container iframe{
        max-height: 340px !important;
    }

    .new_details p span{
        font-size: 15px !important;
    }
    .new_details table {
        border: none;
    }

    .new_details table tr {
        height: auto !important;
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .new_details table tr td {
        width: 100% !important;
    }

    .new_details table tr td img {
        width: 100% !important;
        object-fit: contain;
        height: revert-layer !important;
    }
}
.w-55px {
    width: 55px;
}

.service-box {
    box-shadow: 0 2px 12px rgb(0 0 0 / 8%);
    border-radius: 12px;
    padding: 30px 20px;
    background-color: #fff;
    position: relative;
}

.contact-us-inner-section {
    color: #ffffff;
    background-color: #1A5468;
    background-image: url(../img/section_bg.png);
    background-repeat: no-repeat;
    background-position: top;
    background-size: cover;
    margin: 50px 0;
    padding: 50px;
}

.blog-details {
    margin-top: 7rem;
}

.related-blog {
    border: 1px solid #70707070;
    overflow: hidden;
}

.related-blog .img-content {
    width: 110px;
    max-height: 80px;
}

.related-blog .text-content {
    margin: auto 15px;
}

.related-blog .text-content h4 {
    width: 225px;
}

.d-ellipsis {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.about-content .about-icon {
    background-image: url(../img/polygon2.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100%;
    width: 590px;
    height: 75px;
    margin: 5px 20px;
}

.about-content-data {
    width: 225rem;
}

.w-35px {
    width: 35px;
}

.about-us-inner-section {
    color: #ffffff;
    background-color: #1A5468;
    background-image: url(../img/ruta.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    margin: 50px 0;
    padding: 50px;
}

@media (max-width: 767px) {
    .about-us-inner-section {
        background-image: none !important;
    }
}

.width-height-50 {
    width: 50px;
    height: 50px;
}

.value-content {
    background-color: #ffffff;
    padding: 15px;
    color: #2D2828;
    border-radius: 4px;
}

.text-2D2828 {
    color: #2D2828;
}

/*.ourStrategicObjectives{*/
/*  background-color: #DFDFDF;*/
/*  background-image: url("../img/OurStrategicObjectives.png");*/
/*  background-repeat: no-repeat;*/
/*  background-position: left;*/
/*  background-size: auto 100%;*/
/*}*/
.ourStrategicObjectives-data {
    max-width: 441px;
    margin-left: 33px;
}

.ourStrategicObjectives-text {
    background-color: #ffffff;
    padding: 15px 15px 15px 60px;
}

.ourStrategicObjectives-number {
    width: 75px;
    height: 75px;
    background-color: #1A5468;
    color: #ffffff;
    font-size: 2rem;
    text-align: center;
    border-radius: 50%;
    position: absolute;
    padding: 14px 21px;
    left: -33px;
    top: -2px;
}

@media (max-width: 767px) {
    .ourStrategicObjectives-number {
        top: -16px;
    }
}

.ourStrategicObjectives-container {
    background-color: #DFDFDF;
}

.h-31rem {
    height: 34.4rem;
}

.steps {
    background-image: url(../img/map_bg.png);
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: auto 62%;
}

.step1,
.step2,
.step3,
.step4 {
    position: relative;
}

.step-content {
    position: absolute;
    top: 31px;
    left: 67px;
}

.step-content {
    position: absolute;
    top: 20px;
    left: 67px;
}

@media (max-width: 767px) {
    .step-content {
        position: absolute;
        top: 30px;
        left: 88px;
    }
}

.step-content img {
    max-width: 33px;
    max-height: 22px;
    margin-top: -13px;
}

.step-content span {
    font-size: 32px;
    margin-left: 20px;
    font-weight: 600;
}

.step-details {
    position: absolute;
    top: 64px;
    padding: 23px;
    width: 85%;
    height: 120px;
    overflow: hidden;
    display: block;
}

@media (max-width: 767px) {
    .step-details {
        position: absolute;
        top: 81px;
        padding: 43px;
        width: 87%;
        height: 140px;
        overflow: hidden;
        display: block;
    }
}

.step1 span {
    color: #FF8000;
}

.step2 span {
    color: #A025C8;
}

.step3 span {
    color: #069688;
}

.step4 span {
    color: #D02048;
}

.max-w-60 {
    max-width: 60% !important;
}

.title-m-20 {
    margin: 7px 20px 0 20px;
}

.cursor-pointer {
    cursor: pointer;
}

.products .carousel-control-next,
.products .carousel-control-prev {
    position: relative;
    opacity: 1;
    width: 12%;
}

.btn-warning.focus,
.btn-warning:focus {
    border-color: transparent;
    box-shadow: none;
}

.servicesDiagram {
    background-color: #E5E5E5;
}

.servicesDiagram-content {
    position: relative;
    width: 500px;
    margin: 0 auto;
}

.servicesDiagram-content-main-img {
    width: 500px;
}

.servicesDiagram-content-title {
    position: absolute;
    width: 126px;
    top: 45%;
    left: 41%;
    font-size: 22px;
    color: #fff;
}

.servicesDiagram-content-details {
    position: absolute;
}

.servicesDiagram-content-details .p-details {
    background-image: url(../img/serivce_text.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 172px;
    font-size: 13px;
    width: 180px;
    height: 118px;
    padding: 30px;
}

.img-details {
    width: 75px;
    height: 110px;
    position: absolute;
    top: 10px;
    right: -32px;
}

.img-details img {
    width: 75px;
    height: 96px;
    border-radius: 7px;
}

.icon-details {
    position: absolute;
    top: -24px;
    right: -63px;
    width: 60px;
    height: 60px;
    background: #D02048;
    border-radius: 50%;
    padding: 5px;
}

.icon-details span {
    width: 50px;
    height: 50px;
    background: #ffffff;
    border-radius: 50%;
    padding: 10px;
    display: block;
}

.icon-details span img {
    width: 30px;
}

.go-to-right .p-details {
    text-align: end;
}

.go-to-right .img-details {
    right: unset !important;
    left: -32px;
}

.go-to-right .icon-details {
    right: unset !important;
    left: -63px;
}

.servicesDiagram1 {
    top: -106px;
    left: -69px;
}

.servicesDiagram2 {
    top: -106px;
    right: -69px;
}

.servicesDiagram3 {
    top: 35px;
    left: -182px;
}

.servicesDiagram4 {
    top: 33px;
    right: -173px;
}

.servicesDiagram5 {
    top: 235px;
    left: -182px;
}

.servicesDiagram6 {
    top: 235px;
    right: -173px;
}

.servicesDiagram7 {
    top: 353px;
    left: -69px;
}

.servicesDiagram8 {
    top: 353px;
    right: -69px;
}

.mt-200px {
    margin-top: 200px;
}

/**
  new
 */
.dropdown-menu {
    min-width: 13rem;
    border-radius: 0.2rem;
    box-shadow: 0 0 3px #ccc;
    padding-top: 10px !important;
    padding-bottom: 10px !important;
    border: 0;
}

.dropdown-toggle::after {
    display: inline-block;
    margin-left: 0.255em;
    vertical-align: 0;
    content: "\f107";
    border-top: 0;
    border-right: 0;
    border-bottom: 0;
    border-left: 0;
    font: normal normal normal 14px/1 FontAwesome;
}

.dropdown-submenu {
    position: relative;
}

.dropdown-submenu .dropdown-menu {
    top: 77%;
}

.dropdown-submenu a::after {
    transform: rotate(-90deg);
    position: absolute;
    right: 10px;
    top: 30%;
}

.dropdown-submenu:hover .dropdown-menu,
.dropdown-submenu:focus .dropdown-menu {
    display: flex;
    flex-direction: column;
    position: absolute !important;
    margin-top: -30px;
    left: 100%;
}

@media (max-width: 992px) {
    .dropdown-menu .dropdown-submenu {
        width: auto;
    }
}

@media (max-width: 768px) {

    .dropdown-submenu:hover .dropdown-menu,
    .dropdown-submenu:focus .dropdown-menu {
        display: flex;
        flex-direction: column;
        position: absolute !important;
        margin-top: 12px;
        left: 1px;
    }

    .sub-hero .card {
        margin-left: 15px;
        margin-right: 15px;
        margin-bottom: 15px;
    }
}

.border-radius-25 {
    border-radius: 25px;
}

#hero .hero-links {
    justify-content: center;
    display: flex;
    flex-wrap: wrap;
}

.subHero {
    margin-top: -8rem;
}

.sub-hero {
    justify-content: center;
    gap: 10px;
}

.sub-hero .card {
    text-align: center;
    padding: 20px;
    justify-content: center;
    min-width: 200px;
}

.sub-hero .card {
    color: #1A5468;
}

.video-modal .modal-dialog {
    max-width: 800px;
    margin: 30px auto;
}

.video-modal .modal-body {
    position: relative;
    padding: 0px;
}

.video-modal .close {
    position: absolute;
    right: 12px;
    top: 0;
    z-index: 999;
    font-size: 2rem;
    font-weight: normal;
    color: #fff;
    opacity: 1;
}

.video-modal .close:not(:disabled):not(.disabled):focus,
.video-modal .close:not(:disabled):not(.disabled):hover {
    opacity: 1;
    outline: 0;
    border: 0;
}

.fs-90 {
    font-size: 90px;
}

.companies {
    /*background-image: url(../img/companiesBg.png);*/
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-color: #113650;
}

.companies .carousel-inner {
    color: #ffff;
    max-width: 45rem;
    margin: 0 auto;
    text-align: center;
}

.gallery .more-and-more {
    background-color: #DEDEDE !important;
    border-bottom: 4px solid #1A5468 !important;
    color: #1A5468 !important;
}

.gallery .more-and-more a {
    color: #1A5468 !important;
}

.gallery-wrap .thumbs-wrap .owl-item a.item-thumb {
    display: flex;
}

.gallery-wrap .thumbs-wrap .item-thumb {
    width: 60px;
    height: 60px;
    border: 1px solid #ddd;
    border-radius: 6px;
    margin: 3px;
    display: inline-block;
    overflow: hidden;
}

.gallery-wrap .img-big-wrap img {
    height: auto;
    display: inline-block;
    /* cursor: -webkit-zoom-in; */
    /* cursor: zoom-in; */
    width: 100%;
}

.gallery-wrap .thumbs-wrap {
    text-align: center;
    margin-bottom: 20px;
}

.gallery-wrap .thumbs-wrap {
    text-align: center;
    margin-bottom: 20px;
}

.owl-prev span,
.owl-next span {
    font-size: 20px !important;
}

.owl-prev,
.owl-next {
    margin: 5px 1.5rem !important;
}

.text-828282 {
    color: #828282;
}

.product-details ol {
    list-style-type: none;
    padding: 0;
}

.product-details ol li {
    padding-left: 40px;
    margin-bottom: 1rem;
}

.product-details ol li:before {
    content: '\f046';
    font: normal normal normal 14px/1 FontAwesome;
    display: inline-block;
    color: #1A5468;
    width: 30px;
    height: 30px;
    background-color: #E8EFF7;
    border-radius: 50%;
    text-align: center;
    padding: 8px;
    font-size: 16px;
    left: 16px;
    position: absolute;
}

@media (max-width: 767px) {
    .product-details ol {
        padding-left: 25px;
    }

    .product-details ol li:before{
        left: 43px;
    }
}

.product-details ol li p {
    color: #828282;
    margin-bottom: 5px;
}

.product-more-details .card {
    background-color: #F2F2F2;
    border: 0;
    flex-direction: initial !important;
}

.product-more-details .card-header {
    background-color: #F2F2F2;
    border: 0;
}

.text-191919 {
    color: #191919 !important;
}

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

.card-header-number {
    color: #191919 !important;
    background-color: #DEDEDE;
    width: 65px;
    text-align: center;
    padding-top: 18px;
    flex-shrink: 0;
}

.product-more-details .table td,
.product-more-details .table th {
    padding: 0.75rem;
    vertical-align: top;
    border-top: 0;
    border-bottom: 1px solid #bbbbbb;
}

.product-more-details .table-striped tbody tr:nth-of-type(odd) {
    background-color: #F2F2F2;
}

.product-more-details .table-striped tbody tr:nth-of-type(even) {
    background-color: #ffffff;
}

button.btn.btn-link:not(.collapsed) i {
    transform: rotate(180deg);
}

.basic-configuration ul li {
    font-size: 16px;
    margin-bottom: 5px;
}

@media (max-width: 768px) {
    .gallery-wrap .thumbs-wrap .item-thumb {
        width: auto;
        height: 116px;
    }

    .product-more-details .collapse{
        overflow-x: auto;
    }

    .product-more-details .card-body li p, .product-more-details .card-body li strong{
        font-size: 13px;
    }

    .card-header-number{
        width: 44px;

        h5{
            font-size: 15px;
        }
    }

    .card-header .fs-16{
        font-size: 15px;
    }
}

.item-video {
    padding-top: 14px;
    justify-content: center;
    font-size: 30px;
}

.owl-carousel .owl-nav button.owl-next,
.owl-carousel .owl-nav button.owl-prev,
.owl-carousel button.owl-dot {
    outline: 0;
}

.bg-F8F8F8 {
    background-color: #F8F8F8;
}

.modal-header {
    border-bottom: 0;
}

.modal-body {
    padding: 2rem;
}

.circle-icon {
    background-color: #E8EFF7;
    color: #1A5468;
    padding: 5px 7px;
    font-size: 18px;
    border-radius: 50%;
}

.bg-none {
    background: none !important;
}

.bg-none.lastNews .member .member-img {
    border: 1px solid #DEDEDE;
}

.mt-12rem {
    margin-top: 12rem;
}

.companies-list .member-img h6 {
    color: #1A5468;
}

.companies-list .member-info span.details {
    font-size: 14px;
    color: #1C1C1C;
    height: 125px;
    display: block;
    white-space: revert;
    overflow: hidden;
    text-overflow: ellipsis;
}

.companies-list .member .member-info {
    padding: 0 20px 25px 30px;
    border: 0;
    border-bottom: 4px solid #1A5468;
}

.companies-list .member {
    box-shadow: 0 0 5px #cccccc;
}

.text-2DAFE6 {
    color: #2DAFE6;
}

.special-border-bottom {
    border-bottom: 1px solid #2DAFE6;
}

.mx-w-500 {
    max-width: 500px;
    width: 100%;
}

.about-us-content-details {
    background: url(../img/about_us_bg.png) top no-repeat;
    background-size: cover;
}

.ads {
    background-image: url(../img/banner.jpg);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center center;
    height: 200px;
}

@media (max-width: 768px) {
    .ads {
        height: 135px;
    }
}

.about-us-category .cat-view {
    border: 1px solid #1A5468;
    border-radius: 5px;
    overflow: hidden;
    height: 100%;
}

.about-us-category .cat-view .cat-view-header {
    background-color: #1A5468;
    border-radius: 5px;
    overflow: hidden;
    padding: 25px 10px;
}

.about-us-category .cat-view .cat-view-content {
    overflow: hidden;
    padding: 25px 10px;
}

.about-us-category .cat-view .cat-view-content ul li {
    margin-top: 15px;
}

.certification-slider {
    background-color: #DEDEDE;
}

.certification-slider .item .certification-img {
    background-color: #ffffff;
    padding: 20px;
    text-align: center;
}

.certification-owl-carousel .owl-nav {
    position: absolute;
    top: 38%;
    width: 110%;
    left: -55px;
}

.certification-owl-carousel .owl-nav .owl-next {
    float: right;
}

.certification-owl-carousel .owl-prev span,
.certification-owl-carousel .owl-next span {
    font-size: 50px !important;
    color: #ffffff;
}

.sub-hero-img {
    height: 70px;
}

.btn-outline-warning-apply {
    color: #1A5468;
    border-color: #1A5468;
}

.btn-outline-warning-apply:hover {
    color: #ffffff;
    background-color: #1a5468;
    border-color: #1A5468;
}

.btn-outline-warning-apply:not(:disabled):not(.disabled).active,
.btn-outline-warning-apply:not(:disabled):not(.disabled):active,
.show>.btn-outline-warning-apply.dropdown-toggle {
    color: #ffffff;
    background-color: #1A5468;
    border-color: #1A5468;
}

.btn-warning-search {
    color: #ffffff;
    background-color: #1A5468;
    border-color: #1A5468;
    padding: .375rem 1.75rem;
}

.btn-warning-search:not(:disabled):not(.disabled).active,
.btn-warning-search:not(:disabled):not(.disabled):active,
.show>.btn-warning-search.dropdown-toggle {
    color: #ffffff;
    background-color: #1A5468;
    border-color: #1A5468;
    box-shadow: none !important;
}

.btn-warning-search.focus,
.btn-warning-search:focus,
.btn-warning-search:hover {
    color: #ffffff;
    background-color: #143f4e;
    border-color: #143f4e;
}

.max-h-unset {
    max-height: unset !important;
}

.max-h-245 {
    max-height: 245px !important;
}

.line-4-ellipsis {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}

.line-1-ellipsis {
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    display: block;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.pagination .page-item {
    margin: 5px;
}

.pagination .page-item.active .page-link {
    color: #fff;
    background-color: #1A5468 !important;
    border-color: #1A5468 !important;
}

.pagination li.page-item .page-link {
    z-index: 2;
    text-decoration: none;
    background-color: transparent;
    padding: 0.3rem 0.7rem;
}

.pagination .page-item .page-link {
    color: #1A5468;
    background-color: #E8EFF7 !important;
    border-color: #E8EFF7 !important;
    border-radius: 5px;
    font-size: 16px;
}

.jsvmap-tooltip {
    border-radius: 3px;
    background-color: white !important;
    font-family: sans-serif, Verdana;
    font-size: smaller;
    box-shadow: 1px 2px 12px rgb(0 0 0 / 20%);
    padding: 3px 5px;
    position: absolute;
    display: none;
    color: #000 !important;

}

.jsvmap-tooltip.new-w {
    width: 18%;
}

@media (max-width: 768px) {
    .jsvmap-tooltip.new-w {
        width: 44%;
    }
}

.bg-white {
    background-color: white !important;
}

.jsvmap-zoom-btn {
    border-radius: 3px;
    background-color: #295f72;
    padding: 5px;
    box-sizing: border-box;
    position: absolute;
    line-height: 16px;
    cursor: pointer;
    color: #FFF;
    height: 25px;
    width: 25px;
    left: 13px;
    font-size: 29px;
}

.jsvmap-zoom-btn.jsvmap-zoomout {
    top: 37px;
}

.text-1492E6 {
    color: #1492E6 !important;
}

.dropdown-with-hover:hover>.dropdown-menu {
    display: block;
}

.lastNews .member .member-img img.max-h-unset {
    height: 277px !important;
}

.text-9fa5a8-hover:hover {
    color: #9fa5a8 !important;
}

.fs-22 {
    font-size: 22px !important;
}

.bg-2dafe6 {
    background-color: #2dafe6 !important;
}

@media (max-width: 768px) {
    #hero .hero-links {
        flex-flow: column;
    }

    #hero {
        background-position: unset;
    }

    .sub-hero-img {
        height: 120px;
    }

    .sub-hero-img img {
        height: 90px;
    }

    .breadcrumbs {
        background-position-x: 90%;
        background-size: contain;
        min-height: auto;
        height: 135px !important;
    }

    .max-h-245 {
        max-height: 308px !important;
    }

    .lastNews .member .member-img img.max-h-unset {
        height: 295px !important;
    }
}

.subHero .card {
    background-color: rgb(255 255 255 / 49%);
}

@media (min-width: 1600px) { 
    .container, .container-lg, .container-md, .container-sm, .container-xl{
        max-width: 1505px;
    }
}
@media screen and (max-width:500px) {
    .categories-list-grid{
        min-height: 222px !important;
        align-items: center !important;
    }

    .lastNews.gallery .member.grid_cat{
        text-align: center;
    }

    .lastNews.gallery .member.grid_cat .member-info h4{
        font-size: 18px !important;
    }

    .lastNews.gallery .member .member-info{
        min-height: auto !important;
    }

    .lastNews .member .member-info h4{
        font-size: 18px !important;
        height: auto !important;
    }
}
@media screen and (max-width: 500px) {
    #header .logo img{
        width: 64px;
    }

    .mx-sm-auto-custom{
        margin-inline: auto !important;
    }
}
.font-size-product {
    font-size: 20px !important;
}