/* Fonts START */
@font-face {
    font-family: 'Roboto Condensed';
    src: local('Roboto Condensed SemiBold'), local('RobotoCondensed-SemiBold'),
        url('../fonts/RobotoCondensed-SemiBold.woff2') format('woff2'),
        url('../fonts/RobotoCondensed-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Roboto Condensed';
    src: local('Roboto Condensed Regular'), local('RobotoCondensed-Regular'),
        url('../fonts/RobotoCondensed-Regular.woff2') format('woff2'),
        url('../fonts/RobotoCondensed-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Roboto Condensed';
    src: local('Roboto Condensed Light'), local('RobotoCondensed-Light'),
        url('../fonts/RobotoCondensed-Light.woff2') format('woff2'),
        url('../fonts/RobotoCondensed-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Roboto Condensed';
    src: local('Roboto Condensed Medium'), local('RobotoCondensed-Medium'),
        url('../fonts/RobotoCondensed-Medium.woff2') format('woff2'),
        url('../fonts/RobotoCondensed-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Roboto Condensed';
    src: local('Roboto Condensed Bold'), local('RobotoCondensed-Bold'),
        url('../fonts/RobotoCondensed-Bold.woff2') format('woff2'),
        url('../fonts/RobotoCondensed-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

/* Fonts END */

/* Global START */
:root {
    --font: 'Roboto Condensed';
    --color-1: #7497B5;
    --color-1-hover: #6685a1;
    --color-2: #FBAB04;
    --color-3: #29425D;
    --color-4: #EBEAF6;
    --color-3-hover: #233950;
    --color-black: #242222;
    --color-text: #656565;
}

* {
    box-sizing: border-box;
}


body {
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.6;
    min-width: 320px;
    position: relative;
    margin: 0;
    padding: 0;
    color: var(--color-black);
    overflow-x: hidden;
}



strong {
    font-weight: 700;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}



.button {
    font-family: var(--font);
    display: inline-flex;
    column-gap: 10px;
    align-items: center;
    padding: 12px 35px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    border: none;
}

.button-icon img {
    vertical-align: middle;
    display: inline-block;
    margin-top: -4px;
}

.button-style-1 {
    background-color: var(--color-4);
    padding: 12px 30px;
    color: var(--color-1);
    overflow: hidden;
    position: relative;
    display: inline-flex;
    align-items: center;
    transition: 0.35s ease;
    z-index: 0;
    column-gap: 15px;
    font-weight: 700;
    text-transform: uppercase;
}

.button-style-1:hover {
    color: #fff;
}

.button-style-1::before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: var(--color-1-hover);
    transform: translateX(-98%);
    transition: 0.6s ease-out;
    z-index: -1;
}

.button-style-1:hover::before {
    transform: none;
}

.button-style-1-icon {
    display: inline-block;
}

.button-style-1-icon img {
    vertical-align: middle;
}

.bg-color-1 {
    background-color: var(--color-1);
    transition: background-color 0.5s ease;
    color: #fff;
}

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

.bg-color-2 {
    background-color: var(--color-2);
    transition: background-color 0.5s ease;
}

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

.p-60 {
    padding: 60px 0;
}

.p-80 {
    padding: 80px 0;
}

.p-100 {
    padding: 100px 0;
}

.p-120 {
    padding: 120px 0;
}

.pb-100 {
    padding-bottom: 100px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-top: 0;
    margin-bottom: 20px;
}

h1 {
    font-size: 55px;
    line-height: 1.4;
}

h2 {
    font-size: 42px;
    line-height: 1.4;
}

h3 {
    font-size: 30px;
    line-height: 1.4;
}

h4 {
    font-size: 24px;
    line-height: 1.4;
}

ul,
ol {
    margin: 0 0 20px 0;
    padding: 0 0 0 15px;
}

ul.ul-styled,
ol.ol-styled {
    padding: 0;
}

ul.ul-styled li,
ol.ol-styled li {
    margin-bottom: 8px;
    list-style-type: none;
}

ol.ol-styled {
    counter-reset: num;
}

ul.ul-styled li::before {
    content: '';
    display: inline-block;
    width: 10px;
    height: 10px;
    background-color: var(--color-1);
    margin-right: 10px;
}

ol.ol-styled li::before {
    counter-increment: num;
    content: counter(num)'.';
    display: inline-block;
    font-weight: 700;
    color: var(--color-1);
    margin-right: 10px;
}

p {
    margin-top: 0;
}

.title-left {
    text-align: left;
}

.title-center {
    text-align: center;
    margin-bottom: 50px;
}

.title-white .def-title {
    color: #fff;
}

.title-white .def-subtitle {
    color: #fff;
}

.title-white .def-desc {
    color: #C8C8C8;
}

.def-title {
    font-size: 20px;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--color-1);
}

.def-subtitle {
    font-size: 42px;
    font-weight: bold;
    margin-bottom: 40px;
    color: var(--color-black);
    line-height: 1.4;
}

.def-desc {
    color: var(--color-text);
}

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

.mb-20 {
    margin-bottom: 20px;
}

.mb-30 {
    margin-bottom: 30px;
}

.mb-45 {
    margin-bottom: 45px;
}

.mb-60 {
    margin-bottom: 60px;
}

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

.image-50 {
    display: flex;
    column-gap: 20px;
    margin-bottom: 25px;
}

.image-50 a,
.image-50 a img {
    display: block;
}

.image-50 a img {
    max-width: 100%;
    margin: 0 auto;
}

blockquote {
    background-color: #F6F3F3;
    border-left: 5px solid var(--color-1);
    padding: 25px 35px;
    margin: 0 0 25px 0;
    font-size: 18px;
    font-style: italic;
}

blockquote::before {
    content: '';
    display: block;
    background-image: url('../images/quote.svg');
    background-repeat: no-repeat;
    background-size: 100% 100%;
    width: 40px;
    height: 40px;
    margin-bottom: 15px;
}

blockquote p {
    margin-bottom: 0;
}

blockquote cite {
    display: block;
    margin-top: 15px;
    font-weight: 700;
    color: var(--color-1);
}

/* Swiper Global START */
.swiper-pagination {
    position: static;
    margin-top: 30px;
}

.swiper-pagination-bullet {
    width: 15px;
    height: 15px;
    border-radius: 10;
    opacity: 1;
    background-color: #dfdfdf;
}

.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 5px;
}

.swiper-pagination-bullet-active {
    background-color: var(--color-1);
}

.swiper-horizontal>.swiper-scrollbar,
.swiper-scrollbar.swiper-scrollbar-horizontal {
    position: static;
    margin: 50px auto 0 auto;
    height: 6px;
    border-radius: 0;
    max-width: 400px;
    background-color: #ece7e7;
}

.swiper-scrollbar-drag {
    border-radius: 0;
    background-color: var(--color-1);
    cursor: pointer;
}

.swiper-scrollbar-drag:active {
    background: var(--color-1-hover);
}

.swiper-scrollbar.swiper-scrollbar-vertical,
.swiper-vertical>.swiper-scrollbar {
    border-radius: 0;
    width: 6px;
}

/* Swiper Global END */


fieldset {
    border: none;
    appearance: none;
    margin: 0;
    padding: 0;
}

/* MagnificPopup START */
.mfp-fade.mfp-bg {
    opacity: 0;
    transition: opacity 0.3s ease-out;
}

.mfp-fade.mfp-bg.mfp-ready {
    opacity: 0.8;
}

.mfp-fade.mfp-bg.mfp-removing {
    opacity: 0;
}

.mfp-fade.mfp-wrap {
    opacity: 0;
    transition: opacity 0.3s ease-out, transform 0.3s ease-out;
    transform: scale(1.1);
}

.mfp-fade.mfp-wrap.mfp-ready {
    opacity: 1;
    transform: scale(1);
}

.mfp-fade.mfp-wrap.mfp-removing {
    opacity: 0;
    transform: scale(1.1);
}

.mfp-content .mfp-close {
    font-size: 40px;
    font-weight: 300;
    opacity: 1;
    width: 40px;
    height: 40px;
    right: -30px;
}

.form-alert {
    background-color: #fff;
    max-width: 400px;
    margin: 0 auto;
    padding: 30px;
    text-align: center;
    position: relative;
}

.form-alert .mfp-close {
    color: #fff;
    top: -35px;
    right: -35px;
}

.form-alert p {
    margin-bottom: 0;
    font-size: 18px;
}

/* MagnificPopup END */

/* Global END */

/* Preloader START */
.preloader-wrap {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background-color: var(--color-3); */
    background-color: #D9EDFF;
    z-index: 99;
    padding: 30px;
    transition: 1s ease;
}

.preloader-wrap.is-hidden {
    opacity: 0;
    transform: translateY(-110%);
}

.preloader-item {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.preloader-item img {
    /* max-width: 70px;  */
    /* max-width: 600px; */
    width: 100%;
}

.preloader-line {
    background-color: #e5e5e5;
    height: 5px;
    width: 200px;
    position: absolute;
    bottom: -20px;
}

#preloader-bar {
    width: 0;
    height: 100%;
    background: var(--color-1);
    transition: width 0.4s;
}

.preloader-close {
    position: absolute;
    top: 0;
    right: 0;
    background-color: var(--color-1);
    cursor: pointer;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
}

/* Preloader END */

/* Cursor START */
/* #cursor {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 100000;
    width: 10px;
    height: 10px;
    background-color: var(--color-2);
    background-repeat: no-repeat;
    background-size: 25px 25px;
    background-position: center center;
    display: block;
    user-select: none;
    pointer-events: none;
    border-radius: 100px;
    border: 1px solid var(--color-2);
    transition: width 0.5s ease, height 0.5s ease;
} */
/* #cursor::before {
    content: '';
    display: block;
    background-image: url('../images/news-arrow-white.svg');
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: center center;
    width: 20px;
    height: 20px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    margin-left: -15px;
    transition: 0.5s 0.3s ease;
} */
/* #cursor.is-link::before {
    opacity: 1;
    margin-left: 0;
} */
/* #cursor::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 30px;
    border: 1px solid var(--color-2);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 100%;
    transition: width 0.5s ease, height 0.5s ease;
} */
/* #cursor.is-link {
    width: 50px;
    height: 50px;
    box-shadow: 0px 2px 4px rgba(51, 45, 45, 0.24);
} */
/* #cursor.is-link::after {
    width: 70px;
    height: 70px;
} */
/* Cursor END */


/* Addon START */
.addon-wrap {
    position: fixed;
    top: 0;
    right: 0;
    width: 360px;
    height: 100%;
    z-index: 12000;
    box-shadow: 0px 2px 12.5px 1px rgba(69, 68, 68, 0.1);
    padding: 30px;
    color: #fff;
    overflow: auto;
    transition: 0.5s ease;
    transform: translateX(calc(100% + 20px));
    -ms-overflow-style: none;
    scrollbar-width: none;
    background-color: rgb(30, 48, 65);
}

.addon-wrap.is-active {
    transform: none;
}

.addon-top {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, .4);
    padding-bottom: 20px;
    margin-bottom: 35px;
}

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

.addon-logo img {
    max-width: 150px;
}

.addon-close {
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    transition: transform 0.5s ease;
}

.addon-close:hover {
    transform: rotate(180deg);

}

.addon-close img {
    max-width: 30px;
    /* vertical-align: middle; */
    display: block;
    width: 50%;
}

.addon-desc {
    margin-bottom: 30px;
}

.addon-desc p {
    font-size: 16px;
    color: #BDBDBD;
    margin-bottom: 0;
}

.addon-contacts-title {
    font-size: 24px;
    font-weight: 700;
}

.addon-el-item {
    display: flex;
    column-gap: 16px;
    margin-bottom: 25px;
}

.addon-el-title {
    font-size: 14px;
    color: #DADADA;
}

.addon-el-subtitle {
    font-size: 16px;
    font-weight: 700;
}

.addon-el-image {
    border: 1px solid #fff;
    padding: 14px 11px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    z-index: 0;
}

.addon-el-image::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-1);
    z-index: -1;
    opacity: 0;
    transform: translateY(-100%);
    transition: 0.8s ease;
}

