:root {
    --orange: #f26419;
    --dark-grey: #2f4858;
    --gray: #f5f5f7;
    --charcoal-grey: #404a50;
    --black: #333;
    --white: #fff;
    --font: 'Nunito', sans-serif;
    --header-image-bg: "none";
}

* {
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

p:empty {
    display: none;
}

.min-vh-100 {
    min-height: 100vh;
}

.b-800 {
    font-weight: 800;
}

.text-orange {
    color: var(--orange);
}

.text-deco {
    position: relative;
}
.text-deco:before {
    content: '';
    position: absolute;
    display: block;
    width: 100%;
    height: 3px;
    background: var(--orange);
    bottom: 5px;
    left: 0;
}

.button {
    height: 50px;
    border: 0;
    border-radius: 25px;
    display: inline-block;
    font-family: var(--font);
    font-size: 16px;
    font-weight: bold;
    line-height: 1.2;
    text-align: center;
    padding: 15px 0;
    text-decoration: none;
    -webkit-transition: all 0.5s ease-out;
    -moz-transition: all 0.5s ease-out;
    -o-transition: all 0.5s ease-out;
    transition: all 0.5s ease-out;
    cursor: pointer;
}
.button_orange {
    background-color: var(--orange);
    color: #fff !important;
}
.button_orange:hover {
    box-shadow: 0 4px 10px 0 #fdad83;
    background-color: #ff691a;
}

.button_orange:active, .button_orange:visited {
    background-color: #dd530a;
    color: #fff;
    box-shadow: none;
}

.button_md {
    width: 214px;
}

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

.h1, .h2, .h3, .h4 {
    color: var(--dark-grey);
}

.site-branding {
    padding: 16px 0;
}
.site-logo {
    display: block;
    line-height: 1;
}
#primary-menu {
    align-items: center;
    justify-content: space-between;
    display: none;
}

.site-header__button a {
    color: #33658a;
    font-weight: 800 !important;
    border: solid 3px #33658a;
    width: 170px;
    padding: 13px 0 !important;
    display: inline-block;

    height: 50px;
    border-radius: 25px;
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    -webkit-transition: all 0.5s ease-out;
    -moz-transition: all 0.5s ease-out;
    -o-transition: all 0.5s ease-out;
    transition: all 0.5s ease-out;
}

.mobile-menu {
    float: right;
}

.mobile-menu-icon {
    width: 25px;
    height: 19px;
    position: relative;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    cursor: pointer;
}

.mobile-menu-icon span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: var(--dark-grey);
    border-radius: 3px;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
}

.mobile-menu-icon span:nth-child(1) {
    top: 0;
}

.mobile-menu-icon span:nth-child(2), .mobile-menu-icon span:nth-child(3) {
    top: 8px;
}

.mobile-menu-icon span:nth-child(4) {
    top: 16px;
}

.mobile-menu-icon.open span:nth-child(1) {
    top: 18px;
    width: 0;
    left: 50%;
}

.mobile-menu-icon.open span:nth-child(2) {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}

.mobile-menu-icon.open span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.mobile-menu-icon.open span:nth-child(4) {
    top: 18px;
    width: 0;
    left: 50%;
}

.m-nav-overlay {
    background-color: #333;
    opacity: .7;
    width: 100%;
    height: 100%;
    right: 0;
    position: fixed;
    z-index: 48;
}

.m-nav-overlay.enter {
    opacity: .7;
    -webkit-transform: translateX(0);
    transform: translateX(0);
    -webkit-transition: opacity .3s linear;
    transition: opacity .3s linear;
}

.m-nav-overlay.leave {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
    opacity: 0;
    -webkit-transition: opacity .3s linear, -webkit-transform 0ms ease-out .3s;
    transition: opacity .3s linear, -webkit-transform 0ms ease-out .3s;
    transition: transform 0ms ease-out .3s, opacity .3s linear;
    transition: transform 0ms ease-out .3s, opacity .3s linear, -webkit-transform 0ms ease-out .3s;
}

.m-nav {
    position: fixed;
    width: 80%;
    height: calc(100% - 80px);
    top: 80px;
    max-width: 320px;
    z-index: 1000;
    background-color: #fff;
    right: 0;
    /*padding-bottom: 20px;*/
    overflow: auto;
}

.m-nav.enter {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    -webkit-transition: -webkit-transform .4s ease-out;
    transition: transform .4s ease-out;
}