.addon-el-item:hover .addon-el-image::before {
    transform: none;
    opacity: 1;
}

.addon-el-image img {
    max-width: 20px;
}

.addon-footer {
    border-top: 1px solid rgba(255, 255, 255, .4);
    padding-top: 30px;
    margin-top: 50px;
}

.addon-social {
    display: flex;
}

.addon-social a:first-child {
    border-left: 1px solid rgba(255, 255, 255, .4);
}

.addon-social a {
    padding: 22px 15px;
    border-right: 1px solid rgba(255, 255, 255, .4);
    display: flex;
    justify-content: center;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, .4);
    border-bottom: 1px solid rgba(255, 255, 255, .4);
    position: relative;
    overflow: hidden;
}

.addon-social a::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-1);
    z-index: -1;
    opacity: 0;
    transform: translateY(-100%);
    transition: 0.8s ease;
}

.addon-social a:hover::before {
    transform: none;
    opacity: 1;
}

.addon-social a img {
    max-width: 25px;
}

.backdrop {
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    width: 0;
    height: 100%;
    background-color: rgba(38, 40, 42, 0.7);
    z-index: 19;
    opacity: 0;
    visibility: hidden;
    transition: 0.7s ease;
}

.backdrop.is-active {
    opacity: 1;
    visibility: visible;
    width: 100%;
}

/* Addon END */

/* Header START */
.s-header {
    background-color: var(--color-3);
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, .4);
}

.header-top {
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .4)
}

.header-top .header-row {
    display: flex;
    justify-content: space-between;
}

.header-logo img {
    width: 260px;
}

.header-el-wrap {
    display: flex;
    column-gap: 30px;
}

.header-el-item {
    display: flex;
    column-gap: 12px;
    color: #fff;
}

.header-el-image {
    border: 1px solid #fff;
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    z-index: 0;
}

.header-el-image::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-1);
    z-index: -1;
    opacity: 0;
    transform: translateY(-100%);
    transition: 0.8s ease;
}

.header-el-item:hover .header-el-image::before {
    opacity: 1;
    transform: none;
}

.header-el-image img {
    width: 18px;
}

.header-el-title {
    font-size: 14px;
    color: #DADADA;
}

.header-el-subtitle {
    font-size: 16px;
    font-weight: 700;
}

.header-menu {
    margin-left: -20px;
}

.header-menu ul {
    display: flex;
    list-style-type: none;
    padding: 0;
    margin: 0;
    height: 100%;
    align-items: center;
}

.header-menu ul li {
    position: relative;
    height: 100%;
}

.header-menu ul li a {
    transition: 0.5s ease;
    font-size: 16px;
    display: flex;
    align-items: center;
    height: 100%;
    padding: 10px 24px;
}

.header-menu ul li:hover>a {
    background-color: var(--color-1-hover);
}

.header-menu ul li.current-menu-item a {
    background-color: var(--color-1);
}

.header-bottom-row {
    display: flex;
    justify-content: space-between;
}

.menu-item-has-children>a::after {
    content: '';
    background-image: url('../images/caret.svg');
    background-repeat: no-repeat;
    background-size: 100% 100%;
    width: 12px;
    height: 12px;
    display: inline-block;
    margin-left: 5px;
    transform: translateX(10px);
    transition: 0.35s ease;
}

/* .menu-item-has-children:hover > a::after {
    transform: rotate(180deg);
} */
.menu-item-has-children:hover>ul.sub-menu {
    opacity: 1;
    visibility: visible;
    transform: none;
}

.header-menu ul.sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    display: block;
    z-index: 2;
    background-color: var(--color-3);
    min-width: 130px;
    height: auto;
    transition: 0.5s ease;
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    border: 1px solid rgba(255, 255, 255, .4);
    white-space: nowrap;
}

.header-menu ul.sub-menu ul.sub-menu {
    top: 0;
    left: 100%;
}

.header-menu ul.sub-menu .menu-item-has-children>a::after {
    transform: rotate(-90deg) translateY(8px);
    margin-left: auto;
}

.header-right {
    display: flex;
    align-items: center;
    column-gap: 30px;
}

.header-eltwo-wrap {
    display: flex;
    align-items: center;
    column-gap: 20px;
}

.header-eltwo-item:nth-last-child(n+2) {
    border-right: 1px solid rgba(255, 255, 255, .5);
    padding-right: 20px;
}

.header-eltwo-item img {
    vertical-align: middle;
}

.header-button a {
    display: block;
    height: 100%;
    background-color: var(--color-1);
    padding: 22px 25px;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 500;
    transition: 0.5s ease;
}

.header-button a:hover {
    background-color: var(--color-1-hover);
}

.hamburger,
.header-mobile-wrap,
.header-mobile-search {
    display: none;
}

.scroller-wrap {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: var(--color-3);
    z-index: 99;
    padding: 5px 0;
    display: flex;
    flex-direction: column;
    text-align: center;
    box-shadow: 0px 2px 7.4px -1px rgba(0, 0, 0, 0.25);
    cursor: pointer;
    width: 35px;
    transition: 0.5s ease;
    transform: translateX(100px);
    border-radius: 50px;
}

.scroller-wrap.is-active {
    transform: none;
}

.scroller-wrap img {
    width: 40%;
    display: inline-block;
    margin: 0 auto;
}

.scroller-percent {
    font-size: 12px;
    text-align: center;
    font-weight: 700;
    color: #fff;
}

#scroller-down {
    transform: rotate(180deg);
}

/* Header END */

/* Breadcrumbs START */
.breadcrumbs-wrap {
    background-color: var(--color-3);
    padding: 40px 0;
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 0;
}

.breadcrumbs-wrap::before {
    content: '';
    display: block;
    background-image: url('../images/breadcrumbs-layer.png');
    background-repeat: no-repeat;
    background-size: 100% 100%;
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 263px;
    height: 275px;
    z-index: -1;
}

.breadcrumbs-wrap::after {
    content: '';
    display: block;
    background-image: url('../images/breadcrumbs-layer.png');
    background-repeat: no-repeat;
    background-size: 100% 100%;
    position: absolute;
    bottom: 0;
    right: 0;
    display: block;
    width: 263px;
    height: 275px;
    transform: scale(-1);
    z-index: -1;
}

.breadcrumbs-title {
    color: #054677e3;
    text-shadow: -1px -1px 0 #fff, 1px -1px 0 #cfc7c7, -1px 1px 0 #fff, 2px 2px 0 #fff;
}

.breadcrumbs-list {
    list-style-type: none;
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 10px;
    padding: 0;
}

.breadcrumbs-last {
    font-weight: 700;
}

/* Breadcrumbs END */

/* Banner START */
/* .banner-wrap {} */
.banner-wrap .swiper-slide {
    overflow: hidden;
    height: auto;
    /* background-color: var(--color-3); */
}

.banner-content {
    position: relative;
    z-index: 0;
    background-repeat: no-repeat;
    background-size: cover;
    color: #fff;
    height: 100%;
}

.banner-content::before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    /* background-color: rgba(24, 53, 62, 0.5); */
    z-index: -1;
}

.banner-row {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    height: 100%;
    padding: 120px 0;
}

.banner-left {
    padding: 50px 20px;
    height: 370px;
}

.banner-toptitle {
    font-size: 16px;
    color: #D1CBCB;
    margin-bottom: 15px;
    display: inline-block;
}

.banner-title {
    font-size: 70px;
    font-weight: 700;
    line-height: 1.2;
    max-width: 650px;
    text-transform: uppercase;
}

.banner-btn {
    display: inline-block;
}

.banner-title>span {
    display: inline-block;
}

.banner-rectangle {
    width: 350px;
    height: 433px;
    position: absolute;
    top: -93px;
    left: -56px;
    transform: rotate(180deg) scaleY(-1);
}

.banner-rectangle span:nth-child(1) {
    width: 5px;
    left: 0;
    top: 0;
    animation: line_1 0.5s 2.5s ease forwards;
}

.banner-rectangle span:nth-child(2) {
    height: 5px;
    right: 0;
    top: 0;
    animation: line_2 1s 1.5s ease forwards;
}

.banner-rectangle span:nth-child(3) {
    width: 5px;
    right: 0;
    bottom: 0;
    animation: line_3 1s 0.5s ease forwards;
}

.banner-rectangle span:nth-child(4) {
    height: 5px;
    left: 0;
    bottom: 0;
    animation: line_4 1s 1.5s ease forwards;
}

.banner-rectangle span:nth-child(5) {
    width: 5px;
    left: 0;
    top: calc(100% - 45px);
    animation: line_5 1s 0.5s ease forwards;
}

.banner-wrap .swiper-pagination {
    left: auto;
    right: 20px;
    bottom: 40px;
    width: auto;
    position: absolute;
}

@keyframes line_1 {
    from {
        height: 0;
    }

    to {
        height: 38px;
    }
}

@keyframes line_2 {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}

@keyframes line_3 {
    from {
        height: 0;
    }

    to {
        height: 100%;
    }
}

@keyframes line_4 {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}

@keyframes line_5 {
    from {
        height: 0;
    }

    to {
        height: 45px;
    }
}


.banner-desc {
    max-width: 330px;
    color: #D7D7D7;
    margin-bottom: 30px;
}

.banner-wrap .swiper-button-prev {
    display: none;
}

.banner-wrap .swiper-button-prev,
.banner-wrap .swiper-button-next {
    width: 200px;
    height: 150px;
    top: 50%;
    transform: translateY(-50%);
    overflow: hidden;
}

.banner-wrap .swiper-button-prev::after,
.banner-wrap .swiper-button-next::after {
    display: none;
}

.banner-wrap .swiper-button-prev img,
.banner-wrap .swiper-button-next img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: 1s ease;
    opacity: 1;
    transform: none;
}

.banner-wrap .swiper-button-prev.is-active img,
.banner-wrap .swiper-button-next.is-active img {
    transform: translateX(150px);
    opacity: 0;
}



.banner-wrap .swiper-button-next::after,
.banner-wrap .swiper-button-prev::after {
    font-size: 24px;
}

.banner-wrap .swiper-button-next {
    right: 0;
}

.banner-wrap .swiper-button-prev {
    left: 0;
}

[data-animate] {
    opacity: 0;
    transition: 1s ease;
}

[data-animate="zoom"] {
    transform: scale(2);
}

[data-animate="left"] {
    transform: translateX(-70px);
}

.animate-slide .swiper-slide-active [data-animate] {
    opacity: 1;
    transform: none;
}

.animate-slide .swiper-slide-active .banner-toptitle {
    transition-duration: 1s;
    transition-delay: 0.5s;
}

.animate-slide .swiper-slide-active .banner-title-text {
    transition-duration: 1s;
    transition-delay: 0.8s;
}

.animate-slide .swiper-slide-active .banner-desc {
    transition-delay: 1.1s;
}

.animate-slide .swiper-slide-active .banner-btn {
    transition-delay: 1.4s;
}

/* Banner END */

/* Numbers START */
.numbers-wrap {
    background-color: var(--color-3);
    color: #fff;
}

.numbers-row {
    display: flex;
    justify-content: center;
    padding: 30px 0;
    column-gap: 100px;
}

.numbers-item {
    text-align: center;
}

.numbers-item:nth-last-child(n+2) {
    border-right: 1px solid rgba(255, 255, 255, .6);
    padding-right: 100px;
}

.numbers-title {
    font-size: 48px;
    font-weight: 700;
}

.numbers-subtitle {
    font-size: 20px;
    color: #dad8d8;
}

/* Numbers END */

/* About START */
.about-wrap {
    background-color: #f9f9f9;
    position: relative;
    z-index: 0;
}

.about-row {
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 70px;
}

.about-left {
    width: 480px;
    height: 540px;
    overflow: hidden;
    border: 1px solid var(--color-1);
}

.about-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-right {
    width: 570px;
}

.about-list {
    padding: 0;
    text-transform: uppercase;
    margin-bottom: 50px;
}

.about-list li {
    list-style-type: none;
    display: flex;
    align-items: center;
    column-gap: 15px;
    font-weight: 500;
}

.about-list li:nth-last-child(n+2) {
    margin-bottom: 15px;
}

.about-list li span:nth-child(1) {
    border: 1px solid #c1c1c1;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-list li span:nth-child(1) img {
    max-width: 30px;
}

.about-list li span:nth-child(2) a {
    transition: 0.5s ease;
}

.about-list li span:nth-child(2) a:hover {
    color: var(--color-1);
}

.about-feat-row {
    display: flex;
    column-gap: 20px;
}

.about-feat-item {
    border: 1px solid var(--color-1);
    background-color: #ffffff;
    padding: 35px;
    width: 45%;
}

.about-feat-icon {
    border: 1px solid var(--color-1);
    background-color: #fff;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    transition: background-color 0.5s ease;
}

.about-feat-item:hover .about-feat-icon {
    background-color: var(--color-1);
}

.about-feat-icon img {
    max-width: 32px;
    transition: filter 0.5s ease;
}

.about-feat-item:hover .about-feat-icon img {
    filter: brightness(10);
}

.about-feat-title {
    font-size: 22px;
    line-height: 1.4;
    font-weight: 500;
    margin-bottom: 12px;
    transition: color 0.5s ease;
}

.about-feat-item:hover .about-feat-title {
    color: var(--color-1);
}

.about-feat-desc {
    color: var(--color-text);
}

.about-feat-desc p {
    margin-bottom: 0;
}

/* About END */

/* Features START */
.features-wrap {
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    z-index: 0;
    color: #fff;
}

.features-wrap::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 24vw;
    height: 100%;
    background-color: var(--color-1);
}

.features-title-wrap {
    margin-bottom: 30px;
}

.features-wrap .def-title,
.features-wrap .def-subtitle {
    color: #fff;
}

.features-wrap .def-subtitle {
    margin-bottom: 10px;
}

.features-wrap .def-desc {
    color: #C8C8C8;
}

.features-wrap::after {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background-color: rgba(34, 51, 69, 0.85);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.features-img {
    position: absolute;
    left: -150px;
    top: 50%;
    transform: translateY(-50%);
}

.features-img img {
    max-width: 510px;
}

.features-right {
    max-width: 750px;
    margin-left: auto;
}

.features-row {
    display: flex;
    column-gap: 20px;
    position: relative;
}

.features-item {
    background-color: var(--color-1);
    padding: 20px;
    width: 33%;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    transition: 0.7s ease;
    border: 1px solid transparent;
}

.features-item:hover {
    background-color: var(--color-1-hover);
    border-color: #fff;
}

.features-title {
    margin-bottom: 0;
    font-size: 18px;
}

.features-thumb {
    transition: transform 0.5s ease;
}

.features-item:hover .features-thumb {
    transform: translateY(-5px);
}

.features-thumb img {
    max-width: 55px;
}

/* Features END */

/* Services START */
.services-wrap {
    background-color: #F8F7FF;
    position: relative;
    z-index: 0;
    overflow: hidden;
}

.services-wrap::before {
    content: '';
    display: block;
    background-image: url('../images/dots.svg');
    width: 184px;
    height: 184px;
    position: absolute;
    top: -40px;
    right: -30px;
    z-index: -1;
}

.services-wrap::after {
    content: '';
    display: block;
    background-image: url('../images/dots.svg');
    width: 184px;
    height: 184px;
    position: absolute;
    bottom: -40px;
    left: -30px;
    z-index: -1;
}

.services-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.swiper-services .swiper-wrapper {
    counter-reset: number;
}

.services-row .services-item {
    width: calc(25% - 15px);
}

.services-item {
    position: relative;
    transition: 1s ease;
    border: 1px solid #c8c7c7;
    background-color: #fff;
    padding: 40px 30px;
    counter-increment: number
}

.services-item:hover {
    border-color: var(--color-1);
}

.services-item::before {
    content: counter(number);
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0;
    right: 0;
    background-color: var(--color-1);
    width: 40px;
    height: 40px;
    text-align: center;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
}

.services-item:hover .services-title {
    color: var(--color-1-hover);
}

.services-thumb {
    padding-bottom: 20px;
}

.services-thumb a {
    display: block;
}

.services-thumb a,
.services-thumb a img {
    display: block;
}

.services-icon {
    width: 58px;
    height: 58px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.5s ease;
}

.services-item:hover .services-icon {
    transform: scaleX(-1);
}

.services-icon img {
    width: 95%;
    margin: 0 auto;
}

.services-title {
    font-size: 20px;
    margin-bottom: 5px;
    transition: color 0.5s ease;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.services-cat {
    font-size: 14px;
    font-weight: 500;
    color: var(--color-1);
    text-transform: uppercase;
    margin-bottom: 10px;
}

.services-desc {
    color: var(--color-text);
    margin-bottom: 40px;
}

.services-desc p {
    margin-bottom: 0;
}

.services-arrow {
    display: flex;
    align-items: center;
    column-gap: 10px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--color-1);
    background-color: var(--color-4);
    padding: 12px 25px;
    position: relative;
    z-index: 0;
    overflow: hidden;
    transition: color 0.35s ease;
}

.services-arrow::before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: var(--color-1-hover);
    transform: translateX(-99%);
    transition: 0.6s ease-out;
    z-index: -1;
}

.services-arrow:hover {
    color: #fff;
}

.services-arrow:hover::before {
    transform: none;
}

.services-arrow span:nth-child(2) {
    display: inline-block;
    width: 25px;
    height: 25px;
    margin-left: auto;
}

.services-arrow img {
    display: inline-block;
    width: 90%;
    transition: filter 0.3s ease, transform 0.35s ease;
}

.services-arrow:hover span:nth-child(2) img {
    transition-delay: 0.35s;
    transform: rotate(45deg);
    filter: brightness(10);
}

/* Services END */

/* Service START */
.service-content h2 {
    font-size: 38px;
}

.service-content p,
ul,
ol {
    margin-bottom: 30px;
}

.service-row {
    display: flex;
    column-gap: 30px;
}

.service-sidebar {
    height: 100%;
    position: sticky;
    top: 20px;
    min-width: 350px;
}

.service-sidebar-item {
    border: 1px solid var(--color-1);
    padding: 30px 30px;
    margin-bottom: 15px;
    background-color: #fff;
}

.sidebar-title {
    font-size: 22px;
    margin-bottom: 20px;
    position: relative;
}

.service-sidebar-ul {
    padding: 0;
    list-style-type: none;
    font-size: 16px;
    margin-bottom: 0;
}

.service-sidebar-ul li:nth-last-child(n+2) a {
    margin-bottom: 10px;
}

.service-sidebar-ul a {
    display: block;
    padding: 12px 25px;
    transition: 0.3s ease;
    background-color: var(--color-4);
    font-weight: 400;
    text-transform: uppercase;
}

.service-sidebar-ul a:hover {
    color: var(--color-1);
}

.service-pdf-item {
    display: flex;
    align-items: center;
    column-gap: 15px;
    border: 1px solid var(--color-1);
    padding: 10px 20px;
    color: var(--color-1);
    z-index: 0;
    position: relative;
    overflow: hidden;
    transition: color 0.5s ease;
}

.service-pdf-item:hover {
    color: #fff;
}

.service-pdf-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    background-color: var(--color-1);
    width: 100%;
    height: 100%;
    z-index: -1;
    transition: transform 0.5s ease;
    transform: translateY(calc(-100% - 10px));
}

.service-pdf-item:hover::before {
    transform: none;
}

.service-pdf-item:nth-last-child(n+2) {
    margin-bottom: 20px;
}

.service-pdf-item .pdf-icon img {
    max-width: 30px;
    vertical-align: middle;
    display: inline-block;
    transition: filter 0.5s ease;
}

.service-pdf-item:hover .pdf-icon img,
.service-pdf-item:hover .pdf-download img {
    filter: brightness(5);
}

.service-pdf-item .pdf-download {
    margin-left: auto;
}

.service-pdf-item .pdf-download img {
    max-width: 30px;
    vertical-align: middle;
    display: inline-block;
    transition: filter 0.5s ease;
}

.service-thumb {
    height: 350px;
    margin-bottom: 30px;
}

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

.service-content {
    width: 100%;
}

.service-content h1,
h2,
h3,
h4,
h5,
h6 {
    margin-bottom: 15px;
}

.service-content p {
    color: var(--color-text);
}

.service-content li {
    color: #454444;
}

.image-two {
    display: flex;
    column-gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.image-two a {
    width: calc(50% - 10px);
    display: block;
}

.image-two a img {
    /* width: 100%; */
    /* height: 100%; */
    object-fit: cover;
    display: block;
}

.faq-normal .faq-item {
    max-width: none;
}

.faq-normal .faq-title {
    font-size: 32px;
    margin-bottom: 20px;
}

.service-feat-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.service-feat-item {
    background-color: var(--color-4);
    border-left: 3px solid var(--color-1);
    padding: 20px;
    display: flex;
    column-gap: 20px;
    width: calc(50% - 10px);
}

.service-feat-title {
    font-weight: 700;
    font-size: 18px;
}

.service-feat-desc {
    color: var(--color-text);
}

.service-feat-icon img {
    width: 45px;
}

.video-section {
    height: 300px;
    overflow: hidden;
    position: relative;
    margin-bottom: 30px;
}

.video-section::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(35, 57, 77, 0.2);
}

.video-section .video-thumb {
    height: 100%;
}

.video-section .video-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.video-section .video-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.video-section .video-play a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 80px;
    padding: 10px;
    background-color: var(--color-1);
    animation: video-pulse 2s infinite;
}