.m-nav.leave {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    -webkit-transition: -webkit-transform .25s ease-out;
    transition: transform .25s ease-out;
}

.main-nav-mob {
    padding: 30px 20px;
}

.main-nav-mob li {
    list-style: none;
    display: block;
    font-size: 15px;
    font-weight: 500;
    line-height: 28px;
    position: relative;
}

.main-nav-mob li a {
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
}

.main-nav-mob li.solutions-item {
    display: none;
}

.main-nav-mob #top-nav-ul > li > a {
    font-weight: bold;
    font-size: 18px;
    padding: 7px 0;
    /*margin: 0 20px;*/
    border-bottom: 1px solid #c1bebe;
}
.main-nav-mob #top-nav-ul > li:last-child > a {
    border-bottom: 0;
}

.main-nav-mob #top-nav-ul > li > a.active {
    color: var(--orange);
}

.main-nav-mob .company-item > .sub-menu > li > a,
.main-nav-mob .solutions-item-parent > a {
    font-size: 15px;
    font-weight: bold;
}
.main-nav-mob .solutions-item-parent .sub-menu {
    display: block;
    padding-top: 0;
}
.main-nav-mob .company-item > .sub-menu .sub-menu,
.main-nav-mob .solutions-item-parent > .sub-menu {
    padding-left: 10px;
}
.main-nav-mob .solutions-item-parent .menu-item-has-children > a {
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 600;
    color: #a7a7a7;
}
.main-nav-mob .solutions-item .sub-menu  {
    padding-left: 10px;
}
.main-nav-mob .solutions-item .sub-menu li a {
    padding-left: 40px;
    background-size: 32px 32px;
}

.main-nav-mob #top-nav-ul > li > .sub-menu {
    display: none;
    padding: 8px;
}
.main-nav-mob #top-nav-ul .menu-item-has-children > a {
    background: url("../img/ico/arrow-down-mob-menu.svg") 95% 50% no-repeat;
}

.main-nav-mob #top-nav-ul .menu-item-has-children > a.active {
    background: url("../img/ico/arrow-up-mob-menu.svg") 95% 50% no-repeat;
}

.main-nav-mob .current-menu-item > a,
.main-nav-mob .current-menu-item > a:hover {
    color: var(--orange);
}

.main-nav-mob a:hover {
    color: var(--orange);
}

.main-nav-mob a {
    color: #666;
    padding: 5px 0;
    /*margin: 0 20px;*/
    display: block;
    text-decoration: none;
}

/*.main-nav-mob .sub-menu li a {
    padding-left: 10px;
}*/
.main-nav-mob .menu-item-description {
    display: none;
}

.main-nav-mob .site-header__button {
    margin: 20px 0;
}
.main-nav-mob .site-header__button a {
    width: 100%;
    height: auto;
    border: solid 3px #33658a !important;
}

.wpcf7-not-valid-tip {
    font-size: 12px;
}

.menu-item-login > a {
    font-size: 16px;
    font-weight: 600 !important;
    padding: 13px 10px !important;
}
.menu-item-login > a:after {
    content: url(../img/ico/login-ico.svg);
    display: inline-block;
    vertical-align: middle;
    margin-left: 4px;
    line-height: 1;
}
.menu-item-login > a:hover {
    color: var(--orange);
}
/* -----------------------------------------
   Footer Styles
----------------------------------------- */

#footer {
    background: var(--dark-grey);
}

.footer__menu {
    padding-top: 20px;
    padding-bottom: 50px;
    line-height: 1.4;
    font-size: 15px;
}

#footer * {
    color: #fff;
    text-decoration: none;
}

#footer a:hover {
    opacity: .7;
}

#footer h4 {
    margin-top: 30px;
    margin-bottom: 15px;
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
}

#footer ul {
    list-style: none;
    margin: 0;
}

#footer ul a {
    display: inline-block;
    margin-bottom: 7px;
    font-size: 14px;
}

#bottom-nav-soc {
    display: grid;
    grid-template-columns: 16px 16px 16px;
    column-gap: 15px;
    margin-top: 15px !important;
}
#bottom-nav-soc .menu-item a {
    display: block;
    width: 16px;
    height: 16px;
    font-size: 0;
}
#bottom-nav-soc .soc-linkedin a {
    background: url(../img/ico/icons_linkedin.svg) no-repeat;
}
#bottom-nav-soc .soc-youtube a {
    background: url(../img/ico/icons_youtube.svg) no-repeat;
}
#bottom-nav-soc .soc-g2 a {
    background: url(../img/ico/icons_g2.svg) no-repeat;
}