.video-section .video-play a img {
    transition: transform 0.5s ease;
}

.video-section .video-play:hover a img {
    transform: scale(1.1);
}

@keyframes video-pulse {
    0% {
        box-shadow: 0 0 0 0px rgba(21, 20, 123, 0.2);
    }

    100% {
        box-shadow: 0 0 0 20px rgba(174, 148, 186, 0);
    }
}

/* Service END */

/* Works START */
.works-wrap {
    background-color: var(--color-3);
}

.works-wrap .def-title,
.works-wrap .def-subtitle,
.works-wrap .def-desc {
    color: #fff;
}

.works-wrap .def-desc {
    color: #C8C8C8;
}

.works-tab {
    margin-bottom: 50px;
    text-align: center;
}

.works-tab ul {
    display: inline-flex;
    justify-content: center;
    column-gap: 50px;
    list-style-type: none;
    margin: 0;
    border: 1px dashed var(--color-1);
    padding: 0 40px;
}

.works-tab ul .works-tab-item {
    font-size: 16px;
    display: inline-block;
    position: relative;
}

.works-tab ul .works-tab-item a {
    display: block;
    padding: 20px 0;
    text-align: center;
    position: relative;
}

.works-tab ul .works-tab-item.is-active {
    font-weight: 700;
    color: var(--color-1);
}

/* .works-tab ul .works-tab-item.is-active a {
    
} */
.works-tab ul .works-tab-item.is-active a::before {
    content: '';
    display: block;
    height: 4px;
    width: 100%;
    position: absolute;
    bottom: -3px;
    left: 0;
    background-color: var(--color-1);

}

.works-tab-content {
    position: absolute;
    transform: scale(.8);
    opacity: 0;
    height: 0;
    transition: opacity 1s ease, transform 1s ease;
}

.works-tab-content.is-active {
    position: static;
    opacity: 1;
    transform: translateX(0);
    z-index: 1;
    height: auto;
}


.works-item {
    display: block;
    position: relative;
    overflow: hidden;
}

.works-item::after {
    content: '';
    display: block;
    background-image: url('../images/services-arrow.svg');
    background-repeat: no-repeat;
    background-size: cover;
    width: 22px;
    height: 22px;
    position: absolute;
    top: 20px;
    right: 20px;
    transform: translateY(-50px);
}

.works-item:hover::after {
    transform: rotate(-45deg);
}

.works-thumb {
    height: 500px;
    overflow: hidden;
}

.works-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.works-body {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 30px;
    background-color: var(--color-1);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: #fff;
    transition: 0.3s ease;
    opacity: 0;
}

.works-item:hover .works-body {
    opacity: 1;
}

.works-cat {
    font-size: 16px;
    color: #E8E5E5;
}

.works-name {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.3;
}

.works-col-2-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 25px;
}

.works-col-2-grid .works-item,
.works-col-3-grid .works-item,
.works-col-4-grid .works-item {
    width: 100%;
}

.works-col-3-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 25px;
}

.works-col-4-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 25px;
}

.works-col-4-grid .works-body {
    padding: 20px;
}

.works-col-4-grid .works-thumb {
    height: 350px;
}

.works-col-4-grid .works-name {
    font-size: 24px;
}

.works-col-4-grid .works-cat {
    font-size: 14px;
    margin-bottom: 8px;
}

.masonry-grid .works-item {
    width: 100%;
}

.masonry-grid .works-thumb {
    height: auto;
}

.grid-item {
    float: left;
    margin-bottom: 25px;
    overflow: hidden;
}

.grid-item a,
.grid-item a img {
    display: block;
}

.masonry-grid-2 .grid-sizer,
.masonry-grid-2 .grid-item {
    width: calc(50% - 10px);
}

.masonry-grid-3 .grid-sizer,
.masonry-grid-3 .grid-item {
    width: calc(33.3% - 14px);
}

.masonry-grid-4 .grid-sizer,
.masonry-grid-4 .grid-item {
    width: calc(25% - 15px);
}

.masonry-grid-4 .works-body {
    padding: 20px;
}

.masonry-grid-4 .works-cat {
    font-size: 14px;
}

.masonry-grid-4 .works-name {
    font-size: 24px;
}

/* Works END */

/* Work START */
.work-row {
    display: flex;
    column-gap: 40px;
}

.work-sidebar {
    min-width: 350px;
    width: 350px;
    border: 1px solid var(--color-1);
    height: 100%;
    padding: 25px;
    position: sticky;
    top: 15px;
}

.work-info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.work-info-item:nth-last-child(n+2) {
    margin-bottom: 10px;
    border-bottom: 1px solid #dedede;
    padding-bottom: 14px;
}

.work-info-key {
    font-weight: 700;
}

.work-info-val {
    text-align: left;
}

.work-content {
    width: 100%;
}

.work-thumb {
    margin-bottom: 20px;
}

.work-thumb img {
    width: 100%;
    display: block;
}

.work-content h2 {
    font-size: 38px;
}

.work-content h1,
h2,
h3,
h4,
h5,
h6 {
    margin-bottom: 15px;
}

.work-nav-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #dedede;
    border-bottom: 1px solid #dedede;
    margin-top: 50px;
    overflow: hidden;
    position: relative;
}

.work-nav-item {
    display: flex;
    align-items: center;
    column-gap: 20px;
    padding: 20px;
    z-index: 0;
}

.work-nav-item:first-child:hover .work-nav-icon {
    transform: translateX(-10px);
}

.work-nav-item:last-child:hover .work-nav-icon {
    transform: translateX(10px);
}

.work-nav-icon {
    transition: 0.5s ease;
}

.work-nav-icon img {
    max-width: 22px;
    vertical-align: middle;
}

/* Work END */

/* Gallery START */
.gallery-wrap .works-item {
    height: 250px;
    position: relative;
}

.gallery-wrap .works-item::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.25);
    opacity: 0;
    transform: scale(0.5);
    transition: transform 0.5s ease, opacity 0.5s ease;
}

.gallery-wrap .works-item:hover::before {
    transform: none;
    opacity: 1;
}

.gallery-wrap .works-item::after {
    content: '';
    display: block;
    background-image: url('../images/magnify.svg');
    background-repeat: no-repeat;
    background-size: 100% 100%;
    width: 50px;
    height: 50px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin-top: 10px;
    transition: margin-top 0.5s ease, opacity 0.5s ease;
    opacity: 0;
}

.gallery-wrap .works-item:hover::after {
    margin-top: 0;
    opacity: 1;
}

/* Gallery END */

/* News START */
.news-wrap {
    position: relative;
    overflow: hidden;
}

.news-wrap::before {
    content: '';
    display: block;
    background-image: url(../images/breadcrumbs-layer.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 363px;
    height: 375px;
    z-index: -1;
}

.news-wrap::after {
    content: '';
    display: block;
    background-image: url(../images/dots.svg);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    width: 184px;
    height: 184px;
    position: absolute;
    bottom: -40px;
    left: -30px;
}

.news-row {
    display: flex;
    align-items: center;
    column-gap: 50px;
}

.news-left {
    min-width: 350px;
    margin-left: 200px;
}

.news-right {
    width: 100%;
}

.news-wrap .container {
    max-width: none;
    padding: 0;
}

.news-row {
    width: 100%;
}

.swiper-news {
    padding-right: 50px;
}

.swiper-news .swiper-slide {
    max-width: 335px;
}

.news-item {
    border: 1px solid #DEDEDE;
}

.news-thumb {
    display: block;
    height: 250px;
    position: relative;
}

.news-thumb img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-date {
    position: absolute;
    right: 10px;
    bottom: 10px;
    background-color: var(--color-1);
    color: #fff;
    text-align: center;
    padding: 10px 20px;
}

.news-date strong {
    display: block;
    font-size: 25px;
    line-height: 1;
}

.news-body {
    padding: 20px 20px 30px 20px;
}

.news-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    transition: color 0.35s ease;
}

.news-title:hover {
    color: var(--color-1);
}

.news-desc {
    color: #969494;
}

.news-readmore {
    background-color: var(--color-4);
    display: block;
    padding: 14px 18px;
    font-weight: 700;
    color: var(--color-1);
    position: relative;
    z-index: 0;
    transition: color 0.5s ease;
    overflow: hidden;
}

.news-readmore::before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: var(--color-1-hover);
    transform: translateX(-99%);
    transition: 0.6s ease-out;
    z-index: -1;
}

.news-readmore:hover {
    color: #fff;
}

.news-readmore:hover::before {
    transform: none;

}

.news-readmore::after {
    content: '';
    display: inline-block;
    background-image: url('../images/news-arrow.svg');
    background-repeat: no-repeat;
    background-size: cover;
    width: 17px;
    height: 17px;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    transition: 0.5s;
    transition-delay: 0.5s;
}

.news-readmore:hover::after {
    background-image: url('../images/news-arrow-white.svg');

}

/* News END */


/* Reviews START */
.reviews-wrap {
    background-color: #F8F8F8;
    padding-bottom: 20px;
}


.reviews-row {
    display: flex;
    align-items: center;
    column-gap: 20px;
}

.reviews-left {
    min-width: 350px;
}

.reviews-right {
    width: 100%;
}

.swiper-reviews {
    height: 420px;
}

.reviews-item {
    padding-right: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    height: 460px;
}

.reviews-text {
    margin-bottom: 20px;
    color: #515151;
    font-size: 18px;
}

.reviews-text p {
    margin-bottom: 0;
}

.reviews-footer {
    display: flex;
    column-gap: 0px;
    align-items: center;
}

.reviews-thumb {
    width: 100px;
    height: 100px;
    overflow: hidden;
    border: 1px solid var(--color-1);
    margin-right: 20px;
}

.reviews-thumb img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.reviews-name {
    /* font-size: ; */
    color: #AAA2A2;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.reviews-spec {
    font-size: 20px;
    font-weight: 500;
    color: #242222c0;
}

/* Reviews END */

/* Partners START */
.partners-item {
    display: block;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.partners-item img {
    margin: 0 auto;
    display: block;
}

.partners-item img:nth-child(2) {
    position: relative;
    transition: 0.8s ease;
}

.container-logo{
    /* max-width: 100px; */
    margin: 0 auto;
    /* padding: 0 20px; */
}

.swiper-partners .swiper-wrapper {
    display: flex;
    align-items: center;
}

/* Partners END */

/* Workflow START */
.workflow-wrap {
    background-color: #F2F2F2;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    z-index: 0;
}

.workflow-wrap::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    background-image: url('../images/geometry-1.png');
    height: 100%;
    width: 100%;
    z-index: -1;
}

.workflow-title-wrap {
    margin-bottom: 40px;
}

.workflow-row {
    display: flex;
    column-gap: 25px;
    max-width: 930px;
}

.workflow-item {
    border: 1px solid var(--color-1);
    padding: 40px 35px 140px 35px;
    position: relative;
    background-color: #fff;
    width: 33%;
}

.workflow-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 18px;
}

.workflow-desc p {
    margin-bottom: 0;
    font-size: 16px;
    line-height: 1.5;
    color: var(--color-text);
}

.workflow-num {
    background-color: var(--color-3);
    color: #fff;
    font-weight: 700;
    font-size: 35px;
    display: inline-block;
    padding: 8px 25px 8px 40px;
    position: absolute;
    left: 0;
    bottom: 30px;
}

.workflow-image {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    z-index: -1;
    width: 610px;
    overflow: hidden;
}

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

/* Workflow END */

/* Form START */
.form-wrap {
    position: relative;
    z-index: 0;
    background-color: #eceaea;
    overflow: hidden;
}

.form-wrap::before {
    content: '';
    display: block;
    background-image: url('../images/geometry-3.png');
    position: absolute;
    top: 0;
    right: -43px;
    width: 670px;
    height: 678px;
    z-index: -1;
}

.form-wrap::after {
    content: '';
    display: block;
    background-image: url('../images/geometry-3.png');
    position: absolute;
    bottom: 0;
    left: 0;
    width: 670px;
    height: 678px;
    z-index: -1;
    transform: rotate(180deg);
}

.form-title-wrap {
    margin-bottom: 30px;
}

.form-row {
    display: flex;
    align-items: center;
}

.form-touch {
    background-color: #29425df1;
    padding: 60px 70px;
    min-width: 590px;
}

.form-label {
    display: block;
    position: relative;
    margin-bottom: 25px;
}

.form-label .inp-icon {
    position: absolute;
    left: 0;
    top: 4px;
    display: inline-block;
}

.form-label .inp-message-icon {
    top: -2px;
}

.form-label .inp-icon img {
    display: inline-block;
    vertical-align: middle;
}

.form-label input,
.form-label textarea {
    background: none;
    border: none;
    color: #fff;
    font-family: var(--font);
    font-size: 16px;
    border-bottom: 1px solid #fff;
    padding: 0 0 0 40px;
    margin: 0;
    width: 100%;
    display: block;
    outline: none;
    height: 46px;
}

.form-label input::placeholder,
.form-label textarea::placeholder {
    color: #e0e0e0;
}

.form-label textarea {
    height: 100px;
}

.form-button .button {
    padding: 16px 35px;
    font-size: 16px;
}


/* Progress START */
.skills-wrap {
    background-color: var(--color-3);
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, .4);
}

.skills-title-wrap {
    margin-bottom: 40px;
}

.skills-row {
    display: flex;
    column-gap: 45px;
}

.skills-left {
    max-width: 550px;
}

.progress-top {
    display: flex;
    justify-content: space-between;
    font-weight: 700;
}

.progress-line {
    width: 100%;
    height: 12px;
    background-color: #fff;
}

.progress-top {
    margin-bottom: 12px;
}

.progress-drag {
    background-color: var(--color-1);
    width: 0;
    height: 100%;
    transition: 0.5s ease-out;
}

.progress-item:nth-last-child(n+2) {
    margin-bottom: 20px;
}

.skills-right {
    overflow: hidden;
    width: 600px;
    height: 300px;
    margin-top: 30px;
    margin-left: auto;
    border-left: 1px solid #fff;
    border-right: 1px solid #fff;
    border-bottom: 1px solid #fff;
    border-top: 1px solid #fff;
    position: relative;
}

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

.skills-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.skills-play a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 80px;
    padding: 10px;
    background-color: var(--color-1);
    animation: pulse-animation 2s infinite;
}

.skills-play a img {
    width: 35px;
    height: 35px;
    transition: 0.5s ease;
}

.skills-play a:hover img {
    transform: scale(1.1);
}

@keyframes pulse-animation {
    0% {
        box-shadow: 0 0 0 0px rgba(43, 38, 205, 0.2);
    }

    100% {
        box-shadow: 0 0 0 20px rgba(135, 27, 185, 0);
    }
}

.progress-drag.progress-60 {
    width: 60%;
}

.progress-drag.progress-65 {
    width: 65%;
}

.progress-drag.progress-70 {
    width: 70%;
}

.progress-drag.progress-75 {
    width: 75%;
}

.progress-drag.progress-80 {
    width: 80%;
}

.progress-drag.progress-85 {
    width: 85%;
}

.progress-drag.progress-90 {
    width: 90%;
}

.progress-drag.progress-95 {
    width: 95%;
}

.progress-drag.progress-100 {
    width: 100%;
}

/* Progress END */

/* Blog START */
.blog-row {
    display: flex;
    column-gap: 40px;
}

.blog-wrap {
    width: 100%;
}

.blog-classic .blog-thumb {
    width: 100%;
    height: 400px;
    overflow: hidden;
    margin-bottom: 20px;
}

.blog-classic .blog-thumb a {
    display: block;
    height: 100%;
}

.blog-classic .blog-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-classic .blog-meta {
    border-bottom: 1px solid #E6E6E6;
    margin-bottom: 20px;
    padding-bottom: 15px;
}

.blog-classic .blog-meta ul {
    list-style-type: none;
    display: flex;
    column-gap: 10px;
    padding: 0;
    margin-bottom: 0;
}

.blog-classic .blog-meta ul li {
    color: #616060;
}

.blog-classic .blog-meta ul strong {
    color: #000;
}

.blog-classic .blog-title {
    font-size: 32px;
    margin-bottom: 15px;
}

.blog-excerpt {
    margin-bottom: 20px;
}

.blog-excerpt p {
    font-size: 16px;
    color: var(--color-text);
    margin-bottom: 0;
}

.blog-list .blog-meta {
    margin-bottom: 10px;
}

.blog-list .blog-meta ul {
    list-style-type: none;
    padding: 0;
    display: flex;
    column-gap: 10px;
    color: #616060;
    margin-bottom: 0;
}

.blog-list .blog-title {
    font-size: 24px;
    margin-bottom: 15px;
    transition: color 0.35s ease;
}

.blog-list .blog-meta ul strong {
    color: #000;
}

.blog-list .blog-item {
    display: flex;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #DEDEDE;
}

.blog-item:hover .blog-title {
    color: var(--color-1);
}

.blog-list .blog-thumb {
    height: 100%;
    width: 260px;
}

.blog-list .blog-thumb a {
    display: block;
    height: 100%;
}

.blog-list .blog-thumb a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.blog-list .list-right {
    padding: 30px 15px 30px 25px;
}

.blog-list .blog-excerpt {
    margin-bottom: 0;
}

.blog-grid .blog-wrap {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.blog-grid .blog-item {
    border: 1px solid #DEDEDE;
}

.blog-grid .blog-body {
    padding: 0 20px 20px 20px;
}

.blog-grid .blog-thumb {
    height: 220px;
    overflow: hidden;
    margin-bottom: 20px;
}

.blog-grid .blog-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-grid .blog-meta {
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #d5d2d2;
}

.blog-grid .blog-meta ul {
    list-style-type: none;
    padding: 0;
    margin-bottom: 0;
    display: flex;
    column-gap: 10px;
    row-gap: 5px;
    flex-wrap: wrap;
}

.blog-grid .blog-meta ul li {
    color: #616060;
}

.blog-grid .blog-meta ul li strong {
    color: #000;
}

.blog-grid .blog-title {
    transition: color 0.5s ease;
    font-size: 25px;
    line-height: 1.3;
}

.blog-title a {
    transition: color 0.5s ease;
}

.blog-grid .blog-title:hover {
    color: var(--color-1);
}

.blog-btn .button {
    font-size: 14px;
}


.widget-area {
    width: 350px;
    min-width: 350px;
    border: 1px solid var(--color-1);
    padding: 25px;
    height: 100%;
    margin-left: auto;
}



.img-lable {
    max-width: 290px;
    max-height: 112px;
    border: 1px solid rgba(72, 144, 195, 0.274);
    margin-bottom: 30px;
}

.img-lable img {
    max-width: 290px;
    max-height: 112px;
}

.img-poster {
    max-width: 290px;
    max-height: 410px;
    border: 1px solid rgba(72, 144, 195, 0.274);
    margin-bottom: 30px;
}

.img-poster img {
    max-width: 290px;
    max-height: 410px;
}




.blog-classic .blog-item {
    margin-bottom: 50px;
}

.paginations {
    margin-top: 70px;
    --padding: 12px 15px;
}

.paginations ul {
    list-style-type: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    column-gap: 12px;
    row-gap: 15px;
}

.paginations ul li a {
    display: block;
    padding: var(--padding);
    background-color: #e6e6e6;
    transition: color 0.3s ease, background-color 0.3s ease;
}

.paginations ul li .current {
    display: block;
    padding: var(--padding);
    background-color: var(--color-1);
    color: #fff;
    font-weight: 700;
}

.paginations ul li a:hover {
    background-color: var(--color-1-hover);
    color: #fff;
}

.widget {
    margin-bottom: 30px;
}

.widget-title {
    font-size: 22px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    position: relative;
}

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

.widget_categories ul li {
    display: flex;
    align-items: center;
    color: #373535;
}

.widget_categories ul li::before {
    content: '';
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 100%;
    background-color: var(--color-1);
    margin-right: 10px;
    vertical-align: middle;
}

.widget_categories ul li:hover {
    color: var(--color-black);
}

.widget_categories ul li:nth-last-child(n+2) {
    margin-bottom: 10px;
}


.recent-thumb {
    width: 70px;
    height: 70px;
    display: block;
}

.recent-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.widget_recent_entries .post-date {
    font-size: 14px;
    font-weight: 700;
    color: #585555;
}

.widget_recent_entries .recent-title {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
    display: block;
    transition: color 0.35s ease;
}

.widget_recent_entries .recent-title:hover {
    color: #424040;
}

.tagcloud {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    list-style-type: none;
    padding: 0;
    margin-bottom: 0;
}

.tagcloud li a {
    border: 1px solid #cccccc;
    padding: 8px 15px;
    display: block;
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    transition: 0.5s ease;
}

.tagcloud li a:hover {
    background-color: var(--color-1-hover);
    color: #fff;
}

/* Blog END */

/* Article START */
.article-row {
    display: flex;
    column-gap: 40px;
}

.article-content {
    width: 100%;
}

.article-content p {
    margin-bottom: 25px;
}

.article-content a {
    color: var(--color-1);
    text-decoration: underline;
}

.article-content img {
    max-width: 100%;
}

.article-content ul {
    padding: 0;
    margin-bottom: 25px;
}

.article-content ul li {
    list-style-type: none;
    display: flex;
    align-items: center;
}

.article-content ul li:nth-last-child(n+2) {
    margin-bottom: 10px;
}

.article-content ul li::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 100%;
    background-color: var(--color-1);
    display: inline-block;
    margin-right: 10px;
    vertical-align: middle;
}

.article-content ul.tagcloud li {
    margin-bottom: 0;
}

.article-content ul.tagcloud li::before {
    display: none;
}

.article-content ul.tagcloud li a {
    color: var(--color-black);
    text-decoration: none;
}

.article-content ul.tagcloud li a:hover {
    color: #fff;
}

.article-content blockquote p {
    margin-bottom: 0;
}

.article-thumb {
    height: 380px;
    overflow: hidden;
    margin-bottom: 20px;
}

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

.article-wrap .blog-meta {
    border-bottom: 1px solid #E6E6E6;
    margin-bottom: 20px;
    padding-bottom: 15px;
}