.footer__tags {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 5px !important;
}
.footer__tags li a {
    padding: 7px 9px;
    border: 1px solid #fff;
    border-radius: 18px;
    line-height: 1;
    margin: 0 !important;
}

.copyright {
    background: #1f303b;
    padding-top: 8px;
    padding-bottom: 8px;
    line-height: 1.5;
    font-size: 14px;
}

/* -----------------------------------------
   Video (block)
----------------------------------------- */
.videoWrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
}
.videoWrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
/* -----------------------------------------
   Deco line (block)
----------------------------------------- */
.deco-line-vertical {
    background: #ff7200;
    height: 56%;
    position: absolute;
    width: 3px;
    margin: 0 10px;
    left: 0;
    top: 30px;
}
.deco-line-vertical__dot {
    width: 20px;
    height: 20px;
    border: 3px solid #ff7200;
    background: var(--gray);
    border-radius: 100%;
    z-index: 1;
    position: absolute;
    left: -8px;
}
.deco-line-vertical__dot_1 {
    top: 50%;
}
.deco-line-vertical:before {
    content: '';
    position: absolute;
    top: 0;
    left: -8px;
    width: 20px;
    height: 20px;
    border: 3px solid #ff7200;
    background: var(--gray);
    border-radius: 100%;
    z-index: 0;
}
.deco-line-vertical:after {
    content: '';
    position: absolute;
    top: 100%;
    left: -8px;
    width: 20px;
    height: 20px;
    border: 3px solid #ff7200;
    background: var(--gray);
    border-radius: 100%;
    z-index: 0;
}
/* -----------------------------------------
   Why grid (block)
----------------------------------------- */
.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-column-gap: 30px;
}
.why-grid__item {
    padding: 25px 20px 25px 20px;
    border-radius: 10px;
    background-color: var(--white);
}
.why-grid__title {
    font-size: 21px;
    font-weight: bold;
    line-height: 1.2;
    color: var(--charcoal-grey);
    margin-bottom: 20px;
    margin-top: 6px;
    min-height: 50px;
}
.why-grid__txt {
    font-size: 14px;
    line-height: 1.7;
}
/* -----------------------------------------
   Works grid (block)
----------------------------------------- */
.works-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-column-gap: 30px;
    padding-top: 20px;
}
.works-grid__item {
    padding: 41px 20px 25px;
    border-radius: 10px;
    background-color: var(--white);
    box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.05);
}
.works-grid__num {
    font-size: 48px;
    font-weight: 800;
    color: #ff7200;
    margin-top: -78px;
}
.works-grid__title {
    font-size: 21px;
    font-weight: bold;
    line-height: 1.14;
    margin-bottom: 20px;
    min-height: 50px;
    color: var(--dark-grey);
}
.works-grid__txt {
    font-size: 14px;
    line-height: 1.7;
}
/* -----------------------------------------
   Demo form (block)
----------------------------------------- */
input::selection {
    background-color:transparent;
}
.wpcf7 .line.two-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 30px;
    margin-bottom: 20px;
}
.demo-form__box {
    border-radius: 20px;
    box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.05);
    background-color: #fff;
    padding: 70px;
    width: 100%;
}
.demo-form__box .line-submit {
    text-align: center;
    margin-top: 60px;
}
.demo-form__box .wpcf7-submit {
    width: 230px;
}
.demo-form__box .wpcf7-text,
.demo-form__box .wpcf7-select {
    width: 100%;
    border-radius: 25px;
    border: solid 1px #0c5d8f57;
    height: 40px;
    padding: 0 15px;
    outline: none;
}
.demo-form__box .wpcf7-select {
    background-image: url(../img/ico/icons_arrow-dropdown.png);
    background-position: right 15px center;
    background-repeat: no-repeat;
    -moz-appearance: none;
    -webkit-appearance: none;
}
.demo-form__box .wpcf7-textarea {
    width: 100%;
    border-radius: 25px;
    border: solid 1px #0c5d8f57;
    padding: 15px;
    height: 150px;
    resize: none;
    box-shadow: none;
}
.demo-form__box .input-box {
    position: relative;
    height: 40px;
    margin-bottom: 25px;
}
.demo-form__box .textarea-box {
    position: relative;
    margin-bottom: 25px;
}
.demo-form__box .iti--allow-dropdown {
    width: 100%;
}
.demo-form__box label {
    font-size: 12px;
    line-height: 0.8;
    color: #0c5d8f;
    position: absolute;
    top: -6px;
    background: #fff;
    left: 8px;
    display: inline-block;
    padding: 0 2px;
    z-index: 10;
}
.demo-form__box .iti__selected-flag {
    -webkit-border-top-left-radius: 25px;
    -webkit-border-bottom-left-radius: 25px;
    -moz-border-radius-topleft: 25px;
    -moz-border-radius-bottomleft: 25px;
    border-top-left-radius: 25px;
    border-bottom-left-radius: 25px;
}
.demo-form__box .button-wrap {
    position: relative;
    width: 230px;
    margin: 0 auto;
}
.demo-form__box .wpcf7-spinner {
    margin: 0;
    top: 12px;
    right: 20px;
    position: absolute;
    z-index: 1;
}
/* -----------------------------------------
   Accordion (block)
----------------------------------------- */
.accordion {
    margin: 0 auto !important;
    max-width: 570px;
}
.accordion__item {
    padding: 0;
    margin: 0 0 20px 0;
    width: 100%;
    display: block;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    transition: box-shadow 0.5s ease-out;
}
.accordion__item.active {
    background: #FFF;
    box-shadow: 0 2px 15px 0 rgba(0, 0, 0, 0.05);
}
.accordion__title {
    color: var(--dark-grey);
    font-size: 16px;
    line-height: 1.2;
    padding: 20px 17% 20px 20px;
    font-weight: 700;
    position: relative;
}
.accordion__title:focus, .accordion__title:hover {
    background-color: #fff;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    transition: box-shadow 0.5s ease-out;
    cursor: pointer;
}
.accordion__title:after {
    content: url("../img/ico/drop.svg");
    right: 20px;
    position: absolute;
    top: 20px;
}
.accordion__title.active:after {
    content: url("../img/ico/close.svg");
    right: 20px;
    position: absolute;
    top: 20px;
}
.accordion__title.active {
    border-bottom: 0 !important;
    padding-bottom: 23px;
}
.accordion__text {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    padding: 0 20px 20px 20px;
}