.article-wrap .blog-meta ul {
    display: flex;
    column-gap: 10px;
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.article-wrap .blog-meta ul li {
    margin-bottom: 0;
}

.article-wrap .blog-meta ul li::before {
    display: none;
}

.article-wrap .blog-meta strong {
    color: #000;
}

.nav-links {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #E1E1E1;
    padding-top: 30px;
}

.nav-links a {
    display: block;
    color: var(--color-black);
    text-decoration: none;
}

.nav-arrow img {
    max-width: 12px;
}

.nav-head {
    margin-bottom: 8px;
    column-gap: 8px;
    display: flex;
    align-items: center;
    opacity: 0.7;
    transition: opacity 0.5s ease;
}

.nav-links a:hover .nav-head {
    opacity: 1;
}

.nav-links a:hover .nav-title {
    color: var(--color-1);
}

.nav-title {
    font-size: 18px;
    font-weight: 700;
    transition: color 0.5s ease;
}

.nav-next {
    text-align: right;
}

.nav-next .nav-head {
    justify-content: flex-end;
}


.form-agree-label {
    user-select: none;
    display: flex;
    align-items: center;
    column-gap: 10px;
    margin-bottom: 25px;
}

.form-agree-label input {
    appearance: none;
    width: 20px;
    height: 20px;
    border: 1px solid #b9b8b8;
    border-radius: 0;
    margin: 0;
    transition: background-color 0.3s ease;
}

.form-agree-label input:checked {
    background-color: var(--color-1);
    border-color: var(--color-1);
    background-image: url('../images/check-white.svg');
    background-repeat: no-repeat;
    background-size: 15px 15px;
    background-position: center center;
}

/* Article END */

/* Contact START */

.getting-row {
    display: flex;
    align-items: center;
    column-gap: 100px;
    margin-bottom: 100px;
}

.getting-left {
    width: 600px;
}

.getting-right {
    display: flex;
    flex-wrap: wrap;
    gap: 50px 60px;
}

.getting-item {
    display: flex;
    width: calc(50% - 30px);
    column-gap: 18px;
}

.getting-icon {
    width: 38px;
}

.getting-icon img {
    max-width: 38px;
}

.getting-title {
    font-weight: 500;
    color: var(--color-1);
}

.getting-value {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-black);
}

.contact-map {
    height: 400px;
}

.contact-map iframe {
    display: block;
    width: 100%;
    height: 100%;
}

/* Contact END */

/* Error START */
.error-wrap {
    text-align: center;
    background-color: var(--color-3-hover);
    color: #fff;
    position: relative;
}

.error-wrap::before {
    content: '';
    display: block;
    background-image: url('../images/breadcrumbs-layer.png');
    background-repeat: no-repeat;
    background-size: 100% 100%;
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 263px;
    height: 275px;
}

.error-wrap::after {
    content: '';
    display: block;
    background-image: url('../images/breadcrumbs-layer.png');
    background-repeat: no-repeat;
    background-size: 100% 100%;
    position: absolute;
    bottom: 0;
    right: 0;
    display: block;
    width: 263px;
    height: 275px;
    transform: scale(-1);
}

.error-title {
    font-size: 90px;
    line-height: 1;
    margin-bottom: 10px;
}

.error-subtitle {
    font-size: 50px;
    text-transform: uppercase;
}

.error-desc {
    color: #efeeee;
    margin-bottom: 34px;
}

/* Error END */

/* Footer START */
.s-footer {
    background-color: #29425d;
    color: #fff;
    padding-bottom: 10px;
    overflow: hidden;
}

.footer-top {
    padding: 40px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.footer-logo img {
    width: 170px;
    display: block;
}

.footer-info-wrap {
    display: flex;
    column-gap: 60px;
}

.footer-info-item {
    display: flex;
}

.footer-info-icon {
    padding: 10px;
    border: 1px solid #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 15px;
    position: relative;
    overflow: hidden;
    z-index: 0;
}

.footer-info-icon::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-1);
    z-index: -1;
    opacity: 0;
    transform: translateY(-100%);
    transition: 0.8s ease;
}

.footer-info-item:hover .footer-info-icon::before {
    transform: none;
    opacity: 1;
}

.footer-info-icon img {
    max-width: 18px;
}

.footer-info-title {
    font-size: 14px;
    color: #DADADA;
}

.footer-info-value {
    font-weight: 700;
    font-size: 16px;
}

.footer-center {
    margin: 50px 0px 0px 100px;
}

.footer-title {
    font-size: 40px;
    text-transform: uppercase;
    margin-bottom: 35px;
}

.footer-nav-row {
    display: flex;
    column-gap: 90px;
}

.footer-nav-title {
    margin-left: 0px;
    font-size: 20px;
    font-weight: 700;
}

.footer-ul {
    padding: 0px;
    list-style-type: none;
}

.footer-ul li a {
    color: #d1d0d0da;
    transition: 0.5s ease;
}

.footer-ul li a:hover {
    color: #fff;
}

.footer-ul li:nth-last-child(n+2) {
    margin-bottom: 10px;
}

.footer-img{
    margin-top: 10px;
}

.footer-nav iframe {
    display: block;
    max-width: 400px;
    height: 200px;
}

/* .hr-line {
    border-top: 1px solid rgba(255, 255, 255, .4);
    margin-bottom: 10px;
} */

.footer-bottom {
    display: flex;
    align-items: center;
    column-gap: 30px;
    justify-content: center;
    padding: 0 0 0 25px;
}

.footer-copyright {
    color: #e9e0e0;
}

.footer-bottom-nav ul {
    padding: 0;
    list-style-type: none;
    display: flex;
    column-gap: 20px;
    margin-bottom: 0;
}

.footer-bottom-nav ul li a {
    color: #D1D0D0;
    transition: 0.5s ease;
}

.footer-bottom-nav ul li a:hover {
    color: #fff;
}




.footer-top{
    padding: 50px 0;
    position: relative;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-top .footer-bg{
    background-image: url(../images/element/city-skiline.png);
    background-size: 100%;
    background-position: bottom center;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
    overflow: hidden;
}

.footer-top .truck{
    background-image: url(../images/element/truck-1.png);
    background-repeat: no-repeat;
    background-position: right bottom;
    background-size: contain;
    position: absolute;
    width: 70px;
    height: 40px;
    right: 0;
    bottom: 0;
    animation: running-anim 20s linear infinite;
    opacity: 100%;
}
.footer-top .truck-2 {
    background-image: url(../images/element/truck-2.png);
    background-repeat: no-repeat;
    background-position: right bottom;
    background-size: contain;
    position: absolute;
    width: 90px;
    height: 40px;
    right: 30%;
    bottom: 0;
    animation: running-anim 25s linear infinite;
    opacity: 100%;
}

.footer-top .truck-3 {
    background-image: url(../images/element/truck-3.png);
    background-repeat: no-repeat;
    background-position: right bottom;
    background-size: contain;
    position: absolute;
    width: 100px;
    height: 100px;
    right: 70%;
    bottom: 0;
    animation: running-anim-left 35s linear infinite;
    opacity: 100%;
}

.footer-top .truck-4 {
    background-image: url(../images/element/truck-4.png);
    background-repeat: no-repeat;
    background-position: right bottom;
    background-size: contain;
    position: absolute;
    width: 100px;
    height: 100px;
    right: 70%;
    bottom: 0;
    animation: running-anim 35s linear infinite;
    opacity: 100%;
}


@keyframes running-anim {
    0% {
        right: -30%
    }
    100% {
        right: 100%
    }
}

@-moz-keyframes running-anim-left {
    0% {
        left: -30%
    }
    100% {
        left: 100%
    }
}

@-webkit-keyframes running-anim-left {
    0% {
        left: -30%
    }
    100% {
        left: 100%
    }
}

@keyframes running-anim-left {
    0% {
        left: -30%
    }
    100% {
        left: 100%
    }
}

/* footer End */



/* Responsive START */
@media screen and (max-width: 1200px) {
    /* Header 575 START */
    .header-logo img {
        max-width: 260px;
        max-height: 80px;
        margin-left: 20px;
    }

    /* Header 575 END */

    /* Features 1200 START */
    .features-left {
        display: none;
    }

    .features-right {
        margin-left: 60px;
        max-width: none;
    }

    .features-row{
        margin-left: 60px;

    }

    /* Features 1200 END */

    /* News 1200 START */
    .news-left {
        margin-left: 30px;
    }

    /* News 1200 END */

    /* Workflow 1200 START */
    .form-wrap .form-touch {
        min-width: 490px;
    }

    .form-wrap .form-row {
        justify-content: center;
    }

    /* Workflow 1200 END */

    /* Newsletter 1200 START */
    .newletter-wrap::after {
        width: 420px;
        height: 230px;
    }

    /* Newsletter 1200 END */

    /* Team 1200 START */
    .team-scroll-grid .team-item {
        width: calc(50% - 10px);
    }

    /* Team 1200 END */

    /* Blog 1200 START */
    .blog-grid .blog-wrap {
        gap: 20px;
    }

    .blog-grid .blog-meta ul {
        font-size: 14px;
    }

    /* Blog 1200 END */

    /* Service 1200 START */
    .service-sidebar {
        min-width: 300px;
    }

    /* Service 1200 END */

    /* Work 1200 START */
    .work-sidebar {
        width: 300px;
        min-width: 300px;
    }

    /* Work 1200 END */

    /* Footer 1200 START */
    .footer-nav-row {
        column-gap: 80px;
    }

    /* Footer 1200 END */

}

@media screen and (max-width: 1024px) {

    /* Global 1024 START */
    #cursor {
        display: none;
    }

    /* Global 1024 END */

}