/* -----------------------------------------
   Hero style 1 (section)
----------------------------------------- */
.hero-style-1 .h1 {
    margin: 40px 0 7px 0;
    font-size: 28px;
    font-weight: normal;
    line-height: 1.3;
    color: var(--dark-grey);
}
.hero-style-1 .h1 span{
    font-size: 32px;
    font-weight: bold;
    line-height: 1.28;
}
.hero-style-1 .hero__subtitle {
    font-size: 24px;
    font-weight: 500;
    line-height: 1.2;
    color: var(--dark-grey);
}
.hero-style-1 .hero__txt {
    font-size: 18px;
    line-height: 1.56;
    color: var(--dark-grey);
}
.hero-style-1 .video-block__video {
    margin-right: 15px;
}
.hero-style-1 .video-block__video video {
    max-width: 770px;
    border-radius: 20px;
    width: 100%;
}
.hero-style-1 .video-block__video iframe {
    max-width: 770px;
    border-radius: 20px;
    width: 100%;
}
.hero-style-1 .demo-form__box {
    padding: 30px 30px 40px 30px;
}
.hero-style-1 .demo-form__title {
    font-size: 21px;
    font-weight: bold;
    line-height: 1.3;
    color: var(--dark-grey);
    margin-bottom: 40px;
}
.hero-style-1 .demo-form__box .line-submit {
    margin-top: 40px;
}
.hero-style-1 .demo-form__box .line.two-columns {
    margin-bottom: 15px;
    grid-column-gap: 10px;
}
.hero-style-1 .demo-form__box .wpcf7-submit {
    font-size: 15px;
    font-weight: bold;
    width: 230px;
}
/* -----------------------------------------
   Pattern section
----------------------------------------- */
#sec-pattern {
    background: url("../img/all/pattern-2-row.svg") no-repeat center center;
    background-size: cover;
}
#sec-pattern .white-block {
    background-color: #fff;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.05);
}
#sec-pattern .white-block__title {
    font-size: 32px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--dark-grey);
}
#sec-pattern .white-block__txt {
    font-size: 16px;
    line-height: 1.5;
    color: #383838;
}
#sec-pattern .white-block__down {
    -webkit-animation: fade_move_down 2s ease-in-out infinite;
    animation: fade_move_down 2s ease-in-out infinite;
    display: inline-block;
}
/* -----------------------------------------
   1 section
----------------------------------------- */
.sec-1-list {
    font-size: 14px;
    line-height: 1.5;
    border-radius: 10px;
    box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.05);
    background-color: #fff;
    padding: 46px 30px 26px 30px;
}
.sec-1-list-item {
    margin-bottom: 20px;
    padding-left: 35px;
    position: relative;
}
.sec-1-list-item:before {
    content: url("../img/ico/circle_plus.svg");
    position: absolute;
    left: 0;
    top: calc(50% - 10px);
}
/* -----------------------------------------
   Works2 section
----------------------------------------- */
#sec-works2 {
    text-align: center;
    overflow: hidden;
}
.works2-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-column-gap: 40px;
    padding-top: 32px;
    text-align: center;
}
.works2-grid__title {
    font-size: 21px;
    font-weight: bold;
    line-height: 1.14;
    margin-bottom: 6px;
    color: #2f4858;
}
.works2-grid__txt {
    font-size: 14px;
    line-height: 1.5;
}
.works2-grid__img {
    margin-top: 100px;
    margin-bottom: 54px;
}

#sec-works2 .deco-line-center {
    background: var(--orange);
    height: 3px;
    position: relative;
    margin: 30px auto 0;
    width: 72%;
}

#sec-works2 .deco-line-center__dot {
    width: 20px;
    height: 20px;
    border: 3px solid var(--orange);
    background: var(--gray);
    border-radius: 100%;
    z-index: 1;
    position: absolute;
    top: calc(50% - 10px);
}

#sec-works2 .deco-line-center__dot_1 {
    left: calc(50% - 10px);
}

#sec-works2 .deco-line-center:before {
    content: '';
    position: absolute;
    top: calc(50% - 10px);
    left: 0;
    width: 20px;
    height: 20px;
    border: 3px solid var(--orange);
    background: var(--gray);
    border-radius: 100%;
    z-index: 0;
}

#sec-works2 .deco-line-center:after {
    content: '';
    position: absolute;
    top: calc(50% - 10px);
    right: 0;
    width: 20px;
    height: 20px;
    border: 3px solid var(--orange);
    background: var(--gray);
    border-radius: 100%;
    z-index: 0;
}
/* -----------------------------------------
   Easy section
----------------------------------------- */
#sec-easy .h2 {
    color: #fff;
}
/* -----------------------------------------
   Blog page
----------------------------------------- */
#single, #archive {
    padding-top: 50px;
    padding-bottom: 50px;
}
.single a {
    -webkit-transition: all 0.5s ease-out;
    -moz-transition: all 0.5s ease-out;
    -o-transition: all 0.5s ease-out;
    transition: all 0.5s ease-out;
}

article.post {
    font-size: 16px;
    line-height: 1.3;
    color: #404a50;
}

.single article h1 {
    font-size: 28px;
    line-height: 1.3;
}

.single article h2 {
    font-size: 24px;
    line-height: 1.5;
}

.single article h3 {
    font-size: 20px;
}

.single article h4 {
    font-size: 18px;
}

.single article h1,
.single article h2,
.single article h3,
.single article h4 {
    margin-top: 40px;
    margin-bottom: 10px;
    color: var(--dark-grey);
    font-weight: bold;
}
.single article p,
.single article hr,
.single article ol,
.single article ul {
    margin-bottom: 30px;
}

.single article ol,
.single article ul {
    padding-left: 20px;
}
.single article blockquote {
    border-left-style: solid;
    border-left-width: 7px;
    padding-left: 20px;
    margin-bottom: 1em;
    margin-right: 1em;
    font-size: 1.235em;
    line-height: 1.5em;
    border-color: var(--orange);
}