@media screen and (max-width: 992px) {

    /* Global 992 START */
    .p-80 {
        padding: 60px 0;
    }

    .p-100 {
        padding: 80px 0;
    }

    /* Global 992 END */

    /* Header 992 START */
    .hamburger,
    .header-mobile-search {
        display: block;
        cursor: pointer;
    }

    .hamburger img {
        width: 40px;
    }

    .header-mobile-search img {
        width: 22px;
    }

    .header-mobile-search {
        margin-left: auto;
        margin-right: 20px;
    }

    .header-top {
        padding: 10px 0;
    }

    .header-el-wrap {
        display: none;
    }

    .header-bottom-row {
        display: none;
    }

    .header-logo img {
        max-width: 240px;
        margin-left: 20px;
    }

    .header-row {
        align-items: center;
    }

    .header-mobile-wrap {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: var(--color-3);
        color: #fff;
        z-index: 9;
        padding: 20px 30px;
        transition: 0.8s ease;
        transform: translateX(calc(100% + 20px));
        overflow-y: auto;
    }

    .header-mobile-wrap.is-active {
        transform: none;
    }

    .header-mobile-row {
        display: flex;
        align-items: center;
    }

    .header-mobile-left,
    .header-mobile-right {
        width: 50%;
    }

    .header-mobile-left {
        border-right: 1px solid rgba(255, 255, 255, .4);
        margin-right: 50px;
    }

    .header-mobile-wrap .header-menu {
        margin-left: 0;
        margin-bottom: 40px;
    }

    .header-mobile-wrap .header-menu ul {
        flex-direction: column;
        align-items: flex-start;
        row-gap: 20px;
    }

    .header-mobile-wrap .header-menu ul li {
        position: relative;
        width: 100%;
    }

    .header-mobile-wrap .header-menu ul li .menu-open-arrow {
        position: absolute;
        top: 0;
        width: 30px;
        height: 30px;
        right: 20px;
        display: flex;
        justify-content: center;
        align-items: center;
        cursor: pointer;
        background-color: var(--color-1);
    }

    .header-mobile-wrap .header-menu ul li .menu-open-arrow.is-active {
        transform: rotate(180deg);
    }

    .header-mobile-wrap .header-menu ul li .menu-open-arrow img {
        width: 50%;
        vertical-align: middle;
        display: inline-block;
    }

    .header-mobile-wrap .header-menu ul li a {
        font-size: 22px;
        font-weight: 700;
        text-transform: uppercase;
        padding: 0;
    }

    .header-mobile-wrap .header-menu ul li:hover>a {
        background: none;
    }

    .header-mobile-wrap .header-menu ul li.menu-item-has-children>a::after {
        display: none;
    }

    .header-mobile-wrap .header-menu ul li.current-menu-item a {
        background: none;
    }

    .header-mobile-wrap .header-menu ul.sub-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        border: none;
        margin-top: 10px;
        transform: none;
        transition: initial;
        display: none;
        padding-left: 15px;
    }

    .header-mobile-wrap .header-menu ul.sub-menu li {
        height: auto;
    }

    .header-mobile-wrap .header-menu ul.sub-menu li a {
        font-weight: 400;
        text-transform: none;
        margin-bottom: 10px;
        font-size: 18px;
        color: #e9e9e9;
    }

    .header-mobile-wrap .header-menu ul.sub-menu li a:hover {
        color: #fff;
    }

    .header-mobile-top {
        display: flex;
        justify-content: space-between;
        align-items: center;
        border-bottom: 1px solid rgba(255, 255, 255, .4);
        padding-bottom: 15px;
        margin-bottom: 30px;
    }

    .header-mobile-close {
        cursor: pointer;
    }

    .header-mobile-close img {
        max-width: 28px;
    }

    .header-mobile-el {
        margin-bottom: 30px;
    }

    .header-mobile-el .header-el-item {
        margin-bottom: 20px;
    }

    .header-mobile-social {
        display: flex;
        align-items: center;
        column-gap: 25px;
    }

    .header-mobile-social a img {
        max-width: 27px;
    }

    .header-mobile-wrap .header-button a {
        padding: 18px 25px;
    }

    /* Header 992 END */

    /* Banner 992 START */
    .banner-title {
        font-size: 50px;
    }

    .banner-wrap .swiper-button-prev,
    .banner-wrap .swiper-button-next {
        width: 150px;
        height: 100px;
    }

    /* Banner 992 END */

    /* Numbers 992 START */
    .numbers-row {
        column-gap: 50px;
    }

    .numbers-item:nth-last-child(n+2) {
        padding-right: 50px;
    }

    .numbers-subtitle {
        font-size: 16px;
    }

    /* Numbers 992 END */

    /* About 992 START */
    .about-row {
        align-items: flex-start;
        column-gap: 30px;
    }

    /* About 992 END */

    /* Skills 992 START */
    .skills-left {
        max-width: 420px;
    }

    .skills-right {
        margin-top: -80px;
    }

    /* Skills 992 END */

    /* Services 992 START */
    .services-row {
        flex-wrap: wrap;
    }

    .services-row .services-item {
        width: calc(33.3% - 13.5px);
    }

    /* Services 992 END */

    /* Marquee 992 START */
    .marquee-wrap {
        padding: 20px 0;
    }

    .marquee-item {
        font-size: 46px;
    }

    /* Marquee 992 END */

    /* News 992 START */
    .news-wrap::before {
        width: 263px;
        height: 275px;
    }

    .news-wrap::after {
        width: 100px;
        height: 100px;
        right: 0;
        top: 0;
        left: auto;
    }

    .news-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .news-left {
        padding: 0 30px;
        margin-left: 0;
        margin-bottom: 30px;
        min-width: auto;
    }

    .swiper-news .swiper-slide {
        max-width: 300px;
    }

    .swiper-news {
        padding-left: 30px;
    }

    /* News 992 END */

    /* Team 992 START */
    .team-wrap .team-item {
        width: calc(50% - 10px);
    }

    .team-wrap .team-thumb {
        height: 300px;
    }

    .team-scroll-left {
        min-width: auto;
    }

    .team-single-row {
        column-gap: 30px;
    }

    .team-single-left {
        min-width: 300px;
        width: 300px;
        height: 400px;
    }

    /* Team 992 END */

    /* Reviews 992 START */
    .reviews-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .reviews-left {
        min-width: auto;
        margin-bottom: 30px;
    }

    .reviews-item {
        justify-content: flex-start;
    }

    .swiper-reviews {
        height: 400px;
    }

    .def-subtitle{
        margin-top: 60px;
    }

    /* Reviews 992 END */

    /* Workflow 992 START */
    .workflow-row {
        column-gap: 20px;
    }

    .workflow-item {
        padding: 40px 25px 140px 25px;
    }

    .workflow-title {
        font-size: 28px;
    }

    .workflow-desc p {
        font-size: 14px;
    }

    /* Workflow 992 END */

    /* Team 992 START */
    .team-scroll-row {
        flex-direction: column;
    }

    .team-scroll-left {
        max-width: none;
        margin-bottom: 30px;
        position: static;
    }

    .team-scroll-right {
        margin: 0 auto;
    }

    /* Team 992 END */

    /* Form 992 START */
    .form-wrap .form-row {
        flex-direction: column;
    }

    .form-wrap .form-touch {
        min-width: auto;
        width: 100%;
    }

    .form-wrap .faq-wrap {
        width: 100%;
    }

    .form-wrap .faq-item {
        max-width: none;
    }

    /* Form 992 END */

    /* Works 992 START */
    .works-tab ul {
        column-gap: 40px;
        padding: 15px 0;
        flex-wrap: wrap;
    }

    .works-tab ul .works-tab-item a {
        padding: 10px 0;
    }

    .works-body {
        opacity: 1;
        background-color: rgba(42, 69, 96, 0.6);
        padding: 20px;
    }

    .works-col-2-grid .works-thumb {
        height: 300px;
    }

    .works-col-4-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    /* Works 992 END */

    /* Blog 992 START */
    .blog-row {
        flex-direction: column;
    }

    .blog-classic .blog-title {
        font-size: 28px;
    }

    .widget-area {
        width: 100%;
        min-width: auto;
    }

    .blog-wrap {
        margin-bottom: 30px;
    }

    .blog-grid .blog-wrap {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Blog 992 END */

    /* Article 992 START */
    .article-row {
        flex-direction: column;
    }

    .article-group {
        margin-bottom: 40px;
    }

    .article-thumb {
        height: 320px;
    }

    /* Article 992 END */

    /* Service 992 START */
    .service-row {
        flex-wrap: wrap;
    }

    .service-sidebar {
        position: static;
        order: 1;
        width: 100%;
        min-width: auto;
    }

    .service-content {
        margin-bottom: 30px;
    }

    .service-pdf-item {
        padding: 10px 15px;
    }

    /* Service 992 END */

    /* Work 992 START */
    .work-sidebar {
        position: static;
        width: 100%;
        max-width: auto;
        margin-bottom: 30px;
    }

    .work-row {
        flex-direction: column;
    }

    /* Work 992 END */

    /* Contact 992 START */
    .getting-row {
        column-gap: 50px;
    }

    .getting-right {
        gap: 30px;
    }

    /* Contact 992 END */

    /* Footer 992 START */
    .footer-top {
        flex-direction: column;
        row-gap: 30px;
    }

    /* Footer 992 END */

}

@media screen and (max-width: 768px) {
    /* Header 575 START */
    .header-logo img {
        max-width: 200px;
        margin-left: 20px;
    }

    .hamburger img {
        width: 50px;
    }

    /* Header 575 END */

    /* Global 768 START */
    .def-title {
        font-size: 18px;
    }

    .def-subtitle {
        font-size: 40px;
        line-height: 1.3;
    }

    /* Global 768 END */

    /* Banner 768 START */
    .banner-row {
        padding: 90px 0;
    }

    .banner-left {
        padding: 30px 20px;
    }

    .banner-wrap .swiper-button-prev,
    .banner-wrap .swiper-button-next {
        display: none;
    }

    .banner-wrap .swiper-pagination {
        left: 20px;
        right: auto;
    }

    /* Banner 768 END */

    /* Numbers 768 START */
    .numbers-row {
        flex-wrap: wrap;
        column-gap: 30px;
        row-gap: 40px;
    }

    .numbers-title {
        font-size: 46px;
    }

    .numbers-item {
        width: calc(50% - 15px);
        border: none !important;
    }

    .numbers-item:nth-last-child(n+2) {
        padding-right: 0;
    }

    /* Numbers 768 END */

    /* About 768 START */
    .about-row {
        flex-direction: column;
    }

    .about-left {
        width: 100%;
        height: 500px;
        margin-bottom: 30px;
    }

    .about-right {
        width: 100%;
    }

    .about-feat-row {
        flex-wrap: wrap;
        gap: 20px;
        justify-content: center;
    }

    .about-feat-item {
        width: calc(50% - 10px);
    }

    /* About 768 END */

    /* Skills 768 START */
    .skills-row {
        flex-direction: column;
    }

    .skills-left {
        max-width: none;
        margin-bottom: 20px;
    }

    .skills-right {
        margin-top: 30px;
        margin-left: 0;
        width: 100%;
        height: 450px;
    }

    /* Skills 768 END */

    /* Features 768 START */
    .features-row {
        flex-wrap: wrap;
        row-gap: 20px;
    }

    .features-item {
        width: calc(50% - 10px);
    }

    /* Features 768 END */

    /* Services 768 START */
    .services-wrap .title-center {
        margin-bottom: 40px;
    }

    .services-wrap::after {
        display: none;
    }

    .services-row .services-item {
        width: calc(50% - 10px);
    }

    /* Services 768 END */

    /* News 768 START */
    .news-wrap::before {
        width: 213px;
        height: 225px;
    }

    .news-wrap::after {
        width: 100px;
        height: 100px;
    }

    /* News 768 END */


    /* Works 768 START */
    .works-col-3-grid,
    .works-col-4-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .masonry-grid .works-body {
        padding: 15px;
        position: static;
        background-color: var(--color-3);
    }

    .masonry-grid .works-name {
        font-size: 20px;
    }

    /* Works 768 END */

    /* Contact 768 START */
    .getting-row {
        flex-direction: column;
    }

    .getting-left {
        width: auto;
        margin-left: 0;
        margin-bottom: 30px;
    }

    /* Contact 768 END */

     /* Workflow 768 START */
     .workflow-item {
        width: 100%;
    }

    .workflow-title-wrap .def-subtitle{
        text-shadow: -0px -0px 0 #fff, 1px -1px 0 #cfc7c7, -0px 0px 0 #fff, 0px 0px 0 #fff;
    }

    /* Workflow 768 END */

    /* Reviews 768 START */
    .swiper-reviews {
        height: 400px;
    }

    .def-subtitle{
        margin-top: 60px;
    }

    /* Reviews 768 END */

    /* Footer 768 START */
    .footer-info-wrap {
        column-gap: 40px;
    }

    .footer-title {
        font-size: 34px;
    }

    .footer-nav-row {
        flex-wrap: wrap;
        column-gap: 6cap;
        row-gap: 30px;
    }

    .footer-nav iframe {
        max-width: none;
        width: 100%;
    }

    .footer-nav-title {
        line-height: 1.5;
    }

    .footer-bottom {
        flex-direction: column;
        row-gap: 30px;
        padding: 30px 20px;
    }

    .footer-social {
        border-top: 1px solid rgba(255, 255, 255, .4);
        border-bottom: 1px solid rgba(255, 255, 255, .4);
    }

    .footer-social a:last-child {
        border-right: 1px solid rgba(255, 255, 255, .4);
    }

    /* Footer 768 END */

}

@media screen and (max-width: 640px) {

    /* Header 640 START */
    .header-mobile-row {
        flex-direction: column;
        padding-bottom: 30px;
    }

    .header-mobile-left {
        border-right: none;
        margin-right: 0;
        margin-bottom: 50px;
        padding-right: 0;
        width: 100%;
    }

    .header-mobile-right {
        width: 100%;
    }

    .header-mobile-wrap .header-menu ul li .menu-open-arrow {
        right: 0;
    }

    .header-logo img {
        max-width: 200px;
        margin-left: 20px
    }

    .hamburger img {
        width: 40px;
    }

    /* Header 640 END */

    /* About 640 START */
    .about-left {
        height: 350px;
    }

    /* About 640 END */

    


    /* Services 575 START */
   
    .services-item{
        height: 406px;
    }

    /* Service 575 END */

     /* Reviews 575 START */
     .swiper-reviews {
        height: 400px;
    }

    .def-subtitle{
        margin-top: 60px;
    }

    /* Reviews 575 END */

    /* News 640 START */
    .news-left {
        padding: 0 20px;

    }

    .swiper-news {
        padding: 0 20px;
    }

    /* News 640 END */

    /* Workflow 640 START */
    .workflow-row {
        flex-wrap: wrap;
        gap: 10px;
    }

    .workflow-item {
        width: calc(50% - 10px);
    }

    .workflow-item:nth-child(3) {
        width: 100%;
    }

    .workflow-title-wrap .def-subtitle{
        margin-left: 30px;
        text-shadow: -0px -0px 0 #fff, 1px -1px 0 #cfc7c7, -0px 0px 0 #fff, 0px 0px 0 #fff;
    }

    /* Workflow 640 END */

    /* Newsletter 640 START */
    .newsletter-form form {
        width: auto;
    }

    .newsletter-title-wrap .def-subtitle {
        font-size: 35px;
    }

    .newsletter-title-wrap .title-left {
        min-width: 50px;
        height: 50px;
    }

    .newsletter-title-wrap .title-left img {
        max-width: 30px;
    }

    /* Newsletter 640 END */

    /* Blog 640 START */
    .blog-list .blog-item {
        flex-direction: column;
        padding-bottom: 10px;
    }

    .blog-list .blog-thumb {
        width: 100%;
    }

    .blog-list .list-right {
        padding: 20px 0;
    }

    .blog-list .blog-meta ul {
        font-size: 14px;
    }

    /* Blog 640 END */

    /* Footer 640 START */
    .footer-top {
        align-items: flex-start;
    }

    .footer-info-wrap {
        flex-direction: column;
        row-gap: 30px;
    }

    /* Footer 640 END */

}

@media screen and (max-width: 575px) {

    /* Global 575 START */
    .def-subtitle {
        font-size: 35px;
    }

    /* Global 575 END */

    /* Header 575 START */
    .header-logo img {
        max-width: 200px;
        max-height: 80px;
        margin-left: 20px
    }

    /* Header 575 END */

    /* Banner 575 START */
    .banner-toptitle {
        font-size: 14px;
    }

    .banner-title {
        font-size: 46px;
    }

    /* Banner 575 END */

    /* Marquee 575 START */
    .marquee-wrap {
        padding: 10px 0;
    }

    .marquee-item {
        font-size: 38px;
    }

    /* Marquee 575 END */

    /* Features 575 START */
    .features-title {
        font-size: 16px;
    }

    .features-thumb img {
        max-width: 50px;
    }

    /* Features 575 END */

 
    /* Workflow 575 START */
    .workflow-item {
        width: 100%;
    }

    .workflow-title-wrap .def-subtitle{
        text-shadow: -0px -0px 0 #fff, 1px -1px 0 #cfc7c7, -0px 0px 0 #fff, 0px 0px 0 #fff;
    }

    /* Workflow 575 END */

    /* Form 575 START */
    .form-wrap .form-touch,
    .form-wrap .faq-wrap {
        padding: 40px 30px;
    }

    .form-wrap .faq-question {
        padding: 15px 20px;
    }

    .faq-arrow {
        min-width: 40px;
        height: 40px;
    }

    .faq-num {
        display: none;
    }

    /* Form 575 END */

    /* About 575 START */
    .about-feat-item {
        width: 100%;
    }

    /* About 575 END */

    /* Breadcrumbs 575 START */
    .breadcrumbs-wrap {
        padding: 50px 0;
    }

    .breadcrumbs-wrap::before,
    .breadcrumbs-wrap::after {
        width: 200px;
        height: 210px;
    }

    /* Breadcrumbs 575 END */

    /* Reviews 575 START */
    .swiper-reviews {
        height: 400px;
    }

    .def-subtitle{
        margin-top: 60px;
    }

    /* Reviews 575 END */

    /* Services 575 START */
    .services-row .services-item {
        width: 100%;
    }

    .image-two {
        flex-wrap: wrap;
        row-gap: 30px;
    }

    .image-two a {
        width: 100%;
    }

    .service-content h2 {
        font-size: 32px;
    }

    .service-feat-item {
        width: 100%;
    }

    /* Service 575 END */

    /* Work 575 START */
    .work-content h2 {
        font-size: 32px;
    }

    .video-section {
        height: 200px;
    }

    .video-section .video-play a {
        width: 60px;
        height: 60px;
    }

    .video-section .video-play a img {
        max-width: 80%;
    }

    /* Work 575 END */

    /* 404 575 START */
    .error-title {
        font-size: 80px;
    }

    .error-subtitle {
        font-size: 42px;
    }

    /* 404 575 END */

    /* Works 575 START */
    .works-col-2-grid,
    .works-col-3-grid,
    .works-col-4-grid {
        grid-template-columns: 1fr;
    }

    .works-cat {
        font-size: 14px;
    }

    .works-name {
        font-size: 18px;
    }

    .masonry-grid .works-body {
        padding: 10px;
    }

    .masonry-grid-3 .grid-sizer,
    .masonry-grid-3 .grid-item {
        width: calc(50% - 10px);
    }

    /* Works 575 END */

    /* Blog 575 START */
    .blog-classic .blog-thumb {
        height: 260px;
    }

    .blog-grid .blog-wrap {
        grid-template-columns: 1fr;
    }

    /* Blog 575 END */

    /* Article 575 START */
    .image-50 {
        flex-direction: column;
        row-gap: 20px;
    }

    .nav-title {
        font-size: 16px;
    }

    .comment-body {
        flex-direction: column;
        row-gap: 15px;
    }

    .comment-list .children {
        padding-left: 50px;
    }

    .article-thumb {
        height: 220px;
    }

    /* Article 575 END */

    /* Getting 575 START */
    .getting-row {
        margin-bottom: 50px;
    }

    .getting-item {
        width: 100%;
    }

    /* Getting 575 END */

    /* Gallery 575 START */
    .gallery-wrap .works-item {
        height: 320px;
    }

    /* Gallery 575 END */

    /* Footer 575 START */
    .footer-title {
        display: none;
    }

    .footer-nav {
        width: 100%;
    }

    /* Footer 575 END */
}

@media screen and (max-width: 430px) {

    /* Header 430 START */
    .header-mobile-wrap {
        padding: 20px;
    }

    .header-logo img {
        max-width: 180px;
        max-height: 60px;
        margin-left: 10px
    }

    /* Header 430 END */

    /* Newsletter 430 START */
    .newsletter-title-wrap {
        flex-direction: column;
        row-gap: 20px;
    }

    .newsletter-title-wrap .title-left {
        width: 50px;
    }

    /* Newsletter 430 END */

    /* Blog 400 START */
    .blog-classic .blog-meta ul {
        font-size: 14px;
    }

    .blog-classic .blog-thumb {
        height: 220px;
    }

    .widget_recent_entries .recent-title {
        font-size: 16px;
    }

    /* Blog 430 END */

    /* Article 430 START */
    .comment-list .children {
        padding-left: 30px;
    }

    /* Article 430 END */

    /* Reviews 430 START */
    .swiper-reviews {
        height: 400px;
    }

    .def-subtitle{
        margin-top: 60px;
    }

    .reviews-item{
        margin-bottom: 80px;
    }

    /* Reviews 430 END */

}

@media screen and (max-width: 400px) {

    /* Header 400 START */
    .header-mobile-wrap {
        padding: 20px;
    }

    .header-logo img {
        max-width: 180px;
        max-height: 60px;
        margin-left: 10px
    }

    .hamburger img {
        width: 30px;
    }

    /* Header 400 END */

    /* Newsletter 400 START */
    .newsletter-title-wrap {
        flex-direction: column;
        row-gap: 20px;
    }

    .newsletter-title-wrap .title-left {
        width: 50px;
    }

    /* Newsletter 400 END */

    /* Blog 400 START */
    .blog-classic .blog-meta ul {
        font-size: 14px;
    }

    .blog-classic .blog-thumb {
        height: 220px;
    }

    .widget_recent_entries .recent-title {
        font-size: 16px;
    }

    /* Blog 400 END */

    /* Article 400 START */
    .comment-list .children {
        padding-left: 30px;
    }

    /* Article 400 END */

    /* Reviews 400 START */
    .swiper-reviews {
        height: 400px;
    }

    .def-subtitle{
        margin-top: 60px;
    }

    .reviews-item{
        margin-bottom: 80px;
    }

    /* Reviews 400 END */

}

@media screen and (max-width: 390px) {

    /* Header 390 START */
    .header-mobile-wrap {
        padding: 20px;
    }

    .header-logo img {
        max-width: 180px;
        max-height: 60px;
        margin-left: 10px
    }

    /* Header 390 END */

    /* Newsletter 390 START */
    .newsletter-title-wrap {
        flex-direction: column;
        row-gap: 20px;
    }

    .newsletter-title-wrap .title-left {
        width: 50px;
    }

    /* Newsletter 390 END */

    /* Blog 390 START */
    .blog-classic .blog-meta ul {
        font-size: 14px;
    }

    .blog-classic .blog-thumb {
        height: 220px;
    }

    .widget_recent_entries .recent-title {
        font-size: 16px;
    }

    /* Blog 390 END */

    /* Article 390 START */
    .comment-list .children {
        padding-left: 30px;
    }

    /* Article 390 END */

    /* Reviews 390 START */
    .swiper-reviews {
        height: 400px;
    }

    .def-subtitle{
        margin-top: 60px;
    }

    .reviews-item{
        margin-bottom: 80px;
    }

    /* Reviews 390 END */

}
/* Responsive END */