.single .addtoany_content {
    padding-top: 30px;
}
.single .posted-on {
    font-weight: bold;
}
.single .entry-content {
    overflow: hidden;
}
.post a {
    color: var(--orange);
    text-decoration: underline;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.post a:hover {
    text-decoration: none;
}
.post-thumbnail img {
    border-radius: 20px;
    width: 100%;
}
.archive .post {
    margin-bottom: 40px;
}
.archive .post a:hover {
    opacity: .8;
}
.archive .page-title {
    margin-top: 0;
}
.archive .post-title {
    font-size: 24px;
    margin-bottom: 10px;
}
.archive .post-title a {
    text-decoration: none;
}
.archive .post-thumbnail {
    display: block;
    margin-bottom: 10px;
}
.archive .post-meta {
    margin-top: 10px;
    border-top: 1px solid #ccc;
    padding: 10px 0;
}
.archive .pagination {
    text-align: center;
    list-style: none;
}

.pagination a, .pagination button {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
    color: #999;
}
.pagination .current {
    background: transparent;
    font-size: 16px;
    color: var(--orange);
    font-weight: 600;
}

.pagination li {
    font-size: .95rem;
    display: inline-block;
}

.pagination a, .pagination button {
    padding: 0 .625rem;
    color: #0a0a0a;
}

.pagination a:hover, .pagination button:hover {
    background: transparent;
    text-decoration: underline;
}
.widget_block {
    margin-bottom: 40px;
}
.widget_block a {
    color: var(--orange);
    font-size: 18px;
    text-decoration: none;
}
.widget_block h2 {
    margin-bottom: 10px;
    display: block;
    font-size: 21px;
    font-weight: bold;
    line-height: 1.2;
    color: var(--dark-grey);
    max-width: 276px;
}
.widget .tagcloud a {
    color: #999;
}
.widget ul li {
    list-style: none;
    padding: 6px 0;
}
.wp-block-latest-posts li {
    font-style: italic;
    padding: 5px 0;
    border-bottom: 1px solid #979797;
    line-height: 1.33;
}

.author-meta {
    display: grid;
    grid-template-columns: 96px 1fr;
    column-gap: 30px;
    padding: 40px 0;
    border-top: 1px solid #979797;
    margin-top: 40px;
}
.author-meta__img img {
    width: 100%;
    border-radius: 100%;
    display: inline-block;
}
.author-meta__title {
    font-size: 12px;
    font-weight: bold;
    line-height: 1.17;
    color: #000;
}
.author-meta__name {
    font-size: 21px;
    font-weight: bold;
    line-height: 1.14;
    color: var(--dark-grey);
    margin-bottom: 10px;
}
.author-meta__desc {
    font-size: 14px;
    line-height: 1.5;
    color: #000;
    max-width: 400px;
}
@-webkit-keyframes fade_move_down {
    0% {
        -webkit-transform: translate(0, -20px);
        opacity: 0
    }

    50% {
        opacity: 1
    }

    100% {
        -webkit-transform: translate(0, 20px);
        opacity: 0
    }
}

@keyframes fade_move_down {
    0% {
        transform: translate(0, -20px);
        opacity: 0
    }

    50% {
        opacity: 1
    }

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

@media screen and (min-width: 1199px) {
    /* Hero style 1 */
    .hero-style-1 .hero__txt {
        margin-right: 85px;
    }
    .hero-style-1 .video-block__video {
        margin-right: 65px;
        padding-bottom: 50.7%;
    }
    /* Hero style 1 end */
}

@media screen and (min-width: 992px) {
    .text-lg-start {
        text-align: left!important;
    }
    .text-lg-end {
        text-align: right!important;
    }
    .container {
        max-width: 1170px;
    }

    .footer__menu {
        padding: 20px 50px 50px 50px;
    }

    /*main menu*/

    .mobile-menu {
        display: none;
    }
    .m-nav, .m-nav-overlay {
        display: none;
    }
    #primary-menu {
        display: flex;
    }
    .site-header .container-fluid {
        max-width: 1200px;
    }
    /*main menu end*/

    /*mange slider */
    .mange-slider-item {
        position: relative;
        border-radius: 10px;
        -webkit-transition: all 0.5s ease-out;
        -moz-transition: all 0.5s ease-out;
        -o-transition: all 0.5s ease-out;
        transition: all 0.5s ease-out;
    }
    .mange-slider-item.active {
        background-color: #e5e5ea;
    }
    .mange-slider-item:hover h4,
    .mange-slider-item.active h4 {
        color: var(--orange);
        -webkit-transition: all 0.5s ease-out;
        -moz-transition: all 0.5s ease-out;
        -o-transition: all 0.5s ease-out;
        transition: all 0.5s ease-out;
    }
    /*mange slider end*/
}
@media screen and (max-width: 1199px) {
    /* Hero style 1 */
    .hero-style-1 .hero__txt {
        margin: 12px auto 12px;
        max-width: 590px;
    }
    .hero-style-1 .video-block__video {
        margin-right: 0;
    }
    .hero-style-1 .video-block {
        margin: 0 auto;
        max-width: 770px;
    }
    .hero-style-1 .demo-form__box {
        margin: 40px auto 0;
        max-width: 770px;
    }
    /* Hero style 1 end */
    #primary-menu > li > a {
        padding: 13px 1.7vw;
    }
}
@media screen and (max-width: 1024px) {
    /*works grid*/
    .works-grid {
        grid-template-columns: 1fr 1fr;
        grid-row-gap: 40px;
    }
    /*works grid end*/
}
@media screen and (max-width: 992px) {

    /*mobile menu*/
    .site-branding {
        padding: 12px 0;
    }
    .site-logo img {
        height: 24px;
    }
    .site-header .container-fluid {
        padding: 0 26px;
    }
    .site-header__top {
        font-size: 14px;
    }
    /*mobile menu end*/

    /*why grid*/
    .why-grid {
        grid-template-columns: 1fr;
        grid-row-gap: 40px;
        max-width: 600px;
        margin: 0 auto;
    }
    /*why grid end*/

    /*mange slider */
    .mange-slider-item {
        text-align: center;
    }
    .mange-slider-item img {
        margin: 30px auto;
        max-height: 600px;
    }
    /*mange slider end*/
    /*Blog page*/
    .widget-area {
        margin-top: 50px;
    }
    /*Blog page end*/
}
@media  screen and (min-width: 768px) {
    .text-md-start {
         text-align: left!important;
     }
    .text-md-end {
        text-align: right!important;
    }
    /*mange slider*/
    .mange-slider-img .img-item {
        display: none;
        margin: 0 auto;
        max-height: 100%;
    }
    .mange-slider-img .img-item.active {
        display: block;
    }
    /*mange slider end*/

    /*Blog page*/
    #single {
        padding-bottom: 100px;
    }
    .addtoany_list a, .widget .addtoany_list a {
        padding: 0 10px !important;
    }
    /*Blog page end*/
}
@media screen and (max-width: 768px) {
    /* Hero style 1 */
    .hero-style-1 .h1 {
        font-size: 24px;
    }
    .hero-style-1 .h1 span {
        font-size: 25px;
        line-height: 1.1;
    }
    .hero-style-1 .hero__subtitle {
        font-size: 20px;
    }
    .hero-style-1 .hero__txt {
        font-size: 18px;
    }
    .hero-style-1 img {
        margin-top: 10px;
        max-width: 100%;
    }
    .hero-style-1 .demo-form__title {
        font-size: 18px;
    }
    .hero-style-1 .demo-form__box .line.two-columns {
        margin-bottom: 0;
        grid-template-columns: 1fr;
    }
    /* Hero style 1 end */

    /* pattern */
    #sec-pattern .white-block {
        padding: 35px 20px;
    }
    #sec-pattern .white-block__title {
        font-size: 26px;
    }
    #sec-pattern .white-block__title img {
        margin-right: 5px;
        width: 23px;
        padding: 5px 0;
    }
    /* pattern end */

    /* works2 */
    .works2-grid {
        max-width: 340px;
        margin: 0 auto;
        grid-template-columns: 1fr;
        grid-row-gap: 40px;
    }
    .works2-grid__img {
        margin-top: 50px
    }
    /* works2 end */

    /*works grid*/
    .works-grid {
        grid-template-columns: 1fr;
    }
    /*works grid end*/

    /*Blog page*/
    .single article h1 {
        font-size: 25px;
        line-height: 1.2;
    }

    .single article h2 {
        font-size: 22px;
    }

    .single article h3 {
        font-size: 18px;
    }

    .single article h4 {
        font-size: 16px;
    }

    .single article h1,
    .single article h2,
    .single article h3,
    .single article h4,
    .single article p,
    .single article hr,
    .single article ol,
    .single article ul {
        margin-bottom: 15px;
    }
    .author-meta {
        grid-template-columns: 65px 1fr;
        column-gap: 20px;
    }
    /*Blog page end*/
}
