/*
    Theme Name: Bluerhino Media Theme
    Theme URI: 
    Version: 1.0.0
    Author: Oleksander Doroshenko
    Author URI: https://www.upwork.com/o/profiles/users/_~01a1039e650b9cc43d/

    License: MIT
    License URI: http://opensource.org/licenses/mit-license.php
*/


@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

body {
    font-family: 'Poppins', sans-serif;
}

*,
textarea:focus,
input:focus {
    outline: none;
}

a {
    -webkit-transition: all .25s cubic-bezier(.4, 0, .2, 1);
    transition: all .25s cubic-bezier(.4, 0, .2, 1);
    text-decoration: none;
}




/****************
    Preloader
****************/
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #fff;
    z-index: 999999;
}

/********************
    GRID override
********************/
@media (min-width: 1280px) {
    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl {
        max-width: 1220px;
    }
}
@media (min-width: 1440px) {
    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl {
        max-width: 1320px;
    }
}
@media (min-width: 1600px) {
    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl {
        max-width: 1540px;
    }
}
@media (min-width: 1740px) {
    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl {
        max-width: 1680px;
    }
}

/**************
    BUTTONS
**************/
.btn.btn-primary {
    width: 300px;
    height: 60px;
    border: 0;
    position: relative;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 600;
    font-style: normal;
    letter-spacing: 0.9px;
    line-height: 20px;
    background: #0E59BC;
    overflow: hidden;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    text-transform: uppercase;
}
.btn.btn-primary .text,
.btn.btn-primary .icon-container {
    position: relative;
    z-index: 2;
}
.btn.btn-primary .icon-container {
    position: relative;
    width: 14px;
    height: 20px;
    margin-left: 10px;
    transition: transform 500ms ease;
}
.btn.btn-primary .icon-container .icon {
    position: absolute;
    left: 0;
    top: 0;
    width: 13px;
    height: 20px;
    display: block;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    background-image: url(images/btn-arrow.svg);
    transition: transform 500ms ease, opacity 250ms ease;
}
.btn.btn-primary .icon-container .icon--left {
    transform: translateX(-200%);
    opacity: 0;
}
.btn.btn-primary .icon-container .icon svg {
    width: 100%;
    height: 100%;
    fill: #fff;
}
.btn.btn-primary::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #1886e3;
    z-index: 1;
    transition: transform 500ms ease;
}
.btn.btn-primary:hover::after {
    transform: translateX(240px);
}
.btn.btn-primary:hover .icon-container {
    transform: translateX(30px);
}
.btn.btn-primary:hover .icon-container .icon--left {
    transform: translateX(0);
    opacity: 1;
}
.btn.btn-primary:hover .icon-container .icon--right {
    transform: translateX(260px);
    opacity: 0;
}

/* Button Simple */
.btn.btn-simple {
    color: #9497a4;
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1.8px;
    line-height: 18px;
    text-transform: uppercase;
}
.btn.btn-simple:hover {
    color: #0a4297;
}

/* button with border */
.btn.btn-border {
    color: #161719;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 500;
    font-style: normal;
    letter-spacing: 2.4px;
    line-height: 27px;
    padding: 0 4px 6px;
    position: relative;
    text-transform: uppercase;
    display: inline-block;
}
.btn.btn-border:after {
    content: '';
    display: block;
    width: 61px;
    height: 2px;
    background-color: #1579cb;
    position: absolute;
    left: 50%;
    bottom: 0;
    -webkit-transition: width .25s cubic-bezier(.4, 0, .2, 1);
    transition: width .25s cubic-bezier(.4, 0, .2, 1);
    transform: translateX(-50%);
}
a.btn.btn-border:hover:after {
    width: 100%;
}

/**************
    HEADER
**************/
body.admin-bar header.header {
    top: 32px;
}

header.header {
    padding: 15px 0;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    z-index: 1001;
}
header.header .header-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Header Logo */
header.header .header-left .header__logo {
    display: flex;
    align-items: center;
}
header.header .header-left .header__logo .header__logo--logo {
    max-width: 200px;
    position: relative;
    margin-right: 15px;
}
header.header .header-left .header__logo--logo a {
    display: block;
    display: flex;
}
header.header .header-left .header__logo .header__logo--logo img.logo {
    max-width: 100%;
    max-height: 70px;
}
header.header .header-left .header__logo .header__logo--logo .backlogo {
    background-color: #1886e3;
    width: 186px;
    height: 70px;
    -webkit-transition: all .25s cubic-bezier(.4, 0, .2, 1);
    transition: all .25s cubic-bezier(.4, 0, .2, 1);
}

/* Logo Info */
header.header .header-left .header__logo .header__logo--info {
    color: #1886e3;
    font-family: 'Poppins', sans-serif;
    font-size: 10px;
    font-weight: 400;
    font-style: normal;
    letter-spacing: 2px;
    line-height: normal;
    text-transform: uppercase;
    padding: 0 15px;
}

/* Header Menu */
header.header .header-right {
    display: flex;
    justify-content: flex-end;
    align-items:
}
header.header .header-right .header__menu {
    margin-right: 30px;
}
header.header .header-right .header__menu ul.menu {
    display: flex;
    margin: 0;
    padding: 0;
}
header.header .header-right .header__menu ul.menu>.menu-item {
    list-style: none;
    padding: 13px 21px;
    -webkit-transition: all .25s cubic-bezier(.4, 0, .2, 1);
    transition: all .25s cubic-bezier(.4, 0, .2, 1);
    position: relative;
}
header.header .header-right .header__menu ul.menu>.menu-item+.menu-item {
    margin-left: 6px;
}
header.header .header-right .header__menu ul.menu>.menu-item>a {
    color: #1886e3;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 500;
    font-style: normal;
    letter-spacing: 2.8px;
    line-height: 20px;
    text-transform: uppercase;
}

/* Sub Menu */
header.header .header-right .header__menu ul.menu ul.sub-menu {
    padding: 0;
    margin: 0;
    background-color: #fff;
    padding: 30px 30px 25px 25px;
    position: absolute;
    left: 0;
    bottom: 1px;
    transform: translateY(100%);
    box-shadow: 0 5px 6px rgba(143, 145, 194, 0.27);
    visibility: hidden;
    opacity: 0;
    transition: visibility 0s, opacity .1s cubic-bezier(.4, 0, .2, 1);
}
header.header .header-right .header__menu ul.menu ul.sub-menu li.menu-item {
    list-style: none;
}
header.header .header-right .header__menu ul.menu ul.sub-menu li.menu-item a {
    color: #9497a4;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 400;
    font-style: normal;
    letter-spacing: 0.75px;
    line-height: 30px;
    text-align: left;
    white-space: nowrap;
    position: relative;
    display: inline-block;
    padding: 0 20px 0 0;
    margin: 5px 0;
}
header.header .header-right .header__menu ul.menu ul.sub-menu li.menu-item a:after {
    content: '';
    display: inline-table;
    width: 0;
    height: 2px;
    background-color: #1579cb;
    position: absolute;
    left: 0;
    bottom: 0;
    -webkit-transition: width .25s cubic-bezier(.4, 0, .2, 1);
    transition: width .25s cubic-bezier(.4, 0, .2, 1);
}
header.header .header-right .header__menu ul.menu ul.sub-menu li.menu-item:hover a,
header.header .header-right .header__menu ul.menu ul.sub-menu li.menu-item.current-menu-item a {
    color: #1579cb;
}
header.header .header-right .header__menu ul.menu ul.sub-menu li.menu-item:hover a:after,
header.header .header-right .header__menu ul.menu ul.sub-menu li.menu-item.current-menu-item a:after {
    width: 100%;
}

/* SUM menu hover */
header.header .header-right .header__menu ul.menu>.menu-item.menu-item-has-children:hover {
    background-color: #fff;
    box-shadow: 0 3px 6px rgba(143, 145, 194, 0.27);
}
header.header .header-right .header__menu ul.menu>.menu-item.menu-item-has-children:hover>a {
    color: #1886e3;
}
header.header .header-right .header__menu ul.menu>.menu-item.menu-item-has-children:hover>ul.sub-menu {
    visibility: visible;
    opacity: 1;
}

/* custom menu */
body header.header .header-right .header__menu ul.menu li.menu-item.custom-menu-item {
    border-top: 1px solid #e9e9e9;
    padding-top: 25px;
    margin-top: 15px;
    width: 220px;
}
body header.header .header-right .header__menu ul.menu li.menu-item.custom-menu-item span.custom-menu-item-title {
    display: block;
    color: #161719;
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 500;
    font-style: normal;
    letter-spacing: normal;
    line-height: 26px;
    text-align: left;
    margin-bottom: 15px;
}
body header.header .header-right .header__menu ul.menu li.menu-item.custom-menu-item span.custom-menu-item-title strong {
    color: #1886e3;
    font-weight: 500 !important;
}
body header.header .header-right .header__menu ul.menu li.menu-item.custom-menu-item>a {
    color: #1886e3;
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 500;
    font-style: normal;
    letter-spacing: normal;
    line-height: normal;
    text-align: left;
}
body header.header .header-right .header__menu ul.menu li.menu-item.custom-menu-item>a:after {
    display: none;
}

/* Header Contact */
header.header .header-right .header__contact {
    text-align: right;
    position: relative;
    padding-left: 50px;
    margin-top: 13px;
}
header.header .header-right .header__contact:before {
    content: '';
    display: block;
    height: 20px;
    width: 1px;
    position: absolute;
    top: 0;
    left: 0;
    opacity: .5;
    background-color: #fff;
}
header.header .header-right .header__contact a {
    color: #1886e3;
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 20px;
    letter-spacing: 2px;
    text-transform: uppercase;
}
header.header .header-right .header__contact span {
    color: #1886e3;
    font-family: 'Poppins', sans-serif;
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 1px;
    line-height: normal;
    text-transform: uppercase;
    display: block;
}

/* Sticky */
header.header {
    -webkit-transform: translateY(0%);
    -moz-transform: translateY(0%);
    transform: translateY(0%);
    -webkit-transition: all 0.25s;
    -moz-transition: all 0.25s;
    transition: all 0.25s;
    box-shadow: 0 3px 10px rgba(96, 118, 182, 0.1);
    background-color: #fff;
}
header.header.woshadow {
    box-shadow: none;
}
header.header.trans {
    background: none;
    box-shadow: none;
}
header.header.slide-up {
    background: none;
    -webkit-transform: translateY(-100%);
    -moz-transform: translateY(-100%);
    transform: translateY(-100%);
}
header.header.trans .header-left .header__logo .header__logo--logo .backlogo {
    background-color: #fff;
}
header.header.trans .header-left .header__logo .header__logo--logo:hover .backlogo {
    background-color: #1886e3;
}
header.header.trans .header-left .header__logo .header__logo--info {
    color: #fff;
}
header.header.trans .header-right .header__contact a,
header.header.trans .header-right .header__contact span {
    color: #fff;
}
header.header.trans .header-right .header__contact:before {
    background-color: #fff;
}
header.header.trans .header-right .header__contact a:hover {
    color: #1886e3;
}
header.header.trans .header-right .header__menu ul.menu>.menu-item>a {
    color: #fff;
}
header.header.trans .header-right .header__menu ul.menu>.menu-item>a:hover {
    color: #1886e3;
}




/* Mobile */
header.header .header-right .mobile {
    display: none;
    align-items: center;
}
header.header .header-right .mobile .toggle-mnu {
    display: block;
    width: 27px;
    height: 21px;
    cursor: pointer;
}
header.header .header-right .mobile .toggle-mnu span:after,
header.header .header-right .mobile .toggle-mnu span:before {
    position: absolute;
    top: 9px;
    left: 0;
    content: ''
}
header.header .header-right .mobile .toggle-mnu span:after {
    top: 18px
}
header.header .header-right .mobile .toggle-mnu span {
    position: relative;
    display: block
}
header.header .header-right .mobile .toggle-mnu span,
header.header .header-right .mobile .toggle-mnu span:after,
header.header .header-right .mobile .toggle-mnu span:before {
    width: 100%;
    height: 3px;
    transition: all .3s;
    border-radius: 2px;
    backface-visibility: hidden;
    border-radius: 3px;
}
header.header .header-right .mobile .menu-toggler.on .toggle-mnu span {
    background-color: transparent
}
header.header .header-right .mobile .menu-toggler.on .toggle-mnu span:before {
    transform: rotate(45deg) translate(0, 0)
}
header.header .header-right .mobile .menu-toggler.on .toggle-mnu span:after {
    transform: rotate(-45deg) translate(6px, -7px)
}
header.header .header-right .mobile .toggle-mnu span,
header.header .header-right .mobile .toggle-mnu span:after,
header.header .header-right .mobile .toggle-mnu span:before {
    background-color: #1886e3;
}
header.header.trans .header-right .mobile .toggle-mnu span,
header.header.trans .header-right .mobile .toggle-mnu span:after,
header.header.trans .header-right .mobile .toggle-mnu span:before {
    background-color: #fff
}
header.header .header-right .mobile .mobile-contact {
    margin-right: 25px;
}
header.header .header-right .mobile .mobile-contact a {
    display: block;
    width: 35px;
    height: 35px;
    border-radius: 10px;
    /*background-color:#1886E3;*/
    background-image: url(images/mobile-phone.svg);
    background-repeat: no-repeat;
    background-position: center;
}
/*header.header .header-right .mobile .mobile-contact a .icon {
    display:block;
    width: 45px;
    height: 45px;
    background-image:url(images/phone.svg);
    background-repeat:no-repeat;
    background-position: center;
    filter: invert(13%) sepia(78%) saturate(3707%) hue-rotate(212deg) brightness(93%) contrast(92%);
    
}*/
header.header.trans .mobile-contact a .icon {
    filter: invert(99%) sepia(100%) saturate(0%) hue-rotate(147deg) brightness(104%) contrast(100%);
}









/*************
    FOOTER
*************/
footer.footer .footer__widgets {
    padding-top: 50px;
    padding-bottom: 50px;
    background-color: #1c2330;
}
footer.footer .footer__widgets .footer__widgets--row {
    display: flex;
    padding: 15px 0;
}
footer.footer .footer__widgets .col-lg-6+.col-lg-6 .footer__widgets--row:before {
    content: '';
    height: 100%;
    width: 1px;
    background-color: #353E50;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    transform: translateX(-50%);
}
footer.footer .footer__widgets .footer__widgets--row.footer__widgets--row-right {
    justify-content: space-between;
}

/* Social Media */
footer.footer .footer__widgets .footer__widgets--row .footer__widgets--col.footer__widgets--col--socials {
    margin-right: 75px;
}
footer.footer .footer__widgets .social__medias {
    margin-bottom: 24px;
}
footer.footer .footer__widgets .social__medias .social__medias--title {
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 400;
    font-style: normal;
    letter-spacing: 2.1px;
    line-height: normal;
    text-align: left;
    text-transform: uppercase;
    margin-bottom: 11px;
}
footer.footer .footer__widgets .social__medias .social__medias--list {
    margin: 0;
    padding: 0;
    display: flex;
}
footer.footer .footer__widgets .social__medias .social__medias--list .social__medias--list-item {
    list-style: none;
}
footer.footer .footer__widgets .social__medias .social__medias--list .social__medias--list-item+.social__medias--list-item {
    margin-left: 12px;
}
footer.footer .footer__widgets .social__medias .social__medias--list .social__medias--list-item a {
    width: 43px;
    height: 43px;
    background-color: #ffffff;
    opacity: 0.2;
    display: block;
    -webkit-transition: all .25s cubic-bezier(.4, 0, .2, 1);
    transition: all .25s cubic-bezier(.4, 0, .2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
}
footer.footer .footer__widgets .social__medias .social__medias--list .social__medias--list-item a:hover {
    opacity: 1;
    border-radius: 0;
    background-color: #1886e3;
}
footer.footer .footer__widgets .social__medias .social__medias--list .social__medias--list-item .social__medias--list-item-ico {
    display: block;
    width: 20px;
    height: 20px;
    background-position: center;
    background-repeat: no-repeat;
}

/* Social Copyright */
footer.footer .footer__widgets .copyright p {
    color: #9497a4;
    font-family: 'Poppins', sans-serif;
    font-size: 10px;
    font-weight: 400;
    font-style: normal;
    letter-spacing: normal;
    line-height: 16px;
    margin: 0;
}

/* Footer menu*/
footer.footer .footer__widgets .footer__widgets--row .footer__widgets--col.footer__widgets--col--widget {
    margin: 0 35px;
}
footer.footer .footer__widgets .widget {
    min-width: 150px;
}
footer.footer .footer__widgets .widget+.widget {
    margin-top: 50px;
}
footer.footer .footer__widgets .widget .menu {
    margin: 0;
    padding: 0;
}
footer.footer .footer__widgets .widget .menu .menu-item {
    list-style: none;
}
footer.footer .footer__widgets .widget .menu .menu-item+.menu-item {
    margin-top: 30px;
}
footer.footer .footer__widgets .widget .menu .menu-item a {
    color: #9497a4;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 400;
    font-style: normal;
    letter-spacing: normal;
    line-height: 20px;
    text-decoration: none;
}
footer.footer .footer__widgets .widget .menu .menu-item a:hover {
    color: #fff;
}

/* Contact Information */
footer.footer .footer__widgets .contact__info {
    padding-left: 90px;
}
footer.footer .footer__widgets .contact__info .contact__info--phone a {
    color: #9497a4;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    text-decoration: none;
}
footer.footer .footer__widgets .contact__info .contact__info--phone a span:last-child {
    font-size: 18px;
    line-height: 30px;
}
footer.footer .footer__widgets .contact__info .contact__info--phone a:hover {
    color: #fff;
}
footer.footer .footer__widgets .contact__info .contact__info--phone a span {
    display: block;
    white-space: pre;
}

/* Subscribe Form */
footer.footer .footer__widgets .contact__form {
    width: 400px;
}
footer.footer .footer__widgets .contact__form .contact__form--head {
    margin-bottom: 35px;
}
footer.footer .footer__widgets .contact__form .contact__form--head .contact__form--head-title {
    color: #1886e3;
    font-family: 'Poppins', sans-serif;
    font-size: 26px;
    font-weight: 600;
    font-style: normal;
    letter-spacing: normal;
    line-height: 27px;
    margin-top: 0;
    margin-bottom: 5px;
}
footer.footer .footer__widgets .contact__form .contact__form--head .contact__form--head-description {
    color: #9497a4;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 400;
    font-style: normal;
    letter-spacing: 0.14px;
    line-height: normal;
    margin-top: 0;
    margin-bottom: 0;
}
footer.footer .footer__widgets .contact__form .contact__form--form .form-group.form-group-inline {
    display: flex;
    width: 100%;
}
footer.footer .footer__widgets .contact__form .contact__form--form .form-group.form-group-inline .form-input {
    line-height: 38px;
    background-color: #ffffff;
    border: 1px solid #fff;
    border-radius: 0;
    padding: 0 10px;
    color: #161719;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 500;
    font-style: normal;
    letter-spacing: 0.26px;
    flex-grow: 1;
}
footer.footer .footer__widgets .contact__form .contact__form--form .form-group.form-group-inline .form-submit {
    height: 40px;
    background-color: #c2c4cb;
    color: #161719;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 500;
    font-style: normal;
    letter-spacing: 0.26px;
    line-height: 40px;
    border: 0;
    padding: 0 30px;
    -webkit-transition: all .25s cubic-bezier(.4, 0, .2, 1);
    transition: all .25s cubic-bezier(.4, 0, .2, 1);
    cursor: pointer;
}
footer.footer .footer__widgets .contact__form .contact__form--form .form-group.form-group-inline .form-submit:hover {
    color: #fff;
    background-color: #1886e3;
}
footer.footer .footer__widgets .contact__form .contact__form--form .wpcf7 form.invalid .wpcf7-response-output,
footer.footer .footer__widgets .contact__form .contact__form--form .wpcf7 form.unaccepted .wpcf7-response-output,
footer.footer .footer__widgets .contact__form .contact__form--form div.wpcf7 .ajax-loader,
footer.footer .footer__widgets .contact__form .contact__form--form .wpcf7-not-valid-tip,
footer.footer .footer__widgets .contact__form .contact__form--form .wpcf7 form.failed .wpcf7-response-output,
footer.footer .footer__widgets .contact__form .contact__form--form .wpcf7 form.aborted .wpcf7-response-output {
    display: none !important;
}
footer.footer .footer__widgets .contact__form .contact__form--form .form-group.form-group-inline .form-input.wpcf7-not-valid {
    border: 1px solid #ec5053;
}

/* Money back*/
footer.footer .money__back {
    background: #fff;
    padding-top: 11px;
    padding-bottom: 14px;
}
footer.footer .money__back .money__back--wrap {
    display: flex;
    justify-content: center;
    align-items: center;
}
footer.footer .money__back .money__back--title {
    color: #1c2330;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    font-style: normal;
    letter-spacing: 0.7px;
    line-height: normal;
    text-transform: uppercase;
    display: inline-flex;
    margin-right: 26px;
    align-items: center;
}
footer.footer .money__back .money__back--title:before {
    content: '';
    width: 25px;
    height: 25px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    background-image: url(images/moneyback.svg);
    margin-right: 11px;
}
footer.footer .money__back .money__back--text {
    color: #9497a4;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 400;
    font-style: normal;
    letter-spacing: 0.14px;
    line-height: 18px;
}

/*****************
    Front Page 
*****************/
/* Banner */
section.section-front-banner {
    height: 1080px;
    min-height: 100vh;
    overflow: hidden;
    position: relative;
}
section.section-front-banner .banner__container,
section.section-front-banner .front__banner-back {
    position: absolute;
    left: 0;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}
section.section-front-banner .banner__container .banner__content {
    padding-left: 150px;
}
section.section-front-banner .banner__container .banner__container-title {
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    font-size: 80px;
    font-weight: 700;
    font-style: normal;
    line-height: 98px;
    margin-top: 0;
    margin-bottom: 0;
}
section.section-front-banner .banner__container .banner__container-description {
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 400;
    font-style: normal;
    letter-spacing: 0.4px;
    margin-bottom: 30px;
    margin-top: 0;
}
section.section-front-banner .front__banner-back .front__banner-back-figure {
    margin-left: auto;
    margin-right: 0;
    display: flex;
    -webkit-clip-path: polygon(248px 0%, 100% 2px, 100% 100%, 0% calc(100% - 9px));
    clip-path: polygon(248px 0%, 100% 2px, 100% 100%, 0% calc(100% - 9px));
    height: 737px;
    width: 1106px;
}
section.section-front-banner .front__banner-back {
    z-index: 2;
}
section.section-front-banner .banner__container {
    z-index: 3;
}
section.section-front-banner .section-front-banner-down {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}
section.section-front-banner .section-front-banner-down span:last-child {
    background-color: rgba(255, 255, 255, .25);
    display: block;
    width: 1px;
    height: 92px;
    content: '';

}
section.section-front-banner .section-front-banner-down span:first-child {
    border: 1px solid rgba(255, 255, 255, .25);
    display: block;
    width: 23px;
    height: 23px;
    content: '';
    border-radius: 50%;
    transform: translateX(-50%);
    position: absolute;
    left: 50%;
    top: 9%;
    -webkit-animation: scrollMouse 3s infinite;
    animation: scrollMouse 3s infinite;
}
@keyframes scrollMouse {
    0% {
        top: 9%;
    }
    50% {
        top: 65%;
    }
    100% {
        top: 9%;
    }
}
.front__banner-back-figure {
    -webkit-animation: backFigure 1s forwards;
}
@keyframes backFigure {
    from {
        opacity: 0;
        transform: translateX(100%)
    }
    to {
        opacity: 1;
        transform: translateX(0%)
    }
}
section.section-front-banner .banner__container .banner__content {
    -webkit-animation: bannerContent 1s forwards;
}
@keyframes bannerContent {
    from {
        opacity: 0;
        transform: translateY(-50px)
    }
    to {
        opacity: 1;
        transform: translateY(0)
    }
}

/* Our Work */
section.section-work {
    background-color: #fff;
}
section.section-work .section__work--head {
    padding-top: 20px;
}
section.section-work .section__work--head .section__work--head-title {
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    font-size: 50px;
    font-weight: 700;
    font-style: normal;
    letter-spacing: normal;
    line-height: 50px;
    text-align: center;
    text-transform: uppercase;
    margin-top: 0;
    margin-bottom: 60px;
}
section.section-work .works-container {
    display: flex;
    flex-wrap: wrap;
}
section.section-work .works__work {
    width: 29.6875%;
    position: relative;
    overflow: hidden;
    height: 29.6875vw;
}
section.section-work .works__work:first-child,
section.section-work .works__work:last-child {
    width: 40.625%;
}
section.section-work .works__work .works__work--background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}
section.section-work .works__work .works__work--background .works__work--background-thumb {
    background-position: center;
    background-size: cover;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}
section.section-work .works__work .works__work--background .works__work--background-logo {
    background-size: cover;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.1);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    /*-webkit-transform: scale(1);*/
    /*transform: scale(1);*/
}
section.section-work .works__work .works__work--background .works__work--background-logo .works__work--background-logo-img {
    max-width: 275px;
    max-height: 200px;
}
section.section-work .works__work .works__work--content-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: .9;
}
section.section-work .works__work .works__work--content {
    background-size: cover;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}
section.section-work .works__work .works__work--content .works__work--content-title {
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    font-size: 30px;
    font-weight: 600;
    font-style: normal;
    letter-spacing: normal;
    line-height: normal;
    text-align: center;
    margin-top: 0;
    margin-bottom: 3px;
}
section.section-work .works__work .works__work--content .works__work--content-categories {
    text-align: center;
}
section.section-work .works__work .works__work--content .works__work--content-categories .works__work--content-categories-category {
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 400;
    font-style: normal;
    letter-spacing: 0.9px;
    line-height: normal;
}
section.section-work .works__work .works__work--content .works__work--content-categories .works__work--content-categories-category+.works__work--content-categories-category:before {
    content: ' . ';
}
section.section-work .works__work .works__work--content .works__work--content-bottom {
    text-align: center;
}
section.section-work .works__work .works__work--content .works__work--content-bottom .works__work--content-arrow {
    display: inline-block;
    margin-top: 22px;
    width: 17px;
    height: 16px;
    background-image: url(images/wark-arrow.svg);
    background-size: contain;
    background-repeat: no-repeat;
}
section.section-work .works__work .works__work--content .works__work--content-link {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

/* Work animation */
section.section-work .works__work .works__work--content-overlay {
    transform: translateY(-100%);
}
section.section-work .works__work .works__work--content {
    opacity: 0;
    transform: translateY(-20px);
}
section.section-work .works__work .works__work--content-overlay {
    -webkit-transition: transform .25s cubic-bezier(.4, 0, .2, 1);
    transition: transform .25s cubic-bezier(.4, 0, .2, 1);
}
section.section-work .works__work .works__work--background .works__work--background-logo {
    -webkit-transition: transform .5s cubic-bezier(.4, 0, .2, 1), all .5s cubic-bezier(.4, 0, .2, 1);
    transition: transform .5s cubic-bezier(.4, 0, .2, 1), all .5s cubic-bezier(.4, 0, .2, 1);
}
section.section-work .works__work .works__work--content {
    -webkit-transition: transform .5s cubic-bezier(.4, 0, .2, 1), all .5s cubic-bezier(.4, 0, .2, 1);
    transition: transform .5s cubic-bezier(.4, 0, .2, 1), all .5s cubic-bezier(.4, 0, .2, 1);
}
section.section-work .works__work:hover .works__work--content-overlay {
    transform: translateY(0);
}
section.section-work .works__work:hover .works__work--background .works__work--background-logo {
    opacity: 0;
    transform: translateY(20px);
}
section.section-work .works__work:hover .works__work--content {
    opacity: 1;
    transform: translateY(0);
}
section.section-work .section__work--bottom {
    text-align: center;
    padding-top: 40px;
}

/* Services */
section.section-services {
    padding-top: 90px;
    background-color: #fff;
}
section.section-services .section__services-head {
    text-align: center;
}
section.section-services .section__services-head .section__services-head-title {
    color: #161719;
    font-family: 'Poppins', sans-serif;
    font-size: 50px;
    font-weight: 700;
    line-height: 71px;
    text-transform: uppercase;
    margin-top: 0;
    margin-bottom: 13px;
}
section.section-services .section__services-head .section__services-head-description {
    color: #9497a4;
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 0.18px;
    line-height: normal;
}
section.section-services .services__container {
    padding-bottom: 110px;
    padding-top: 70px;
}
section.section-services .services__container .service {
    padding: 40px;
    text-align: center;
}
section.section-services .services__container .service .service-icon {
    display: block;
    width: 55px;
    height: 60px;
    display: inline-block;
    background-repeat: no-repeat;
    background-position: center bottom;
    margin-bottom: 6px;
}
section.section-services .services__container .service .service-title,
section.section-services .services__container .service .service-title a {
    color: #1579cb;
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 500;
    font-style: normal;
    line-height: 22px;
    margin-top: 0;
    margin-bottom: 0;
    margin-bottom: 20px;
}
section.section-services .services__container .service .service-content {
    color: #9497a4;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 400;
    font-style: normal;
    line-height: 24px;
}

/* Banner w back */
section.section-banner-w-back {
    height: 800px;
    background-position: center;
    background-size: cover;
    position: relative;
    transform: translateZ(-1px);
}
section.section-banner-w-back .section-banner__overlay {
    background-color: rgb(25 39 84 / 0.5);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}
section.section-banner-w-back .banner__container {
    text-align: center;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
}
section.section-banner-w-back .banner__container .banner__container-title {
    text-shadow: 0 0 6px rgba(0, 0, 0, 0.1);
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    font-size: 80px;
    font-weight: 700;
    font-style: normal;
    letter-spacing: normal;
    line-height: 95px;
    margin-top: 0;
    margin-bottom: 0;
}
section.section-banner-w-back .banner__container .banner__container-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    transform: translateY(100%);
}
section.section-banner-w-back .banner__container .banner__container-bottom .banner__container-description {
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 400;
    font-style: normal;
    letter-spacing: 0.48px;
    line-height: 32px;
    margin-bottom: 25px;
}

section.section__parallax .section__parallax--back {
    background-size: cover;
    position: fixed;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-position: 50% 0;
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    background-size: cover;
    -moz-transform: translate3d(0, 0, 0);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}
section.section__parallax .section__parallax--back-g {
    filter: grayscale(1);
}

/* Reviews */
section.section-reviews {
    padding-top: 90px;
    padding-bottom: 70px;
    background-color: #fff;
    overflow-x: hidden;
}
section.section-reviews .section__reviews-head {
    text-align: center;
    z-index: 1;
    position: relative;
}
section.section-reviews .section__reviews-head .section__reviews-head-title {
    color: #161719;
    font-family: 'Poppins', sans-serif;
    font-size: 30px;
    font-weight: 600;
    letter-spacing: 0.3px;
    line-height: 32px;
    margin-top: 0;
    margin-bottom: 6px;
}
section.section-reviews .section__reviews-head .section__reviews-head-description {
    color: #9497a4;
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 400;
    font-style: normal;
    letter-spacing: 0.18px;
    line-height: 20px;
    text-align: center;
}
/* reviews carousel */
section.section-reviews .reviews__container .reviews__carousel {
    padding-top: 50px;
    padding-bottom: 5px;
    position: relative;
}
section.section-reviews .reviews__container .reviews__carousel:before {
    content: '';
    display: block;
    background-image: url(images/quote-left.svg);
    background-repeat: no-repeat;
    background-size: contain;
    width: 472px;
    height: 412px;
    position: absolute;
    top: -70px;
    left: 140px;
    z-index: 0;
}
section.section-reviews .reviews__container .reviews__carousel:after {
    content: '';
    display: block;
    background-image: url(images/quote-right.svg);
    background-repeat: no-repeat;
    background-size: contain;
    width: 472px;
    height: 412px;
    position: absolute;
    right: 125px;
    bottom: -25px;
    z-index: 0;
}
section.section-reviews .reviews__container .reviews__carousel .slick-list {
    z-index: 1;
}
section.section-reviews .reviews__container .reviews__carousel .reviews__carousel--slide-wrap {
    padding: 15px 37px;
}
section.section-reviews .reviews__container .reviews__carousel .reviews__carousel--slide {
    text-align: left;
    padding: 41px 51px 50px 51px;
    box-shadow: 0 0 6px rgba(133, 143, 191, 0.13);
    background-color: #ffffff;
}
section.section-reviews .reviews__container .reviews__carousel .reviews__carousel--slide .reviews__carousel--slide-title {
    color: #161719;
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: normal;
    line-height: 28px;
    margin-bottom: 3px;
    margin-top: 0;
    margin-left: 7px;
}
section.section-reviews .reviews__container .reviews__carousel .reviews__carousel--slide .reviews__carousel--slide-rating {
    margin-bottom: 9px;
    margin-left: 6px;
}
section.section-reviews .reviews__container .reviews__carousel .reviews__carousel--slide .reviews__carousel--slide-rating .star__rating {
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
}
section.section-reviews .reviews__container .reviews__carousel .reviews__carousel--slide .reviews__carousel--slide-rating .star__rating li {
    list-style: none;
    margin-right: 7px;
}
section.section-reviews .reviews__container .reviews__carousel .reviews__carousel--slide .reviews__carousel--slide-rating .star__rating .star__rating--star {
    width: 18px;
    height: 18px;
    display: block;
    background-image: url(images/star.svg);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}
section.section-reviews .reviews__container .reviews__carousel .reviews__carousel--slide .reviews__carousel--slide-content {
    color: #9497a4;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 400;
    font-style: normal;
    letter-spacing: 0.28px;
    line-height: 20px;
    margin-bottom: 6px;
    margin-left: 6px;
    margin-right: 6px;
}
section.section-reviews .reviews__container .reviews__carousel .reviews__carousel--slide .reviews__carousel--slide-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    color: #9497a4;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 400;
    font-style: normal;
    letter-spacing: 0.28px;
    line-height: 20px;
}
section.section-reviews .reviews__container .reviews__carousel .reviews__carousel--slide .reviews__carousel--slide-link:before {
    content: '';
    display: block;
    width: 40px;
    height: 40px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
    background-color: #ffffff;
    border-radius: 50%;
    background-image: url(images/google-logo.svg);
    background-position: center;
    background-size: 26px;
    background-repeat: no-repeat;
    margin-right: 10px;
}
section.section-reviews .reviews__container .reviews__carousel .slick-slide.slick-active {
    opacity: 1;
}
section.section-reviews .reviews__container .reviews__carousel ul.slick-dots {
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 55px;
}
section.section-reviews .reviews__container .reviews__carousel ul.slick-dots li {
    list-style: none;
    height: 15px;
    cursor: pointer;
}
section.section-reviews .reviews__container .reviews__carousel ul.slick-dots li+li {
    margin-left: 1px;
}
section.section-reviews .reviews__container .reviews__carousel ul.slick-dots li button {
    width: 15px;
    height: 15px;
    background-color: #9497a4;
    border: 0;
    border-radius: 50%;
    overflow: hidden;
    text-indent: -100px;
    padding: 0;
    margin: 2px;
    cursor: pointer;
}
section.section-reviews .reviews__container .reviews__carousel ul.slick-dots li.slick-active button {
    background-color: #1886e3;
}
section.section-reviews .section__reviews-bottom {
    text-align: center;
    margin-top: 10px;
}

/* Footer Banner */
section.section-footer-banner {
    padding-top: 107px;
    padding-bottom: 127px;
}
section.section-footer-banner .banner__container {
    text-align: center;
}
section.section-footer-banner .banner__container .banner__container-title {
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    font-size: 70px;
    font-weight: 700;
    font-style: normal;
    letter-spacing: normal;
    line-height: 98px;
    text-align: center;
    margin-top: 0;
    margin-bottom: 0;
}
section.section-footer-banner .banner__container .banner__container-description {
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    font-size: 19px;
    font-weight: 300;
    font-style: normal;
    letter-spacing: 0.38px;
    line-height: 30px;
    margin-bottom: 30px;
}

/* 
    Work Page 
*/

/* banner */
section.section-banner-small {
    height: 540px;
    background-position: center;
    position: relative;
    transform: translateZ(-1px);
}
section.section-banner-small .banner__container {
    text-align: center;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
}
section.section-banner-small .banner__container h2.banner__container-title {
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    font-size: 80px;
    font-weight: 700;
    font-style: normal;
    line-height: 100px;
    text-align: center;
    margin-top: 10px;
    margin-bottom: 10px;
}
section.section-banner-small .banner__container .banner__container-description {
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 300;
    font-style: normal;
    letter-spacing: 0.48px;
    line-height: 30px;
    font-style: normal;
    letter-spacing: normal;
}

/* work filter */
section.sub-menu-filter {
    padding-top: 40px;
    padding-bottom: 50px;
    background-color: #fff;
}
section.sub-menu-filter .menu {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
}
section.sub-menu-filter .menu .menu-item {
    list-style: none;
}
section.sub-menu-filter .menu .menu-item+.menu-item {
    margin-left: 45px;
}
section.sub-menu-filter .menu .menu-item a {
    color: #5a5a5a;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 400;
    font-style: normal;
    letter-spacing: 0.35px;
    line-height: 20px;
    padding: 5px;
    display: inline-block;
    border-bottom: 2px solid transparent;
}
section.sub-menu-filter .menu .menu-item a:hover {
    color: #1886e3;
}
section.sub-menu-filter .menu .menu-item.current-menu-item a {
    color: #1886e3;
    border-color: #1886e3;
}
section.sub-menu-filter .menu .menu-item.custom-menu-item {
    display: none !important;
}

/* Stiky sub menu */
section.sub-menu-filter .sticky-content {
    background: #fff;
    padding: 10px 0;
}
section.sub-menu-filter .sticky-content {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
section.sub-menu-filter .sticky-content.fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    -webkit-transform: translateY(100px);
    -moz-transform: translateY(100px);
    transform: translateY(100px);
    box-shadow: 0 5px 10px rgba(96, 118, 182, 0.1);
}
section.sub-menu-filter.slide-up .sticky-content.fixed {
    -webkit-transform: translateY(0%);
    -moz-transform: translateY(0%);
    transform: translateY(0%);
}

/************
    Works
************/

section.works-container {
    background-color: #fff;
    padding-bottom: 50px;
}
section.works-container .works {
    margin-left: -20px;
    margin-right: -20px;
    margin-top: -20px;
    margin-bottom: -20px;
    display: flex;
    flex-wrap: wrap;
}
section.works-container .works .work {
    width: 33.33%;
    padding: 20px;
    /*opacity: 0;*/
}
section.works-container .work.shown {
    opacity: 1;
}
section.works-container .work.animate {
    -webkit-animation: fadeIn 0.1s ease forwards;
    animation: fadeIn 0.1s ease forwards;
}
@-webkit-keyframes fadeIn {
    0% {}
    100% {
        opacity: 1;
    }
}
@keyframes fadeIn {
    0% {}
    100% {
        opacity: 1;
    }
}

/* Work Style 1 */
section.works-container[data-layout="layout1"] .works .work .inner-wrap {
    position: relative;
    overflow: hidden;
    background-color: #eee;
    height: 700px;
    box-shadow: 0 0 12px rgba(143, 145, 194, 0.27);
}
section.works-container[data-layout="layout1"] .works .work .work--background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}
section.works-container[data-layout="layout1"] .works .work .work--background .work--background-thumb {
    background-position: top center;
    background-size: cover;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}
section.works-container[data-layout="layout1"] .works .work .work--content-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: .9;
}
section.works-container[data-layout="layout1"] .works .work .work--content {
    padding: 50px;
    background-size: cover;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    backface-visibility: hidden;
}
section.works-container[data-layout="layout1"] .works .work .work--content .work--content-logo {
    text-align: center;
}
section.works-container[data-layout="layout1"] .works .work .work--content .work--content-logo .work--content-logo-img {
    max-width: 275px;
    max-height: 150px;
    margin-bottom: 10px;
}
section.works-container[data-layout="layout1"] .works .work .work--content .work--content-title {
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    font-size: 30px;
    font-weight: 600;
    font-style: normal;
    letter-spacing: normal;
    line-height: normal;
    text-align: center;
    margin-top: 0;
    margin-bottom: 3px;
}
section.works-container[data-layout="layout1"] .works .work .work--content .work--content-categories {
    text-align: center;
}
section.works-container[data-layout="layout1"] .works .work .work--content .work--content-categories .work--content-categories-category {
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 400;
    font-style: normal;
    letter-spacing: 0.9px;
    line-height: normal;
}
section.works-container[data-layout="layout1"] .works .work .work--content .work--content-categories .work--content-categories-category+.work--content-categories-category:before {
    content: ' . ';
}
section.works-container[data-layout="layout1"] .works .work .work--content .work--content-bottom {
    text-align: center;
}
section.works-container[data-layout="layout1"] .works .work .work--content .work--content-bottom .work--content-arrow {
    display: inline-block;
    margin-top: 15px;
    width: 17px;
    height: 16px;
    background-image: url(images/wark-arrow.svg);
    background-size: contain;
    background-repeat: no-repeat;
}
section.works-container[data-layout="layout1"] .works .work .work--content .work--content-link {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

/* Work Style 2*/
section.works-container[data-layout="layout2"] .works .work .inner-wrap {
    position: relative;
    overflow: hidden;
    background-color: #eee;
}
section.works-container[data-layout="layout2"] .works .work .inner-wrap:after {
    content: '';
    display: block;
    padding-top: 100%;
}
section.works-container[data-layout="layout2"] .works .work .work--background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}
section.works-container[data-layout="layout2"] .works .work .work--background .work--background-thumb {
    background-position: center;
    background-size: cover;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}
section.works-container[data-layout="layout2"] .works .work .work--content-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: .9;
}
section.works-container[data-layout="layout2"] .works .work .work--content {
    padding: 50px;
    background-size: cover;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
section.works-container[data-layout="layout2"] .works .work .work--content .work--content-link {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}
section.works-container[data-layout="layout2"] .works .work .work--content-logo,
section.works-container[data-layout="layout2"] .works .work .work--content-categories,
section.works-container[data-layout="layout2"] .works .work .work--content-bottom {
    display: none;
}

/* Work Style 3*/
section.works-container[data-layout="layout3"] .works .work {
    padding: 5px;
}
section.works-container[data-layout="layout3"] .works .work .inner-wrap {
    position: relative;
    overflow: hidden;
    background-color: #eee;
    height: 420px;
}
section.works-container[data-layout="layout3"] .works .work .work--background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}
section.works-container[data-layout="layout3"] .works .work .work--background .work--background-thumb {
    background-position: center;
    background-size: cover;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}
section.works-container[data-layout="layout3"] .works .work .work--content-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: .9;
}
section.works-container[data-layout="layout3"] .works .work .work--content {
    padding: 50px;
    background-size: cover;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
section.works-container[data-layout="layout3"] .works .work .work--content .work--content-logo {
    text-align: center;
}
section.works-container[data-layout="layout3"] .works .work .work--content .work--content-logo .work--content-logo-img {
    max-width: 275px;
    margin-bottom: 10px;
}
section.works-container[data-layout="layout3"] .works .work .work--content .work--content-title {
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    font-size: 30px;
    font-weight: 600;
    font-style: normal;
    letter-spacing: normal;
    line-height: normal;
    text-align: center;
    margin-top: 0;
    margin-bottom: 3px;
}
section.works-container[data-layout="layout3"] .works .work .work--content .work--content-categories {
    text-align: center;
}
section.works-container[data-layout="layout3"] .works .work .work--content .work--content-categories .work--content-categories-category {
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 400;
    font-style: normal;
    letter-spacing: 0.9px;
    line-height: normal;
}
section.works-container[data-layout="layout3"] .works .work .work--content .work--content-categories .work--content-categories-category+.work--content-categories-category:before {
    content: ' . ';
}
section.works-container[data-layout="layout3"] .works .work .work--content .work--content-bottom {
    text-align: center;
}
section.works-container[data-layout="layout3"] .works .work .work--content .work--content-bottom .work--content-arrow {
    display: inline-block;
    margin-top: 15px;
    width: 17px;
    height: 16px;
    background-image: url(images/wark-arrow.svg);
    background-size: contain;
    background-repeat: no-repeat;
}
section.works-container[data-layout="layout3"] .works .work .work--content .work--content-link {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}
section.works-container[data-layout="layout3"] .works .work .work--content .work--content-bottom {
    display: none;
}
section.works-container[data-layout="layout3"] .works .work.work-big .inner-wrap {
    height: 850px;
}

/* Work animation */
section.works-container .work .work--content-overlay {
    transform: translateY(-105%);
}
section.works-container .work .work--content {
    opacity: 0;
    transform: translateY(-20px);
}
section.works-container .work .work--content-overlay {
    -webkit-transition: transform .25s cubic-bezier(.4, 0, .2, 1);
    transition: transform .25s cubic-bezier(.4, 0, .2, 1);
}
/*section.works-container .work .work--background .work--background-logo {*/
/*    -webkit-transition: transform .5s cubic-bezier(.4, 0, .2, 1), all .5s cubic-bezier(.4, 0, .2, 1);*/
/*    transition: transform .5s cubic-bezier(.4, 0, .2, 1), all .5s cubic-bezier(.4, 0, .2, 1);*/
/*}*/
section.works-container .work .work--content {
    -webkit-transition: transform .25s cubic-bezier(.4, 0, .2, 1), opacity .5s cubic-bezier(.4, 0, .2, 1);
    transition: transform .25s cubic-bezier(.4, 0, .2, 1), opacity .5s cubic-bezier(.4, 0, .2, 1);
}
section.works-container .work .inner-wrap:hover .work--content-overlay {
    transform: translateY(0);
}
section.works-container .work .inner-wrap:hover .work--background .work--background-logo {
    opacity: 0;
    transform: translateY(20px);
}
section.works-container .work .inner-wrap:hover .work--content {
    opacity: 1;
    transform: translateY(0);
}
section.works-container .section__work--bottom {
    text-align: center;
    padding-top: 40px;
}

/******************
    Single Work 
******************/
/* Banner */
section.work-single-banner {
    height: 80vh;
    position: relative;
}
section.work-single-banner.section__parallax .section__parallax--back {
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
}
section.work-single-banner .banner__container {
    text-align: center;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
}
section.work-single-banner .banner__container .banner__container-title {
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    font-size: 80px;
    font-weight: 700;
    font-style: normal;
    line-height: 80px;
    text-align: center;
    margin-top: 0;
    margin-bottom: 30px;
}
section.work-single-banner .section-banner__overlay {
    background-color: #000000;
    opacity: 0.2;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}
section.work-single-banner .banner__container .banner__container-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    transform: translateY(100%);
}

/* Banner Tabs */
section.work-single-banner .banner__container .banner__container-bottom .banner__tabs {
    display: flex;
    justify-content: center;
}
section.work-single-banner .banner__container .banner__container-bottom .banner__tabs .banner__tabs-tab {
    position: relative;
    cursor: pointer;
    margin-left: 35px;
    margin-right: 35px;
    text-align: center;
}
section.work-single-banner .banner__container .banner__container-bottom .banner__tabs .banner__tabs-tab:after {
    content: '';
    width: 0;
    height: 3px;
    background-color: #fff;
    position: absolute;
    bottom: 0;
    transform: translate(-50%, 100%);
    -webkit-transition: width .25s cubic-bezier(.4, 0, .2, 1);
    transition: width .25s cubic-bezier(.4, 0, .2, 1);
    transform: translateX(-50%);
}
section.work-single-banner .banner__container .banner__container-bottom .banner__tabs .banner__tabs-tab:hover:after,
section.work-single-banner .banner__container .banner__container-bottom .banner__tabs .banner__tabs-tab.active:after {
    width: 100%;
}
section.work-single-banner .banner__container .banner__container-bottom .banner__tabs .banner__tabs-tab .banner_tab-ico {
    width: 40px;
    height: 35px;
    margin-bottom: 5px;
    background-repeat: no-repeat;
    background-position: center;
    display: inline-block;
    background-size: contain;
}
section.work-single-banner .banner__container .banner__container-bottom .banner__tabs .banner__tabs-tab .banner_tab-ico.banner_tab-ico-website {
    background-image: url(images/web-ico.svg);
}
section.work-single-banner .banner__container .banner__container-bottom .banner__tabs .banner__tabs-tab .banner_tab-ico.banner_tab-ico-branding {
    background-image: url(images/branding-ico.svg);
}
section.work-single-banner .banner__container .banner__container-bottom .banner__tabs .banner__tabs-tab .banner_tab-ico.banner_tab-ico-photography {
    background-image: url(images/photo-ico.svg);
}
section.work-single-banner .banner__container .banner__container-bottom .banner__tabs .banner__tabs-tab .banner_tab-name {
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 500;
    font-style: normal;
    letter-spacing: 1.8px;
    line-height: normal;
    text-transform: uppercase;
    padding: 4px 9px;
}

/* Recent Works */
section.recent-works {
    z-index: 9999;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    padding: 0;
    width: 60px;
    background-color: rgba(0, 0, 0, .1);
    -webkit-transition: all .25s cubic-bezier(.4, 0, .2, 1);
    transition: all .25s cubic-bezier(.4, 0, .2, 1);
    overflow: hidden;
}
section.recent-works .recent-works-head {
    padding: 30px 20px 15px 10px;
    -webkit-transition: all .25s cubic-bezier(.4, 0, .2, 1);
    transition: all .25s cubic-bezier(.4, 0, .2, 1);
    display: flex;
    justify-content: center;
    justify-content: space-between;
}
section.recent-works .recent-works-head .recent-works-toggle {
    width: 40px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    cursor: pointer;
}
section.recent-works .recent-works-head .recent-works-toggle i.icon {
    width: 40px;
    height: 23px;
    background-position: center;
    background-image: url(images/recent-works-toggle.svg);
    background-repeat: no-repeat;
    display: inline-block;
}
section.recent-works .recent-works-head .recent-works-toggle span {
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    font-size: 10px;
    font-weight: 300;
    font-style: normal;
    letter-spacing: 1px;
    text-indent: 1px;
    text-transform: uppercase;
    margin-top: 5px;
    display: inline-block;
    -webkit-transition: all .25s cubic-bezier(.4, 0, .2, 1);
    transition: all .25s cubic-bezier(.4, 0, .2, 1);
}
section.recent-works .recent-works-head .recent-works-close {
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 12px 0;
    display: inline-flex;
    align-items: center;
    line-height: 10px;
    height: 20px;
    cursor: pointer;
    opacity: 0;
    -webkit-transition: all .25s cubic-bezier(.4, 0, .2, 1);
    transition: all .25s cubic-bezier(.4, 0, .2, 1);
}
section.recent-works .recent-works-head .recent-works-close:before {
    content: '';
    display: block;
    width: 6px;
    height: 8px;
    background-image: url(images/close-ico.svg);
    background-repeat: no-repeat;
    background-position: center;
    margin-right: 6px;
}
section.recent-works .recent-works-container {
    padding: 0 10px;
    height: calc(100% - 84px);
    overflow-y: auto;
    width: 400px;
    transform: translateX(-400px);
    opacity: 0;
    -webkit-transition: all .25s cubic-bezier(.4, 0, .2, 1);
    transition: all .25s cubic-bezier(.4, 0, .2, 1);
}
section.recent-works .recent-works-container {
    -ms-overflow-style: none;
    scrollbar-width: none;
}
section.recent-works .recent-works-container::-webkit-scrollbar {
    display: none;
}
section.recent-works .recent-works-container .recent-work {
    margin-bottom: 10px;
    background-position: center;
    background-size: cover;
    position: relative;
}
section.recent-works .recent-works-container .recent-work:after {
    content: '';
    padding-top: 100%;
    display: block;
}
section.recent-works .recent-works-container .recent-work.recent-work-website {
    background-position: top center;
}
section.recent-works .recent-works-container .recent-work .recent-work-link {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}
/* Active */
section.recent-works .recent-works-container .recent-work {
    display: none;
}
section.recent-works .recent-works-container .recent-work.active {
    display: block;
}

/* Recent Works active */
section.recent-works:hover {
    background-color: rgba(0, 0, 0, .9);
    width: 400px;
}
section.recent-works:hover .recent-works-head {
    padding-right: 20px;
}
section.recent-works:hover .recent-works-head .recent-works-toggle span {
    opacity: 0;
}
section.recent-works:hover .recent-works-head .recent-works-close {
    opacity: 1;
}
section.recent-works:hover .recent-works-container {
    display: block;
}
section.recent-works:hover .recent-works-container {
    transform: translateX(0);
    opacity: 1;
}


/* Tabs */
.tab-container {
    display: none;
}
.tab-container.active {
    display: block;
}

/* Main */
section.section-website-main {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 90px;
    padding-bottom: 95px;
    width: 100%;
    overflow: hidden;
}
section.section-website-main .section-content {
    width: 100%;
}
section.section-website-main .section-website-main-content {
    display: flex;
    justify-content: center;
    width: 100%;
}
section.section-website-main .section-website-main-content .section-website-main--desktop {
    margin: 0;
    width: 1280px;
    height: 890px;
    background-position: top center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 13px;
    position: relative;
    overflow: hidden;
}
section.section-website-main .section-website-main-content .section-website-main--mobile {
    margin: 0;
    margin-top: 170px;
    width: 375px;
    height: 667px;
    background-position: top center;
    background-size: cover;
    border-radius: 13px;
    margin-left: -130px;
    box-shadow: 0 3px 5px rgba(0, 0, 0, .16);
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}
section.section-website-main .section-website-main-content .section-website-main--desktop img,
section.section-website-main .section-website-main-content .section-website-main--mobile img {
    width: 100%;
}

/* showcase */
section.section-web-showcase {
    background-color: #fff;
    padding-top: 65px;
    min-height: 100vh;
}
section.section-web-showcase .section__head {
    text-align: center;
    margin-bottom: 20px;
}
section.section-web-showcase .section__head .section__head--title {
    color: #1c2330;
    font-family: 'Poppins', sans-serif;
    font-size: 30px;
    font-weight: 500;
    font-style: normal;
    letter-spacing: 3px;
    text-transform: uppercase;
    line-height: 42px;
    margin-top: 0;
    margin-bottom: 0;
}
section.section-web-showcase .section__head .section__head--info {
    line-height: 20px;
    color: #9497a4;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.28px;
    margin-top: 0;
    margin-bottom: 0;
}

/* Slider height */
section.section-web-showcase .slick-track {
    display: flex;
}
section.section-web-showcase .slick-track .slick-slide {
    display: flex;
    height: auto;
    align-items: center;
    justify-content: center;
}

/* desktop Slider */
section.section-web-showcase {
    display: flex;
    flex-direction: column;
    padding-bottom: 40px;
    width: 100%;
    overflow: hidden;
}
section.section-web-showcase .showcase-desktop-slider {
    flex-grow: 1;
}
section.section-web-showcase .showcase-desktop-slider .showcase-slide {
    width: 1245px;
    padding: 10px 65px;
    text-align: center;
}
section.section-web-showcase .showcase-desktop-slider .showcase-slide .showcase-slide-content {
    width: 100%;
    position: relative;
}
section.section-web-showcase .showcase-desktop-slider .showcase-slide .showcase-slide-content .showcase-slide-image {
    width: 100%;
    height: 780px;
    margin-bottom: 20px;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.1);
    background-position: top;
    background-size: cover;
    border-radius: 13px;
    position: relative;
    overflow: hidden;
}
section.section-web-showcase .showcase-desktop-slider .showcase-slide .showcase-slide-content .showcase-slide-image img {
    width: 100%;
}
section.section-web-showcase .showcase-desktop-slider .showcase-slide .showcase-slide-content .showcase-slide-caption {
    line-height: 20px;
    color: #1c2330;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 400;
}
section.section-web-showcase .showcase-desktop-slider .showcase-slide .showcase-slide-content .showcase-slide--link {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

/* Mobile Slider */
section.section-web-showcase .showcase-mobile-slider-container {
    width: 1760px;
    margin: 0 auto;
}
section.section-web-showcase.section-web-showcase-mobile .section__head {
    margin-bottom: 60px;
}
section.section-web-showcase .showcase-mobile-slider .showcase-slide {
    padding: 10px 33px;
    text-align: center;
    width: 440px !important;
}
section.section-web-showcase .showcase-mobile-slider .showcase-slide .showcase-slide-content {
    width: 100%;
    position: relative;
}
section.section-web-showcase .showcase-mobile-slider .showcase-slide .showcase-slide-content .showcase-slide-image {
    width: 100%;
    height: 667px;
    margin-bottom: 20px;
    box-shadow: 0 0 8px rgba(31, 24, 73, 0.07);
    background-size: cover;
    background-position: top;
    border-radius: 13px;
    position: relative;
    overflow: hidden;
}
section.section-web-showcase .showcase-mobile-slider .showcase-slide .showcase-slide-content .showcase-slide-image img {
    width: 100%;
}
section.section-web-showcase .showcase-mobile-slider .showcase-slide .showcase-slide-content .showcase-slide--link {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
    display: none !important;
}
img.mfp-img {
    max-height: none !important;
    max-width: 800px;
    height: auto;
    display: block;
    line-height: 0;
    box-sizing: border-box;
    padding: 0;
}
.mfp-arrow {
    position: fixed;
    width: 40px;
    height: 70px;
    margin-top: -20px;
}
.mfp-arrow:active {
    margin-top: -20px !important;
}
.mfp-arrow:before,
.mfp-arrow:after,
.mfp-arrow:before,
.mfp-arrow:after {
    display: none;
}
.mfp-arrow-left,
.mfp-arrow-right {
    background-position: center !important;
    background-repeat: no-repeat !important;
}
.mfp-arrow.mfp-arrow-left {
    background-image: url(images/arrow-left.svg) !important;
    left: 80px;
}
.mfp-arrow.mfp-arrow-right {
    background-image: url(images/arrow-right.svg) !important;
    right: 80px;
}

/* Slider */
section.slider-fullheight .slider-fullheight-image {
    height: 100vh;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
section.slider-fullheight .slider-fullheight-image img {
    width: 100%;
}
section.slider-autoheight .slider-autoheight-image {
    display: grid;
    width: 100%;
}
section.slider-autoheight .slider-autoheight-image img {
    width: 100%;
    height: auto;
}

/**************************************************
    CONTACT PAGE
***************************************************/
section.section-contact {
    background-color: #fff;
}
section.section-contact .contact-left {
    padding-top: 90px;
    padding-bottom: 115px;
    padding-left: 100px;
    padding-right: 100px;
    display: flex;
    background-color: #fff;
    justify-content: flex-end;
}

/* Contact Form */
section.section-contact .contact-form {
    width: 500px;
    position: relative;
}
section.section-contact .contact-form .form-group {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column-reverse;
}
section.section-contact .contact-form .form-group br {
    display: none !important;
}
section.section-contact .contact-form .form-group+.form-group {
    margin-top: 20px;
}
section.section-contact .contact-form .form-group.form-group-submit {
    margin-top: 10px;
}
section.section-contact .contact-form .form-group label {
    color: #161719;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 400;
    font-style: normal;
    letter-spacing: 0.15px;
    line-height: 38px;
    text-align: left;
    font-style: normal;
    letter-spacing: normal;
    line-height: normal;
    padding-left: 3px;
}
section.section-contact .contact-form .form-group input[type="text"],
section.section-contact .contact-form .form-group input[type="email"],
section.section-contact .contact-form .form-group input[type="tel"] {
    width: 100%;
    height: 40px;
    border: 1px solid #dbdbdb;
    background-color: #ffffff;
    padding: 0 15px;
    color: #161719;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 400;
    font-style: normal;
    letter-spacing: normal;
    line-height: normal;
}
section.section-contact .contact-form .form-group textarea {
    width: 100%;
    height: 140px;
    border: 1px solid #dbdbdb;
    background-color: #ffffff;
    padding: 10px 15px;
    color: #161719;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 400;
    font-style: normal;
    letter-spacing: normal;
    line-height: normal;
    resize: vertical;
}
section.section-contact .contact-form .form-group span.select2.select2-container {
    width: 100% !important;
}
section.section-contact .contact-form .form-group span.select2.select2-container .select2-selection--single {
    border: 1px solid #dbdbdb;
    border-radius: 0;
    height: 40px;
}
section.section-contact .contact-form .form-group span.select2.select2-container .select2-selection--single .select2-selection__rendered {
    padding: 0 15px;
    color: #161719;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 400;
    font-style: normal;
    letter-spacing: normal;
    line-height: 38px;
}
section.section-contact .contact-form .form-group span.select2.select2-container .select2-selection--single .select2-selection__arrow b {
    display: none !important;
}
section.section-contact .contact-form .form-group span.select2.select2-container .select2-selection--single .select2-selection__arrow {
    width: 38px;
    height: 38px;
    background-image: url(images/arrow-down.svg);
    background-position: center;
    background-repeat: no-repeat;
}

/* Select2 Dropdown*/
.select2-container .select2-dropdown {
    border: 1px solid #dbdbdb;
    border-top: none;
    border-radius: 0;
}
.select2-results__option--selectable {
    padding: 10px 15px;
}
.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
    background-color: #1886e3;
    color: white;
}

section.section-contact .contact-form button#submit {
    width: 100%;
    height: 50px;
    background-color: #1886e3;
    border: 0;
    color: #ffffff;
    font-family: Poppins;
    font-size: 15px;
    font-weight: 500;
    font-style: normal;
    letter-spacing: 1.5px;
    line-height: 38px;
    text-align: center;
    text-transform: uppercase;
}
section.section-contact .contact-form .wpcf7-not-valid-tip {
    display: none !important;
}
section.section-contact .contact-form .form-group input.wpcf7-form-control.wpcf7-not-valid,
section.section-contact .contact-form .form-group textarea.wpcf7-form-control.wpcf7-textarea.wpcf7-not-valid {
    border: 1px solid #f04934;
    border-bottom-width: 3px;
    background-color: #ffffff;
}
section.section-contact .contact-form .form-group input.wpcf7-form-control.wpcf7-not-valid label {
    color: #f04934;
}
section.section-contact .contact-form .form-group .wpcf7-form-control-wrap.invalid+label {
    color: #f04934;
}
section.section-contact .contact-form .form-group.form-group-submit {
    position: relative;
}
section.section-contact .contact-form div.wpcf7 .ajax-loader {
    width: 100%;
    margin: 0;
    height: 50px;
    background-color: #1886e3;
    opacity: 0;
    background-position: center;
    background-repeat: no-repeat;
    background-image: linear-gradient(to right, #1ab7a2 0%, #19aab3 51%, #1886e3 100%);
    display: flex !important;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
}
section.section-contact .contact-form div.wpcf7 .ajax-loader::before {
    content: "";
    display: inline-block;
    width: 28px;
    height: 28px;
    z-index: 0;
    background: url(images/spinner.svg) center no-repeat;
    transform: rotate(0);
    -webkit-animation: spin 1s linear infinite;
    animation: spin 1s linear infinite;
}
section.section-contact .contact-form div.wpcf7 .ajax-loader.is-active {
    opacity: 1;
}
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
section.section-contact .contact-form .wpcf7 form .wpcf7-response-output {
    margin: 0;
    padding: 0 10px;
    border: 0;
    width: 100%;
    height: 50px !important;
    background-color: #1ab7a2;
    border: 0;
    color: #ffffff;
    font-family: Poppins;
    font-size: 15px;
    font-weight: 500;
    font-style: normal;
    letter-spacing: 1.5px;
    line-height: 38px;
    text-align: center;
    text-transform: uppercase;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    bottom: 0;
    visibility: hidden;
}
section.section-contact .contact-form .wpcf7 form.invalid .wpcf7-response-output,
section.section-contact .contact-form .wpcf7 form.unaccepted .wpcf7-response-output,
section.section-contact .contact-form .wpcf7 form.failed .wpcf7-response-output,
section.section-contact .contact-form .wpcf7 form.aborted .wpcf7-response-output {
    background-color: #f04934;
    visibility: visible;
}
section.section-contact .contact-form .wpcf7 form.sent .wpcf7-response-output {
    visibility: visible;
}
section.section-contact .contact-right {
    padding-top: 115px;
    padding-bottom: 115px;
    padding-left: 100px;
    padding-right: 100px;
    display: flex;
    position: relative;
    overflow: hidden;
}
section.section-contact .contact-right .contact-right--back {
    background-size: cover;
    position: absolute;
    z-index: 0;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-position: -170px 0;
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    -moz-transform: translate3d(0, 0, 0);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}
section.section-contact .contact-right .contact-information {
    width: 500px;
    position: relative;
}
section.section-contact .contact-information .contact_information {}
section.section-contact .contact-information .contact_information .contact_information--title {
    color: #1886e3;
    font-family: Poppins;
    font-size: 33px;
    font-weight: 700;
    font-style: normal;
    letter-spacing: normal;
    text-align: left;
    font-style: normal;
    letter-spacing: normal;
    line-height: normal;
    margin-top: 0;
    margin-bottom: 0;
}
section.section-contact .contact-information .contact_information .contact_information--description {
    color: #161719;
    font-family: Poppins;
    font-size: 17px;
    font-weight: 400;
    font-style: normal;
    letter-spacing: 0.14px;
    text-align: left;
    font-style: normal;
    letter-spacing: normal;
    line-height: normal;
}
section.section-contact .contact-information .contact_information .contact_information--location {
    color: #161719;
    font-family: Poppins;
    font-size: 14px;
    font-weight: 400;
    font-style: normal;
    letter-spacing: 0.14px;
    text-align: left;
    font-style: normal;
    letter-spacing: normal;
    line-height: normal;
    margin-top: 10px;
}
section.section-contact .contact-information .contact_contact_information {
    margin-top: 40px;
}
section.section-contact .contact-information .contact_contact_information .contact_contact_information--title {
    color: #161719;
    font-family: Poppins;
    font-size: 30px;
    font-weight: 500;
    font-style: normal;
    letter-spacing: normal;
    font-style: normal;
    letter-spacing: normal;
    line-height: 40px;
    margin-top: 0;
    margin-bottom: 0;
}
section.section-contact .contact-information .contact_contact_information .contact_contact_information--description {
    color: #5e5e5e;
    font-family: Poppins;
    font-size: 20px;
    font-weight: 400;
    font-style: normal;
    letter-spacing: normal;
    line-height: normal;
}
section.section-contact .contact-information .contact_contact_information .contact_contact_information--phone {
    margin-top: 20px;
}
section.section-contact .contact-information .contact_contact_information .contact_contact_information--phone a {
    color: #161719;
    font-family: Poppins;
    font-size: 24px;
    font-weight: 500;
    font-style: normal;
    letter-spacing: 0.48px;
    font-style: normal;
    letter-spacing: normal;
    line-height: normal;
}
section.section-contact .contact-information .contact_contact_information .contact_contact_information--phone a:hover {
    color: #1886e3;
}
section.section-contact .contact-information .contact_contact_information .contact_contact_information--phone span {
    display: block;
    color: #161719;
    font-family: Poppins;
    font-size: 16px;
    font-weight: 400;
    font-style: normal;
    letter-spacing: 0.16px;
    font-style: normal;
    letter-spacing: normal;
    line-height: normal;
    margin-top: -4px;
}
section.section-contact .contact-information .contact_social_medias {
    margin-top: 50px;
}
section.section-contact .contact-information .contact_social_medias .social_medias--title {
    color: #161719;
    font-family: Poppins;
    font-size: 16px;
    font-weight: 400;
    font-style: normal;
    letter-spacing: normal;
    line-height: normal;
    margin-bottom: 10px;
}
section.section-contact .contact-information .contact_social_medias .contact_social_medias--list {
    margin: 0;
    padding: 0;
    display: flex;
}
section.section-contact .contact-information .contact_social_medias .contact_social_medias--list .contact_social_medias--list-item {
    list-style: none;
}
section.section-contact .contact-information .contact_social_medias .contact_social_medias--list .contact_social_medias--list-item+.contact_social_medias--list-item {
    margin-left: 12px;
}
section.section-contact .contact-information .contact_social_medias .contact_social_medias--list .contact_social_medias--list-item a {
    width: 60px;
    height: 60px;
    background-color: #ffffff;
    display: block;
    -webkit-transition: all .25s cubic-bezier(.4, 0, .2, 1);
    transition: all .25s cubic-bezier(.4, 0, .2, 1);
}
section.section-contact .contact-information .contact_social_medias .contact_social_medias--list .contact_social_medias--list-item a:hover {
    opacity: 1;
    border-radius: 0;
    background-color: #1886e3;
}
section.section-contact .contact-information .contact_social_medias .contact_social_medias--list .contact_social_medias--list-item .contact_social_medias--list-item-ico {
    display: block;
    width: 60px;
    height: 60px;
    background-position: center;
    background-repeat: no-repeat;
    filter: invert(52%) sepia(55%) saturate(4425%) hue-rotate(187deg) brightness(90%) contrast(98%);
}
section.section-contact .contact-information .contact_social_medias .contact_social_medias--list .contact_social_medias--list-item a:hover .contact_social_medias--list-item-ico {
    filter: invert(100%) sepia(0%) saturate(7495%) hue-rotate(45deg) brightness(94%) contrast(99%);
}


/***********************************************
    SERVICE PAGES
************************************************/


/******************************
    SERVICE: WEBSITE DESIGN 
******************************/
section.section-service-banner {
    overflow: hidden;
}
section.section-service-banner .banner__container {
    position: relative;
    padding-top: 255px;
    padding-bottom: 290px;
    text-align: center;
}
section.section-service-banner .banner__container .banner__container-back-figure {
    margin-left: auto;
    margin-right: 0;
    display: flex;
    -webkit-clip-path: polygon(0 0%, 100% 0px, 100% 100%, 0% 0%);
    clip-path: polygon(0 0%, 100% 0px, 100% 100%, 0% 0%);
    height: 240px;
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    transform: translateY(100%);
}
section.section-service-banner .banner__container h1.banner__container-title {
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    font-size: 80px;
    font-weight: 700;
    text-align: center;
    margin-top: 0;
    margin-bottom: 10px;
}
section.section-service-banner .banner__container h3.banner__container-description {
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 300;
    font-style: normal;
    letter-spacing: 0.48px;
    line-height: 30px;
    text-align: center;
    margin-top: 0;
    margin-bottom: 35px;
}

/* Preview */
section.section-service-banner .service_preview {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    margin-top: -180px;
}
section.section-service-banner .service_preview .section-content {
    width: 100%;
}
section.section-service-banner .service_preview .service_preview-content {
    display: flex;
    justify-content: center;
    width: 100%;
}
section.section-service-banner .service_preview .service_preview-content .service_preview--desktop {
    width: 1080px;
    height: 780px;
    background-position: top center;
    background-size: cover;
    border-radius: 13px;
}
section.section-service-banner .service_preview .service_preview-content .service_preview--mobile {
    width: 358px;
    height: 630px;
    background-position: top center;
    background-size: cover;
    border-radius: 13px;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.16);
    margin-top: 113px;
    margin-left: -80px;
}

/* About */
section.section-service-about {
    padding-top: 90px;
    padding-bottom: 105px;
}
section.section-service-about .about__content .about__container-title {
    color: #0e59bc;
    font-family: 'Poppins', sans-serif;
    font-size: 50px;
    font-weight: 700;
    line-height: 50px;
    margin-top: 0;
    margin-bottom: 20px;
    text-align: center;
}
section.section-service-about .about__content .about__container-description {
    color: #161719;
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 400;
    font-style: normal;
    letter-spacing: 0.18px;
    line-height: 30px;
    text-align: center;
}

/* Services */
section.section-services.service-services {
    padding-top: 100px;
    padding-bottom: 80px;
}
section.section-services.service-services .services__container {
    padding: 0;
}

/* How we do it */
section.section-howwedo .section__head {
    background-color: #fff;
    padding-bottom: 185px;
}
section.section-howwedo .section__head--title {
    color: #1C2330;
    font-family: 'Poppins', sans-serif;
    font-size: 50px;
    font-weight: 700;
    line-height: 50px;
    text-align: center;
    margin-top: 0;
    margin-bottom: 0;
}
section.section-howwedo .howwedo {
    background-color: #f6f9fc;
    padding-bottom: 25px;
}
section.section-howwedo .howwedo .howwedo-tabs {
    display: flex;
    justify-content: center;
}
section.section-howwedo .howwedo .howwedo-tab-imgs {
    margin-top: -170px;
    position: relative;
    width: 850px;
    height: 750px;
    overflow: hidden;
}
section.section-howwedo .howwedo .howwedo-tab-imgs .howwedo-tab {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    -webkit-transition: all .25s cubic-bezier(.4, 0, .2, 1);
    transition: all .25s cubic-bezier(.4, 0, .2, 1);
    z-index: 1;
}
section.section-howwedo .howwedo .howwedo-tab img {
    max-width: 100%;
    /*box-shadow: 0 0 8px rgba(93, 79, 185, 0.1);*/
}
section.section-howwedo .howwedo .howwedo-tab-links {
    width: 440px;
    margin-left: 190px;
    padding-top: 90px;
    position: relative;
    z-index: 0;
}
section.section-howwedo .howwedo .howwedo-tab-links .howwedo-tab-content {
    margin-bottom: 25px;
    position: relative;
    padding: 0 35px;
}
section.section-howwedo .howwedo .howwedo-tab-links .howwedo-tab-content:before {
    content: '';
    height: 1px;
    width: 280px;
    display: block;
    background-color: #E8EDF9;
    position: absolute;
    left: 0;
    top: 17px;
    transform: translateX(-100%);
    -webkit-transition: all .25s cubic-bezier(.4, 0, .2, 1);
    transition: all .25s cubic-bezier(.4, 0, .2, 1);
}
section.section-howwedo .howwedo .howwedo-tab-links .howwedo-tab-content a.howwedo-tab-content-title {
    color: #bac6e3;
    font-family: 'Poppins', sans-serif;
    font-size: 25px;
    line-height: 28px;
    font-weight: 400;
    margin-bottom: 4px;
    display: inline-block;
    padding: 4px 0;
    -webkit-transition: all .25s cubic-bezier(.4, 0, .2, 1);
    transition: all .25s cubic-bezier(.4, 0, .2, 1);
}
section.section-howwedo .howwedo .howwedo-tab-links .howwedo-tab-content .howwedo-tab-content-description {
    color: #161719;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    opacity: 0;
}

/* How we do it active */
section.section-howwedo .howwedo .howwedo-tab-imgs .howwedo-tab.active {
    opacity: 1;
}
section.section-howwedo .howwedo .howwedo-tab-links .howwedo-tab-content.active:before {
    background-color: #1886E3;
}
section.section-howwedo .howwedo .howwedo-tab-links .howwedo-tab-content.active a.howwedo-tab-content-title {
    color: #1886e3;
}
section.section-howwedo .howwedo .howwedo-tab-links .howwedo-tab-content.active .howwedo-tab-content-description {
    opacity: 1;
}

/* portfolio */
section.section-service-portfolio {
    background-color: #fff;
    padding-top: 90px;
}
section.section-service-portfolio .section__head {
    text-align: center;
    margin-bottom: 60px;
}
section.section-service-portfolio .section__head .section__head--title {
    color: #1c2330;
    font-family: 'Poppins', sans-serif;
    font-size: 50px;
    font-weight: 700;
    line-height: 50px;
    text-align: center;
    margin-top: 0;
    margin-bottom: 0;
}
section.section-service-portfolio .section__head .section__head--description {
    color: #161719;
    font-family: Poppins;
    font-size: 18px;
    font-weight: 400;
    font-style: normal;
    letter-spacing: 0.18px;
    line-height: normal;
    text-align: center;
}
section.section-service-portfolio .section__head .section__head--info {
    color: #161719;
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 0.18px;
    line-height: 30px;
    text-align: center;
    margin-top: 0;
    margin-bottom: 0;
}
section.section-service-portfolio .portfolio-slider {
    overflow: hidden;
}
section.section-service-portfolio .portfolio-slider .owl-nav {
    display: none;
}
section.section-service-portfolio .portfolio-slider .owl-stage {
    display: flex;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
    width: 100% !important;
}
section.section-service-portfolio .portfolio-slider {
    flex-grow: 1;
}
section.section-service-portfolio .portfolio-slider .portfolio-slide {
    width: 900px;
    padding: 10px 15px;
    text-align: center;
}
section.section-service-portfolio .portfolio-slider .portfolio-slide .portfolio-slide-content {
    width: 100%;
    position: relative;
}
section.section-service-portfolio .portfolio-slider .portfolio-slide .portfolio-slide-content .portfolio-slide-image {
    width: 100%;
    height: 575px;
    /*margin-bottom: 20px;*/
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.1);
    background-size: cover;
    background-position: top;
}
section.section-service-portfolio .portfolio-slider .portfolio-slide .portfolio-slide-content a.portfolio-slide-link {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

/* Expertize */
section.section-expertize {
    padding-top: 25px;
    padding-bottom: 90px;
    overflow: hidden;
}
section.section-expertize .section__head .section__head--title {
    color: #1c2330;
    font-family: 'Poppins', sans-serif;
    font-size: 50px;
    font-weight: 700;
    line-height: 50px;
    text-align: center;
    margin-top: 0;
    margin-bottom: 50px;
}
section.section-expertize .expertize-slider .owl-nav {
    display: none;
}
section.section-expertize .expertize-slider .owl-stage {
    display: flex;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
    width: 100% !important;
}
section.section-expertize .expertize-slider .expertize-slide .expertize-slide-content {
    text-align: center;
    cursor: pointer;
    padding: 0 45px;
}
section.section-expertize .expertize-slider .expertize-slide .expertize-slide-content .expertize-slide-image {
    text-align: center;
    min-height: 90px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 12px;
}
section.section-expertize .expertize-slider .expertize-slide .expertize-slide-content .expertize-slide-image img {
    margin-left: auto;
    margin-right: auto;
    filter: grayscale(1);
    opacity: .4;
    -webkit-transition: all .25s cubic-bezier(.4, 0, .2, 1);
    transition: all .25s cubic-bezier(.4, 0, .2, 1);
}
section.section-expertize .expertize-slider .expertize-slide .expertize-slide-content .expertize-slide-title {
    color: #1c2330;
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    opacity: 0;
    -webkit-transition: opacity .25s cubic-bezier(.4, 0, .2, 1);
    transition: opacity .25s cubic-bezier(.4, 0, .2, 1);
}
section.section-expertize .expertize-slider .expertize-slide:hover .expertize-slide-content .expertize-slide-image img {
    filter: grayscale(0);
    opacity: 1;
}
section.section-expertize .expertize-slider .expertize-slide:hover .expertize-slide-content .expertize-slide-title {
    opacity: 1;
}


/**************************
    Service: App Design
**************************/
section.section-service-banner .service_preview.service_preview-app {
    margin-top: -155px;
}
section.section-service-banner .service_preview.service_preview-app .service_preview-content .service_preview--image {
    width: 358px;
    height: 630px;
    background-position: top center;
    background-size: cover;
    border-radius: 13px;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.16);
    margin-top: 113px;
    margin: 0 20px;
}

/* About */
section.section-service-about.section-service-app-about {
    padding-top: 110px;
    padding-bottom: 100px;
}
section.section-service-about.section-service-app-about .about__content {
    padding: 0 65px;
}
section.section-service-about.section-service-app-about .about__content .about__container-title {
    color: #142136;
}

/* Revial */
section.section-app-revials .app_revial {
    height: 100vh;
    padding: 85px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
section.section-app-revials .app_revial .app_revial--img {
    border-radius: 25px;
    width: 550px;
    padding: 11px;
    padding-top: 30px;
    background-color: #272727;
    position: relative;
    height: 100vh;
    transform: translateY(135px);
}
section.section-app-revials .app_revial .app_revial--img img {
    border-radius: 21px;
    width: 100%;
}
section.section-app-revials .app_revial .app_revial--content {
    width: 475px;
}
section.section-app-revials .app_revial .app_revial--content.app_revial--content-left {
    margin-right: 100px;
}
section.section-app-revials .app_revial .app_revial--content.app_revial--content-right {
    margin-left: 100px;
}
section.section-app-revials .app_revial .app_revial--content .app_revial--content-title {
    color: #142136;
    font-family: 'Poppins', sans-serif;
    font-size: 40px;
    font-weight: 700;
    font-style: normal;
    letter-spacing: normal;
    line-height: 50px;
    margin-top: 0;
    margin-bottom: 5px;
    font-style: normal;
    letter-spacing: normal;
    line-height: normal;
}
section.section-app-revials .app_revial .app_revial--content .app_revial--content-description {
    color: #161719;
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 0.18px;
    font-style: normal;
    letter-spacing: normal;
    line-height: normal;
}

section.section-app-revials {
    overflow: hidden;
}
section.section-service-portfolio,
section.section-services.service-services,
section.section-footer-banner,
footer.footer {
    z-index: 1;
    position: relative;
}
section.section-app-revials .overlay {
    background-color: rgba(0, 0, 0, 0.5);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

/* Portfolio */
section.section-service-portfolio.section-service-app-portfolio .portfolio-slider .portfolio-slide {
    width: 420px;
    padding: 10px 50px;
    text-align: center;
}
section.section-service-portfolio.section-service-app-portfolio .portfolio-slider .portfolio-slide .portfolio-slide-content .portfolio-slide-image {
    border-radius: 25px;
    overflow: hidden;
    height: 655px;
}
section.section-service-portfolio.section-service-app-portfolio .portfolio-slider {
    display: flex;
    align-items: center;
    justify-content: center;
}
section.section-service-portfolio.section-service-app-portfolio .portfolio-slider .portfolio-slide .portfolio-slide-content .portfolio-slide-image {
    box-shadow: 0 0 10px rgb(81, 94, 130, .16);
}

/* Services */
@media screen and (min-width:1600px) {
    section.section-services.service-services.service-app-services .services__container .container,
    section.section-services.service-services.service-app-services .section__head .container {
        width: 1440px;
    }
}
section.section-services.service-services.service-app-services .section__head {
    margin-bottom: 50px;
}
section.section-services.service-services.service-app-services .section__head .section__head--title {
    color: #1c2330;
    font-family: 'Poppins', sans-serif;
    font-size: 80px;
    font-weight: 700;
    line-height: 90px;
    margin-top: 0;
    margin-bottom: 0;
    padding-left: 100px;
    padding-right: 0px;
}
section.section-services.service-services.service-app-services .services__container .service .service-title,
section.section-services.service-services.service-app-services .services__container .service .service-title a {
    color: #1579cb;
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 500;
    font-style: normal;
    line-height: 22px;
    margin-top: 0;
    margin-bottom: 0;
    margin-bottom: 20px;
    text-transform: uppercase;
}
section.section-services.service-services.service-app-services .services__container .service .service-icon {
    width: 60px;
    height: 60px;
    background-size: contain;
    margin-bottom: 15px;
}


/********************************
    SERVICE: Logos & Branding
********************************/

/* Slider */
section.section-service-banner.section-service-banner-branding .service_preview {
    display: flex;
    flex-direction: column;
    margin-top: -225px;
    width: 100%;
    position: relative;
    overflow: hidden;
}
section.section-service-banner.section-service-banner-branding .service_preview .slick-track {
    display: flex;
    width: 100% !important;
    overflow: hidden;
}
section.section-service-banner.section-service-banner-branding .service_preview .service_preview-slider {
    flex-grow: 1;
}
section.section-service-banner.section-service-banner-branding .service_preview .service_preview-slider .service_preview-slide {
    width: 1120px;
    padding: 10px 20px;
    text-align: center;
}
section.section-service-banner.section-service-banner-branding .service_preview .service_preview-slider .service_preview-slide .service_preview-slide-content {
    width: 100%;
    position: relative;
}
section.section-service-banner.section-service-banner-branding .service_preview .service_preview-slider .service_preview-slide .service_preview-slide-content .service_preview-slide-image {
    width: 100%;
    height: 700px;
    background-size: cover;
    background-position: top;
}

/* About */
section.section-service-about.section-service-about-branding {
    padding-top: 65px;
    padding-bottom: 95px;
}
section.section-service-about.section-service-about-branding .about__container-title {
    color: #45b4e7;
    font-family: Poppins;
    font-size: 100px;
    font-weight: 700;
    line-height: 34px;
    text-align: center;
    font-style: normal;
    letter-spacing: normal;
    line-height: normal;
    margin-bottom: 0;
}
section.section-service-about.section-service-about-branding .about__container-description {
    color: #161719;
    font-family: Poppins;
    font-size: 30px;
    font-weight: 400;
    letter-spacing: 0.3px;
    text-align: center;
    font-style: normal;
    letter-spacing: normal;
    line-height: normal;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

/* Services */
section.section-services {
    padding-top: 70px;
    padding-bottom: 0;
    counter-reset: service;
}
section.section-services.service-services-branding .services__container {
    padding-bottom: 0;
    padding-top: 0;
}
section.section-services.service-services-branding .services__container .service {
    padding: 75px 55px;
    text-align: center;
}
section.section-services.service-services-branding .services__container .service .service-icon {
    position: relative;
}
section.section-services.service-services-branding .services__container .service .service-icon::before {
    counter-increment: service;
    content: counter(service);
    opacity: 0.6;
    color: #e9e9f7;
    font-family: Poppins;
    font-size: 100px;
    font-weight: 700;
    font-style: normal;
    letter-spacing: normal;
    line-height: normal;
    text-align: center;
    position: absolute;
    top: -50px;
    left: -15px;
    transform: translateX(-100%);
}
section.section-services.service-services-branding .services__container .service .service-content {
    margin-top: 0;
    margin-bottom: 0;
}

/* Brands */
section.section-branding-brands {
    padding-top: 60px;
    padding-bottom: 135px;
}
section.section-branding-brands .brands-container,
section.section-print-works .print-works-container {
    width: 1830px;
    padding: 0 15px;
    display: flex;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
}
section.section-branding-brands .brands-container .brands-info {
    width: 800px;
    padding: 0 95px;
}
section.section-branding-brands .brands-container .brands-info .brands-info--title {
    color: #1c2330;
    font-family: Poppins;
    font-size: 60px;
    font-weight: 700;
    font-style: normal;
    letter-spacing: normal;
    line-height: 50px;
    margin-top: 0;
    margin-bottom: 20px;
}
section.section-branding-brands .brands-container .brands-info .brands-info--description {
    color: #161719;
    font-family: Poppins;
    font-size: 18px;
    font-weight: 400;
    font-style: normal;
    letter-spacing: 0.18px;
    line-height: normal;
}
section.section-branding-brands .brands-container .brands-info .brands-info--link {
    color: #1886e3;
    font-family: Poppins;
    font-size: 14px;
    font-weight: 400;
    font-style: normal;
    letter-spacing: 0.14px;
    line-height: normal;
    margin-top: 20px;
    display: inline-block;
}
section.section-branding-brands .brands-container .brands {
    display: flex;
    flex-wrap: wrap;
    width: 1000px;
}
section.section-branding-brands .brands-container .brands .brand {
    width: 500px;
    height: 400px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
section.section-branding-brands .brands-container .brands .brand:nth-child(2) {
    height: 460px;
}
section.section-branding-brands .brands-container .brands .brand:nth-child(3) {
    height: 460px;
}
section.section-branding-brands .brands-container .brands .brand:nth-child(1) {
    align-self: flex-end;
}
section.section-branding-brands .brands-container .brands .brand:nth-child(4) {
    align-self: start;
}

/* Links Repeater */
section.section-branding-services {
    padding-bottom: 160px;
}
section.section-branding-services .branding-services-container {
    width: 1830px;
    padding: 0 15px;
    display: flex;
    margin-left: auto;
    margin-right: auto;
}
section.section-branding-services .branding-services-container .branding-services-info {
    width: 745px;
    padding-top: 50px;
    padding-right: 120px;
}
section.section-branding-services .branding-services-container .branding-services-info .branding-services-info--title {
    color: #1c2330;
    font-family: Poppins;
    font-size: 60px;
    font-weight: 700;
    font-style: normal;
    letter-spacing: normal;
    line-height: 60px;
    text-align: left;
    margin-top: 0;
    margin-bottom: 15px;
}
section.section-branding-services .branding-services-container .branding-services-info .branding-services-info--description {
    color: #161719;
    font-family: Poppins;
    font-size: 18px;
    font-weight: 400;
    font-style: normal;
    letter-spacing: 0.18px;
    line-height: normal;
    margin-bottom: 80px;
}
section.section-branding-services .branding-services-container .brand_services {
    display: flex;
}
section.section-branding-services .branding-services-container .brand_services .brand_services--col {
    width: 275px;
}
section.section-branding-services .branding-services-container .brand_services .brand_services--col+.brand_services--col {
    margin-left: 80px;
}
section.section-branding-services .branding-services-container .brand_services .brand_services--col .brand_service {
    color: #161719;
    font-family: Poppins;
    font-size: 18px;
    font-weight: 400;
    font-style: normal;
    letter-spacing: 0.18px;
    line-height: 50px;
    text-align: left;
    display: block;
    margin-top: 0;
    margin-bottom: 0;
}
section.section-branding-services .branding-services-container .branding-services-image {
    width: 1040px;
}
section.section-branding-services .branding-services-container .branding-services-image img {
    width: 100%;
}


/*****************************
    SERVICE: Digital Print
*****************************/
section.section-service-banner.section-service-banner-print .service_preview {
    margin-top: -300px;
    max-width: 1830px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-wrap: wrap;
    position: relative;
    transform: translateY(75px);
    z-index: 1;
}
section.section-service-banner.section-service-banner-print .service_preview .service_preview-image-wrap {
    height: 530px;
    width: 33.33333%;
    padding: 15px;
}
section.section-service-banner.section-service-banner-print .service_preview .service_preview-image {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
}
section.section-service-banner.section-service-banner-print .service_preview .service_preview-image-wrap:first-child {
    width: 100%;
    height: 730px;
}

/* Links */
section.section-print-products {
    padding-bottom: 100px;
    padding-top: 220px;
}
section.section-print-products .section__head {
    margin-bottom: 130px;
}
section.section-print-products .section__head .section__head--title {
    color: #1c2330;
    font-family: Poppins;
    font-size: 60px;
    font-weight: 700;
    font-style: normal;
    letter-spacing: normal;
    line-height: 60px;
    text-align: center;
    margin-top: 0;
    margin-bottom: 25px;
}
section.section-print-products .section__head .section__head--description {
    color: #161719;
    font-family: Poppins;
    font-size: 18px;
    font-weight: 400;
    font-style: normal;
    letter-spacing: 0.18px;
    line-height: normal;
    text-align: center;
}
section.section-print-products .print_products .print_products--col {
    width: 275px;
}
section.section-print-products .print_products .print_products--col+.print_products--col {
    margin-left: 80px;
}
section.section-print-products .print_products .print_products--col .print_product {
    color: #161719;
    font-family: Poppins;
    font-size: 18px;
    font-weight: 400;
    font-style: normal;
    letter-spacing: 0.18px;
    line-height: 50px;
    text-align: left;
    display: block;
    margin-top: 0;
    margin-bottom: 0;
}

/* Brands */
section.section-print-works {
    padding-top: 50px;
    padding-bottom: 150px;
}
section.section-print-works .print-works-container {
    width: 1830px;
    padding: 0 15px;
    display: flex;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
}
section.section-print-works .print-works-container .print-works-info {
    width: 800px;
    padding: 0 95px;
}
section.section-print-works .print-works-container .print-works-info .print-works-info--title {
    color: #1c2330;
    font-family: Poppins;
    font-size: 60px;
    font-weight: 700;
    font-style: normal;
    letter-spacing: normal;
    line-height: 60px;
    margin-top: 0;
    margin-bottom: 20px;
}
section.section-print-works .print-works-container .print-works-info .print-works-info--description {
    color: #161719;
    font-family: Poppins;
    font-size: 18px;
    font-weight: 400;
    font-style: normal;
    letter-spacing: 0.18px;
    line-height: normal;
}
section.section-print-works .print-works-container .print-works-info .print-works-info--link {
    color: #1886e3;
    font-family: Poppins;
    font-size: 14px;
    font-weight: 400;
    font-style: normal;
    letter-spacing: 0.14px;
    line-height: normal;
    margin-top: 20px;
    display: inline-block;
}
section.section-print-works .print-works-container .print-works {
    display: flex;
    flex-wrap: wrap;
    width: 1000px;
}
section.section-print-works .print-works-container .print-works .print-work {
    width: 500px;
    height: 400px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
section.section-print-works .print-works-container .print-works .print-work:nth-child(2) {
    height: 460px;
}
section.section-print-works .print-works-container .print-works .print-work:nth-child(3) {
    height: 460px;
}
section.section-print-works .print-works-container .print-works .print-work:nth-child(1) {
    align-self: flex-end;
}
section.section-print-works .print-works-container .print-works .print-work:nth-child(4) {
    align-self: start;
}

/* Links */
section.section-print-products {
    padding-bottom: 100px;
    padding-top: 220px;
}
section.section-print-products .section__head {
    margin-bottom: 130px;
}
section.section-print-products .section__head .section__head--title {
    color: #1c2330;
    font-family: Poppins;
    font-size: 60px;
    font-weight: 700;
    font-style: normal;
    letter-spacing: normal;
    line-height: 60px;
    text-align: center;
    margin-top: 0;
    margin-bottom: 25px;
}
section.section-print-products .section__head .section__head--description {
    color: #161719;
    font-family: Poppins;
    font-size: 18px;
    font-weight: 400;
    font-style: normal;
    letter-spacing: 0.18px;
    line-height: normal;
    text-align: center;
}
section.section-print-products .print_products .print_products--col {
    width: 275px;
}
section.section-print-products .print_products .print_products--col+.print_products--col {
    margin-left: 80px;
}
section.section-print-products .print_products .print_products--col .print_product {
    color: #161719;
    font-family: Poppins;
    font-size: 18px;
    font-weight: 400;
    font-style: normal;
    letter-spacing: 0.18px;
    line-height: 50px;
    text-align: left;
    display: block;
    margin-top: 0;
    margin-bottom: 0;
}


/*******************************
    SERVICE: Email Marketing
*******************************/
section.section-service-banner.section-service-banner-marketing .service_preview.service_preview-marketing {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    margin-top: -215px;
}
section.section-service-banner.section-service-banner-marketing .service_preview.service_preview-marketing .service_preview-content {
    display: flex;
    justify-content: center;
    width: 100%;
    align-items: flex-end;
}
section.section-service-banner.section-service-banner-marketing .service_preview.service_preview-marketing .service_preview-content .service_preview--image {
    background-position: top center;
    background-size: cover;
    border-radius: 0;
    box-shadow: 0 3px 6px rgba(105, 110, 152, 0.1);
    margin-top: 0;
    margin: 0;
    position: relative;
}
section.section-service-banner.section-service-banner-marketing .service_preview.service_preview-marketing .service_preview-content .service_preview--image.service_preview--imag-small {
    width: 480px;
    height: 700px;
    margin-bottom: 30px;
    z-index: 1;
}
section.section-service-banner.section-service-banner-marketing .service_preview.service_preview-marketing .service_preview-content .service_preview--image.service_preview--imag-big {
    width: 620px;
    height: 900px;
    z-index: 2;
}
section.section-service-banner.section-service-banner-marketing .service_preview.service_preview-marketing .service_preview-content .service_preview--image.service_preview--imag-small.left {
    margin-right: -60px;
}
section.section-service-banner.section-service-banner-marketing .service_preview.service_preview-marketing .service_preview-content .service_preview--image.service_preview--imag-small.right {
    margin-left: -60px;
}

/* Links */
section.section-marketing-products {
    padding-bottom: 130px;
    padding-top: 90px;
}
section.section-marketing-products .section__head {
    margin-bottom: 100px;
}
section.section-marketing-products .section__head .section__head--title {
    color: #1c2330;
    font-family: Poppins;
    font-size: 60px;
    font-weight: 700;
    font-style: normal;
    letter-spacing: normal;
    line-height: 60px;
    text-align: center;
    margin-top: 0;
    margin-bottom: 25px;
}
section.section-marketing-products .section__head .section__head--description {
    color: #161719;
    font-family: Poppins;
    font-size: 18px;
    font-weight: 400;
    font-style: normal;
    letter-spacing: 0.18px;
    line-height: normal;
    text-align: center;
}
section.section-marketing-products .email_designs .email_designs--col {
    width: 275px;
}
section.section-marketing-products .email_designs .email_designs--col+.email_designs--col {
    margin-left: 120px;
}
section.section-marketing-products .email_designs .email_designs--col .email_design {
    color: #161719;
    font-family: Poppins;
    font-size: 18px;
    font-weight: 400;
    font-style: normal;
    letter-spacing: 0.18px;
    line-height: 50px;
    text-align: left;
    display: block;
    margin-top: 0;
    margin-bottom: 0;
}
section.section-marketing-products .email_designs .email_designs--heading {
    width: 380px;
    margin-right: 120px;
    padding-top: 10px;
}
section.section-marketing-products .email_designs .email_designs--heading h4 {
    color: #161719;
    font-family: Poppins;
    font-size: 40px;
    font-weight: 600;
    font-style: normal;
    letter-spacing: 0.4px;
    line-height: 50px;
    text-align: left;
    margin-top: 0;
    margin-bottom: 0;
}

/* Benefits */
section.section-marketing-benefits {
    padding-bottom: 220px;
}
section.section-marketing-benefits .benefits-info .title {
    color: #1c2330;
    font-family: Poppins;
    font-size: 50px;
    font-weight: 700;
    font-style: normal;
    letter-spacing: normal;
    line-height: 50px;
    text-align: left;
    margin-top: 0;
    margin-bottom: 45px;
}
section.section-marketing-benefits .benefits-info ul {
    margin: 0;
    padding: 0 0 0 22px;
}
section.section-marketing-benefits .benefits-info ul li {
    color: #161719;
    font-family: Poppins;
    font-size: 18px;
    font-weight: 400;
    font-style: normal;
    letter-spacing: 0.18px;
    line-height: 30px;
    padding-top: 10px;
    padding-bottom: 10px;
    text-align: left;
}
section.section-marketing-benefits .benefits-images {
    position: relative;
}
section.section-marketing-benefits .benefits-images .mail-image {
    width: 460px;
    height: 660px;
    box-shadow: 0 0 18px rgba(105, 110, 152, 0.15);
    margin-left: auto;
    margin-right: 100px;
    background-size: cover;
    background-position: top center;
}
section.section-marketing-benefits .benefits-images .phone-image {
    max-width: 370px;
    max-height: 510px;
    position: absolute;
    bottom: -95px;
    left: 15px;
}

/* Services */
section.section-marketing-services {
    padding-top: 90px;
    padding-bottom: 120px;
}
section.section-marketing-services .section__head {
    margin-bottom: 75px;
}
section.section-marketing-services .section__head .section__head--title {
    color: #1c2330;
    font-family: Poppins;
    font-size: 60px;
    font-weight: 700;
    font-style: normal;
    letter-spacing: normal;
    line-height: 50px;
    text-align: center;
    margin-top: 0;
    margin-bottom: 10px;
}
section.section-marketing-services .section__head .section__head--description {
    color: #1c2330;
    font-family: Poppins;
    font-size: 34px;
    font-weight: 500;
    font-style: normal;
    letter-spacing: normal;
    line-height: 50px;
    text-align: center;
}
section.section-marketing-services .email-services {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
section.section-marketing-services .email-services .email-service {
    width: 460px;
    height: 660px;
    box-shadow: 0 0 18px rgba(105, 110, 152, 0.15);
    margin: 0 30px;
    background-position: top center;
    background-size: cover;
}











/****************************************
                MOBILE
****************************************/



/* Mobile Menu sidebar */
.sidebar-menu {
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.sidebar-menu {
    background-color: #0A173A;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    z-index: 9999;
    right: -100%;
    overflow: auto;
}
.sidebar-menu.open {
    right: 0px;
}
.sidebar-menu .menu-container {
    padding: 35px 15px;
}

.sidebar-menu .menu-toggler {
    padding: 0;
    margin-left: auto;
    margin-right: 0;
    display: table;
    margin-bottom: 35px;
}
.sidebar-menu .menu-toggler .toggle-mnu {
    display: block;
    width: 27px;
    height: 21px;
    cursor: pointer;
}
.sidebar-menu .menu-toggler .toggle-mnu span:after,
.sidebar-menu .menu-toggler .toggle-mnu span:before {
    position: absolute;
    top: 9px;
    left: 0;
    content: ''
}
.sidebar-menu .menu-toggler .toggle-mnu span:after {
    top: 18px
}
.sidebar-menu .menu-toggler .toggle-mnu span {
    position: relative;
    display: block
}
.sidebar-menu .menu-toggler .toggle-mnu span,
.sidebar-menu .menu-toggler .toggle-mnu span:after,
.sidebar-menu .menu-toggler .toggle-mnu span:before {
    width: 100%;
    height: 3px;
    transition: all .3s;
    border-radius: 2px;
    backface-visibility: hidden;
    border-radius: 3px;
}
.sidebar-menu .menu-toggler .toggle-mnu span,
.sidebar-menu .menu-toggler .toggle-mnu span:after,
.sidebar-menu .menu-toggler .toggle-mnu span:before {
    background-color: #1886e3
}
.sidebar-menu .menu-toggler .toggle-mnu span {
    background-color: transparent
}
.sidebar-menu .menu-toggler .toggle-mnu span:before {
    transform: rotate(45deg) translate(0, 0)
}
.sidebar-menu .menu-toggler .toggle-mnu span:after {
    transform: rotate(-45deg) translate(6px, -7px)
}
.sidebar-menu .sidebar-menu--contact {
    text-align: right;
    position: relative;
    margin-bottom: 20px;
}
.sidebar-menu .sidebar-menu--contact a {
    color: #ffffff;
    font-family: Poppins;
    font-size: 24px;
    font-weight: 700;
    font-style: normal;
    letter-spacing: 0.96px;
    line-height: 24px;
    text-align: right;
    text-transform: uppercase;
}
.sidebar-menu .sidebar-menu--contact span {
    color: #acd0ed;
    font-family: Poppins;
    font-size: 10px;
    font-weight: 400;
    font-style: normal;
    letter-spacing: 1px;
    line-height: normal;
    text-align: right;
    text-transform: uppercase;
    display: block;
}
.sidebar-menu .sidebar-menu--menu .menu {
    margin: 0;
    padding: 0;
    text-align: right;
}
.sidebar-menu .sidebar-menu--menu .menu .menu-item {
    padding: 0;
    list-style: none;
}
.sidebar-menu .sidebar-menu--menu .menu>.menu-item>a {
    color: #ffffff;
    font-family: Poppins;
    font-size: 40px;
    font-weight: 700;
    font-style: normal;
    letter-spacing: normal;
    line-height: 80px;
    text-align: right;
    text-transform: capitalize;
}
.sidebar-menu .sidebar-menu--menu .menu>.menu-item .sub-menu {
    padding: 0 15px;
    border-right: 1px solid #1579cb;
    overflow: hidden;
    -webkit-transition: max-height .25s cubic-bezier(.4, 0, .2, 1);
    transition: max-height .25s cubic-bezier(.4, 0, .2, 1);
    display: none;
}
.sidebar-menu .sidebar-menu--menu .menu>.menu-item .sub-menu>.menu-item>a {
    color: #ffffff;
    font-family: Poppins;
    font-size: 16px;
    font-weight: 400;
    font-style: normal;
    letter-spacing: 0.96px;
    line-height: 40px;
    text-align: right;
    text-transform: uppercase;
}
.sidebar-menu .sidebar-menu--menu .menu .menu-item.custom-menu-item {
    display: none !important;
}
.sidebar-menu .sidebar-menu--socials {
    margin-top: 20px;
}
.sidebar-menu .sidebar-menu--socials .social__medias .social__medias--list {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: flex-end;
}
.sidebar-menu .sidebar-menu--socials .social__medias .social__medias--list .social__medias--list-item {
    list-style: none;
}
.sidebar-menu .sidebar-menu--socials .social__medias .social__medias--list .social__medias--list-item+.social__medias--list-item {
    margin-left: 17px;
}
.sidebar-menu .sidebar-menu--socials .social__medias .social__medias--list .social__medias--list-item a {
    width: 60px;
    height: 60px;
    background-color: #ffffff;
    display: block;
    -webkit-transition: all .25s cubic-bezier(.4, 0, .2, 1);
    transition: all .25s cubic-bezier(.4, 0, .2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
}
.sidebar-menu .sidebar-menu--socials .social__medias .social__medias--list .social__medias--list-item .social__medias--list-item-ico {
    display: block;
    width: 20px;
    height: 20px;
    background-position: center;
    background-repeat: no-repeat;
    filter: invert(46%) sepia(60%) saturate(3787%) hue-rotate(188deg) brightness(93%) contrast(91%);
    transform: scale(1.1);
}
.sidebar-menu .sidebar-menu--socials .social__medias .social__medias--list .social__medias--list-item a:hover {
    opacity: 1;
    border-radius: 0;
    background-color: #1886e3;
}
.sidebar-menu .sidebar-menu--socials .social__medias .social__medias--list .social__medias--list-item a:hover .social__medias--list-item-ico {
    filter: invert(100%) sepia(2%) saturate(8%) hue-rotate(325deg) brightness(102%) contrast(104%);
}
.sidebar-menu .sidebar-menu--copyright {
    color: #9497a4;
    font-family: Poppins;
    font-size: 10px;
    font-weight: 400;
    font-style: normal;
    letter-spacing: normal;
    line-height: 16px;
    text-align: right;
    margin-top: 20px;
}



/* Header */
@media (max-width: 1740px) {
    header.header .header-left .header__logo .header__logo--info {
        font-size: 9px;
        padding: 0 10px;
    }
    header.header .header-left .header__logo .header__logo--logo .backlogo {
        -webkit-mask-size: contain !important;
        mask-size: contain !important;
        width: 175px;
        height: 66px;
    }
    header.header .header-right .header__menu ul.menu>.menu-item {
        padding: 11px 18px;
    }
    header.header .header-right .header__menu ul.menu>.menu-item>a {
        font-size: 14px;
        letter-spacing: 2.8px;
        line-height: 20px;
    }
    header.header .header-right .header__menu ul.menu ul.sub-menu li.menu-item a {
        font-size: 14px;
        letter-spacing: 0.75px;
        line-height: 28px;
        padding: 0 18px 0 0;
    }
    body header.header .header-right .header__menu ul.menu li.menu-item.custom-menu-item {
        padding-top: 20px;
        margin-top: 13px;
        width: 225px;
    }
    body header.header .header-right .header__menu ul.menu li.menu-item.custom-menu-item span.custom-menu-item-title {
        font-size: 19px;
        line-height: 24px;
        margin-bottom: 13px;
    }
    body header.header .header-right .header__menu ul.menu li.menu-item.custom-menu-item>a {
        font-size: 19px;
    }
    header.header .header-right .header__menu {
        margin-right: 25px;
    }
    header.header .header-right .header__contact {
        padding-left: 40px;
    }
    header.header .header-right .header__contact a {
        font-size: 19px;
        line-height: 19px;
    }
    header.header .header-right .header__contact span {
        font-size: 9.5px;
    }
}
@media (max-width: 1600px) {
    header.header .header-left .header__logo .header__logo--logo .backlogo {
        width: 170px;
        height: 64px;
    }
    header.header .header-left .header__logo .header__logo--info {
        font-size: 9px;
        padding: 0 7px;
    }
    header.header .header-right .header__contact {
        padding-left: 37px;
    }
    header.header .header-right .header__contact:before {
        height: 17px;
    }
    header.header .header-right .header__contact a {
        font-size: 18px;
        line-height: 17px;
    }
    header.header .header-right .header__contact span {
        font-size: 9px;
    }
    header.header .header-right .header__menu ul.menu>.menu-item {
        padding: 10px 17px;
    }
    header.header .header-right .header__menu ul.menu>.menu-item>a {
        font-size: 13px;
        letter-spacing: 2.5px;
        line-height: 18px;
    }
    header.header .header-right .header__menu ul.menu ul.sub-menu {
        padding: 25px 25px 20px 20px;
    }
    header.header .header-right .header__menu ul.menu ul.sub-menu li.menu-item a {
        font-size: 13px;
        letter-spacing: 0.75px;
        line-height: 26px;
        padding: 0 15px 0 0;
    }
    body header.header .header-right .header__menu ul.menu li.menu-item.custom-menu-item {
        padding-top: 20px;
        margin-top: 10px;
        width: 210px;
    }
    body header.header .header-right .header__menu ul.menu li.menu-item.custom-menu-item span.custom-menu-item-title {
        font-size: 18px;
        line-height: 22px;
        margin-bottom: 10px;
    }
    body header.header .header-right .header__menu ul.menu li.menu-item.custom-menu-item>a {
        font-size: 18px;
    }
}
@media (max-width: 1440px) {
    header.header .header-left .header__logo .header__logo--logo .backlogo {
        width: 165px;
        height: 62px;
    }
    header.header .header-left .header__logo .header__logo--info {
        font-size: 8px;
        padding: 0 5px;
    }
    header.header .header-right .header__menu ul.menu>.menu-item {
        padding: 9px 15px;
    }
    header.header .header-right .header__menu ul.menu>.menu-item>a {
        font-size: 13px;
        letter-spacing: 2px;
        line-height: 16px;
    }
    header.header .header-right .header__menu ul.menu ul.sub-menu {
        padding: 20px 20px 15px 15px;
    }
    header.header .header-right .header__menu ul.menu ul.sub-menu li.menu-item a {
        font-size: 13px;
        letter-spacing: 0.5px;
        line-height: 24px;
        padding: 0 12px 0 0;
    }
    body header.header .header-right .header__menu ul.menu li.menu-item.custom-menu-item {
        padding-top: 20px;
        margin-top: 10px;
        width: 200px;
    }
    body header.header .header-right .header__menu ul.menu li.menu-item.custom-menu-item span.custom-menu-item-title {
        font-size: 17px;
        line-height: 20px;
        margin-bottom: 5px;
    }
    body header.header .header-right .header__menu ul.menu li.menu-item.custom-menu-item>a {
        font-size: 17px;
    }
    header.header .header-right .header__contact {
        padding-left: 35px;
        margin-top: 11px;
    }
    header.header .header-right .header__contact a {
        font-size: 17px;
        line-height: 17px;
    }
    header.header .header-right .header__contact span {
        font-size: 8.5px;
    }
}
@media (max-width: 1280px) {
    header.header .header-left .header__logo .header__logo--info {
        font-size: 8px;
        padding: 0;
    }
    header.header .header-right .header__menu {
        margin-right: 20px;
    }
    header.header .header-right .header__menu ul.menu>.menu-item {
        padding: 8px 13px;
    }
    header.header .header-right .header__menu ul.menu>.menu-item>a {
        font-size: 12px;
        letter-spacing: 2px;
        line-height: 16px;
    }
    header.header .header-right .header__menu ul.menu ul.sub-menu li.menu-item a {
        font-size: 12px;
        letter-spacing: 0.5px;
        line-height: 22px;
        padding: 0 10px 0 0;
    }
    body header.header .header-right .header__menu ul.menu li.menu-item.custom-menu-item span.custom-menu-item-title {
        font-size: 16px;
        line-height: 20px;
        margin-bottom: 5px;
    }
    body header.header .header-right .header__menu ul.menu li.menu-item.custom-menu-item>a {
        font-size: 16px;
    }
    body header.header .header-right .header__menu ul.menu li.menu-item.custom-menu-item {
        padding-top: 17px;
        margin-top: 10px;
        width: 190px;
    }
    header.header .header-right .header__contact a {
        font-size: 16px;
        line-height: 16px;
    }
    header.header .header-right .header__contact span {
        font-size: 8px;
    }
    header.header .header-right .header__contact:before {
        height: 16px;
    }
    header.header .header-right .header__contact {
        padding-left: 30px;
        margin-top: 10px;
    }
}
@media (max-width: 992px) {
    header.header .header-left .header__logo .header__logo--info,
    header.header .header-right .header__contact,
    header.header .header-right .header__menu {
        display: none;
    }
    header.header .header-right .mobile {
        display: flex;
    }
}


/* Footer */
@media (max-width: 1740px) {
    footer.footer .footer__widgets {
        padding-top: 45px;
        padding-bottom: 45px;
    }
    footer.footer .footer__widgets .footer__widgets--row {
        padding: 13px 0;
    }
    footer.footer .footer__widgets .social__medias {
        margin-bottom: 22px;
    }
    footer.footer .footer__widgets .social__medias .social__medias--title {
        font-size: 13px;
        letter-spacing: 2px;
        margin-bottom: 10px;
    }
    footer.footer .footer__widgets .social__medias .social__medias--list .social__medias--list-item a {
        width: 41px;
        height: 41px;
    }
    footer.footer .footer__widgets .social__medias .social__medias--list .social__medias--list-item .social__medias--list-item-ico {
        transform: scale(.97);
    }
    footer.footer .footer__widgets .social__medias .social__medias--list .social__medias--list-item+.social__medias--list-item {
        margin-left: 10px;
    }
    footer.footer .footer__widgets .copyright p {
        font-size: 9.5px;
        line-height: 15px;
    }
    footer.footer .footer__widgets .footer__widgets--row .footer__widgets--col.footer__widgets--col--widget {
        margin: 0 30px;
    }
    footer.footer .footer__widgets .widget .menu .menu-item a {
        font-size: 13px;
        line-height: 18px;
    }
    footer.footer .footer__widgets .widget .menu .menu-item+.menu-item {
        margin-top: 28px;
    }

    footer.footer .footer__widgets .contact__info {
        padding-left: 85px;
    }
    footer.footer .footer__widgets .contact__info .contact__info--phone a {
        font-size: 13px;
        line-height: 18px;
    }
    footer.footer .footer__widgets .contact__info .contact__info--phone a span:last-child {
        font-size: 17px;
        line-height: 28px;
    }
    footer.footer .footer__widgets .contact__form {
        width: 380px;
    }
    footer.footer .footer__widgets .contact__form .contact__form--head {
        margin-bottom: 33px;
    }
    footer.footer .footer__widgets .contact__form .contact__form--head .contact__form--head-title {
        font-size: 25px;
        line-height: 25px;
        margin-bottom: 4px;
    }
    footer.footer .footer__widgets .contact__form .contact__form--head .contact__form--head-description {
        font-size: 13px;
        letter-spacing: 0.14px;
    }
    footer.footer .footer__widgets .contact__form .contact__form--form .form-group.form-group-inline .wpcf7-form-control-wrap {
        width: 100%;
    }
    footer.footer .footer__widgets .contact__form .contact__form--form .form-group.form-group-inline .form-input {
        line-height: 36px;
        padding: 0 9px;
        font-size: 12px;
        letter-spacing: 0.26px;
        width: 100%;
    }
    footer.footer .footer__widgets .contact__form .contact__form--form .form-group.form-group-inline .form-submit {
        height: 38px;
        font-size: 12px;
        letter-spacing: 0.26px;
        line-height: 38px;
        padding: 0 27px;
    }
}
@media (max-width: 1600px) {
    footer.footer .footer__widgets {
        padding-top: 42px;
        padding-bottom: 42px;
    }
    footer.footer .footer__widgets .footer__widgets--row {
        padding: 11px 0;
    }
    footer.footer .footer__widgets .footer__widgets--row .footer__widgets--col.footer__widgets--col--socials {
        margin-right: 65px;
    }
    footer.footer .footer__widgets .social__medias .social__medias--title {
        font-size: 12.5px;
        letter-spacing: 2px;
        margin-bottom: 9px;
    }
    footer.footer .footer__widgets .social__medias {
        margin-bottom: 20px;
    }
    footer.footer .footer__widgets .social__medias .social__medias--list .social__medias--list-item a {
        width: 40px;
        height: 40px;
    }
    footer.footer .footer__widgets .social__medias .social__medias--list .social__medias--list-item .social__medias--list-item-ico {
        transform: scale(.95);
    }
    footer.footer .footer__widgets .social__medias .social__medias--list .social__medias--list-item+.social__medias--list-item {
        margin-left: 9px;
    }
    footer.footer .footer__widgets .copyright p {
        font-size: 9px;
        line-height: 14px;
    }
    footer.footer .footer__widgets .footer__widgets--row .footer__widgets--col.footer__widgets--col--widget {
        margin: 0 25px;
    }
    footer.footer .footer__widgets .widget {
        min-width: 130px;
    }
    footer.footer .footer__widgets .widget .menu .menu-item a {
        font-size: 12px;
        line-height: 16px;
    }
    footer.footer .footer__widgets .widget .menu .menu-item+.menu-item {
        margin-top: 25px;
    }
    footer.footer .footer__widgets .contact__info {
        padding-left: 70px;
    }
    footer.footer .footer__widgets .contact__info .contact__info--phone a {
        font-size: 12px;
        line-height: 16px;
    }
    footer.footer .footer__widgets .contact__info .contact__info--phone a span:last-child {
        font-size: 16px;
        line-height: 26px;
    }
    footer.footer .footer__widgets .contact__form {
        width: 325px;
    }
    footer.footer .footer__widgets .contact__form .contact__form--head {
        margin-bottom: 30px;
    }
    footer.footer .footer__widgets .contact__form .contact__form--head .contact__form--head-description {
        font-size: 12px;
        letter-spacing: 0.14px;
    }
    footer.footer .footer__widgets .contact__form .contact__form--form .form-group.form-group-inline .form-input {
        line-height: 35px;
        padding: 0 9px;
        font-size: 12px;
        letter-spacing: 0.26px;
        width: 100%;
    }
    footer.footer .footer__widgets .contact__form .contact__form--form .form-group.form-group-inline .form-submit {
        height: 37px;
        font-size: 12px;
        letter-spacing: 0.26px;
        line-height: 37px;
        padding: 0 25px;
    }
}
@media (max-width: 1440px) {
    footer.footer .footer__widgets {
        padding-top: 38px;
        padding-bottom: 38px;
    }
    footer.footer .footer__widgets .footer__widgets--row .footer__widgets--col.footer__widgets--col--socials {
        margin-right: 50px;
    }
    footer.footer .footer__widgets .social__medias .social__medias--title {
        font-size: 11.5px;
        letter-spacing: 1.75px;
        margin-bottom: 7px;
    }
    footer.footer .footer__widgets .social__medias {
        margin-bottom: 18px;
    }
    footer.footer .footer__widgets .social__medias .social__medias--list .social__medias--list-item a {
        width: 37px;
        height: 37px;
    }
    footer.footer .footer__widgets .social__medias .social__medias--list .social__medias--list-item .social__medias--list-item-ico {
        transform: scale(.9);
    }
    footer.footer .footer__widgets .social__medias .social__medias--list .social__medias--list-item+.social__medias--list-item {
        margin-left: 7px;
    }
    footer.footer .footer__widgets .copyright p {
        font-size: 8px;
        line-height: 13px;
    }
    footer.footer .footer__widgets .footer__widgets--row .footer__widgets--col.footer__widgets--col--widget {
        margin: 0 20px;
    }
    footer.footer .footer__widgets .widget {
        min-width: 120px;
    }
    footer.footer .footer__widgets .widget .menu .menu-item a {
        font-size: 11px;
        line-height: 14px;
    }
    footer.footer .footer__widgets .widget .menu .menu-item+.menu-item {
        margin-top: 22px;
    }
    footer.footer .footer__widgets .contact__info {
        padding-left: 40px;
    }
    footer.footer .footer__widgets .contact__info .contact__info--phone a {
        font-size: 11px;
        line-height: 14px;
    }
    footer.footer .footer__widgets .contact__info .contact__info--phone a span:last-child {
        font-size: 15px;
        line-height: 24px;
    }
    footer.footer .footer__widgets .contact__form {
        width: 300px;
    }
    footer.footer .footer__widgets .contact__form .contact__form--head {
        margin-bottom: 25px;
    }
    footer.footer .footer__widgets .contact__form .contact__form--head .contact__form--head-title {
        font-size: 24px;
        line-height: 24px;
        margin-bottom: 4px;
    }
    footer.footer .footer__widgets .contact__form .contact__form--head .contact__form--head-description {
        font-size: 11px;
        letter-spacing: 0.14px;
    }
    footer.footer .footer__widgets .contact__form .contact__form--form .form-group.form-group-inline .form-input {
        line-height: 33px;
        padding: 0 9px;
        font-size: 11px;
        letter-spacing: 0.26px;
        width: 100%;
    }
    footer.footer .footer__widgets .contact__form .contact__form--form .form-group.form-group-inline .form-submit {
        height: 35px;
        font-size: 11px;
        letter-spacing: 0.26px;
        line-height: 37px;
        padding: 0 22px;
    }
}
@media (max-width: 1280px) {
    footer.footer .footer__widgets {
        padding-top: 35px;
        padding-bottom: 35px;
    }
    footer.footer .footer__widgets .footer__widgets--row {
        padding: 10px 0;
    }
    footer.footer .footer__widgets .footer__widgets--row .footer__widgets--col.footer__widgets--col--socials {
        margin-right: 35px;
    }
    footer.footer .footer__widgets .social__medias .social__medias--title {
        font-size: 10.5px;
        letter-spacing: 1.75px;
        margin-bottom: 6px;
    }
    footer.footer .footer__widgets .social__medias .social__medias--list .social__medias--list-item a {
        width: 35px;
        height: 35px;
    }
    footer.footer .footer__widgets .social__medias .social__medias--list .social__medias--list-item .social__medias--list-item-ico {
        transform: scale(.85);
    }
    footer.footer .footer__widgets .social__medias .social__medias--list .social__medias--list-item+.social__medias--list-item {
        margin-left: 5px;
    }
    footer.footer .footer__widgets .copyright p {
        font-size: 8px;
        line-height: 12px;
    }
    footer.footer .footer__widgets .footer__widgets--row .footer__widgets--col.footer__widgets--col--widget {
        margin: 0 15px;
    }
    footer.footer .footer__widgets .widget .menu .menu-item+.menu-item {
        margin-top: 20px;
    }
    footer.footer .footer__widgets .contact__form {
        width: 285px;
    }
    footer.footer .footer__widgets .contact__form .contact__form--head .contact__form--head-title {
        font-size: 22px;
        line-height: 22px;
        margin-bottom: 4px;
    }
    footer.footer .footer__widgets .contact__form .contact__form--head .contact__form--head-description {
        font-size: 10px;
        letter-spacing: 0.14px;
    }
    footer.footer .footer__widgets .contact__form .contact__form--form .form-group.form-group-inline .form-input {
        line-height: 32px;
        padding: 0 9px;
        font-size: 11px;
        letter-spacing: 0.26px;
        width: 100%;
    }
    footer.footer .footer__widgets .contact__form .contact__form--form .form-group.form-group-inline .form-submit {
        height: 34px;
        font-size: 11px;
        letter-spacing: 0.26px;
        line-height: 34px;
        padding: 0 20px;
    }
    footer.footer .footer__widgets .contact__info {
        padding-left: 30px;
    }
    footer.footer .footer__widgets .contact__info .contact__info--phone a {
        font-size: 10px;
        line-height: 14px;
    }
    footer.footer .footer__widgets .contact__info .contact__info--phone a span:last-child {
        font-size: 14px;
        line-height: 22px;
    }
}
@media (max-width: 1200px) {
    footer.footer .footer__widgets .contact__form {
        width: 250px;
    }
    footer.footer .footer__widgets .widget {
        min-width: 100px;
    }
    footer.footer .footer__widgets .widget .menu .menu-item+.menu-item {
        margin-top: 15px;
    }
}
@media (max-width: 992px) {
    footer.footer .footer__widgets {
        padding-top: 35px;
        padding-bottom: 45px;
    }
    footer.footer .footer__widgets .col-lg-6+.col-lg-6 {
        margin-top: 30px;
    }
    footer.footer .footer__widgets .col-lg-6+.col-lg-6 .footer__widgets--row:before {
        display: none;
    }
    footer.footer .footer__widgets .footer__widgets--row .footer__widgets--col.footer__widgets--col--widget,
    footer.footer .footer__widgets .footer__widgets--row.footer__widgets--row-right .contact__info,
    footer.footer .footer__widgets .footer__widgets--col.footer__widgets--col--tel {
        display: none;
    }
    footer.footer .footer__widgets .footer__widgets--row,
    footer.footer .footer__widgets .footer__widgets--row.footer__widgets--row-right {
        padding: 0;
        display: block;
        justify-content: center;
    }
    footer.footer .footer__widgets .footer__widgets--row .footer__widgets--col {
        max-width: 330px;
        width: 100%;
        margin-left: auto;
        margin-right: auto !important;
    }
    footer.footer .footer__widgets .contact__form .contact__form--head {
        margin-bottom: 15px;
        text-align: center;
    }
    footer.footer .footer__widgets .contact__form .contact__form--head .contact__form--head-title {
        font-size: 20px;
        line-height: 20px;
        margin-bottom: 4px;
    }
    footer.footer .footer__widgets .social__medias .social__medias--title {
        font-size: 14px;
        letter-spacing: 2.1px;
        margin-bottom: 8px;
        text-align: center;
    }
    footer.footer .footer__widgets .footer__widgets--row .footer__widgets--col.footer__widgets--col--socials {
        text-align: center;
    }
    footer.footer .footer__widgets .social__medias .social__medias--list {
        display: flex;
        justify-content: center;
    }
    footer.footer .footer__widgets .social__medias .social__medias--list .social__medias--list-item a {
        width: 43px;
        height: 43px;
    }
    footer.footer .footer__widgets .social__medias .social__medias--list .social__medias--list-item .social__medias--list-item-ico {
        transform: scale(1);
    }
    footer.footer .footer__widgets .social__medias .social__medias--list .social__medias--list-item+.social__medias--list-item {
        margin-left: 12px;
    }
    footer.footer .footer__widgets .social__medias {
        margin-bottom: 12px;
    }
    footer.footer .footer__widgets .copyright p {
        font-size: 10px;
        line-height: 14px;
    }
    footer.footer .footer__widgets .copyright p br {
        display: none;
    }
    footer.footer .footer__widgets .contact__form {
        width: 100%;
    }
    footer.footer .footer__widgets .contact__form .contact__form--form .form-group.form-group-inline .form-input {
        line-height: 33px;
        padding: 0 10px;
        font-size: 13px;
        letter-spacing: 0.26px;
        width: 100%;
    }
    footer.footer .footer__widgets .contact__form .contact__form--form .form-group.form-group-inline .form-submit {
        height: 35px;
        font-size: 13px;
        letter-spacing: 0.26px;
        line-height: 35px;
        padding: 0 30px;
    }
    footer.footer .footer__widgets .contact__form {
        width: 100%;
        padding: 0 25px;
    }
}

/* Reviews */
@media (max-width: 1740px) {
    section.section-reviews {
        padding-top: 85px;
        padding-bottom: 70px;
    }
    section.section-reviews .section__reviews-head .section__reviews-head-title {
        font-size: 28px;
        line-height: 30px;
        margin-bottom: 5px;
    }
    section.section-reviews .section__reviews-head .section__reviews-head-description {
        font-size: 17px;
        letter-spacing: 0.18px;
        line-height: 19px;
    }
    section.section-reviews .reviews__container .reviews__carousel {
        padding-top: 40px;
        padding-bottom: 5px;
    }
    section.section-reviews .reviews__container .reviews__carousel .reviews__carousel--slide-wrap {
        padding: 15px 34px;
    }
    section.section-reviews .reviews__container .reviews__carousel .reviews__carousel--slide {
        padding: 40px 45px 45px 45px;
    }
    section.section-reviews .reviews__container .reviews__carousel .reviews__carousel--slide .reviews__carousel--slide-title {
        font-size: 17px;
        line-height: 26px;
        margin-bottom: 3px;
        margin-left: 7px;
    }
    section.section-reviews .reviews__container .reviews__carousel .reviews__carousel--slide .reviews__carousel--slide-link:before {
        width: 38px;
        height: 38px;
        background-size: 24px;
        margin-right: 10px;
    }
    section.section-reviews .reviews__container .reviews__carousel ul.slick-dots {
        margin-top: 50px;
    }
    section.section-reviews .reviews__container .reviews__carousel ul.slick-dots li button {
        width: 14px;
        height: 14px;
        margin: 2px;
    }
}
@media (max-width: 1600px) {
    section.section-reviews {
        padding-top: 80px;
        padding-bottom: 65px;
    }
    section.section-reviews .section__reviews-head .section__reviews-head-title {
        font-size: 26px;
        line-height: 28px;
        margin-bottom: 4px;
    }
    section.section-reviews .section__reviews-head .section__reviews-head-description {
        font-size: 16px;
        line-height: 18px;
    }
    section.section-reviews .reviews__container .reviews__carousel {
        padding-top: 35px;
        padding-bottom: 5px;
    }
    section.section-reviews .reviews__container .reviews__carousel .reviews__carousel--slide-wrap {
        padding: 15px 30px;
    }
    section.section-reviews .reviews__container .reviews__carousel .reviews__carousel--slide {
        padding: 40px 40px 39px 40px;
    }
    section.section-reviews .reviews__container .reviews__carousel .reviews__carousel--slide .reviews__carousel--slide-content {
        font-size: 13px;
        line-height: 19px;
        margin-bottom: 5px;
        margin-left: 6px;
        margin-right: 0px;
    }
    section.section-reviews .reviews__container .reviews__carousel .reviews__carousel--slide .reviews__carousel--slide-link {
        font-size: 13px;
        letter-spacing: 0.28px;
        line-height: 18px;
    }
    section.section-reviews .reviews__container .reviews__carousel .reviews__carousel--slide .reviews__carousel--slide-link:before {
        width: 36px;
        height: 36px;
        background-size: 22px;
        margin-right: 8px;
    }
    section.section-reviews .reviews__container .reviews__carousel:before {
        width: 450px;
        height: 400px;
        top: -70px;
        left: 60px;
    }
    section.section-reviews .reviews__container .reviews__carousel:after {
        width: 450px;
        height: 400px;
        right: 65px;
        bottom: 5px;
    }
    section.section-reviews .reviews__container .reviews__carousel ul.slick-dots {
        margin-top: 45px;
    }
    section.section-reviews .reviews__container .reviews__carousel ul.slick-dots li button {
        width: 13px;
        height: 13px;
        margin: 2px;
    }
}
@media (max-width: 1440px) {
    section.section-reviews {
        padding-top: 75px;
        padding-bottom: 60px;
    }
    section.section-reviews .section__reviews-head .section__reviews-head-title {
        font-size: 24px;
        line-height: 26px;
        margin-bottom: 4px;
    }
    section.section-reviews .section__reviews-head .section__reviews-head-description {
        font-size: 15px;
        line-height: 17px;
    }
    section.section-reviews .reviews__container .reviews__carousel {
        padding-top: 30px;
        padding-bottom: 5px;
    }
    section.section-reviews .reviews__container .reviews__carousel .reviews__carousel--slide .reviews__carousel--slide-title {
        font-size: 16px;
        line-height: 24px;
        margin-bottom: 3px;
        margin-left: 6px;
    }
    section.section-reviews .reviews__container .reviews__carousel .reviews__carousel--slide .reviews__carousel--slide-rating {
        margin-bottom: 7px;
        margin-left: 6px;
    }
    section.section-reviews .reviews__container .reviews__carousel .reviews__carousel--slide-wrap {
        padding: 10px 20px;
    }
    section.section-reviews .reviews__container .reviews__carousel .reviews__carousel--slide {
        padding: 35px 35px 35px 35px;
    }
    section.section-reviews .reviews__container .reviews__carousel ul.slick-dots {
        margin-top: 40px;
    }
    section.section-reviews .reviews__container .reviews__carousel ul.slick-dots li button {
        width: 12px;
        height: 12px;
        margin: 2px;
    }
}
@media (max-width: 1280px) {
    section.section-reviews {
        padding-top: 65px;
        padding-bottom: 50px;
    }
    section.section-reviews .section__reviews-head .section__reviews-head-title {
        font-size: 22px;
        line-height: 24px;
        margin-bottom: 4px;
    }
    section.section-reviews .section__reviews-head .section__reviews-head-description {
        font-size: 14px;
        line-height: 16px;
    }
    section.section-reviews .reviews__container .reviews__carousel .reviews__carousel--slide-wrap {
        padding: 10px 15px;
    }
    section.section-reviews .reviews__container .reviews__carousel .reviews__carousel--slide {
        padding: 30px 30px 30px 30px;
    }
    section.section-reviews .reviews__container .reviews__carousel .reviews__carousel--slide .reviews__carousel--slide-content {
        font-size: 12px;
        line-height: 18px;
        margin-bottom: 5px;
        margin-left: 6px;
        margin-right: 0px;
    }
    section.section-reviews .reviews__container .reviews__carousel .reviews__carousel--slide .reviews__carousel--slide-link:before {
        width: 32px;
        height: 32px;
        background-size: 18px;
        margin-right: 8px;
    }
    section.section-reviews .reviews__container .reviews__carousel:before {
        width: 350px;
        height: 320px;
        top: -40px;
        left: 80px;
    }
    section.section-reviews .reviews__container .reviews__carousel:after {
        width: 350px;
        height: 320px;
        right: 35px;
        bottom: 25px;
    }
    section.section-reviews .reviews__container .reviews__carousel ul.slick-dots {
        margin-top: 30px;
    }
    section.section-reviews .reviews__container .reviews__carousel ul.slick-dots li button {
        width: 11px;
        height: 11px;
        margin: 2px;
    }
}
@media (max-width: 992px) {
    section.section-reviews {
        padding-top: 55px;
        padding-bottom: 40px;
        margin-bottom: 0;
    }
    section.section-reviews .section__reviews-head .section__reviews-head-title {
        font-size: 16px;
        letter-spacing: 0.16px;
        line-height: 18px;
    }
    section.section-reviews .section__reviews-head .section__reviews-head-description {
        font-size: 17px;
        line-height: 16px;
        font-size: 14px;
        letter-spacing: 0.14px;
    }
    section.section-reviews .reviews__container .reviews__carousel:after {
        display: none;
    }
    section.section-reviews .reviews__container .reviews__carousel:before {
        width: 100%;
        height: 325px;
        top: -60px;
        left: 0;
        background-position: center;
    }
    section.section-reviews .reviews__container .reviews__carousel {
        padding-top: 10px;
        padding-bottom: 5px;
    }
    section.section-reviews .reviews__container .reviews__carousel ul.slick-dots {
        margin-top: 20px;
    }
}
@media (max-width: 767px) {
    section.section-reviews .reviews__container .reviews__carousel .reviews__carousel--slide {
        max-width: 320px;
    }
    section.section-reviews .reviews__container .reviews__carousel .slick-list {
        z-index: 1;
        overflow: unset;
    }
    section.section-reviews .reviews__container .reviews__carousel .reviews__carousel--slide-wrap {
        padding: 10px 10px;
    }
    section.section-reviews .section__reviews-head {
        margin-bottom: 30px;
    }
}


/* Footer Banner */
@media (max-width: 1740px) {
    section.section-footer-banner {
        padding-top: 95px;
        padding-bottom: 115px;
    }
    section.section-footer-banner .banner__container .banner__container-title {
        font-size: 65px;
        line-height: 90px;
    }
    section.section-footer-banner .banner__container .banner__container-description {
        font-size: 18px;
        letter-spacing: 0.38px;
        line-height: 28px;
        margin-bottom: 28px;
    }
}
@media (max-width: 1600px) {
    section.section-footer-banner {
        padding-top: 85px;
        padding-bottom: 100px;
    }
    section.section-footer-banner .banner__container .banner__container-title {
        font-size: 60px;
        line-height: 80px;
    }
    section.section-footer-banner .banner__container .banner__container-description {
        font-size: 17px;
        letter-spacing: 0.35px;
        line-height: 26px;
        margin-bottom: 26px;
    }
}
@media (max-width: 1440px) {
    section.section-footer-banner {
        padding-top: 75px;
        padding-bottom: 90px;
    }
    section.section-footer-banner .banner__container .banner__container-title {
        font-size: 55px;
        line-height: 75px;
    }
    section.section-footer-banner .banner__container .banner__container-description {
        font-size: 15px;
        letter-spacing: 0.30px;
        line-height: 22px;
        margin-bottom: 22px;
    }
}
@media (max-width: 1280px) {
    section.section-footer-banner {
        padding-top: 70px;
        padding-bottom: 80px;
    }
    section.section-footer-banner .banner__container .banner__container-title {
        font-size: 50px;
        line-height: 70px;
    }
    section.section-footer-banner .banner__container .banner__container-description {
        font-size: 14px;
        letter-spacing: 0.30px;
        line-height: 20px;
        margin-bottom: 20px;
    }
}
@media (max-width: 1200px) {
    section.section-footer-banner {
        padding-top: 65px;
        padding-bottom: 75px;
    }
    section.section-footer-banner .banner__container .banner__container-title {
        font-size: 45px;
        line-height: 60px;
    }
    section.section-footer-banner .banner__container .banner__container-description {
        font-size: 14px;
        letter-spacing: 0.30px;
        line-height: 20px;
        margin-bottom: 20px;
    }
}
@media (max-width: 992px) {
    section.section-footer-banner {
        padding-top: 60px;
        padding-bottom: 70px;
    }
    section.section-footer-banner .banner__container {
        padding: 0 15px;
    }
    section.section-footer-banner .banner__container .banner__container-title {
        font-size: 40px;
        line-height: 55px;
    }
}




/* Buttons */
@media (max-width: 1740px) {
    .btn.btn-primary {
        width: 275px;
        height: 58px;
        font-size: 17px;
        line-height: 20px;
    }
    .btn.btn-primary .icon-container {
        width: 14px;
        height: 20px;
        margin-left: 30px;
    }
    .btn.btn-primary .icon-container .icon {
        width: 11px;
        height: 20px;
    }
    .btn.btn-primary:hover .icon-container {
        transform: translateX(15px);
    }
    .btn.btn-primary:hover::after {
        transform: translateX(217px);
    }
    section.section-work .section__work--bottom {
        padding-top: 38px;
    }
    .btn.btn-border {
        font-size: 15px;
        letter-spacing: 2.2px;
        line-height: 25px;
        padding: 0 4px 6px;
    }
}
@media (max-width: 1600px) {
    .btn.btn-primary {
        width: 250px;
        height: 55px;
        font-size: 16px;
        line-height: 20px;
    }
    .btn.btn-primary .icon-container {
        width: 10px;
        height: 20px;
        margin-left: 30px;
    }
    .btn.btn-primary .icon-container .icon {
        width: 9px;
        height: 20px;
    }
    .btn.btn-primary:hover .icon-container {
        transform: translateX(6px);
    }
    .btn.btn-primary:hover::after {
        transform: translateX(195px);
    }
    section.section-work .section__work--bottom {
        padding-top: 35px;
    }
    .btn.btn-border {
        font-size: 14px;
        letter-spacing: 2px;
        line-height: 24px;
        padding: 0 4px 6px;
    }
}
@media (max-width: 1440px) {
    .btn.btn-primary {
        width: 230px;
        height: 52px;
        font-size: 14px;
        line-height: 20px;
    }
    .btn.btn-primary .icon-container .icon {
        width: 8px;
        height: 20px;
    }
    .btn.btn-primary:hover::after {
        transform: translateX(178px);
    }
    section.section-work .section__work--bottom {
        padding-top: 32px;
    }
    .btn.btn-border {
        font-size: 14px;
        letter-spacing: 1.8px;
        line-height: 22px;
        padding: 0 4px 6px;
    }
}
@media (max-width: 1200px) {
    .btn.btn-primary {
        width: 210px;
        height: 50px;
        font-size: 13px;
        line-height: 20px;
    }
    .btn.btn-primary .icon-container {
        width: 10px;
        height: 20px;
        margin-left: 25px;
    }
    .btn.btn-primary .icon-container .icon {
        width: 7px;
        height: 20px;
    }
    .btn.btn-primary:hover::after {
        transform: translateX(165px);
    }
    section.section-work .section__work--bottom {
        padding-top: 30px;
    }
    .btn.btn-border {
        font-size: 13px;
        letter-spacing: 1.5px;
        line-height: 20px;
        padding: 0 4px 6px;
    }
}
@media (max-width: 992px) {
    section.section-work .section__work--bottom {
        text-align: center;
        padding-top: 25px;
    }
    .btn.btn-border {
        font-size: 12px;
        letter-spacing: 1.2px;
        line-height: 18px;
        padding: 0 4px 6px;
    }
}

/* 
    Front Page 
*/

/* Banner */
@media (max-width: 1740px) {
    section.section-front-banner {
        height: 900px;
        min-height: 100vh;
    }
    section.section-front-banner .banner__container .banner__content {
        padding-left: 100px;
    }
    section.section-front-banner .banner__container .banner__container-title {
        font-size: 74px;
        line-height: 92px;
    }
    section.section-front-banner .banner__container .banner__container-description {
        font-size: 19px;
        margin-bottom: 30px;
    }
    section.section-front-banner .front__banner-back .front__banner-back-figure {
        -webkit-clip-path: polygon(215px 0%, 100% 2px, 100% 100%, 0% calc(100% - 9px));
        clip-path: polygon(215px 0%, 100% 2px, 100% 100%, 0% calc(100% - 9px));
        height: 630px;
        width: 1050px;
    }
    section.section-front-banner .section-front-banner-down span:last-child {
        height: 85px;
    }
}
@media (max-width: 1600px) {
    section.section-front-banner .front__banner-back .front__banner-back-figure {
        -webkit-clip-path: polygon(200px 0%, 100% 2px, 100% 100%, 0% calc(100% - 9px));
        clip-path: polygon(200px 0%, 100% 2px, 100% 100%, 0% calc(100% - 9px));
        height: 580px;
        width: 900px;
    }
    section.section-front-banner .banner__container .banner__container-title {
        font-size: 65px;
        line-height: 80px;
    }
    section.section-front-banner .banner__container .banner__container-description {
        font-size: 18px;
        margin-bottom: 25px;
    }
    section.section-front-banner .section-front-banner-down {
        bottom: 30px;
    }
}
@media (max-width: 1440px) {
    section.section-front-banner {
        height: 800px;
        min-height: 100vh;
    }
    section.section-front-banner .banner__container .banner__content {
        padding-left: 75px;
    }
    section.section-front-banner .banner__container .banner__container-title {
        font-size: 60px;
        line-height: 75px;
    }
    section.section-front-banner .banner__container .banner__container-description {
        font-size: 17px;
        margin-bottom: 23px;
    }
    section.section-front-banner .section-front-banner-down span:first-child {
        width: 20px;
        height: 20px;
    }
    section.section-front-banner .section-front-banner-down span:last-child {
        height: 75px;
    }
    section.section-front-banner .front__banner-back .front__banner-back-figure {
        -webkit-clip-path: polygon(200px 0%, 100% 2px, 100% 100%, 0% calc(100% - 9px));
        clip-path: polygon(200px 0%, 100% 2px, 100% 100%, 0% calc(100% - 9px));
        height: 550px;
        width: 820px;
    }
}
@media (max-width: 1280px) {
    section.section-front-banner {
        height: 750px;
        min-height: 100vh;
    }
    section.section-front-banner .banner__container .banner__content {
        padding-left: 60px;
    }
    section.section-front-banner .banner__container .banner__container-title {
        font-size: 55px;
        line-height: 70px;
    }
    section.section-front-banner .banner__container .banner__container-description {
        font-size: 16px;
        margin-bottom: 22px;
    }
    section.section-front-banner .section-front-banner-down span:first-child {
        width: 20px;
        height: 20px;
    }
    section.section-front-banner .section-front-banner-down span:last-child {
        height: 75px;
    }
    section.section-front-banner .front__banner-back .front__banner-back-figure {
        -webkit-clip-path: polygon(175px 0%, 100% 2px, 100% 100%, 0% calc(100% - 9px));
        clip-path: polygon(175px 0%, 100% 2px, 100% 100%, 0% calc(100% - 9px));
        height: 480px;
        width: 750px;
    }
}
@media (max-width: 1200px) {
    section.section-front-banner {
        height: 700px;
        min-height: 100vh;
    }
    section.section-front-banner .banner__container .banner__content {
        padding-left: 60px;
    }
    section.section-front-banner .banner__container .banner__container-title {
        font-size: 50px;
        line-height: 60px;
    }
    section.section-front-banner .banner__container .banner__container-description {
        font-size: 15px;
        margin-bottom: 20px;
    }
    section.section-front-banner .section-front-banner-down span:first-child {
        width: 20px;
        height: 20px;
    }
    section.section-front-banner .section-front-banner-down span:last-child {
        height: 70px;
    }
    section.section-front-banner .front__banner-back .front__banner-back-figure {
        -webkit-clip-path: polygon(145px 0%, 100% 2px, 100% 100%, 0% calc(100% - 5px));
        clip-path: polygon(145px 0%, 100% 2px, 100% 100%, 0% calc(100% - 5px));
        height: 450px;
        width: 620px;
    }
}
@media (max-width: 992px) {
    section.section-front-banner .banner__container .banner__content {
        padding-left: 0;
        padding-right: 50px;
    }
    section.section-front-banner .banner__container .banner__container-title {
        font-size: 46px;
        line-height: 55px;
    }
    section.section-front-banner .front__banner-back .front__banner-back-figure {
        -webkit-clip-path: polygon(135px 0%, 100% 2px, 100% 100%, 0% calc(100% - 5px));
        clip-path: polygon(135px 0%, 100% 2px, 100% 100%, 0% calc(100% - 5px));
        height: 390px;
        width: 460px;
    }
    section.section-front-banner {
        height: 650px;
        min-height: 0;
    }
}
@media (max-width: 767px) {
    section.section-front-banner .front__banner-back .front__banner-back-figure {
        -webkit-clip-path: polygon(65px 0%, 100% 0, 100% 100%, 0% 100%);
        clip-path: polygon(65px 0%, 100% 0, 100% 100%, 0% 100%);
        height: 275px;
        width: 325px;
    }
    section.section-front-banner .banner__container .banner__container-description {
        font-size: 15px;
        margin-bottom: 0;
        line-height: 22px;
    }
    section.section-front-banner .banner__container .btn.btn-primary {
        position: absolute;
        left: 50%;
        bottom: 0;
        transform: translate(-50%, 250%);
    }
}
@media (max-width: 480px) {
    header.header .container,
    section.section-front-banner .container {
        width: 100%;
        padding-right: 30px;
        padding-left: 30px;
    }
    section.section-front-banner {
        height: 520px;
        min-height: 0;
    }
    section.section-front-banner .banner__container,
    section.section-front-banner .front__banner-back {
        position: absolute;
        left: 0;
        top: 50%;
        right: 0;
        transform: translateY(-50%);
        padding-bottom: 80px;
    }
    section.section-front-banner .banner__container .banner__content {
        padding-left: 0;
        padding-right: 0;
    }
    section.section-front-banner .banner__container .banner__container-title {
        font-size: 30px;
        line-height: 40px;
    }
    section.section-front-banner .banner__container .banner__container-description {
        font-size: 14px;
        margin-bottom: 0;
        line-height: 22px;
    }
    section.section-front-banner .front__banner-back .front__banner-back-figure {
        -webkit-clip-path: polygon(65px 0%, 100% 0, 100% 100%, 0% 100%);
        clip-path: polygon(65px 0%, 100% 0, 100% 100%, 0% 100%);
        height: 250px;
        width: 270px;
    }
    section.section-front-banner {
        height: 600px;
        min-height: 0;
    }
    section.section-front-banner .section-front-banner-down {
        bottom: 20px;
    }
    section.section-front-banner .section-front-banner-down span:first-child {
        width: 15px;
        height: 15px;
    }
    section.section-front-banner .section-front-banner-down span:last-child {
        height: 60px;
    }
}

/* Works */
@media (max-width: 1740px) {
    section.section-work .section__work--head .section__work--head-title {
        font-size: 46px;
        font-weight: 700;
        line-height: 46px;
        margin-bottom: 55px;
    }
    section.section-work .works__work .works__work--background .works__work--background-logo .works__work--background-logo-img {
        max-width: 250px;
        max-height: 175px;
    }
    section.section-work .works__work .works__work--content .works__work--content-title {
        font-size: 28px;
        margin-bottom: 3px;
    }
    section.section-work .works__work .works__work--content .works__work--content-categories .works__work--content-categories-category {
        font-size: 17px;
    }
    section.section-work .works__work .works__work--content .works__work--content-bottom .works__work--content-arrow {
        margin-top: 20px;
        width: 16px;
        height: 15px;
    }
}
@media (max-width: 1600px) {
    section.section-work .section__work--head .section__work--head-title {
        font-size: 42px;
        font-weight: 700;
        line-height: 42px;
        margin-bottom: 50px;
    }
    section.section-work .works__work .works__work--background .works__work--background-logo .works__work--background-logo-img {
        max-width: 225px;
        max-height: 140px;
    }
    section.section-work .works__work .works__work--content .works__work--content-title {
        font-size: 26px;
        margin-bottom: 3px;
    }
    section.section-work .works__work .works__work--content .works__work--content-categories .works__work--content-categories-category {
        font-size: 16px;
    }
    section.section-work .works__work .works__work--content .works__work--content-bottom .works__work--content-arrow {
        margin-top: 18px;
        width: 15px;
        height: 14px;
    }
}
@media (max-width: 1440px) {
    section.section-work .section__work--head .section__work--head-title {
        font-size: 38px;
        line-height: 38px;
        margin-bottom: 45px;
    }
    section.section-work .works__work .works__work--background .works__work--background-logo .works__work--background-logo-img {
        max-width: 200px;
        max-height: 125px;
    }
    section.section-work .works__work .works__work--content .works__work--content-title {
        font-size: 24px;
        margin-bottom: 3px;
    }
    section.section-work .works__work .works__work--content .works__work--content-categories .works__work--content-categories-category {
        font-size: 15px;
    }
    section.section-work .works__work .works__work--content .works__work--content-bottom .works__work--content-arrow {
        margin-top: 16px;
        width: 14px;
        height: 13px;
    }
}
@media (max-width: 1200px) {
    section.section-work .section__work--head .section__work--head-title {
        font-size: 34px;
        line-height: 34px;
        margin-bottom: 40px;
    }
    section.section-work .works__work .works__work--background .works__work--background-logo .works__work--background-logo-img {
        max-width: 175px;
        max-height: 100px;
    }
    section.section-work .works__work .works__work--content .works__work--content-title {
        font-size: 22px;
        margin-bottom: 3px;
    }
    section.section-work .works__work .works__work--content .works__work--content-categories .works__work--content-categories-category {
        font-size: 14px;
    }
    section.section-work .works__work .works__work--content .works__work--content-bottom .works__work--content-arrow {
        margin-top: 15px;
        width: 13px;
        height: 12px;
    }
}
@media (max-width: 992px) {
    section.section-work .works__work:first-child,
    section.section-work .works__work:last-child {
        width: 50%;
    }
    section.section-work .works__work {
        width: 50%;
        position: relative;
        overflow: hidden;
        height: 50vw;
    }
    section.section-work .section__work--head .section__work--head-title {
        font-size: 30px;
        line-height: 30px;
        margin-bottom: 35px;
    }
}
@media (max-width: 480px) {
    section.section-work .section__work--head .section__work--head-title {
        font-size: 24px;
        line-height: 24px;
        margin-bottom: 25px;
    }
    section.section-work .works-container {
        display: block;
        padding: 0 15px;
    }
    section.section-work .works__work:first-child,
    section.section-work .works__work:last-child,
    section.section-work .works__work {
        width: 100%;
        height: 280px;
    }
    section.section-work .works__work .works__work--background .works__work--background-logo .works__work--background-logo-img {
        max-width: 235px;
        max-height: 125px;
    }
    section.section-work .section__work--head {
        padding-top: 0;
        height: 500px;
    }
    section.section-work .works-container {
        display: block;
        padding: 0 15px;
        margin-top: -440px;
    }
}
@media (min-width: 480px) {
    section.section-work .section__work--head {
        background-image: none !important;
    }
}

@media (max-width: 1740px) {
    section.section-banner-w-back {
        height: 750px;
    }
    section.section-banner-w-back .banner__container .banner__container-title {
        font-size: 75px;
        line-height: 90px;
    }
    section.section-banner-w-back .banner__container .banner__container-bottom .banner__container-description {
        font-size: 23px;
        letter-spacing: 0.48px;
        line-height: 30px;
        margin-bottom: 24px;
    }
}
@media (max-width: 1600px) {
    section.section-banner-w-back {
        height: 700px;
    }
    section.section-banner-w-back .banner__container .banner__container-title {
        font-size: 65px;
        line-height: 80px;
    }
    section.section-banner-w-back .banner__container .banner__container-bottom .banner__container-description {
        font-size: 22px;
        letter-spacing: 0.4px;
        line-height: 28px;
        margin-bottom: 23px;
    }
}
@media (max-width: 1440px) {
    section.section-banner-w-back {
        height: 600px;
    }
    section.section-banner-w-back .banner__container .banner__container-title {
        font-size: 55px;
        line-height: 70px;
    }
    section.section-banner-w-back .banner__container .banner__container-bottom .banner__container-description {
        font-size: 20px;
        letter-spacing: 0.4px;
        line-height: 26px;
        margin-bottom: 22px;
    }
}
@media (max-width: 1200px) {
    section.section-banner-w-back {
        height: 500px;
    }
    section.section-banner-w-back .banner__container .banner__container-title {
        font-size: 45px;
        line-height: 60px;
    }
    section.section-banner-w-back .banner__container .banner__container-bottom .banner__container-description {
        font-size: 18px;
        letter-spacing: 0.3px;
        line-height: 24px;
        margin-bottom: 20px;
    }
}
@media (max-width: 992px) {
    section.section-banner-w-back {
        height: 400px;
    }
    section.section-banner-w-back .banner__container .banner__container-title {
        font-size: 35px;
        line-height: 50px;
    }
    section.section-banner-w-back .banner__container .banner__container-bottom .banner__container-description {
        font-size: 16px;
        letter-spacing: 0.25px;
        line-height: 22px;
        margin-bottom: 20px;
    }
}
@media (max-width: 480px) {
    section.section-banner-w-back {
        height: 300px;
    }
    section.section-banner-w-back .banner__container {
        transform: translateY(-100%);
    }
    section.section-banner-w-back .banner__container .banner__container-title {
        font-size: 24px;
        line-height: 35px;
    }
    section.section-banner-w-back .banner__container .banner__container-bottom .banner__container-description {
        font-size: 14px;
        letter-spacing: 0.2px;
        line-height: 21px;
        margin-bottom: 20px;
    }
}


/* Services */
@media (max-width: 1740px) {
    section.section-services .section__services-head .section__services-head-title {
        font-size: 46px;
        line-height: 56px;
        margin-bottom: 12px;
    }
    section.section-services .section__services-head .section__services-head-description {
        font-size: 17px;
        letter-spacing: 0.18px;
    }
    section.section-services .services__container .service {
        padding: 35px;
    }
    section.section-services .services__container .service .service-icon {
        width: 50px;
        height: 55px;
        background-size: contain;
    }
    section.section-services .services__container .service .service-title,
    section.section-services .services__container .service .service-title a {
        font-size: 19px;
        line-height: 20px;
        margin-bottom: 18px;
    }
    section.section-services .services__container {
        padding-bottom: 80px;
        padding-top: 50px;
    }
}
@media (max-width: 1600px) {
    section.section-services .section__services-head .section__services-head-title {
        font-size: 42px;
        line-height: 50px;
        margin-bottom: 11px;
    }
    section.section-services .section__services-head .section__services-head-description {
        font-size: 16px;
        letter-spacing: 0.18px;
    }
    section.section-services .services__container .service {
        padding: 30px;
    }
    section.section-services .services__container .service .service-icon {
        width: 45px;
        height: 50px;
        background-size: contain;
    }
    section.section-services .services__container {
        padding-bottom: 70px;
        padding-top: 40px;
    }
}
@media (max-width: 1440px) {
    section.section-services .section__services-head .section__services-head-title {
        font-size: 36px;
        line-height: 46px;
        margin-bottom: 10px;
    }
    section.section-services .section__services-head .section__services-head-description {
        font-size: 16px;
        letter-spacing: 0.18px;
    }
    section.section-services .services__container .service .service-icon {
        width: 40px;
        height: 45px;
        background-size: contain;
    }
    section.section-services .services__container .service .service-title,
    section.section-services .services__container .service .service-title a {
        font-size: 18px;
        line-height: 20px;
        margin-bottom: 15px;
    }
    section.section-services .services__container .service .service-content {
        font-size: 14px;
        line-height: 22px;
    }
    section.section-services .services__container .service {
        padding: 0;
        margin-bottom: 40px;
    }
    section.section-services .services__container {
        padding-bottom: 60px;
        padding-top: 30px;
    }
}
@media (max-width: 992px) {
    section.section-services .section__services-head .section__services-head-title {
        font-size: 32px;
        line-height: 40px;
        margin-bottom: 9px;
    }
    section.section-services .section__services-head .section__services-head-description {
        font-size: 15px;
        letter-spacing: 0.18px;
    }
    section.section-services .services__container .service {
        padding: 0;
        margin-bottom: 40px;
    }
}
@media (max-width: 480px) {
    section.section-services .services__container {
        padding-bottom: 0;
        padding-top: 60px;
    }
    section.section-services {
        padding-top: 60px;
        padding-bottom: 10px;
    }
    section.section-services .section__services-head .section__services-head-title {
        font-size: 24px;
        line-height: 28px;
        margin-bottom: 8px;
    }
    section.section-services .section__services-head .section__services-head-description {
        font-size: 14px;
        letter-spacing: 0.18px;
    }
    section.section-services .services__container .service {
        padding: 0;
        margin-bottom: 40px;
    }
    section.section-services .services__container .service .service-icon {
        width: 35px;
        height: 33px;
        margin-bottom: 15px;
        background-size: contain;
    }
    section.section-services .services__container .service .service-title,
    section.section-services .services__container .service .service-title a {
        font-size: 20px;
        line-height: 22px;
        margin-bottom: 20px;
    }
    section.section-services .services__container .service .service-content {
        font-size: 15px;
        line-height: 24px;
    }
}

/*
    Work template 
*/
@media (max-width: 1740px) {
    section.section-banner-small {
        height: 500px;
    }
    section.section-banner-small .banner__container h2.banner__container-title {
        font-size: 70px;
        line-height: 90px;
        margin-top: 10px;
        margin-bottom: 10px;
    }
    section.section-banner-small .banner__container .banner__container-description {
        font-size: 22px;
        letter-spacing: 0.48px;
        line-height: 28px;
    }
    section.sub-menu-filter {
        padding-top: 30px;
        padding-bottom: 40px;
        background-color: #fff;
    }
    section.sub-menu-filter .menu .menu-item+.menu-item {
        margin-left: 40px;
    }
    section.sub-menu-filter .menu .menu-item a {
        font-size: 13px;
        line-height: 20px;
        padding: 5px;
    }
}
@media (max-width: 1600px) {
    section.section-banner-small {
        height: 450px;
    }
    section.section-banner-small .banner__container h2.banner__container-title {
        font-size: 60px;
        line-height: 80px;
        margin-top: 40px;
        margin-bottom: 10px;
    }
    section.section-banner-small .banner__container .banner__container-description {
        font-size: 20px;
        letter-spacing: 0.40px;
        line-height: 26px;
    }
}
@media (max-width: 1440px) {
    section.section-banner-small {
        height: 425px;
    }
    section.section-banner-small .banner__container h2.banner__container-title {
        font-size: 50px;
        line-height: 70px;
        margin-top: 40px;
        margin-bottom: 10px;
    }
    section.section-banner-small .banner__container .banner__container-description {
        font-size: 18px;
        letter-spacing: 0.30px;
        line-height: 24px;
    }
    section.works-container[data-layout="layout1"] .works .work .inner-wrap {
        height: 600px;
    }
    section.works-container .works .work {
        padding: 15px;
    }
    section.works-container[data-layout="layout1"] .works .work .work--content .work--content-logo .work--content-logo-img {
        max-height: 125px;
    }
}
@media (max-width: 1280px) {
    section.works-container .works .work {
        width: 33.33%;
        padding: 10px;
    }
    section.works-container[data-layout="layout1"] .works .work .inner-wrap {
        height: 500px;
    }
    section.works-container[data-layout="layout1"] .works .work .work--content .work--content-logo .work--content-logo-img {
        max-width: 200px;
        margin-bottom: 5px;
    }
    section.works-container[data-layout="layout1"] .works .work .work--content .work--content-categories .work--content-categories-category {
        font-size: 15px;
    }
    section.works-container[data-layout="layout3"] .works .work .inner-wrap {
        height: 300px;
    }
    section.works-container[data-layout="layout3"] .works .work .work--content {
        padding: 25px;
    }
    section.works-container[data-layout="layout3"] .works .work .work--content .work--content-logo .work--content-logo-img {
        max-width: 175px;
        max-height: 100px;
        margin-bottom: 10px;
    }
    section.works-container[data-layout="layout3"] .works .work .work--content .work--content-categories .work--content-categories-category {
        font-size: 15px;
        letter-spacing: 0.4px;
    }
    section.sub-menu-filter {
        padding-top: 25px;
        padding-bottom: 30px;
    }
    section.sub-menu-filter .menu .menu-item+.menu-item {
        margin-left: 40px;
    }
    section.sub-menu-filter .menu .menu-item a {
        font-size: 13px;
        line-height: 20px;
        padding: 5px;
    }
    section.works-container[data-layout="layout1"] .works .work .work--content .work--content-logo .work--content-logo-img {
        max-height: 100px;
    }
}
@media (max-width: 992px) {
    section.section-banner-small {
        height: 400px;
    }
    section.section-banner-small .banner__container h2.banner__container-title {
        font-size: 40px;
        line-height: 60px;
        margin-top: 40px;
        margin-bottom: 10px;
    }
    section.section-banner-small .banner__container .banner__container-description {
        font-size: 16px;
        letter-spacing: 0.30px;
        line-height: 22px;
    }
    /* selector */
    section.sub-menu-filter {
        display: none;
    }
    section.works-container .works {
        padding-top: 30px;
    }
    section.works-container .works .work {
        width: 50%;
        padding: 10px;
    }
}
@media (max-width: 600px) {
    /* Banner */
    section.section-banner-small {
        height: 300px;
    }
    section.section-banner-small .banner__container h2.banner__container-title {
        font-size: 30px;
        line-height: 40px;
        margin-bottom: 10px;
        margin-top: 50px;
    }
    section.section-banner-small .banner__container .banner__container-description {
        font-size: 14px;
        letter-spacing: 0.28px;
        line-height: 20px;
        padding: 0 20px;
    }
    /* selector */
    section.sub-menu-filter {
        display: none;
    }
    /* Works */
    section.works-container .works {
        margin-left: -15px;
        margin-right: -15px;
        margin-top: 0;
        margin-bottom: 0;
        display: block;
        flex-wrap: wrap;
        padding-top: 20px;
    }
    section.works-container .works .work {
        width: 100%;
        padding: 25px 15px;
    }
    section.works-container .works .work:nth-child(even) {
        background-color: #f7f7f7;
    }
    section.works-container[data-layout="layout1"] .works .work .inner-wrap {
        height: 475px;
    }
    section.works-container[data-layout="layout3"] .works .work .inner-wrap {
        height: 300px;
    }
    section.works-container[data-layout="layout3"] .works .work {
        padding: 25px 15px;
    }
    section.works-container .works .work .inner-wrap {
        box-shadow: none !important;
    }
}

/*
    Work Details
*/
@media (max-width: 1740px) {
    section.work-single-banner .banner__container .banner__container-title {
        font-size: 70px;
        line-height: 70px;
        margin-bottom: 25px;
    }
    section.work-single-banner .banner__container .banner__container-bottom .banner__tabs .banner__tabs-tab {
        margin-left: 30px;
        margin-right: 30px;
    }
    section.work-single-banner .banner__container .banner__container-bottom .banner__tabs .banner__tabs-tab .banner_tab-ico {
        width: 35px;
        height: 30px;
        margin-bottom: 4px;
    }
    section.work-single-banner .banner__container .banner__container-bottom .banner__tabs .banner__tabs-tab .banner_tab-name {
        font-size: 13px;
        letter-spacing: 1.5px;
        padding: 3px 7px;
    }
    section.work-single-banner .banner__container .banner__container-bottom .banner__tabs .banner__tabs-tab:after {
        height: 2px;
    }

    /* web */
    section.section-website-main {
        min-height: 100vh;
        padding-top: 80px;
        padding-bottom: 85px;
    }
    section.section-website-main .section-website-main-content .section-website-main--desktop {
        width: 1150px;
        height: 800px;
        border-radius: 13px;
    }
    section.section-website-main .section-website-main-content .section-website-main--mobile {
        margin-top: 155px;
        width: 340px;
        height: 600px;
        border-radius: 13px;
        margin-left: -120px;
    }

    /* showcase */
    section.section-web-showcase .showcase-desktop-slider .showcase-slide {
        width: 1120px;
        padding: 8px 60px;
    }
    section.section-web-showcase .showcase-desktop-slider .showcase-slide .showcase-slide-content .showcase-slide-image {
        height: 700px;
        margin-bottom: 20px;
        border-radius: 13px;
    }
    section.section-web-showcase .section__head .section__head--title {
        font-size: 28px;
        letter-spacing: 3px;
        line-height: 40px;
    }
    section.section-web-showcase .section__head .section__head--info {
        line-height: 19px;
        font-size: 13px;
        letter-spacing: 0.28px;
    }
    section.section-web-showcase {
        min-height: auto;
    }
    section.section-web-showcase .showcase-mobile-slider-container {
        width: 1600px;
    }
    section.section-web-showcase .showcase-mobile-slider .showcase-slide {
        padding: 10px 25px;
        width: 400px !important;
    }
    section.section-web-showcase .showcase-mobile-slider .showcase-slide .showcase-slide-content .showcase-slide-image {
        width: 100%;
        height: 600px;
        border-radius: 13px;
        margin-bottom: 20px;
    }
}
@media (max-width: 1600px) {
    section.work-single-banner .banner__container .banner__container-title {
        font-size: 60px;
        line-height: 60px;
        margin-bottom: 25px;
    }

    /* web */
    section.section-website-main {
        min-height: 100vh;
        padding-top: 70px;
        padding-bottom: 75px;
    }
    section.section-website-main .section-website-main-content .section-website-main--desktop {
        width: 1040px;
        height: 720px;
        border-radius: 13px;
    }
    section.section-website-main .section-website-main-content .section-website-main--mobile {
        margin-top: 140px;
        width: 305px;
        height: 540px;
        border-radius: 13px;
        margin-left: -120px;
    }

    /* showcase */
    section.section-web-showcase .showcase-desktop-slider .showcase-slide {
        width: 1000px;
        padding: 8px 55px;
    }
    section.section-web-showcase .showcase-desktop-slider .showcase-slide .showcase-slide-content .showcase-slide-image {
        height: 630px;
        margin-bottom: 20px;
        border-radius: 11px;
    }
    section.section-web-showcase .section__head .section__head--title {
        font-size: 26px;
        letter-spacing: 2.5px;
        line-height: 38px;
    }
    section.section-web-showcase .section__head .section__head--info {
        line-height: 18px;
        font-size: 13px;
        letter-spacing: 0.25px;
    }
    section.section-web-showcase .showcase-mobile-slider-container {
        width: 1400px;
    }
    section.section-web-showcase .showcase-mobile-slider .showcase-slide {
        padding: 10px 15px;
        width: 350px !important;
    }
    section.section-web-showcase .showcase-mobile-slider .showcase-slide .showcase-slide-content .showcase-slide-image {
        width: 100%;
        height: 550px;
        border-radius: 11px;
        margin-bottom: 20px;
    }

    section.recent-works:hover {
        width: 375px;
    }
    section.recent-works .recent-works-container {
        height: calc(100% - 84px);
        width: 375px;
        transform: translateX(-375px);
    }

}
@media (max-width: 1440px) {
    section.work-single-banner .banner__container .banner__container-title {
        font-size: 55px;
        line-height: 55px;
        margin-bottom: 25px;
    }
    section.work-single-banner .banner__container .banner__container-bottom .banner__tabs .banner__tabs-tab {
        margin-left: 25px;
        margin-right: 25px;
    }
    section.work-single-banner .banner__container .banner__container-bottom .banner__tabs .banner__tabs-tab .banner_tab-ico {
        width: 32px;
        height: 28px;
        margin-bottom: 4px;
    }
    section.work-single-banner .banner__container .banner__container-bottom .banner__tabs .banner__tabs-tab .banner_tab-name {
        font-size: 12px;
        letter-spacing: 1.25px;
        padding: 3px 5px;
    }

    /* web */
    section.section-website-main {
        min-height: 100vh;
        padding-top: 65px;
        padding-bottom: 70px;
    }
    section.section-website-main .section-website-main-content .section-website-main--desktop {
        width: 940px;
        height: 650px;
        border-radius: 13px;
    }
    section.section-website-main .section-website-main-content .section-website-main--mobile {
        margin-top: 120px;
        width: 275px;
        height: 485px;
        border-radius: 13px;
        margin-left: -120px;
    }

    /* showcase */
    section.section-web-showcase .showcase-desktop-slider .showcase-slide {
        width: 900px;
        padding: 7px 52px;
    }
    section.section-web-showcase .showcase-desktop-slider .showcase-slide .showcase-slide-content .showcase-slide-image {
        height: 570px;
        margin-bottom: 20px;
        border-radius: 10px;
    }
    section.section-web-showcase .section__head .section__head--title {
        font-size: 24px;
        letter-spacing: 2px;
        line-height: 34px;
    }
    section.section-web-showcase .section__head .section__head--info {
        line-height: 17px;
        font-size: 12.5px;
        letter-spacing: 0.25px;
    }
    section.section-web-showcase .showcase-mobile-slider-container {
        width: 1200px;
    }
    section.section-web-showcase .showcase-mobile-slider .showcase-slide {
        padding: 10px 12px;
        width: 300px !important;
    }
    section.section-web-showcase .showcase-mobile-slider .showcase-slide .showcase-slide-content .showcase-slide-image {
        width: 100%;
        height: 475px;
        border-radius: 11px;
        margin-bottom: 20px;
    }
    section.recent-works:hover {
        width: 350px;
    }
    section.recent-works .recent-works-container {
        height: calc(100% - 84px);
        width: 350px;
        transform: translateX(-350px);
    }

    .mfp-arrow {
        position: fixed;
        width: 30px;
        height: 60px;
        margin-top: -20px;
        background-size: contain !important;
    }

}
@media (max-width: 1280px) {
    section.work-single-banner .banner__container .banner__container-title {
        font-size: 50px;
        line-height: 50px;
        margin-bottom: 25px;
    }
    section.work-single-banner .banner__container .banner__container-bottom .banner__tabs .banner__tabs-tab {
        margin-left: 20px;
        margin-right: 20px;
    }
    section.work-single-banner .banner__container .banner__container-bottom .banner__tabs .banner__tabs-tab .banner_tab-ico {
        width: 30px;
        height: 25px;
        margin-bottom: 3px;
    }
    section.work-single-banner .banner__container .banner__container-bottom .banner__tabs .banner__tabs-tab .banner_tab-name {
        font-size: 12px;
        letter-spacing: 1.25px;
        padding: 3px 5px;
    }

    /* web */
    section.section-website-main {
        min-height: 100vh;
        padding-top: 60px;
        padding-bottom: 70px;
    }
    section.section-website-main .section-website-main-content .section-website-main--desktop {
        width: 845px;
        height: 585px;
        border-radius: 13px;
    }
    section.section-website-main .section-website-main-content .section-website-main--mobile {
        margin-top: 110px;
        width: 250px;
        height: 440px;
        border-radius: 13px;
        margin-left: -150px;
    }

    /* showcase */
    section.section-web-showcase .showcase-desktop-slider .showcase-slide {
        width: 820px;
        padding: 7px 50px;
    }
    section.section-web-showcase .showcase-desktop-slider .showcase-slide .showcase-slide-content .showcase-slide-image {
        height: 510px;
        margin-bottom: 20px;
        border-radius: 10px;
    }
    section.section-web-showcase .section__head .section__head--title {
        font-size: 22px;
        letter-spacing: 1.5px;
        line-height: 30px;
    }
    section.section-web-showcase .section__head .section__head--info {
        line-height: 16px;
        font-size: 12px;
        letter-spacing: 0.2px;
    }
    section.section-web-showcase .showcase-mobile-slider-container {
        width: 960px;
    }
    section.section-web-showcase .showcase-mobile-slider .showcase-slide {
        padding: 10px 12px;
        width: 320px !important;
    }
    section.section-web-showcase .showcase-mobile-slider .showcase-slide .showcase-slide-content .showcase-slide-image {
        width: 100%;
        height: 500px;
        border-radius: 11px;
        margin-bottom: 20px;
    }
    .mfp-arrow {
        position: fixed;
        width: 25px;
        height: 50px;
        margin-top: -20px;
        background-size: contain !important;
    }
    .mfp-arrow.mfp-arrow-right {
        right: 50px;
    }
    .mfp-arrow.mfp-arrow-left {
        left: 50px;
    }
}
@media (max-width: 992px) {
    section.work-single-banner .banner__container .banner__container-title {
        font-size: 45px;
        line-height: 45px;
        margin-bottom: 20px;
    }
    section.work-single-banner .banner__container .banner__container-bottom .banner__tabs .banner__tabs-tab {
        margin-left: 15px;
        margin-right: 15px;
    }
    section.work-single-banner .banner__container .banner__container-bottom .banner__tabs .banner__tabs-tab .banner_tab-ico {
        width: 30px;
        height: 25px;
        margin-bottom: 3px;
    }
    section.work-single-banner .banner__container .banner__container-bottom .banner__tabs .banner__tabs-tab .banner_tab-name {
        font-size: 12px;
        letter-spacing: 1.25px;
        padding: 2px 3px;
    }
    section.recent-works {
        display: none;
    }

    /* web */
    section.section-website-main {
        min-height: auto;
        padding-top: 60px;
        padding-bottom: 60px;
    }
    section.section-website-main .section-website-main-content .section-website-main--desktop {
        width: 675px;
        height: 470px;
        border-radius: 10px;
    }
    section.section-website-main .section-website-main-content .section-website-main--mobile {
        margin-top: 150px;
        width: 200px;
        height: 350px;
        border-radius: 10px;
        margin-left: -170px;
    }
    section.section-website-main {
        min-height: auto;
        padding-top: 60px;
        padding-bottom: 70px;
    }
    section.section-web-showcase .showcase-desktop-slider .showcase-slide {
        width: 600px;
        padding: 7px 45px;
    }
    section.section-web-showcase .showcase-desktop-slider .showcase-slide .showcase-slide-content .showcase-slide-image {
        height: 400px;
        margin-bottom: 20px;
        border-radius: 10px;
    }
    section.section-web-showcase .section__head .section__head--title {
        font-size: 20px;
        letter-spacing: 1.25px;
        line-height: 28px;
    }
    section.section-web-showcase .section__head .section__head--info {
        line-height: 15px;
        font-size: 12px;
        letter-spacing: 0.2px;
    }
    section.section-web-showcase .showcase-mobile-slider-container {
        width: 600px;
    }
    section.section-web-showcase .showcase-mobile-slider .showcase-slide {
        padding: 10px 12px;
        width: 300px !important;
    }
    section.section-web-showcase .showcase-mobile-slider .showcase-slide .showcase-slide-content .showcase-slide-image {
        width: 100%;
        height: 475px;
        border-radius: 11px;
        margin-bottom: 20px;
    }
    img.mfp-img {
        max-width: 80%;
    }
    button.mfp-arrow {
        display: none !important;
    }

    .mfp-image-holder .mfp-close,
    .mfp-iframe-holder .mfp-close {
        display: block !important;
    }
    .mfp-image-holder .mfp-close,
    .mfp-iframe-holder .mfp-close {
        color: #FFF;
        right: 5px;
        text-align: right;
        padding-right: 0;
        top: 5px;
        width: 100%;
        opacity: 1;
        width: 30px;
        height: 30px;
        background-image: url(images/close.svg);
        background-repeat: no-repeat;
        background-position: center;
        text-indent: 1000px;
        overflow: hidden;
        position: fixed;
    }
    .mfp-container {
        text-align: center;
        position: fixed;
        width: 100%;
        height: 100%;
        left: 0;
        top: 0;
        padding: 0 8px;
        box-sizing: border-box;
        overflow: auto;
    }

}
@media (max-width: 767px) {
    section.section-website-main .section-website-main-content .section-website-main--desktop {
        width: 100%;
        height: 350px;
        border-radius: 10px;
    }
    section.section-website-main .section-website-main-content .section-website-main--mobile {
        margin-top: 115px;
        width: 150px;
        height: 260px;
        border-radius: 10px;
        margin-left: -140px;
    }
}
@media (max-width: 600px) {
    section.work-single-banner .banner__container .banner__container-title {
        font-size: 40px;
        line-height: 40px;
        margin-bottom: 40px;
    }
    section.work-single-banner {
        height: auto;
        position: relative;
        height: 500px;
    }
    section.work-single-banner .banner__container {
        text-align: center;
        position: relative;
        top: auto;
        left: 0;
        right: 0;
        transform: translateY(0%);
        padding-top: 240px;
    }
    section.work-single-banner .banner__container .banner__container-bottom .banner__tabs {
        display: block;
        justify-content: center;
        text-align: center;
    }
    section.work-single-banner .banner__container .banner__container-bottom .banner__tabs .slick-track {
        position: relative;
        top: 0;
        left: 0;
        display: block;
        margin-left: auto;
        margin-right: auto;
        display: flex;
        align-items: flex-end;
    }
    section.work-single-banner .banner__container .banner__container-bottom .banner__tabs .banner__tabs-tab {
        margin-left: 15px;
        margin-right: 15px;
        display: table;
        width: auto;
        margin-left: 25px;
        margin-right: 25px;
    }
    section.work-single-banner .banner__container .banner__container-bottom .banner__tabs .banner__tabs-tab.slick-slide:not(.slick-current) {
        pointer-events: none !important;
    }
    section.work-single-banner .banner__container .banner__container-bottom .banner__tabs .banner__tabs-tab+.banner__tabs-tab {
        margin-top: 0;
    }
    section.work-single-banner .banner__container .banner__container-bottom .banner__tabs .banner__tabs-tab .banner_tab-ico {
        display: none;
    }
    section.work-single-banner .banner__container .banner__container-bottom .banner__tabs .banner__tabs-tab .banner_tab-name {
        font-size: 20px;
        letter-spacing: 1.25px;
        padding: 5px 7px;
    }

    /* web */
    section.section-website-main {
        min-height: auto;
        padding-top: 80px;
        padding-bottom: 80px;
    }
    section.section-website-main .section-website-main-content .section-website-main--desktop {
        width: 100%;
        max-width: 340px;
        height: 240px;
        border-radius: 10px;
    }
    section.section-website-main .section-website-main-content .section-website-main--mobile {
        margin-top: 110px;
        width: 95px;
        height: 165px;
        border-radius: 10px;
        margin-left: -85px;
    }
    section.section-web-showcase {
        padding-bottom: 40px;
        min-height: auto;
        padding-top: 50px;
    }
    section.section-web-showcase .section__head .section__head--title {
        font-size: 18px;
        letter-spacing: 0.9px;
        line-height: 24px;
    }
    section.section-web-showcase .section__head .section__head--info {
        font-size: 14px;
        letter-spacing: 0.28px;
    }
    section.section-web-showcase .showcase-desktop-slider .showcase-slide .showcase-slide-content .showcase-slide-caption {
        font-size: 16px;
        font-weight: 400;
    }
    section.section-web-showcase .showcase-desktop-slider .showcase-slide {
        width: 100%;
        padding: 7px 9px;
        max-width: 355px;
    }
    section.section-web-showcase .showcase-desktop-slider .showcase-slide .showcase-slide-content .showcase-slide-image {
        width: 100%;
        height: 220px;
        margin-bottom: 25px;
        border-radius: 11px;
    }
    section.section-web-showcase.section-web-showcase-mobile .section__head {
        margin-bottom: 15px;
    }
    section.section-web-showcase .showcase-mobile-slider-container {
        width: 100%;
    }
    section.section-web-showcase .showcase-mobile-slider .showcase-slide {
        padding: 10px 15px;
        text-align: center;
        width: 100% !important;
        max-width: 235px;
    }
    section.section-web-showcase .showcase-mobile-slider .showcase-slide .showcase-slide-content .showcase-slide-image {
        width: 100%;
        height: 385px;
        margin-bottom: 0px;
        border-radius: 10px;
    }
}
.mfp-bottom-bar {
    display: none !important;
}




/* 
    Contact Page 
*/
@media (max-width: 1740px) {
    section.section-contact .contact-right {
        padding-top: 110px;
        padding-bottom: 110px;
        padding-left: 95px;
        padding-right: 95px;
    }
    section.section-contact .contact-right .contact-information {
        width: 475px;
    }
    section.section-contact .contact-information .contact_information .contact_information--title {
        font-size: 32px;
    }
    section.section-contact .contact-information .contact_information .contact_information--description {
        font-size: 16px;
    }
    section.section-contact .contact-information .contact_information .contact_information--location {
        font-size: 13.5px;
        letter-spacing: 0.14px;
        margin-top: 9px;
    }
    section.section-contact .contact-information .contact_contact_information {
        margin-top: 35px;
    }
    section.section-contact .contact-information .contact_contact_information .contact_contact_information--title {
        font-size: 28px;
        line-height: 36px;
    }
    section.section-contact .contact-information .contact_contact_information .contact_contact_information--description {
        font-size: 19px;
    }
    section.section-contact .contact-information .contact_contact_information .contact_contact_information--phone {
        margin-top: 18px;
    }
    section.section-contact .contact-information .contact_contact_information .contact_contact_information--phone a {
        font-size: 22px;
        letter-spacing: 0.48px;
    }
    section.section-contact .contact-information .contact_contact_information .contact_contact_information--phone span {
        font-size: 15px;
        letter-spacing: 0.16px;
        margin-top: -4px;
    }
    section.section-contact .contact-information .contact_social_medias {
        margin-top: 45px;
    }
    section.section-contact .contact-information .contact_social_medias .social_medias--title {
        font-size: 15px;
        margin-bottom: 9px;
    }
    section.section-contact .contact-information .contact_social_medias .contact_social_medias--list .contact_social_medias--list-item a {
        transform: scale(0.95);
    }
    section.section-contact .contact-information .contact_social_medias .contact_social_medias--list .contact_social_medias--list-item+.contact_social_medias--list-item {
        margin-left: 10px;
    }
    section.section-contact .contact-left {
        padding-top: 85px;
        padding-bottom: 110px;
        padding-left: 95px;
        padding-right: 95px;
    }
}
@media (max-width: 1600px) {
    section.section-contact .contact-right {
        padding-top: 100px;
        padding-bottom: 100px;
        padding-left: 85px;
        padding-right: 85px;
    }
    section.section-contact .contact-information .contact_information .contact_information--title {
        font-size: 30px;
    }
    section.section-contact .contact-information .contact_information .contact_information--description {
        font-size: 15px;
    }
    section.section-contact .contact-information .contact_information .contact_information--location {
        font-size: 13px;
        letter-spacing: 0.14px;
        margin-top: 7px;
    }
    section.section-contact .contact-information .contact_contact_information {
        margin-top: 30px;
    }
    section.section-contact .contact-information .contact_contact_information .contact_contact_information--title {
        font-size: 26px;
        line-height: 32px;
    }
    section.section-contact .contact-information .contact_contact_information .contact_contact_information--description {
        font-size: 17px;
    }
    section.section-contact .contact-information .contact_contact_information .contact_contact_information--phone {
        margin-top: 15px;
    }
    section.section-contact .contact-information .contact_contact_information .contact_contact_information--phone a {
        font-size: 21px;
        letter-spacing: 0.48px;
    }
    section.section-contact .contact-information .contact_contact_information .contact_contact_information--phone span {
        font-size: 14px;
        letter-spacing: 0.16px;
        margin-top: -4px;
    }
    section.section-contact .contact-information .contact_social_medias {
        margin-top: 40px;
    }
    section.section-contact .contact-information .contact_social_medias .social_medias--title {
        font-size: 14px;
        margin-bottom: 6px;
    }
    section.section-contact .contact-information .contact_social_medias .contact_social_medias--list .contact_social_medias--list-item a {
        transform: scale(0.9);
        transform-origin: left;
    }
    section.section-contact .contact-information .contact_social_medias .contact_social_medias--list .contact_social_medias--list-item+.contact_social_medias--list-item {
        margin-left: 5px;
    }

    section.section-contact .contact-left {
        padding-top: 80px;
        padding-bottom: 100px;
        padding-left: 85px;
        padding-right: 85px;
    }
    section.section-contact .contact-form {
        width: 475px;
        position: relative;
    }
    section.section-contact .contact-form .form-group input[type="text"],
    section.section-contact .contact-form .form-group input[type="email"],
    section.section-contact .contact-form .form-group input[type="tel"] {
        height: 40px;
        padding: 0 12px;
        font-size: 14px;
    }
    section.section-contact .contact-form .form-group span.select2.select2-container .select2-selection--single .select2-selection__rendered {
        padding: 0 12px;
        font-size: 14px;
    }
    .select2-results__option--selectable {
        padding: 10px 12px;
        font-size: 14px;
    }
    section.section-contact .contact-form .form-group textarea {
        height: 140px;
        padding: 8px 12px;
        font-size: 13px;
    }
}
@media (max-width: 1440px) {
    section.section-contact .contact-right {
        padding-top: 90px;
        padding-bottom: 90px;
        padding-left: 75px;
        padding-right: 75px;
    }
    section.section-contact .contact-information .contact_information .contact_information--title {
        font-size: 28px;
    }
    section.section-contact .contact-information .contact_information .contact_information--description {
        font-size: 14px;
    }
    section.section-contact .contact-information .contact_information .contact_information--location {
        font-size: 12px;
        letter-spacing: 0.1px;
        margin-top: 5px;
    }
    section.section-contact .contact-information .contact_contact_information {
        margin-top: 25px;
    }
    section.section-contact .contact-information .contact_contact_information .contact_contact_information--title {
        font-size: 24px;
        line-height: 30px;
    }
    section.section-contact .contact-information .contact_contact_information .contact_contact_information--description {
        font-size: 16px;
    }
    section.section-contact .contact-information .contact_contact_information .contact_contact_information--phone {
        margin-top: 15px;
    }
    section.section-contact .contact-information .contact_contact_information .contact_contact_information--phone a {
        font-size: 20px;
        letter-spacing: 0.48px;
    }
    section.section-contact .contact-information .contact_contact_information .contact_contact_information--phone span {
        font-size: 13px;
        letter-spacing: 0.16px;
        margin-top: -4px;
    }
    section.section-contact .contact-information .contact_social_medias {
        margin-top: 35px;
    }
    section.section-contact .contact-information .contact_social_medias .social_medias--title {
        font-size: 13px;
        margin-bottom: 5px;
    }
    section.section-contact .contact-information .contact_social_medias .contact_social_medias--list .contact_social_medias--list-item a {
        transform: scale(0.85);
        transform-origin: left;
    }
    section.section-contact .contact-information .contact_social_medias .contact_social_medias--list .contact_social_medias--list-item+.contact_social_medias--list-item {
        margin-left: 0px;
    }
    section.section-contact .contact-left {
        padding-top: 70px;
        padding-bottom: 90px;
        padding-left: 75px;
        padding-right: 75px;
    }
}
@media (max-width: 1280px) {
    section.section-contact .contact-right {
        padding-top: 70px;
        padding-bottom: 70px;
        padding-left: 50px;
        padding-right: 50px;
    }
    section.section-contact .contact-information .contact_information .contact_information--title {
        font-size: 26px;
    }
    section.section-contact .contact-information .contact_information .contact_information--description {
        font-size: 13px;
    }
    section.section-contact .contact-information .contact_information .contact_information--location {
        font-size: 11px;
        letter-spacing: 0.1px;
        margin-top: 2px;
    }
    section.section-contact .contact-information .contact_contact_information {
        margin-top: 20px;
    }
    section.section-contact .contact-information .contact_contact_information .contact_contact_information--title {
        font-size: 22px;
        line-height: 28px;
    }
    section.section-contact .contact-information .contact_contact_information .contact_contact_information--description {
        font-size: 14px;
    }
    section.section-contact .contact-information .contact_contact_information .contact_contact_information--phone a {
        font-size: 18px;
        letter-spacing: 0.48px;
    }
    section.section-contact .contact-information .contact_contact_information .contact_contact_information--phone span {
        font-size: 12px;
        letter-spacing: 0.16px;
        margin-top: -4px;
    }
    section.section-contact .contact-information .contact_social_medias {
        margin-top: 30px;
    }
    section.section-contact .contact-information .contact_social_medias .social_medias--title {
        font-size: 12px;
        margin-bottom: 5px;
    }
    section.section-contact .contact-information .contact_social_medias .contact_social_medias--list .contact_social_medias--list-item a {
        transform: scale(0.8);
        transform-origin: left;
    }
    section.section-contact .contact-information .contact_social_medias .contact_social_medias--list .contact_social_medias--list-item+.contact_social_medias--list-item {
        margin-left: -3px;
    }
    section.section-contact .contact-left {
        padding-top: 50px;
        padding-bottom: 60px;
        padding-left: 50px;
        padding-right: 50px;
    }
    section.section-contact .contact-form .form-group input[type="text"],
    section.section-contact .contact-form .form-group input[type="email"],
    section.section-contact .contact-form .form-group input[type="tel"] {
        height: 40px;
        padding: 0 10px;
        font-size: 12px;
    }
    section.section-contact .contact-form .form-group label {
        font-size: 14px;
    }
    section.section-contact .contact-form .form-group+.form-group {
        margin-top: 15px;
    }
    section.section-contact .contact-form .form-group span.select2.select2-container .select2-selection--single .select2-selection__rendered {
        padding: 0 10px;
        font-size: 12px;
    }
    .select2-results__option--selectable {
        padding: 10px 10px;
        font-size: 12px;
    }
    section.section-contact .contact-form .form-group textarea {
        width: 100%;
        height: 140px;
        padding: 6px 10px;
        font-size: 12px;
    }
}
@media (max-width: 992px) {
    section.section-contact .contact-left {
        order: 2;
    }
    section.section-contact .contact-right {
        order: 1;
    }
    section.section-contact .contact-right {
        padding-top: 60px;
        padding-bottom: 60px;
        padding-left: 30px;
        padding-right: 30px;
        text-align: center;
    }
    section.section-contact .contact-right .contact-right--back+.contact-right--back {
        display: none;
    }
    section.section-contact .contact-right .contact-information {
        width: 100%;
    }
    section.section-contact .contact-information .contact_information .contact_information--title {
        font-size: 28px;
        text-align: center;
    }
    section.section-contact .contact-information .contact_information .contact_information--description {
        font-size: 15px;
        text-align: center;
    }
    section.section-contact .contact-information .contact_information .contact_information--location {
        font-size: 13px;
        letter-spacing: 0.14px;
        margin-top: 6px;
        text-align: center;
    }
    section.section-contact .contact-information .contact_contact_information {
        margin-top: 30px;
    }
    section.section-contact .contact-information .contact_contact_information .contact_contact_information--title {
        font-size: 26px;
        line-height: 28px;
    }
    section.section-contact .contact-information .contact_contact_information .contact_contact_information--description {
        font-size: 16px;
    }
    section.section-contact .contact-information .contact_contact_information .contact_contact_information--phone {
        margin-top: 15px;
    }
    section.section-contact .contact-information .contact_contact_information .contact_contact_information--phone a {
        font-size: 20px;
        letter-spacing: 0.48px;
    }
    section.section-contact .contact-information .contact_contact_information .contact_contact_information--phone span {
        font-size: 13px;
        letter-spacing: 0.16px;
        margin-top: -2px;
    }
    section.section-contact .contact-information .contact_social_medias {
        margin-top: 40px;
    }
    section.section-contact .contact-information .contact_social_medias .social_medias--title {
        font-size: 14px;
        margin-bottom: 8px;
    }
    section.section-contact .contact-information .contact_social_medias .contact_social_medias--list {
        justify-content: center;
    }
    section.section-contact .contact-information .contact_social_medias .contact_social_medias--list .contact_social_medias--list-item a {
        transform: scale(0.9);
    }
    section.section-contact .contact-information .contact_social_medias .contact_social_medias--list .contact_social_medias--list-item+.contact_social_medias--list-item {
        margin-left: 6px;
    }
    section.section-contact .contact-left {
        display: block;
    }
    section.section-contact .contact-form {
        width: 475px;
        position: relative;
        display: block;
        margin-left: auto;
        margin-right: auto;
    }
}
@media (max-width: 600px) {
    section.section-contact .contact-right {
        padding-top: 45px;
        padding-bottom: 55px;
        padding-left: 30px;
        padding-right: 30px;
        text-align: center;
    }
    section.section-contact .contact-information .contact_information .contact_information--title {
        font-size: 26px;
        text-align: center;
    }
    section.section-contact .contact-information .contact_information .contact_information--description {
        font-size: 17px;
        text-align: center;
    }
    section.section-contact .contact-information .contact_information .contact_information--location {
        font-size: 14px;
        letter-spacing: 0.14px;
        margin-top: 6px;
        text-align: center;
    }
    section.section-contact .contact-information .contact_contact_information {
        margin-top: 15px;
    }
    section.section-contact .contact-information .contact_contact_information .contact_contact_information--title {
        font-size: 20px;
        line-height: 26px;
    }
    section.section-contact .contact-information .contact_contact_information .contact_contact_information--description {
        font-size: 14px;
    }
    section.section-contact .contact-information .contact_contact_information .contact_contact_information--phone a {
        font-size: 24px;
        letter-spacing: 0.48px;
    }
    section.section-contact .contact-information .contact_contact_information .contact_contact_information--phone span {
        font-size: 16px;
        letter-spacing: 0.16px;
        margin-top: -2px;
    }
    section.section-contact .contact-information .contact_social_medias {
        display: none !important;
    }
    section.section-contact .contact-left {
        padding-top: 45px;
        padding-bottom: 80px;
        padding-left: 35px;
        padding-right: 35px;
        display: block;
    }
    section.section-contact .contact-form {
        width: 100%;
    }
    section.section-contact .contact-form .form-group span.select2.select2-container .select2-selection--single .select2-selection__rendered {
        padding: 0 10px;
        font-size: 12px;
    }
    section.section-contact .contact-form .form-group textarea {
        height: 140px;
        padding: 7px 10px;
        font-size: 12px;
    }
    section.section-contact .contact-form .form-group input[type="text"],
    section.section-contact .contact-form .form-group input[type="email"],
    section.section-contact .contact-form .form-group input[type="tel"] {
        padding: 0 10px;
        font-size: 12px;
    }
    .select2-results__option--selectable {
        padding: 10px 10px;
        font-size: 12px;
    }
}






/* Service Web Design */

section.section-howwedo .howwedo-slider {
    margin-top: -50px;
    margin-bottom: 40px;
    display: none;
}
section.section-howwedo .howwedo-slider .howwedo-slide .howwedo-slide-image {
    margin-bottom: 50px;
    display: flex;
    height: 345px;
    align-items: center;
    justify-content: center;
}
section.section-howwedo .howwedo-slider .howwedo-slide .howwedo-slide-image img {
    max-width: 100%;
    max-height: 100%;
    height: auto;
}
section.section-howwedo .howwedo-slider .howwedo-slide .howwedo-slide-content {
    padding: 0 25px;
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
}
section.section-howwedo .howwedo-slider .howwedo-slide .howwedo-slide-content .howwedo-slide-content-title {
    color: #0e59bc;
    font-family: Poppins;
    font-size: 26px;
    font-weight: 400;
    font-style: normal;
    letter-spacing: normal;
    line-height: normal;
    text-align: center;
    margin-bottom: 10px;
}
section.section-howwedo .howwedo-slider .howwedo-slide .howwedo-slide-content .howwedo-slide-content-description {
    color: #161719;
    font-family: Poppins;
    font-size: 16px;
    font-weight: 400;
    font-style: normal;
    letter-spacing: normal;
    line-height: 20px;
    text-align: center;
}
section.section-howwedo .howwedo-slider button.slick-arrow {
    border: 0;
    background-color: transparent;
    position: absolute;
    top: 395px;
    width: 40px;
    height: 40px;
    overflow: hidden;
    text-indent: 1000px;
    background-position: center;
    background-repeat: no-repeat;
}
section.section-howwedo .howwedo-slider button.slick-prev.slick-arrow {
    left: -10px;
    background-image: url(images/arrow-back.svg);
}
section.section-howwedo .howwedo-slider button.slick-next.slick-arrow {
    right: -10px;
    background-image: url(images/arrow-next.svg);
}

@media (max-width: 1740px) {
    section.section-service-banner .banner__container {
        padding-top: 240px;
        padding-bottom: 270px;
    }
    section.section-service-banner .banner__container .banner__container-back-figure {
        height: 225px;
    }
    section.section-service-banner .banner__container h1.banner__container-title {
        font-size: 75px;
        margin-bottom: 10px;
    }
    section.section-service-banner .banner__container h3.banner__container-description {
        font-size: 22px;
        letter-spacing: 0.48px;
        line-height: 28px;
        margin-bottom: 30px;
    }
    section.section-service-banner .service_preview .service_preview-content .service_preview--desktop {
        width: 1025px;
        height: 740px;
    }
    section.section-service-banner .service_preview .service_preview-content .service_preview--mobile {
        width: 340px;
        height: 600px;
        margin-top: 106px;
        margin-left: -75px;
    }

    section.section-service-about {
        padding-top: 80px;
        padding-bottom: 90px;
    }
    section.section-service-about .about__content .about__container-title {
        font-size: 46px;
        line-height: 46px;
        margin-bottom: 15px;
    }
    section.section-service-about .about__content .about__container-description {
        font-size: 17px;
        letter-spacing: 0.18px;
        line-height: 28px;
    }

    section.section-services.service-services.service-website-services {
        padding-top: 90px;
        padding-bottom: 70px;
    }

    section.section-service-portfolio {
        padding-top: 80px;
    }
    section.section-service-portfolio .section__head {
        margin-bottom: 55px;
    }
    section.section-service-portfolio .section__head .section__head--title {
        font-size: 46px;
        line-height: 46px;
    }
    section.section-service-portfolio .section__head .section__head--description {
        font-size: 17px;
    }

    section.section-service-portfolio .portfolio-slider .portfolio-slide {
        width: 850px;
        padding: 10px 15px;
    }
    section.section-service-portfolio .portfolio-slider .portfolio-slide .portfolio-slide-content .portfolio-slide-image {
        height: 545px;
    }

    section.section-expertize {
        padding-top: 23px;
        padding-bottom: 80px;
    }
    section.section-expertize .section__head .section__head--title {
        font-size: 46px;
        line-height: 46px;
        margin-bottom: 45px;
    }
    section.section-expertize .expertize-slider .expertize-slide .expertize-slide-content {
        padding: 0px 34px;
    }
    section.section-expertize .expertize-slider .expertize-slide .expertize-slide-content .expertize-slide-image {
        min-height: 80px;
        margin-bottom: 12px;
    }
    section.section-expertize .expertize-slider .expertize-slide .expertize-slide-content .expertize-slide-image img {
        transform: scale(0.9);
    }

    section.section-howwedo .section__head {
        padding-bottom: 160px;
    }
    section.section-howwedo .section__head--title {
        font-size: 46px;
        line-height: 46px;
    }
    section.section-howwedo .howwedo .howwedo-tab-imgs {
        margin-top: -150px;
        position: relative;
        width: 850px;
        height: 725px;
        overflow: hidden;
    }
    section.section-howwedo .howwedo .howwedo-tab-links {
        width: 400px;
        margin-left: 160px;
        padding-top: 75px;
    }
    section.section-howwedo .howwedo .howwedo-tab-links .howwedo-tab-content {
        margin-bottom: 20px;
        padding: 0px 32px;
    }
    section.section-howwedo .howwedo .howwedo-tab-links .howwedo-tab-content:before {
        width: 260px;
        top: 17px;
    }
    section.section-howwedo .howwedo .howwedo-tab-links .howwedo-tab-content a.howwedo-tab-content-title {
        font-size: 24px;
        line-height: 26px;
    }
    section.section-howwedo .howwedo .howwedo-tab-links .howwedo-tab-content .howwedo-tab-content-description {
        font-size: 13px;
        line-height: 18px;
    }
}
@media (max-width: 1600px) {
    section.section-service-banner .banner__container {
        padding-top: 200px;
        padding-bottom: 240px;
    }
    section.section-service-banner .banner__container .banner__container-back-figure {
        height: 200px;
    }
    section.section-service-banner .banner__container h1.banner__container-title {
        font-size: 70px;
        margin-bottom: 10px;
    }
    section.section-service-banner .banner__container h3.banner__container-description {
        font-size: 20px;
        letter-spacing: 0.48px;
        line-height: 26px;
        margin-bottom: 30px;
    }

    section.section-service-banner .service_preview {
        margin-top: -150px;
    }
    section.section-service-banner .service_preview .service_preview-content .service_preview--desktop {
        width: 975px;
        height: 700px;
    }
    section.section-service-banner .service_preview .service_preview-content .service_preview--mobile {
        width: 320px;
        height: 570px;
        margin-top: 101px;
        margin-left: -75px;
    }
    section.section-service-about {
        padding-top: 70px;
        padding-bottom: 80px;
    }
    section.section-service-about .about__content .about__container-title {
        font-size: 42px;
        line-height: 42px;
        margin-bottom: 12px;
    }
    section.section-service-about .about__content .about__container-description {
        font-size: 16px;
        letter-spacing: 0.18px;
        line-height: 26px;
    }

    section.section-services.service-services.service-website-services {
        padding-top: 80px;
        padding-bottom: 60px;
    }

    section.section-service-portfolio {
        padding-top: 70px;
    }
    section.section-service-portfolio .section__head {
        margin-bottom: 50px;
    }
    section.section-service-portfolio .section__head .section__head--title {
        font-size: 42px;
        line-height: 42px;
    }
    section.section-service-portfolio .section__head .section__head--description {
        font-size: 16px;
    }
    section.section-service-portfolio .portfolio-slider .portfolio-slide {
        width: 810px;
        padding: 10px 12px;
    }
    section.section-service-portfolio .portfolio-slider .portfolio-slide .portfolio-slide-content .portfolio-slide-image {
        height: 520px;
    }

    section.section-expertize {
        padding-top: 20px;
        padding-bottom: 75px;
    }
    section.section-expertize .section__head .section__head--title {
        font-size: 42px;
        line-height: 42px;
        margin-bottom: 40px;
    }
    section.section-expertize .expertize-slider .expertize-slide .expertize-slide-content {
        padding: 0px 23px;
    }
    section.section-expertize .expertize-slider .expertize-slide .expertize-slide-content .expertize-slide-image {
        min-height: 70px;
        margin-bottom: 10px;
    }
    section.section-expertize .expertize-slider .expertize-slide .expertize-slide-content .expertize-slide-image img {
        transform: scale(0.8);
    }
    section.section-howwedo .howwedo .howwedo-tab-imgs {
        margin-top: -130px;
        position: relative;
        width: 850px;
        height: 710px;
        overflow: hidden;
    }
    section.section-howwedo .section__head--title {
        font-size: 42px;
        line-height: 42px;
    }
    section.section-howwedo .howwedo .howwedo-tab-links {
        width: 400px;
        margin-left: 130px;
        padding-top: 70px;
    }
    section.section-howwedo .howwedo .howwedo-tab-links .howwedo-tab-content {
        margin-bottom: 20px;
        padding: 0px 30px;
    }
    section.section-howwedo .howwedo .howwedo-tab-links .howwedo-tab-content:before {
        width: 250px;
        top: 17px;
    }
}
@media (max-width: 1440px) {
    section.section-service-banner .banner__container {
        padding-top: 185px;
        padding-bottom: 220px;
    }
    section.section-service-banner .banner__container .banner__container-back-figure {
        height: 175px;
    }
    section.section-service-banner .banner__container h1.banner__container-title {
        font-size: 65px;
        margin-bottom: 10px;
    }
    section.section-service-banner .banner__container h3.banner__container-description {
        font-size: 18px;
        letter-spacing: 0.48px;
        line-height: 24px;
        margin-bottom: 25px;
    }
    section.section-service-banner .service_preview {
        margin-top: -140px;
    }
    section.section-service-banner .service_preview .service_preview-content .service_preview--desktop {
        width: 925px;
        height: 660px;
    }
    section.section-service-banner .service_preview .service_preview-content .service_preview--mobile {
        width: 300px;
        height: 540px;
        margin-top: 90px;
        margin-left: -75px;
    }
    section.section-service-about {
        padding-top: 60px;
        padding-bottom: 70px;
    }
    section.section-service-about .about__content .about__container-title {
        font-size: 38px;
        line-height: 38px;
        margin-bottom: 10px;
    }
    section.section-service-about .about__content .about__container-description {
        font-size: 15px;
        letter-spacing: 0.18px;
        line-height: 24px;
    }

    section.section-services.service-services.service-website-services {
        padding-top: 70px;
        padding-bottom: 60px;
    }

    section.section-service-portfolio {
        padding-top: 60px;
    }
    section.section-service-portfolio .section__head {
        margin-bottom: 40px;
    }
    section.section-service-portfolio .section__head .section__head--title {
        font-size: 38px;
        line-height: 38px;
    }
    section.section-service-portfolio .section__head .section__head--description {
        font-size: 15px;
    }
    section.section-service-portfolio .portfolio-slider .portfolio-slide {
        width: 770px;
        padding: 10px 12px;
    }
    section.section-service-portfolio .portfolio-slider .portfolio-slide .portfolio-slide-content .portfolio-slide-image {
        height: 490px;
    }

    section.section-expertize {
        padding-top: 15px;
        padding-bottom: 65px;
    }
    section.section-expertize .section__head .section__head--title {
        font-size: 38px;
        line-height: 38px;
        margin-bottom: 35px;
    }
    section.section-expertize .expertize-slider .expertize-slide .expertize-slide-content {
        padding: 0px 17px;
    }
    section.section-expertize .expertize-slider .expertize-slide .expertize-slide-content .expertize-slide-image {
        min-height: 65px;
        margin-bottom: 10px;
    }
    section.section-expertize .expertize-slider .expertize-slide .expertize-slide-content .expertize-slide-image img {
        transform: scale(0.75);
    }

    section.section-howwedo .section__head {
        padding-bottom: 125px;
    }
    section.section-howwedo .section__head--title {
        font-size: 38px;
        line-height: 38px;
    }
    section.section-howwedo .howwedo .howwedo-tab-imgs {
        margin-top: -100px;
        width: 850px;
        height: 680px;
    }
    section.section-howwedo .howwedo .howwedo-tab-links {
        width: 400px;
        margin-left: 100px;
        padding-top: 70px;
    }
    section.section-howwedo .howwedo .howwedo-tab-links .howwedo-tab-content {
        margin-bottom: 20px;
        padding: 0px 25px;
    }
    section.section-howwedo .howwedo .howwedo-tab-links .howwedo-tab-content:before {
        width: 220px;
        top: 16px;
    }
    section.section-howwedo .howwedo .howwedo-tab-links .howwedo-tab-content a.howwedo-tab-content-title {
        font-size: 22px;
        line-height: 24px;
    }
    section.section-howwedo .howwedo .howwedo-tab-links .howwedo-tab-content .howwedo-tab-content-description {
        font-size: 13px;
        line-height: 18px;
    }
}
@media (max-width: 1280px) {
    section.section-service-banner .banner__container {
        padding-top: 170px;
        padding-bottom: 200px;
    }
    section.section-service-banner .banner__container .banner__container-back-figure {
        height: 160px;
    }
    section.section-service-banner .banner__container h1.banner__container-title {
        font-size: 60px;
        margin-bottom: 5px;
    }
    section.section-service-banner .banner__container h3.banner__container-description {
        font-size: 17px;
        letter-spacing: 0.48px;
        line-height: 22px;
        margin-bottom: 25px;
    }
    section.section-service-banner .service_preview {
        margin-top: -130px;
    }
    section.section-service-banner .service_preview .service_preview-content .service_preview--desktop {
        width: 875px;
        height: 625px;
    }
    section.section-service-banner .service_preview .service_preview-content .service_preview--mobile {
        width: 285px;
        height: 510px;
        margin-top: 85px;
        margin-left: -80px;
    }
    section.section-service-about {
        padding-top: 55px;
        padding-bottom: 60px;
    }
    section.section-service-about .about__content .about__container-title {
        font-size: 36px;
        line-height: 36px;
        margin-bottom: 10px;
    }
    section.section-service-about .about__content .about__container-description {
        font-size: 14px;
        letter-spacing: 0.18px;
        line-height: 22px;
    }

    section.section-services.service-services.service-website-services {
        padding-top: 65px;
        padding-bottom: 55px;
    }

    section.section-service-portfolio {
        padding-top: 55px;
    }
    section.section-service-portfolio .section__head {
        margin-bottom: 35px;
    }
    section.section-service-portfolio .section__head .section__head--title {
        font-size: 36px;
        line-height: 36px;
    }
    section.section-service-portfolio .section__head .section__head--description {
        font-size: 15px;
    }
    section.section-service-portfolio .portfolio-slider .portfolio-slide {
        width: 750px;
        padding: 10px 10px;
    }
    section.section-service-portfolio .portfolio-slider .portfolio-slide .portfolio-slide-content .portfolio-slide-image {
        height: 470px;
    }

    section.section-expertize {
        padding-top: 15px;
        padding-bottom: 55px;
    }
    section.section-expertize .section__head .section__head--title {
        font-size: 36px;
        line-height: 36px;
        margin-bottom: 30px;
    }
    section.section-expertize .expertize-slider .expertize-slide .expertize-slide-content {
        padding: 0px 20px;
    }
    section.section-expertize .expertize-slider .expertize-slide .expertize-slide-content .expertize-slide-image {
        min-height: 60px;
        margin-bottom: 10px;
    }
    section.section-expertize .expertize-slider .expertize-slide .expertize-slide-content .expertize-slide-image img {
        transform: scale(0.75);
    }
    section.section-howwedo .section__head {
        padding-bottom: 100px;
    }
    section.section-howwedo .section__head--title {
        font-size: 36px;
        line-height: 36px;
    }
    section.section-howwedo .howwedo .howwedo-tab-imgs {
        margin-top: -75px;
        width: 850px;
        height: 625px;
    }
}
@media (max-width: 1200px) {
    section.section-service-banner .banner__container {
        padding-top: 160px;
        padding-bottom: 185px;
    }
    section.section-service-banner .banner__container .banner__container-back-figure {
        height: 150px;
    }
    section.section-service-banner .banner__container h1.banner__container-title {
        font-size: 55px;
        margin-bottom: 5px;
    }
    section.section-service-banner .banner__container h3.banner__container-description {
        font-size: 16px;
        letter-spacing: 0.48px;
        line-height: 20px;
        margin-bottom: 25px;
    }
    section.section-service-banner .service_preview {
        margin-top: -125px;
    }
    section.section-service-banner .service_preview .service_preview-content .service_preview--desktop {
        width: 830px;
        height: 590px;
    }
    section.section-service-banner .service_preview .service_preview-content .service_preview--mobile {
        width: 270px;
        height: 485px;
        margin-top: 80px;
        margin-left: -80px;
    }
    section.section-service-about {
        padding-top: 50px;
        padding-bottom: 60px;
    }
    section.section-service-about .about__content .about__container-title {
        font-size: 34px;
        line-height: 34px;
        margin-bottom: 10px;
    }
    section.section-service-about .about__content .about__container-description {
        font-size: 14px;
        letter-spacing: 0.18px;
        line-height: 22px;
    }

    section.section-services.service-services.service-website-services {
        padding-top: 60px;
        padding-bottom: 50px;
    }

    section.section-service-portfolio {
        padding-top: 50px;
    }
    section.section-service-portfolio .section__head {
        margin-bottom: 30px;
    }
    section.section-service-portfolio .section__head .section__head--title {
        font-size: 32px;
        line-height: 32px;
    }
    section.section-service-portfolio .section__head .section__head--description {
        font-size: 14px;
    }
    section.section-service-portfolio .portfolio-slider .portfolio-slide {
        width: 710px;
        padding: 10px;
    }
    section.section-service-portfolio .portfolio-slider .portfolio-slide .portfolio-slide-content .portfolio-slide-image {
        height: 450px;
    }

    section.section-expertize {
        padding-top: 10px;
        padding-bottom: 45px;
    }
    section.section-expertize .section__head .section__head--title {
        font-size: 32px;
        line-height: 32px;
        margin-bottom: 30px;
    }
    section.section-expertize .expertize-slider .expertize-slide .expertize-slide-content {
        padding: 0px 10px;
    }
    section.section-expertize .expertize-slider .expertize-slide .expertize-slide-content .expertize-slide-image {
        min-height: 50px;
        margin-bottom: 5px;
    }
    section.section-expertize .expertize-slider .expertize-slide .expertize-slide-content .expertize-slide-image img {
        transform: scale(0.7);
    }
    section.section-howwedo .section__head {
        padding-bottom: 65px;
    }
    section.section-howwedo .section__head--title {
        font-size: 32px;
        line-height: 32px;
    }
    section.section-howwedo .howwedo .howwedo-tab-imgs {
        margin-top: -50px;
        width: 850px;
        height: 540px;
    }
    section.section-howwedo .howwedo .howwedo-tab-links {
        width: 400px;
        margin-left: 60px;
        padding-top: 60px;
    }
    section.section-howwedo .howwedo .howwedo-tab-links .howwedo-tab-content {
        margin-bottom: 15px;
        padding: 0px 20px;
    }
    section.section-howwedo .howwedo .howwedo-tab-links .howwedo-tab-content:before {
        width: 150px;
        top: 16px;
    }
    section.section-howwedo .howwedo .howwedo-tab-links .howwedo-tab-content a.howwedo-tab-content-title {
        font-size: 20px;
        line-height: 22px;
    }
    section.section-howwedo .howwedo .howwedo-tab-links .howwedo-tab-content .howwedo-tab-content-description {
        font-size: 12px;
        line-height: 16px;
    }
}
@media (max-width: 992px) {
    section.section-service-banner .banner__container {
        padding-top: 150px;
        padding-bottom: 150px;
    }
    section.section-service-banner .banner__container .banner__container-back-figure {
        height: 125px;
    }
    section.section-service-banner .banner__container h1.banner__container-title {
        font-size: 48px;
        margin-bottom: 0px;
    }
    section.section-service-banner .banner__container h3.banner__container-description {
        font-size: 15px;
        letter-spacing: 0.48px;
        line-height: 18px;
        margin-bottom: 25px;
    }
    section.section-service-banner .service_preview {
        margin-top: -100px;
    }
    section.section-service-banner .service_preview .service_preview-content .service_preview--desktop {
        width: 640px;
        height: 450px;
    }
    section.section-service-banner .service_preview .service_preview-content .service_preview--mobile {
        width: 200px;
        height: 370px;
        margin-top: 60px;
        margin-left: -160px;
    }
    section.section-service-about {
        padding-top: 45px;
        padding-bottom: 55px;
    }
    section.section-service-about .about__content .about__container-title {
        font-size: 32px;
        line-height: 32px;
        margin-bottom: 10px;
    }
    section.section-service-about .about__content .about__container-description {
        font-size: 14px;
        letter-spacing: 0.18px;
        line-height: 22px;
    }
    section.section-service-portfolio {
        padding-top: 45px;
    }
    section.section-service-portfolio .section__head {
        margin-bottom: 25px;
    }
    section.section-service-portfolio .section__head .section__head--title {
        font-size: 30px;
        line-height: 30px;
    }
    section.section-service-portfolio .section__head .section__head--description {
        font-size: 14px;
    }
    section.section-service-portfolio .portfolio-slider .portfolio-slide {
        width: 560px;
        padding: 7px;
    }
    section.section-service-portfolio .portfolio-slider .portfolio-slide .portfolio-slide-content .portfolio-slide-image {
        height: 360px;
    }
    section.section-expertize {
        padding-top: 10px;
        padding-bottom: 40px;
    }
    section.section-expertize .section__head .section__head--title {
        font-size: 30px;
        line-height: 30px;
        margin-bottom: 25px;
    }
    section.section-howwedo .howwedo .howwedo-tabs {
        display: none;
    }
    section.section-howwedo .howwedo-slider {
        display: block;
    }
}
@media (max-width: 767px) {
    section.section-service-banner .banner__container {
        padding-top: 140px;
        padding-bottom: 140px;
    }
    section.section-service-banner .banner__container .banner__container-back-figure {
        height: 100px;
    }
    section.section-service-banner .banner__container h1.banner__container-title {
        font-size: 42px;
        margin-bottom: 5px;
    }
    section.section-service-banner .banner__container h3.banner__container-description {
        font-size: 14px;
        letter-spacing: 0.48px;
        line-height: 16px;
        margin-bottom: 25px;
    }
    section.section-service-banner .service_preview .service_preview-content .service_preview--desktop {
        width: 475px;
        height: 340px;
    }
    section.section-service-banner .service_preview .service_preview-content .service_preview--mobile {
        width: 150px;
        height: 275px;
        margin-top: 50px;
        margin-left: -120px;
    }
    section.section-service-about .about__content .about__container-title {
        font-size: 30px;
        line-height: 30px;
        margin-bottom: 10px;
    }
    section.section-services.service-services.service-website-services {
        padding-top: 50px;
        padding-bottom: 50px;
    }
    section.section-howwedo .section__head--title {
        font-size: 30px;
        line-height: 30px;
    }
    section.section-howwedo .howwedo-slider {
        margin-top: -40px;
        margin-bottom: 30px;
    }
    section.section-howwedo .howwedo-slider .howwedo-slide .howwedo-slide-content .howwedo-slide-content-title {
        font-size: 24px;
        margin-bottom: 10px;
    }
    section.section-howwedo .howwedo-slider .howwedo-slide .howwedo-slide-content .howwedo-slide-content-description {
        font-size: 15px;
        line-height: 20px;
    }
    section.section-service-portfolio {
        padding-top: 40px;
    }
    section.section-service-portfolio .section__head {
        margin-bottom: 20px;
    }
    section.section-service-portfolio .section__head .section__head--description {
        font-size: 14px;
        margin-top: 8px;
    }
    section.section-service-portfolio .portfolio-slider .portfolio-slide {
        width: 450px;
        padding: 7px;
    }
    section.section-service-portfolio .portfolio-slider .portfolio-slide .portfolio-slide-content .portfolio-slide-image {
        height: 320px;
    }
    section.section-expertize {
        padding-top: 10px;
        padding-bottom: 35px;
    }
    section.section-expertize .section__head .section__head--title {
        font-size: 28px;
        line-height: 28px;
        margin-bottom: 20px;
    }
}
@media (max-width: 600px) {
    section.section-service-banner .banner__container {
        position: relative;
        padding-top: 125px;
        padding-bottom: 100px;
        text-align: center;
        padding-left: 30px;
        padding-right: 30px;
    }
    section.section-service-banner .banner__container .banner__container-back-figure {
        height: 40px;
    }
    section.section-service-banner .banner__container h1.banner__container-title {
        font-size: 30px;
        margin-bottom: 7px;
    }
    section.section-service-banner .banner__container h3.banner__container-description {
        font-size: 14px;
        letter-spacing: 0.28px;
        margin-bottom: 20px;
    }
    section.section-service-banner .service_preview {
        margin-top: -60px;
    }
    section.section-service-banner .service_preview .service_preview-content .service_preview--desktop {
        width: 275px;
        height: 200px;
    }
    section.section-service-banner .service_preview .service_preview-content .service_preview--mobile {
        width: 90px;
        height: 160px;
        margin-top: 30px;
        margin-left: -30px;
    }
    section.section-service-about {
        padding-top: 45px;
        padding-bottom: 45px;
    }
    section.section-service-about .about__content .about__container-title {
        font-size: 20px;
        line-height: 20px;
    }
    section.section-service-about .about__content .about__container-description {
        font-size: 15px;
        letter-spacing: 0.15px;
        line-height: 24px;
    }
    section.section-services.service-services.service-website-services {
        padding-top: 40px;
        padding-bottom: 80px;
    }
    section.section-services.service-services.service-website-services .services__container .service .service-icon {
        width: 45px;
        height: 43px;
        margin-bottom: 15px;
        background-size: contain;
    }
    section.section-service-portfolio {
        padding-top: 30px;
    }
    section.section-service-portfolio .section__head {
        margin-bottom: 0px;
    }
    section.section-service-portfolio .section__head .section__head--title {
        font-size: 30px;
        line-height: 32px;
    }
    section.section-service-portfolio .section__head .section__head--description {
        font-size: 18px;
        padding: 0 10px;
    }
    section.section-service-portfolio .portfolio-slider .portfolio-slide {
        width: 330px;
        padding: 10px 5px;
    }
    section.section-service-portfolio .portfolio-slider .portfolio-slide .portfolio-slide-content .portfolio-slide-image {
        height: 220px;
    }
    section.section-expertize .section__head .section__head--title {
        font-size: 30px;
        line-height: 32px;
        margin-bottom: 20px;
    }
    section.section-expertize .expertize-slider .expertize-slide .expertize-slide-content {
        padding: 0px 15px;
    }
    section.section-expertize .expertize-slider .expertize-slide .expertize-slide-content .expertize-slide-image img {
        transform: scale(0.8);
    }
    section.section-howwedo .howwedo-slider .howwedo-slide .howwedo-slide-image {
        margin-bottom: 30px;
        display: flex;
        height: 345px;
        align-items: center;
        justify-content: center;
    }
    section.section-howwedo .howwedo-slider button.slick-arrow {
        top: 372px;
    }
    section.section-howwedo .howwedo-slider .howwedo-slide .howwedo-slide-content .howwedo-slide-content-title {
        font-size: 22px;
        margin-bottom: 10px;
    }
    section.section-howwedo .howwedo-slider .howwedo-slide .howwedo-slide-content .howwedo-slide-content-description {
        font-size: 14px;
        line-height: 20px;
    }
}


/*
    App Design
*/
@media (max-width: 1740px) {
    section.section-service-banner .service_preview.service_preview-app {
        margin-top: -150px;
    }
    section.section-service-banner .service_preview.service_preview-app .service_preview-content .service_preview--image {
        width: 320px;
        height: 570px;
        margin: 0 18px;
    }
    section.section-service-about.section-service-app-about {
        padding-top: 100px;
        padding-bottom: 90px;
    }
    section.section-app-revials .app_revial .app_revial--img {
        border-radius: 24px;
        width: 500px;
        padding: 10px;
        padding-top: 30px;
        height: 100vh;
        transform: translateY(135px);
    }
    section.section-app-revials .app_revial .app_revial--content.app_revial--content-right {
        margin-left: 80px;
    }
    section.section-app-revials .app_revial .app_revial--content.app_revial--content-left {
        margin-right: 80px;
    }
    section.section-app-revials .app_revial .app_revial--content {
        width: 450px;
    }
    section.section-app-revials .app_revial .app_revial--content .app_revial--content-title {
        font-size: 36px;
        line-height: 50px;
        margin-bottom: 5px;
        line-height: 42px;
    }
    section.section-app-revials .app_revial .app_revial--content .app_revial--content-description {
        font-size: 17px;
    }
    section.section-service-portfolio.section-service-app-portfolio .portfolio-slider .portfolio-slide {
        width: 370px;
        padding: 10px 45px;
    }
    section.section-service-portfolio.section-service-app-portfolio .portfolio-slider .portfolio-slide .portfolio-slide-content .portfolio-slide-image {
        border-radius: 25px;
        height: 590px;
    }
    section.section-services.service-services.service-app-services .section__head {
        margin-bottom: 45px;
    }
    section.section-services.service-services.service-app-services .section__head .section__head--title {
        font-size: 70px;
        line-height: 80px;
        padding-left: 80px;
    }
    section.section-services.service-services.service-app-services .services__container .service .service-icon {
        width: 57px;
        height: 57px;
        margin-bottom: 15px;
    }
}
@media (max-width: 1600px) {
    section.section-service-banner .service_preview.service_preview-app {
        margin-top: -145px;
    }
    section.section-service-banner .service_preview.service_preview-app .service_preview-content .service_preview--image {
        width: 290px;
        height: 520px;
        margin: 0 15px;
    }
    section.section-service-about.section-service-app-about {
        padding-top: 80px;
        padding-bottom: 80px;
    }
    section.section-service-about.section-service-app-about .about__content {
        padding: 0px;
    }
    section.section-service-portfolio.section-service-app-portfolio .portfolio-slider .portfolio-slide {
        width: 325px;
        padding: 10px 40px;
    }
    section.section-service-portfolio.section-service-app-portfolio .portfolio-slider .portfolio-slide .portfolio-slide-content .portfolio-slide-image {
        border-radius: 20px;
        height: 530px;
    }
    section.section-services.service-services.service-app-services .section__head {
        margin-bottom: 40px;
    }
    section.section-services.service-services.service-app-services .section__head .section__head--title {
        font-size: 65px;
        line-height: 70px;
        padding-left: 75px;
    }
    section.section-app-revials .app_revial .app_revial--img {
        border-radius: 24px;
        width: 450px;
        padding: 10px;
        padding-top: 30px;
        height: 100vh;
        transform: translateY(135px);
    }
    section.section-app-revials .app_revial .app_revial--content.app_revial--content-right {
        margin-left: 40px;
    }
    section.section-app-revials .app_revial .app_revial--content.app_revial--content-left {
        margin-right: 40px;
    }
    section.section-app-revials .app_revial .app_revial--content {
        width: 425px;
        padding: 0 20px;
    }
    section.section-app-revials .app_revial .app_revial--content .app_revial--content-title {
        font-size: 32px;
        line-height: 50px;
        margin-bottom: 5px;
        line-height: 40px;
    }
    section.section-app-revials .app_revial .app_revial--content .app_revial--content-description {
        font-size: 16px;
    }
}
@media (max-width: 1440px) {
    section.section-service-banner .service_preview.service_preview-app {
        margin-top: -140px;
    }
    section.section-service-banner .service_preview.service_preview-app .service_preview-content .service_preview--image {
        width: 260px;
        height: 470px;
        margin: 0 15px;
    }
    section.section-service-about.section-service-app-about {
        padding-top: 70px;
        padding-bottom: 70px;
    }
    section.section-service-portfolio.section-service-app-portfolio .portfolio-slider .portfolio-slide {
        width: 300px;
        padding: 10px 35px;
    }
    section.section-service-portfolio.section-service-app-portfolio .portfolio-slider .portfolio-slide .portfolio-slide-content .portfolio-slide-image {
        border-radius: 15px;
        height: 475px;
    }
    section.section-services.service-services.service-app-services .section__head .section__head--title {
        font-size: 60px;
        line-height: 65px;
        padding-left: 30px;
        padding-right: 90px;
    }
    section.section-services.service-services.service-app-services .services__container .service .service-icon {
        width: 55px;
        height: 55px;
        margin-bottom: 15px;
    }
    section.section-app-revials .app_revial .app_revial--img {
        border-radius: 24px;
        width: 400px;
        padding: 10px;
        padding-top: 28px;
        height: 100vh;
        transform: translateY(135px);
    }
    section.section-app-revials .app_revial .app_revial--content.app_revial--content-left {
        margin-right: 20px;
    }
    section.section-app-revials .app_revial .app_revial--content.app_revial--content-right {
        margin-left: 20px;
    }
    section.section-app-revials .app_revial .app_revial--content {
        width: 400px;
        padding: 0 20px;
    }
    section.section-app-revials .app_revial .app_revial--content .app_revial--content-title {
        font-size: 28px;
        line-height: 50px;
        margin-bottom: 5px;
        line-height: 36px;
    }
    section.section-app-revials .app_revial .app_revial--content .app_revial--content-description {
        font-size: 15px;
    }
}
@media (max-width: 1200px) {
    section.section-service-banner .service_preview.service_preview-app {
        margin-top: -110px;
    }
    section.section-service-banner .service_preview.service_preview-app .service_preview-content .service_preview--image {
        width: 235px;
        height: 425px;
        margin: 0 10px;
    }
    section.section-service-about.section-service-app-about {
        padding-top: 65px;
        padding-bottom: 65px;
    }
    section.section-service-portfolio.section-service-app-portfolio .portfolio-slider .portfolio-slide {
        width: 270px;
        padding: 10px 30px;
    }
    section.section-service-portfolio.section-service-app-portfolio .portfolio-slider .portfolio-slide .portfolio-slide-content .portfolio-slide-image {
        border-radius: 15px;
        height: 450px;
    }
    section.section-services.service-services.service-app-services .section__head {
        margin-bottom: 30px;
    }
    section.section-services.service-services.service-app-services .section__head .section__head--title {
        font-size: 55px;
        line-height: 60px;
        padding-left: 25px;
        padding-right: 0px;
    }
    section.section-services.service-services.service-app-services .services__container .service .service-icon {
        width: 52px;
        height: 52px;
        margin-bottom: 15px;
    }
    section.section-app-revials .app_revial .app_revial--img {
        border-radius: 20px;
        width: 375px;
        padding: 10px;
        padding-top: 25px;
        height: 100vh;
        transform: translateY(135px);
    }
    section.section-app-revials .app_revial .app_revial--content.app_revial--content-left {
        margin-right: 10px;
    }
    section.section-app-revials .app_revial .app_revial--content.app_revial--content-right {
        margin-left: 10px;
    }
    section.section-app-revials .app_revial .app_revial--content .app_revial--content-title {
        font-size: 24px;
        line-height: 50px;
        margin-bottom: 5px;
        line-height: 32px;
    }
    section.section-app-revials .app_revial .app_revial--content .app_revial--content-description {
        font-size: 14px;
    }
}
@media (max-width: 992px) {
    section.section-service-banner .service_preview.service_preview-app .service_preview-content .service_preview--image {
        width: 200px;
        height: 350px;
        margin: 0 10px;
    }
    section.section-app-revials .overlay {
        display: none;
    }
    section.section-app-revials .app_revial {
        height: auto;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
    }
    section.section-app-revials .app_revial.app_revial-right .app_revial--content.app_revial--content-left,
    section.section-app-revials .app_revial.app_revial-left .app_revial--content.app_revial--content-right {
        display: none;
    }
    section.section-app-revials .app_revial .app_revial--img {
        border-radius: 0;
        width: 300px;
        padding: 0;
        padding-top: 0;
        height: 600px;
        transform: translateY(75px);
        background: transparent;
    }
    section.section-service-portfolio.section-service-app-portfolio .portfolio-slider .portfolio-slide {
        width: 270px;
        padding: 10px 25px;
    }
    section.section-services.service-services.service-app-services .section__head .section__head--title {
        font-size: 50px;
        line-height: 55px;
        padding-left: 0;
        padding-right: 0px;
    }
    section.section-services.service-services.service-app-services {
        padding-top: 40px;
        padding-bottom: 20px;
    }
    section.section-services .services__container .service {
        padding: 0;
        margin-bottom: 40px;
        max-width: 450px;
        margin-left: auto;
        margin-right: auto;
    }
}
@media (max-width: 767px) {
    section.section-service-banner .service_preview.service_preview-app .service_preview-content .service_preview--image:nth-child(3) {
        display: none;
    }
    section.section-service-portfolio.section-service-app-portfolio .portfolio-slider .portfolio-slide:nth-child(3) {
        display: none;
    }
    section.section-service-portfolio.section-service-app-portfolio .portfolio-slider .portfolio-slide {
        width: 250px;
        padding: 10px 15px;
    }
    section.section-services.service-services.service-app-services .section__head .section__head--title {
        font-size: 46px;
        line-height: 52px;
        padding-left: 0;
        padding-right: 0px;
    }
    section.section-app-revials .app_revial {
        height: auto;
        padding: 45px 0 0;
        display: flex;
        flex-wrap: wrap;
        align-items: normal;
        justify-content: center;
        overflow: hidden;
    }
    section.section-app-revials .app_revial .app_revial--content.app_revial--content-right,
    section.section-app-revials .app_revial .app_revial--content.app_revial--content-left {
        margin: 0;
        padding: 0 15px;
        order: 1;
        text-align: center;
        max-width: 540px;
    }
    section.section-app-revials .app_revial .app_revial--content .app_revial--content-title {
        font-size: 28px;
        line-height: 50px;
        margin-bottom: 5px;
        line-height: 40px;
    }
    section.section-app-revials .app_revial .app_revial--content .app_revial--content-description {
        font-size: 15px;
        padding: 0 15px;
    }
    section.section-app-revials .app_revial .app_revial--content {
        width: 100%;
        padding: 0 20px;
    }
    section.section-app-revials .app_revial .app_revial--img {
        border-radius: 20px;
        width: 250px;
        padding: 0;
        padding-top: 0;
        height: 500px;
        transform: translateY(45px);
        order: 2;
        overflow: hidden;
    }
}
@media (max-width: 600px) {
    section.section-service-about.section-service-app-about {
        padding-top: 45px;
        padding-bottom: 55px;
    }
    section.section-service-about .about__content .about__container-title {
        font-size: 28px;
        line-height: 38px;
    }
    section.section-service-about .about__content .about__container-description {
        padding: 0 15px;
    }
    section.section-service-banner .service_preview.service_preview-app {
        margin-top: -60px;
    }
    section.section-service-banner .service_preview.service_preview-app .service_preview-content {
        display: flex;
        justify-content: center;
        width: auto;
        margin-left: -13px;
        margin-right: -13px;
    }
    section.section-service-banner .service_preview.service_preview-app .service_preview-content .service_preview--image {
        width: 156px;
        height: 275px;
        margin: 0 13px;
    }
    section.section-service-banner .service_preview.service_preview-app .service_preview-content .service_preview--image:nth-child(3) {
        display: none;
    }
    section.section-service-portfolio.section-service-app-portfolio {
        padding-top: 85px;
    }
    section.section-service-portfolio.section-service-app-portfolio .section__head {
        margin-bottom: 30px;
    }
    section.section-service-portfolio.section-service-app-portfolio .section__head .section__head--title {
        font-size: 30px;
        line-height: 36px;
        margin-bottom: 8px;
    }
    section.section-service-portfolio.section-service-app-portfolio .section__head .section__head--description {
        font-size: 15px;
        line-height: 24px;
        padding: 0 10px;
        margin-top: 0;
    }
    section.section-service-portfolio.section-service-app-portfolio .portfolio-slider {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        padding: 0 15px;
    }
    section.section-service-portfolio.section-service-app-portfolio .portfolio-slider .portfolio-slide:nth-child(3) {
        display: none;
    }
    section.section-service-portfolio.section-service-app-portfolio .portfolio-slider .portfolio-slide {
        width: 50%;
        padding: 10px 11px;
    }
    section.section-service-portfolio.section-service-app-portfolio .portfolio-slider .portfolio-slide .portfolio-slide-content .portfolio-slide-image {
        border-radius: 15px;
        height: 320px;
    }
    section.section-services.service-services.service-app-services {
        padding-top: 20px;
        padding-bottom: 10px;
    }
    section.section-services.service-services.service-app-services .section__head {
        margin-bottom: 42px;
    }
    section.section-services.service-services.service-app-services .section__head .section__head--title {
        font-size: 34px;
        line-height: 40px;
        padding-left: 0;
        padding-right: 0px;
    }
    section.section-services.service-services.service-app-services .services__container .service .service-icon {
        width: 58px;
        height: 58px;
        margin-bottom: 15px;
    }
    section.section-services.service-services.service-app-services .services__container .service .service-title,
    section.section-services.service-services.service-app-services .services__container .service .service-title a {
        font-size: 20px;
        line-height: 26px;
        margin-bottom: 10px;
    }
    section.section-services.service-services.service-app-services .services__container .service .service-content {
        padding: 0 15px;
    }
    section.section-service-about.section-service-app-about {
        padding-top: 45px;
        padding-bottom: 55px;
    }
    section.section-service-about .about__content .about__container-title {
        font-size: 28px;
        line-height: 38px;
    }
    section.section-service-banner .service_preview.service_preview-app {
        margin-top: -60px;
    }
    section.section-service-banner .service_preview.service_preview-app .service_preview-content {
        display: flex;
        justify-content: center;
        width: auto;
        margin-left: -13px;
        margin-right: -13px;
    }
    section.section-service-banner .service_preview.service_preview-app .service_preview-content .service_preview--image {
        width: 156px;
        height: 275px;
        margin: 0 13px;
    }
    section.section-service-banner .service_preview.service_preview-app .service_preview-content .service_preview--image:nth-child(3) {
        display: none;
    }
    section.section-app-revials .overlay {
        display: none;
    }
    section.section-app-revials .app_revial {
        height: auto;
        padding: 45px 0 0;
        display: flex;
        flex-wrap: wrap;
        align-items: normal;
        justify-content: center;
        overflow: hidden;
    }
    section.section-app-revials .app_revial .app_revial--content.app_revial--content-right,
    section.section-app-revials .app_revial .app_revial--content.app_revial--content-left {
        margin: 0;
        padding: 0 15px;
        order: 1;
        text-align: center;
    }
    section.section-app-revials .app_revial .app_revial--content .app_revial--content-title {
        font-size: 28px;
        line-height: 50px;
        margin-bottom: 5px;
        line-height: 40px;
    }
    section.section-app-revials .app_revial .app_revial--content .app_revial--content-description {
        font-size: 15px;
        padding: 0 15px;
    }
    section.section-app-revials .app_revial .app_revial--content {
        width: 100%;
        padding: 0 20px;
    }
    section.section-app-revials .app_revial .app_revial--img {
        border-radius: 20px;
        width: 205px;
        padding: 0;
        padding-top: 0;
        height: 410px;
        transform: translateY(45px);
        order: 2;
        overflow: hidden;
    }
}


/*
    Brands 
*/
@media (max-width: 1860px) {
    section.section-branding-brands,
    section.section-print-works {
        padding-top: 50px;
        padding-bottom: 125px;
    }
    section.section-branding-brands .brands-container,
    section.section-print-works .print-works-container {
        width: 1680px;
        padding: 0 15px;
    }
    section.section-branding-brands .brands-container .brands,
    section.section-print-works .print-works-container .print-works {
        width: 950px;
    }
    section.section-branding-brands .brands-container .brands .brand,
    section.section-print-works .print-works-container .print-works .print-work {
        width: 475px;
        height: 380px;
    }
    section.section-branding-brands .brands-container .brands .brand:nth-child(3),
    section.section-branding-brands .brands-container .brands .brand:nth-child(2),
    section.section-print-works .print-works-container .print-works .print-work:nth-child(2),
    section.section-print-works .print-works-container .print-works .print-work:nth-child(3) {
        height: 435px;
    }
    section.section-branding-brands .brands-container .brands-info,
    section.section-print-works .print-works-container .print-works-info {
        width: 700px;
        padding: 0 80px;
    }
    section.section-branding-brands .brands-container .brands-info .brands-info--title,
    section.section-print-works .print-works-container .print-works-info .print-works-info--title {
        font-size: 55px;
        line-height: 60px;
        margin-bottom: 20px;
    }
    section.section-branding-brands .brands-container .brands-info .brands-info--description,
    section.section-print-works .print-works-container .print-works-info .print-works-info--description {
        font-size: 17px;
    }

    section.section-branding-services {
        padding-bottom: 150px;
    }
    section.section-branding-services .branding-services-container {
        width: 1680px;
        padding: 0 15px;
    }
    section.section-branding-services .branding-services-container .branding-services-info {
        width: 720px;
        padding-top: 45px;
        padding-right: 110px;
    }
    section.section-branding-services .branding-services-container .branding-services-info .branding-services-info--title {
        font-size: 55px;
        line-height: 55px;
        margin-bottom: 15px;
    }
    section.section-branding-services .branding-services-container .branding-services-info .branding-services-info--description {
        font-size: 17px;
        margin-bottom: 70px;
    }
    section.section-branding-services .branding-services-container .brand_services .brand_services--col {
        width: 260px;
    }
    section.section-branding-services .branding-services-container .brand_services .brand_services--col .brand_service {
        font-size: 17px;
        line-height: 46px;
    }
    section.section-branding-services .branding-services-container .brand_services .brand_services--col+.brand_services--col {
        margin-left: 70px;
    }
}
@media (max-width: 1740px) {
    section.section-service-banner.section-service-banner-branding .service_preview {
        margin-top: -215px;
    }
    section.section-service-banner.section-service-banner-branding .service_preview .service_preview-slider .service_preview-slide {
        width: 1000px;
        padding: 10px 20px;
    }
    section.section-service-banner.section-service-banner-branding .service_preview .service_preview-slider .service_preview-slide .service_preview-slide-content .service_preview-slide-image {
        height: 630px;
    }
    section.section-service-about.section-service-about-branding .about__container-title {
        font-size: 90px;
        line-height: normal;
    }
    section.section-service-about.section-service-about-branding .about__container-description {
        font-size: 28px;
        line-height: normal;
        max-width: 1000px;
    }
    section.section-services.service-services-branding .services__container .service {
        padding: 70px 50px;
        text-align: center;
    }
    section.section-services.service-services-branding .services__container .service .service-icon::before {
        font-size: 95px;
        position: absolute;
        top: -45px;
        left: -15px;
        transform: translateX(-100%);
    }
    section.section-branding-brands,
    section.section-print-works {
        padding-top: 50px;
        padding-bottom: 110px;
    }
    section.section-branding-brands .brands-container,
    section.section-print-works .print-works-container {
        width: 1540px;
    }
    section.section-branding-brands .brands-container .brands .brand,
    section.section-print-works .print-works-container .print-works .print-work {
        width: 430px;
        height: 340px;
    }
    section.section-branding-brands .brands-container .brands .brand:nth-child(3),
    section.section-branding-brands .brands-container .brands .brand:nth-child(2),
    section.section-print-works .print-works-container .print-works .print-work:nth-child(2),
    section.section-print-works .print-works-container .print-works .print-work:nth-child(3) {
        height: 390px;
    }
    section.section-branding-brands .brands-container .brands-info,
    section.section-print-works .print-works-container .print-works-info {
        width: 700px;
        padding: 0 60px;
    }
    section.section-branding-brands .brands-container .brands-info .brands-info--title,
    section.section-print-works .print-works-container .print-works-info .print-works-info--title {
        font-size: 50px;
        line-height: 54px;
        margin-bottom: 15px;
    }
    section.section-branding-brands .brands-container .brands-info .brands-info--description,
    section.section-print-works .print-works-container .print-works-info .print-works-info--description {
        font-size: 16px;
    }
    section.section-branding-services {
        padding-bottom: 140px;
    }
    section.section-branding-services .branding-services-container {
        width: 1540px;
        padding: 0 15px;
    }
    section.section-branding-services .branding-services-container .branding-services-info {
        width: 660px;
        padding-top: 40px;
        padding-right: 90px;
    }
    section.section-branding-services .branding-services-container .branding-services-info .branding-services-info--title {
        font-size: 50px;
        line-height: 50px;
        margin-bottom: 15px;
    }
    section.section-branding-services .branding-services-container .branding-services-info .branding-services-info--description {
        font-size: 16px;
        margin-bottom: 60px;
    }
    section.section-branding-services .branding-services-container .brand_services .brand_services--col {
        width: 240px;
    }
    section.section-branding-services .branding-services-container .brand_services .brand_services--col .brand_service {
        font-size: 16px;
        line-height: 42px;
    }
    section.section-branding-services .branding-services-container .brand_services .brand_services--col+.brand_services--col {
        margin-left: 60px;
    }
}
@media (max-width: 1600px) {
    section.section-service-banner.section-service-banner-branding .service_preview {
        margin-top: -200px;
    }
    section.section-service-banner.section-service-banner-branding .service_preview .service_preview-slider .service_preview-slide {
        width: 900px;
        padding: 10px 15px;
    }
    section.section-service-banner.section-service-banner-branding .service_preview .service_preview-slider .service_preview-slide .service_preview-slide-content .service_preview-slide-image {
        height: 570px;
    }
    section.section-service-about.section-service-about-branding .about__container-title {
        font-size: 75px;
        line-height: normal;
    }
    section.section-service-about.section-service-about-branding .about__container-description {
        font-size: 24px;
        line-height: normal;
        max-width: 900px;
    }
    section.section-services.service-services-branding {
        padding-top: 60px;
    }
    section.section-services.service-services-branding .services__container .service {
        padding: 65px 45px;
        text-align: center;
    }
    section.section-services.service-services-branding .services__container .service .service-icon::before {
        font-size: 90px;
        position: absolute;
        top: -45px;
        left: -15px;
        transform: translateX(-100%);
    }
    section.section-branding-brands,
    section.section-print-works {
        padding-top: 40px;
        padding-bottom: 90px;
    }
    section.section-branding-brands .brands-container,
    section.section-print-works .print-works-container {
        width: 1320px;
    }
    section.section-branding-brands .brands-container .brands,
    section.section-print-works .print-works-container .print-works {
        width: 770px;
    }
    section.section-branding-brands .brands-container .brands .brand,
    section.section-print-works .print-works-container .print-works .print-work {
        width: 375px;
        height: 330px;
    }
    section.section-branding-brands .brands-container .brands .brand:nth-child(3),
    section.section-branding-brands .brands-container .brands .brand:nth-child(2),
    section.section-print-works .print-works-container .print-works .print-work:nth-child(2),
    section.section-print-works .print-works-container .print-works .print-work:nth-child(3) {
        height: 370px;
    }
    section.section-branding-brands .brands-container .brands-info,
    section.section-print-works .print-works-container .print-works-info {
        width: 550px;
        padding: 0px 40px;
    }
    section.section-branding-brands .brands-container .brands-info .brands-info--title,
    section.section-print-works .print-works-container .print-works-info .print-works-info--title {
        font-size: 45px;
        line-height: 48px;
        margin-bottom: 15px;
    }
    section.section-branding-brands .brands-container .brands-info .brands-info--description,
    section.section-print-works .print-works-container .print-works-info .print-works-info--description {
        font-size: 15px;
    }
    section.section-branding-services {
        padding-bottom: 125px;
    }
    section.section-branding-services .branding-services-container {
        width: 1320px;
        padding: 0 15px;
    }
    section.section-branding-services .branding-services-container .branding-services-info .branding-services-info--title {
        font-size: 46px;
        line-height: 46px;
        margin-bottom: 15px;
    }
    section.section-branding-services .branding-services-container .branding-services-info .branding-services-info--description {
        font-size: 16px;
        margin-bottom: 50px;
    }
    section.section-branding-services .branding-services-container .brand_services .brand_services--col {
        width: 225px;
    }
    section.section-branding-services .branding-services-container .brand_services .brand_services--col+.brand_services--col {
        margin-left: 50px;
    }
    section.section-branding-services .branding-services-container .branding-services-info {
        width: 570px;
        padding-top: 35px;
        padding-right: 70px;
    }
}
@media (max-width: 1440px) {
    section.section-service-banner.section-service-banner-branding .service_preview {
        margin-top: -175px;
    }
    section.section-service-banner.section-service-banner-branding .service_preview .service_preview-slider .service_preview-slide {
        width: 810px;
        padding: 10px 15px;
    }
    section.section-service-banner.section-service-banner-branding .service_preview .service_preview-slider .service_preview-slide .service_preview-slide-content .service_preview-slide-image {
        height: 515px;
    }
    section.section-service-about.section-service-about-branding .about__container-title {
        font-size: 60px;
        line-height: normal;
    }
    section.section-service-about.section-service-about-branding .about__container-description {
        font-size: 20px;
        line-height: normal;
        max-width: 800px;
    }
    section.section-services.service-services-branding {
        padding-top: 60px;
    }
    section.section-services.service-services-branding .services__container .service {
        padding: 60px 40px 20px;
        text-align: center;
    }
    section.section-services.service-services-branding .services__container .service .service-icon::before {
        font-size: 80px;
        position: absolute;
        top: -40px;
        left: -15px;
        transform: translateX(-100%);
    }
    section.section-branding-brands,
    section.section-print-works {
        padding-top: 40px;
        padding-bottom: 80px;
    }
    section.section-branding-brands .brands-container,
    section.section-print-works .print-works-container {
        width: 1220px;
    }
    section.section-branding-brands .brands-container .brands,
    section.section-print-works .print-works-container .print-works {
        width: 720px;
    }
    section.section-branding-brands .brands-container .brands .brand,
    section.section-print-works .print-works-container .print-works .print-work {
        width: 350px;
        height: 310px;
    }
    section.section-branding-brands .brands-container .brands .brand:nth-child(3),
    section.section-branding-brands .brands-container .brands .brand:nth-child(2),
    section.section-print-works .print-works-container .print-works .print-work:nth-child(2),
    section.section-print-works .print-works-container .print-works .print-work:nth-child(3) {
        height: 350px;
    }
    section.section-branding-brands .brands-container .brands-info,
    section.section-print-works .print-works-container .print-works-info {
        width: 500px;
        padding: 0px 40px 0 0;
    }
    section.section-branding-brands .brands-container .brands-info .brands-info--title,
    section.section-print-works .print-works-container .print-works-info .print-works-info--title {
        font-size: 40px;
        line-height: 44px;
        margin-bottom: 15px;
    }
    section.section-branding-brands .brands-container .brands-info .brands-info--description,
    section.section-print-works .print-works-container .print-works-info .print-works-info--description {
        font-size: 15px;
    }
    section.section-branding-services {
        padding-bottom: 100px;
    }
    section.section-branding-services .branding-services-container {
        width: 1220px;
        padding: 0 15px;
    }
    section.section-branding-services .branding-services-container .branding-services-info {
        width: 500px;
        padding-top: 30px;
        padding-right: 20px;
    }
    section.section-branding-services .branding-services-container .branding-services-info .branding-services-info--title {
        font-size: 42px;
        line-height: 42px;
        margin-bottom: 10px;
    }
    section.section-branding-services .branding-services-container .branding-services-info .branding-services-info--description {
        font-size: 15px;
        margin-bottom: 40px;
    }
    section.section-branding-services .branding-services-container .brand_services .brand_services--col .brand_service {
        font-size: 15px;
        line-height: 40px;
    }
    section.section-branding-services .branding-services-container .brand_services .brand_services--col {
        width: 210px;
    }
    section.section-branding-services .branding-services-container .brand_services .brand_services--col+.brand_services--col {
        margin-left: 40px;
    }
}
@media (max-width: 1280px) {
    section.section-branding-brands,
    section.section-print-works {
        padding-top: 30px;
        padding-bottom: 70px;
    }
    section.section-branding-brands .brands-container,
    section.section-print-works .print-works-container {
        width: 1140px;
    }
    section.section-branding-brands .brands-container .brands,
    section.section-print-works .print-works-container .print-works {
        width: 650px;
    }
    section.section-branding-brands .brands-container .brands .brand,
    section.section-print-works .print-works-container .print-works .print-work {
        width: 50%;
        height: 300px;
    }
    section.section-branding-brands .brands-container .brands .brand:nth-child(3),
    section.section-branding-brands .brands-container .brands .brand:nth-child(2),
    section.section-print-works .print-works-container .print-works .print-work:nth-child(2),
    section.section-print-works .print-works-container .print-works .print-work:nth-child(3) {
        height: 325px;
    }
    section.section-branding-brands .brands-container .brands-info,
    section.section-print-works .print-works-container .print-works-info {
        width: 465px;
        padding: 0px 25px 0 0;
    }
    section.section-branding-brands .brands-container .brands-info .brands-info--title,
    section.section-print-works .print-works-container .print-works-info .print-works-info--title {
        font-size: 36px;
        line-height: 38px;
        margin-bottom: 15px;
    }
    section.section-branding-brands .brands-container .brands-info .brands-info--description,
    section.section-print-works .print-works-container .print-works-info .print-works-info--description {
        font-size: 14px;
    }
    section.section-branding-services {
        padding-bottom: 90px;
    }
    section.section-branding-services .branding-services-container {
        width: 1140px;
    }
    section.section-branding-services .branding-services-container .branding-services-info {
        width: 475px;
        padding-top: 30px;
        padding-right: 20px;
    }
    section.section-branding-services .branding-services-container .branding-services-info .branding-services-info--title {
        font-size: 40px;
        line-height: 40px;
        margin-bottom: 10px;
    }
    section.section-branding-services .branding-services-container .branding-services-info .branding-services-info--description {
        font-size: 15px;
        margin-bottom: 40px;
    }
    section.section-branding-services .branding-services-container .brand_services .brand_services--col .brand_service {
        font-size: 15px;
        line-height: 40px;
    }
    section.section-branding-services .branding-services-container .brand_services .brand_services--col {
        width: 200px;
    }
    section.section-branding-services .branding-services-container .brand_services .brand_services--col+.brand_services--col {
        margin-left: 40px;
    }
}
@media (max-width: 1200px) {
    section.section-service-banner.section-service-banner-branding .service_preview {
        margin-top: -160px;
    }
    section.section-service-banner.section-service-banner-branding .service_preview .service_preview-slider .service_preview-slide {
        width: 730px;
        padding: 10px 15px;
    }
    section.section-service-banner.section-service-banner-branding .service_preview .service_preview-slider .service_preview-slide .service_preview-slide-content .service_preview-slide-image {
        height: 465px;
    }
    section.section-service-about.section-service-about-branding .about__container-title {
        font-size: 50px;
        line-height: normal;
    }
    section.section-service-about.section-service-about-branding .about__container-description {
        font-size: 18px;
        line-height: normal;
        max-width: 700px;
    }
    section.section-services.service-services-branding .services__container .service {
        padding: 50px 10px 10px;
        text-align: center;
    }
    section.section-services.service-services-branding .services__container .service .service-icon::before {
        font-size: 70px;
        position: absolute;
        top: -30px;
        left: -15px;
        transform: translateX(-100%);
    }
    section.section-branding-brands .brands-container,
    section.section-print-works .print-works-container {
        width: 960px;
    }
    section.section-branding-brands .brands-container .brands-info .brands-info--title,
    section.section-print-works .print-works-container .print-works-info .print-works-info--title {
        font-size: 32px;
        line-height: 36px;
        margin-bottom: 10px;
    }
    section.section-branding-brands .brands-container .brands .brand,
    section.section-print-works .print-works-container .print-works .print-work {
        width: 50%;
        height: 260px;
    }
    section.section-branding-brands .brands-container .brands .brand:nth-child(3),
    section.section-branding-brands .brands-container .brands .brand:nth-child(2),
    section.section-print-works .print-works-container .print-works .print-work:nth-child(2),
    section.section-print-works .print-works-container .print-works .print-work:nth-child(3) {
        height: 290px;
    }
    section.section-branding-brands,
    section.section-print-works {
        padding-top: 25px;
        padding-bottom: 60px;
    }
    section.section-branding-services {
        padding-bottom: 80px;
    }
    section.section-branding-services .branding-services-container {
        width: 960px;
    }
    section.section-branding-services .branding-services-container .branding-services-info {
        width: 440px;
        padding-top: 30px;
        padding-right: 0px;
    }
    section.section-branding-services .branding-services-container .branding-services-info .branding-services-info--title {
        font-size: 36px;
        line-height: 36px;
        margin-bottom: 10px;
    }
    section.section-branding-services .branding-services-container .branding-services-info .branding-services-info--description {
        font-size: 14px;
        margin-bottom: 30px;
    }
    section.section-branding-services .branding-services-container .brand_services .brand_services--col .brand_service {
        font-size: 14px;
        line-height: 36px;
    }
    section.section-branding-services .branding-services-container .brand_services .brand_services--col {
        width: 200px;
    }
    section.section-branding-services .branding-services-container .brand_services .brand_services--col+.brand_services--col {
        margin-left: 30px;
    }
}
@media (max-width: 992px) {
    section.section-service-banner.section-service-banner-branding .service_preview {
        margin-top: -120px;
    }
    section.section-service-banner.section-service-banner-branding .service_preview .service_preview-slider .service_preview-slide {
        width: 660px;
        padding: 10px 10px;
    }
    section.section-service-banner.section-service-banner-branding .service_preview .service_preview-slider .service_preview-slide .service_preview-slide-content .service_preview-slide-image {
        height: 420px;
    }
    section.section-service-about.section-service-about-branding {
        padding-top: 50px;
        padding-bottom: 80px;
    }
    section.section-service-about.section-service-about-branding .about__container-title {
        font-size: 45px;
        line-height: normal;
    }
    section.section-service-about.section-service-about-branding .about__container-description {
        font-size: 17px;
        line-height: normal;
        max-width: 700px;
    }
    section.section-services.service-services-branding .services__container .service {
        padding: 30px 10px 0;
        text-align: center;
    }
    section.section-branding-brands .brands-container,
    section.section-print-works .print-works-container {
        width: 720px;
    }
    section.section-branding-brands .brands-container .brands-info,
    section.section-print-works .print-works-container .print-works-info {
        width: 290px;
        padding: 0px 25px 0 0;
    }
    section.section-branding-brands .brands-container .brands-info .brands-info--title,
    section.section-print-works .print-works-container .print-works-info .print-works-info--title {
        font-size: 28px;
        line-height: 32px;
        margin-bottom: 10px;
    }
    section.section-branding-brands .brands-container .brands-info .brands-info--description,
    section.section-print-works .print-works-container .print-works-info .print-works-info--description {
        font-size: 14px;
    }
    section.section-branding-brands .brands-container .brands,
    section.section-print-works .print-works-container .print-works {
        width: 400px;
    }
    section.section-branding-brands .brands-container .brands .brand,
    section.section-print-works .print-works-container .print-works .print-work {
        width: 50%;
        height: 175px;
    }
    section.section-branding-brands .brands-container .brands .brand:nth-child(3),
    section.section-branding-brands .brands-container .brands .brand:nth-child(2),
    section.section-print-works .print-works-container .print-works .print-work:nth-child(2),
    section.section-print-works .print-works-container .print-works .print-work:nth-child(3) {
        height: 195px;
    }
    section.section-branding-services {
        position: relative;
        overflow: hidden;
    }
    section.section-branding-services .branding-services-container {
        width: 720px;
        display: block;
    }
    section.section-branding-services .branding-services-container .branding-services-image {
        width: 100%;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        display: flex;
        align-items: center;
        z-index: -1;
        opacity: .1;
        filter: grayscale(1);
    }
    section.section-branding-services .branding-services-container .branding-services-info {
        width: 400px;
        padding-top: 0px;
        padding-right: 0px;
        margin-left: auto;
        margin-right: auto;
    }
    section.section-branding-services .branding-services-container .branding-services-info .branding-services-info--title {
        font-size: 32px;
        line-height: 32px;
        margin-bottom: 10px;
    }
}
@media (max-width: 767px) {
    section.section-service-banner.section-service-banner-branding .service_preview {
        margin-top: -110px;
    }
    section.section-service-banner.section-service-banner-branding .service_preview .service_preview-slider .service_preview-slide {
        width: 550px;
        padding: 10px 10px;
    }
    section.section-service-banner.section-service-banner-branding .service_preview .service_preview-slider .service_preview-slide .service_preview-slide-content .service_preview-slide-image {
        height: 350px;
    }
    section.section-service-about.section-service-about-branding {
        padding-top: 40px;
        padding-bottom: 70px;
    }
    section.section-service-about.section-service-about-branding .about__container-title {
        font-size: 40px;
        line-height: 50px;
    }
    section.section-service-about.section-service-about-branding .about__container-description {
        font-size: 16px;
        line-height: normal;
        max-width: 100%;
    }
    section.section-services.service-services-branding {
        padding-top: 50px;
    }
    section.section-branding-brands .brands-container,
    section.section-print-works .print-works-container {
        width: 100%;
        max-width: 540px;
        display: block;
    }
    section.section-branding-brands .brands-container .brands-info,
    section.section-print-works .print-works-container .print-works-info {
        width: 100%;
        padding: 0px 25px;
        text-align: center;
    }
    section.section-branding-brands .brands-container .brands,
    section.section-print-works .print-works-container .print-works {
        width: 100%;
    }
    section.section-branding-brands .brands-container .brands-info,
    section.section-print-works .print-works-container .print-works-info {
        width: 100%;
        padding: 0px 25px;
        text-align: center;
        margin-bottom: 30px;
    }
    section.section-branding-brands .brands-container .brands,
    section.section-print-works .print-works-container .print-works {
        width: 100vw;
        position: relative;
        left: 50%;
        transform: translateX(-50%);
        display: block;
    }
    section.section-branding-brands .brands-container .brands .brand,
    section.section-print-works .print-works-container .print-works .print-work {
        width: 400px;
        height: 300px;
        margin: 0 7px;
    }
    section.section-branding-brands .brands-container .brands .brand:nth-child(3),
    section.section-branding-brands .brands-container .brands .brand:nth-child(2),
    section.section-print-works .print-works-container .print-works .print-work:nth-child(2),
    section.section-print-works .print-works-container .print-works .print-work:nth-child(3) {
        height: 300px;
    }
    section.section-branding-services .branding-services-container {
        width: 100%;
        display: block;
        max-width: 520px;
    }
    section.section-branding-services .branding-services-container .branding-services-info {
        width: 100%;
        padding-top: 0px;
        padding-right: 0px;
        margin-left: auto;
        margin-right: auto;
    }
    section.section-branding-services .branding-services-container .branding-services-info .branding-services-info--title {
        font-size: 32px;
        line-height: 32px;
        margin-bottom: 10px;
    }
    section.section-branding-services .branding-services-container .branding-services-image img {
        width: 150%;
        position: absolute;
        left: 50%;
        transform: translate(-50%, -50%);
        top: 50%;
    }
}
@media (max-width: 600px) {
    section.section-service-banner.section-service-banner-branding .service_preview {
        margin-top: -70px;
    }
    section.section-service-banner.section-service-banner-branding .service_preview .service_preview-slider .service_preview-slide {
        width: 310px;
        padding: 10px 5px;
    }
    section.section-service-banner.section-service-banner-branding .service_preview .service_preview-slider .service_preview-slide .service_preview-slide-content .service_preview-slide-image {
        height: 235px;
    }
    section.section-service-about.section-service-about-branding {
        padding-top: 40px;
        padding-bottom: 55px;
    }
    section.section-service-about.section-service-about-branding .about__container-title {
        font-size: 30px;
        line-height: 32px;
        margin-bottom: 20px;
    }
    section.section-service-about.section-service-about-branding .about__container-description {
        font-size: 15px;
        line-height: 23px;
        max-width: 100%;
    }
    section.section-services.service-services-branding {
        padding-top: 35px;
    }
    section.section-services.service-services-branding .services__container .service .service-icon {
        position: relative;
        width: 55px;
        height: 60px;
        margin-bottom: 7px;
        background-size: contain;
        margin-left: 30px;
    }
    section.section-services.service-services-branding .services__container .service .service-icon::before {
        font-size: 100px;
        position: absolute;
        top: -50px;
        left: -15px;
        transform: translateX(-100%);
    }
    section.section-services.service-services-branding .service .service-title {
        margin-left: 30px;
    }
    section.section-branding-brands,
    section.section-print-works {
        padding-top: 40px;
        padding-bottom: 80px;
    }
    section.section-branding-brands .brands-container .brands-info .brands-info--title,
    section.section-print-works .print-works-container .print-works-info .print-works-info--title {
        font-size: 30px;
        line-height: 36px;
        margin-bottom: 10px;
    }
    section.section-branding-brands .brands-container .brands-info .brands-info--description,
    section.section-print-works .print-works-container .print-works-info .print-works-info--description {
        font-size: 18px;
        line-height: 27px;
    }
    section.section-branding-brands .brands-container .brands-info,
    section.section-print-works .print-works-container .print-works-info {
        width: 100%;
        padding: 0;
        text-align: center;
        margin-bottom: 20px;
    }
    section.section-branding-brands .brands-container .brands .brand,
    section.section-print-works .print-works-container .print-works .print-work {
        width: 350px;
        height: 280px;
        margin: 0 5px;
    }
    section.section-branding-brands .brands-container .brands .brand:nth-child(3),
    section.section-branding-brands .brands-container .brands .brand:nth-child(2),
    section.section-print-works .print-works-container .print-works .print-work:nth-child(2),
    section.section-print-works .print-works-container .print-works .print-work:nth-child(3) {
        height: 280px;
    }
    section.section-branding-services .branding-services-container .branding-services-info .branding-services-info--title {
        font-size: 30px;
        line-height: 36px;
        margin-bottom: 10px;
        text-align: center;
    }
    section.section-branding-services .branding-services-container .branding-services-info .branding-services-info--description {
        font-size: 18px;
        margin-bottom: 30px;
        text-align: center;
        line-height: 27px;
    }
    section.section-branding-services .branding-services-container .brand_services {
        display: block;
        margin-left: 70px;
    }
    section.section-branding-services .branding-services-container .brand_services .brand_services--col {
        width: 100%;
    }
    section.section-branding-services .branding-services-container .brand_services .brand_services--col .brand_service {
        font-size: 18px;
        line-height: 36px;
        padding: 7px 0;
    }
    section.section-branding-services .branding-services-container .brand_services .brand_services--col+.brand_services--col {
        margin-left: 0;
    }
    section.section-branding-services .branding-services-container .branding-services-image img {
        width: 780px;
        position: absolute;
        left: 50%;
        transform: translate(-50%, -50%);
        top: 50%;
    }
}








/*
    Digital Print 
*/
section.section-service-banner.section-service-banner-print {
    overflow: initial;
}
@media (max-width: 1860px) {
    section.section-service-banner.section-service-banner-print .service_preview {
        margin-top: -300px;
        max-width: 1680px;
        transform: translateY(70px);
    }
    section.section-service-banner.section-service-banner-print .service_preview .service_preview-image-wrap {
        height: 475px;
        width: 33.33333%;
        padding: 15px;
    }
    section.section-service-banner.section-service-banner-print .service_preview .service_preview-image-wrap:first-child {
        width: 100%;
        height: 660px;
    }
}
@media (max-width: 1740px) {
    section.section-service-banner.section-service-banner-print .service_preview {
        margin-top: -280px;
        max-width: 1540px;
        transform: translateY(70px);
    }
    section.section-service-banner.section-service-banner-print .service_preview .service_preview-image-wrap {
        height: 425px;
    }
    section.section-service-banner.section-service-banner-print .service_preview .service_preview-image-wrap:first-child {
        height: 600px;
    }
    section.section-print-products {
        padding-bottom: 90px;
        padding-top: 200px;
    }
    section.section-print-products .section__head {
        margin-bottom: 110px;
    }
    section.section-print-products .section__head .section__head--title {
        font-size: 55px;
        line-height: 55px;
        margin-bottom: 23px;
    }
    section.section-print-products .section__head .section__head--description {
        font-size: 17px;
    }
    section.section-print-products .print_products .print_products--col {
        width: 260px;
    }
    section.section-print-products .print_products .print_products--col .print_product {
        font-size: 17px;
        line-height: 45px;
    }
    section.section-print-products .print_products .print_products--col+.print_products--col {
        margin-left: 70px;
    }
}
@media (max-width: 1600px) {
    section.section-service-banner.section-service-banner-print .service_preview {
        margin-top: -250px;
        max-width: 1320px;
        transform: translateY(65px);
    }
    section.section-service-banner.section-service-banner-print .service_preview .service_preview-image-wrap {
        height: 385px;
        padding: 10px;
    }
    section.section-service-banner.section-service-banner-print .service_preview .service_preview-image-wrap:first-child {
        height: 540px;
    }
    section.section-print-products {
        padding-bottom: 80px;
        padding-top: 180px;
    }
    section.section-print-products .section__head {
        margin-bottom: 90px;
    }
    section.section-print-products .section__head .section__head--title {
        font-size: 50px;
        line-height: 50px;
        margin-bottom: 20px;
    }
    section.section-print-products .section__head .section__head--description {
        font-size: 16px;
    }
    section.section-print-products .print_products .print_products--col {
        width: 250px;
    }
    section.section-print-products .print_products .print_products--col .print_product {
        font-size: 16px;
        line-height: 40px;
    }
    section.section-print-products .print_products .print_products--col+.print_products--col {
        margin-left: 60px;
    }
}
@media (max-width: 1440px) {
    section.section-service-banner.section-service-banner-print .service_preview {
        margin-top: -220px;
        max-width: 1220px;
        transform: translateY(60px);
    }
    section.section-service-banner.section-service-banner-print .service_preview .service_preview-image-wrap {
        height: 350px;
        padding: 10px;
    }
    section.section-service-banner.section-service-banner-print .service_preview .service_preview-image-wrap:first-child {
        height: 485px;
    }
    section.section-print-products {
        padding-bottom: 75px;
        padding-top: 170px;
    }
    section.section-print-products .section__head {
        margin-bottom: 80px;
    }
    section.section-print-products .section__head .section__head--title {
        font-size: 45px;
        line-height: 45px;
        margin-bottom: 15px;
    }
    section.section-print-products .section__head .section__head--description {
        font-size: 15px;
    }
    section.section-print-products .print_products .print_products--col {
        width: 230px;
    }
    section.section-print-products .print_products .print_products--col .print_product {
        font-size: 15px;
        line-height: 36px;
    }
    section.section-print-products .print_products .print_products--col+.print_products--col {
        margin-left: 55px;
    }
}
@media (max-width: 1280px) {
    section.section-service-banner.section-service-banner-print .service_preview {
        margin-top: -200px;
        max-width: 1140px;
        transform: translateY(55px);
    }
    section.section-service-banner.section-service-banner-print .service_preview .service_preview-image-wrap {
        height: 315px;
        padding: 10px;
    }
    section.section-service-banner.section-service-banner-print .service_preview .service_preview-image-wrap:first-child {
        height: 435px;
    }
}
@media (max-width: 1200px) {
    section.section-service-banner.section-service-banner-print .service_preview {
        margin-top: -200px;
        max-width: 960px;
        transform: translateY(50px);
    }
    section.section-service-banner.section-service-banner-print .service_preview .service_preview-image-wrap {
        height: 300px;
        padding: 7px;
    }
    section.section-service-banner.section-service-banner-print .service_preview .service_preview-image-wrap:first-child {
        height: 450px;
    }
    section.section-print-products {
        padding-bottom: 65px;
        padding-top: 150px;
    }
    section.section-print-products .section__head {
        margin-bottom: 70px;
    }
    section.section-print-products .section__head .section__head--title {
        font-size: 40px;
        line-height: 40px;
        margin-bottom: 15px;
    }
    section.section-print-products .section__head .section__head--description {
        font-size: 14px;
    }
    section.section-print-products .print_products .print_products--col {
        width: 210px;
    }
    section.section-print-products .print_products .print_products--col .print_product {
        font-size: 14px;
        line-height: 30px;
    }
    section.section-print-products .print_products .print_products--col+.print_products--col {
        margin-left: 40px;
    }
}
@media (max-width: 992px) {
    section.section-service-banner.section-service-banner-print .service_preview {
        margin-top: -160px;
        max-width: 720px;
        transform: translateY(50px);
    }
    section.section-service-banner.section-service-banner-print .service_preview .service_preview-image-wrap {
        height: 200px;
        padding: 5px;
    }
    section.section-service-banner.section-service-banner-print .service_preview .service_preview-image-wrap:first-child {
        height: 350px;
    }
    section.section-print-products ul.slick-dots {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 0;
        margin-bottom: 0;
        margin-top: 30px;
    }
    section.section-print-products ul.slick-dots li {
        list-style: none;
    }
    section.section-print-products ul.slick-dots li {
        padding: 6px;
    }
    section.section-print-products ul.slick-dots li button {
        width: 9px;
        height: 9px;
        background-color: #EDEDED;
        border: 0;
        border-radius: 50%;
        text-indent: 1000px;
        overflow: hidden;
        display: block;
        line-height: 0;
        padding: 0;
        -webkit-transition: all .25s cubic-bezier(.4, 0, .2, 1);
        transition: all .25s cubic-bezier(.4, 0, .2, 1);
    }
    section.section-print-products ul.slick-dots li.slick-active button {
        width: 18px;
        height: 9px;
        background-color: #1886E3;
        border-radius: 10px;
    }
    section.section-print-products {
        padding-bottom: 55px;
        padding-top: 120px;
    }
    section.section-print-products .section__head {
        margin-bottom: 50px;
    }
    section.section-print-products .section__head .section__head--title {
        font-size: 36px;
        line-height: 36px;
        margin-bottom: 10px;
    }
    section.section-print-products .print_products .print_products--col {
        width: 195px;
    }
}
@media (max-width: 767px) {
    section.section-service-banner.section-service-banner-print .service_preview {
        margin-top: -150px;
        max-width: 520px;
        transform: translateY(50px);
    }
    section.section-service-banner.section-service-banner-print .service_preview .service_preview-image-wrap {
        height: 300px;
        padding: 5px 0;
        width: 100%;
    }
    section.section-service-banner.section-service-banner-print .service_preview .service_preview-image-wrap:first-child {
        height: 300px;
    }
    section.section-service-banner.section-service-banner-print .service_preview .service_preview-image-wrap:nth-child(4) {
        display: none;
    }
    section.section-print-products {
        padding-bottom: 50px;
        padding-top: 100px;
    }
    section.section-print-products .section__head {
        margin-bottom: 40px;
    }
    section.section-print-products .section__head .section__head--title {
        font-size: 32px;
        line-height: 36px;
        margin-bottom: 10px;
    }
    section.section-print-products .print_products .print_products--col {
        width: 215px;
    }
}
@media (max-width: 600px) {
    section.section-print-works {
        padding-top: 25px;
        padding-bottom: 50px;
    }
    section.section-service-banner.section-service-banner-print .service_preview {
        margin-top: -230px;
        max-width: 350px;
        transform: translateY(170px);
    }
    section.section-service-banner.section-service-banner-print .service_preview .service_preview-image-wrap {
        height: 235px;
        padding: 5px 0;
        width: 100%;
    }
    section.section-service-banner.section-service-banner-print .service_preview .service_preview-image-wrap:first-child {
        height: 235px;
    }
    section.section-service-banner.section-service-banner-print .service_preview .service_preview-image-wrap:nth-child(4) {
        display: none;
    }
    section.section-print-products {
        padding-bottom: 35px;
        padding-top: 205px;
    }
    section.section-print-products .section__head .section__head--title {
        font-size: 30px;
        line-height: 32px;
        margin-bottom: 10px;
    }
    section.section-print-products .section__head .section__head--description {
        font-size: 15px;
        line-height: 23px;
    }
    section.section-print-products .print_products .print_products--col {
        width: 225px;
        padding: 0 15px;
    }
}




/*
    Email Marketing
*/
@media (max-width: 1740px) {
    section.section-service-banner.section-service-banner-marketing .service_preview.service_preview-marketing .service_preview-content .service_preview--image.service_preview--imag-small {
        width: 430px;
        height: 630px;
        margin-bottom: 25px;
    }
    section.section-service-banner.section-service-banner-marketing .service_preview.service_preview-marketing .service_preview-content .service_preview--image.service_preview--imag-big {
        width: 560px;
        height: 810px;
    }
    section.section-service-banner.section-service-banner-marketing .service_preview.service_preview-marketing .service_preview-content .service_preview--image.service_preview--imag-small.left {
        margin-right: -55px;
    }
    section.section-service-banner.section-service-banner-marketing .service_preview.service_preview-marketing .service_preview-content .service_preview--image.service_preview--imag-small.right {
        margin-left: -55px;
    }
    section.section-marketing-products {
        padding-bottom: 110px;
        padding-top: 80px;
    }
    section.section-marketing-products .section__head {
        margin-bottom: 90px;
    }
    section.section-marketing-products .section__head .section__head--title {
        font-size: 55px;
        line-height: 55px;
        margin-bottom: 20px;
    }
    section.section-marketing-products .section__head .section__head--description {
        font-size: 17px;
    }
    section.section-marketing-products .email_designs .email_designs--heading {
        width: 360px;
        margin-right: 100px;
        padding-top: 10px;
    }
    section.section-marketing-products .email_designs .email_designs--heading h4 {
        font-size: 36px;
        letter-spacing: 0.4px;
        line-height: 45px;
    }
    section.section-marketing-products .email_designs .email_designs--col {
        width: 250px;
    }
    section.section-marketing-products .email_designs .email_designs--col .email_design {
        font-size: 17px;
        letter-spacing: 0.18px;
        line-height: 45px;
    }
    section.section-marketing-products .email_designs .email_designs--col+.email_designs--col {
        margin-left: 100px;
    }
    section.section-marketing-benefits {
        padding-bottom: 200px;
    }
    section.section-marketing-benefits .benefits-images .mail-image {
        width: 415px;
        height: 600px;
        margin-right: 90px;
    }
    section.section-marketing-benefits .benefits-images .phone-image {
        max-width: 330px;
        max-height: 460px;
        bottom: -85px;
        left: 15px;
    }
    section.section-marketing-benefits .benefits-info .title {
        font-size: 46px;
        line-height: 46px;
        margin-bottom: 40px;
    }
    section.section-marketing-benefits .benefits-info ul li {
        font-size: 17px;
        line-height: 28px;
        padding-top: 8px;
        padding-bottom: 8px;
    }
    section.section-marketing-services {
        padding-top: 80px;
        padding-bottom: 105px;
    }
    section.section-marketing-services .section__head {
        margin-bottom: 65px;
    }
    section.section-marketing-services .section__head .section__head--title {
        font-size: 55px;
        line-height: 50px;
        margin-bottom: 10px;
    }
    section.section-marketing-services .section__head .section__head--description {
        font-size: 30px;
        line-height: 45px;
    }
    section.section-marketing-services .email-services .email-service {
        width: 415px;
        height: 600px;
        margin: 0 25px;
    }
}
@media (max-width: 1600px) {
    section.section-service-banner.section-service-banner-marketing .service_preview.service_preview-marketing {
        margin-top: -190px;
    }
    section.section-service-banner.section-service-banner-marketing .service_preview.service_preview-marketing .service_preview-content .service_preview--image.service_preview--imag-small {
        width: 390px;
        height: 570px;
        margin-bottom: 25px;
    }
    section.section-service-banner.section-service-banner-marketing .service_preview.service_preview-marketing .service_preview-content .service_preview--image.service_preview--imag-big {
        width: 500px;
        height: 730px;
    }
    section.section-service-banner.section-service-banner-marketing .service_preview.service_preview-marketing .service_preview-content .service_preview--image.service_preview--imag-small.left {
        margin-right: -50px;
    }
    section.section-service-banner.section-service-banner-marketing .service_preview.service_preview-marketing .service_preview-content .service_preview--image.service_preview--imag-small.right {
        margin-left: -50px;
    }
    section.section-marketing-products {
        padding-bottom: 100px;
        padding-top: 75px;
    }
    section.section-marketing-products .section__head {
        margin-bottom: 80px;
    }
    section.section-marketing-products .section__head .section__head--title {
        font-size: 50px;
        line-height: 50px;
        margin-bottom: 20px;
    }
    section.section-marketing-products .section__head .section__head--description {
        font-size: 16px;
    }
    section.section-marketing-products .email_designs .email_designs--heading {
        width: 350px;
        margin-right: 90px;
        padding-top: 10px;
    }
    section.section-marketing-products .email_designs .email_designs--heading h4 {
        font-size: 32px;
        letter-spacing: 0.3px;
        line-height: 40px;
    }
    section.section-marketing-products .email_designs .email_designs--col {
        width: 240px;
    }
    section.section-marketing-products .email_designs .email_designs--col .email_design {
        font-size: 16px;
        letter-spacing: 0.18px;
        line-height: 40px;
    }
    section.section-marketing-products .email_designs .email_designs--col+.email_designs--col {
        margin-left: 90px;
    }
    section.section-marketing-benefits {
        padding-bottom: 175px;
    }
    section.section-marketing-benefits .benefits-images .mail-image {
        width: 375px;
        height: 540px;
        margin-right: 80px;
    }
    section.section-marketing-benefits .benefits-images .phone-image {
        max-width: 300px;
        max-height: 415px;
        bottom: -75px;
        left: 10px;
    }
    section.section-marketing-benefits .benefits-info .title {
        font-size: 42px;
        line-height: 42px;
        margin-bottom: 35px;
    }
    section.section-marketing-benefits .benefits-info ul li {
        font-size: 16px;
        line-height: 26px;
        padding-top: 6px;
        padding-bottom: 6px;
    }
    section.section-marketing-services {
        padding-top: 70px;
        padding-bottom: 90px;
    }
    section.section-marketing-services .section__head {
        margin-bottom: 55px;
    }
    section.section-marketing-services .section__head .section__head--title {
        font-size: 50px;
        line-height: 50px;
        margin-bottom: 10px;
    }
    section.section-marketing-services .section__head .section__head--description {
        font-size: 26px;
        line-height: 40px;
    }
    section.section-marketing-services .email-services .email-service {
        width: 375px;
        height: 540px;
        margin: 0 20px;
    }
}
@media (max-width: 1440px) {
    section.section-service-banner.section-service-banner-marketing .service_preview.service_preview-marketing {
        margin-top: -170px;
    }
    section.section-service-banner.section-service-banner-marketing .service_preview.service_preview-marketing .service_preview-content .service_preview--image.service_preview--imag-small {
        width: 350px;
        height: 515px;
        margin-bottom: 20px;
    }
    section.section-service-banner.section-service-banner-marketing .service_preview.service_preview-marketing .service_preview-content .service_preview--image.service_preview--imag-big {
        width: 450px;
        height: 660px;
    }
    section.section-service-banner.section-service-banner-marketing .service_preview.service_preview-marketing .service_preview-content .service_preview--image.service_preview--imag-small.left {
        margin-right: -45px;
    }
    section.section-service-banner.section-service-banner-marketing .service_preview.service_preview-marketing .service_preview-content .service_preview--image.service_preview--imag-small.right {
        margin-left: -45px;
    }
    section.section-marketing-products {
        padding-bottom: 90px;
        padding-top: 70px;
    }
    section.section-marketing-products .section__head {
        margin-bottom: 70px;
    }
    section.section-marketing-products .section__head .section__head--title {
        font-size: 45px;
        line-height: 45px;
        margin-bottom: 15px;
    }
    section.section-marketing-products .section__head .section__head--description {
        font-size: 15px;
    }
    section.section-marketing-products .email_designs .email_designs--heading {
        width: 325px;
        margin-right: 80px;
        padding-top: 5px;
    }
    section.section-marketing-products .email_designs .email_designs--heading h4 {
        font-size: 28px;
        letter-spacing: 0.3px;
        line-height: 35px;
    }
    section.section-marketing-products .email_designs .email_designs--col {
        width: 225px;
    }
    section.section-marketing-products .email_designs .email_designs--col .email_design {
        font-size: 15px;
        letter-spacing: 0.18px;
        line-height: 35px;
    }
    section.section-marketing-products .email_designs .email_designs--col+.email_designs--col {
        margin-left: 80px;
    }
    section.section-marketing-benefits {
        padding-bottom: 150px;
    }
    section.section-marketing-benefits .benefits-images .mail-image {
        width: 340px;
        height: 485px;
        margin-right: 70px;
    }
    section.section-marketing-benefits .benefits-images .phone-image {
        max-width: 270px;
        max-height: 375px;
        bottom: -65px;
        left: 10px;
    }
    section.section-marketing-benefits .benefits-info .title {
        font-size: 38px;
        line-height: 38px;
        margin-bottom: 30px;
    }
    section.section-marketing-benefits .benefits-info ul li {
        font-size: 16px;
        line-height: 26px;
        padding-top: 4px;
        padding-bottom: 4px;
    }
    section.section-marketing-services {
        padding-top: 60px;
        padding-bottom: 80px;
    }
    section.section-marketing-services .section__head {
        margin-bottom: 50px;
    }
    section.section-marketing-services .section__head .section__head--title {
        font-size: 45px;
        line-height: 45px;
        margin-bottom: 10px;
    }
    section.section-marketing-services .section__head .section__head--description {
        font-size: 22px;
        line-height: 35px;
    }
    section.section-marketing-services .email-services .email-service {
        width: 340px;
        height: 485px;
        margin: 0 20px;
    }
}
@media (max-width: 1280px) {
    section.section-service-banner.section-service-banner-marketing .service_preview.service_preview-marketing {
        margin-top: -150px;
    }
    section.section-service-banner.section-service-banner-marketing .service_preview.service_preview-marketing .service_preview-content .service_preview--image.service_preview--imag-small {
        width: 315px;
        height: 465px;
        margin-bottom: 20px;
    }
    section.section-service-banner.section-service-banner-marketing .service_preview.service_preview-marketing .service_preview-content .service_preview--image.service_preview--imag-big {
        width: 405px;
        height: 595px;
    }
    section.section-service-banner.section-service-banner-marketing .service_preview.service_preview-marketing .service_preview-content .service_preview--image.service_preview--imag-small.left {
        margin-right: -40px;
    }
    section.section-service-banner.section-service-banner-marketing .service_preview.service_preview-marketing .service_preview-content .service_preview--image.service_preview--imag-small.right {
        margin-left: -40px;
    }
    section.section-marketing-products {
        padding-bottom: 80px;
        padding-top: 60px;
    }
    section.section-marketing-products .section__head {
        margin-bottom: 70px;
    }
    section.section-marketing-products .section__head .section__head--title {
        font-size: 40px;
        line-height: 40px;
        margin-bottom: 15px;
    }
    section.section-marketing-products .section__head .section__head--description {
        font-size: 14px;
    }
    section.section-marketing-products .email_designs .email_designs--heading {
        width: 275px;
        margin-right: 70px;
        padding-top: 5px;
    }
    section.section-marketing-products .email_designs .email_designs--heading h4 {
        font-size: 24px;
        letter-spacing: 0.3px;
        line-height: 30px;
    }
    section.section-marketing-products .email_designs .email_designs--col {
        width: 200px;
    }
    section.section-marketing-products .email_designs .email_designs--col .email_design {
        font-size: 14px;
        letter-spacing: 0.18px;
        line-height: 30px;
    }
    section.section-marketing-products .email_designs .email_designs--col+.email_designs--col {
        margin-left: 70px;
    }
    section.section-marketing-benefits {
        padding-bottom: 130px;
    }
    section.section-marketing-benefits .benefits-images .mail-image {
        width: 300px;
        height: 435px;
        margin-right: 30px;
    }
    section.section-marketing-benefits .benefits-images .phone-image {
        max-width: 240px;
        max-height: 335px;
        bottom: -55px;
        left: 0px;
    }
    section.section-marketing-benefits .benefits-info .title {
        font-size: 34px;
        line-height: 34px;
        margin-bottom: 25px;
    }
    section.section-marketing-benefits .benefits-info ul li {
        font-size: 15px;
        line-height: 24px;
        padding-top: 4px;
        padding-bottom: 4px;
    }
    section.section-marketing-services {
        padding-top: 55px;
        padding-bottom: 70px;
    }
    section.section-marketing-services .section__head {
        margin-bottom: 40px;
    }
    section.section-marketing-services .section__head .section__head--title {
        font-size: 40px;
        line-height: 40px;
        margin-bottom: 10px;
    }
    section.section-marketing-services .section__head .section__head--description {
        font-size: 20px;
        line-height: 32px;
    }
    section.section-marketing-services .email-services .email-service {
        width: 300px;
        height: 440px;
        margin: 0 15px;
    }
}
@media (max-width: 1200px) {
    section.section-service-banner.section-service-banner-marketing .service_preview.service_preview-marketing {
        margin-top: -140px;
    }
    section.section-service-banner.section-service-banner-marketing .service_preview.service_preview-marketing .service_preview-content .service_preview--image.service_preview--imag-small {
        width: 300px;
        height: 440px;
        margin-bottom: 20px;
    }
    section.section-service-banner.section-service-banner-marketing .service_preview.service_preview-marketing .service_preview-content .service_preview--image.service_preview--imag-big {
        width: 385px;
        height: 565px;
    }
    section.section-service-banner.section-service-banner-marketing .service_preview.service_preview-marketing .service_preview-content .service_preview--image.service_preview--imag-small.left {
        margin-right: -40px;
    }
    section.section-service-banner.section-service-banner-marketing .service_preview.service_preview-marketing .service_preview-content .service_preview--image.service_preview--imag-small.right {
        margin-left: -40px;
    }
}
@media (max-width: 992px) {
    section.section-service-banner.section-service-banner-marketing .service_preview.service_preview-marketing {
        margin-top: -110px;
    }
    section.section-service-banner.section-service-banner-marketing .service_preview.service_preview-marketing .service_preview-content .service_preview--image.service_preview--imag-big {
        width: 300px;
        height: 475px;
    }
    section.section-service-banner.section-service-banner-marketing .service_preview.service_preview-marketing .service_preview-content .service_preview--image.service_preview--imag-small {
        width: 230px;
        height: 400px;
        margin-bottom: 15px;
    }
    section.section-service-banner.section-service-banner-marketing .service_preview.service_preview-marketing .service_preview-content .service_preview--image.service_preview--imag-small.left {
        margin-right: -35px;
    }
    section.section-service-banner.section-service-banner-marketing .service_preview.service_preview-marketing .service_preview-content .service_preview--image.service_preview--imag-small.right {
        margin-left: -35px;
    }
    section.section-marketing-products {
        padding-bottom: 70px;
        padding-top: 50px;
    }
    section.section-marketing-products .section__head {
        margin-bottom: 40px;
    }
    section.section-marketing-products .email_designs .email_designs--heading {
        width: 100%;
        margin-right: 70px;
        padding-top: 0;
        padding-left: 25px;
        margin-bottom: 20px;
    }
    section.section-marketing-products .email_designs .email_designs--col {
        width: 250px;
        padding: 0 25px;
    }
    section.section-marketing-products .email_designs .email_designs--col+.email_designs--col {
        margin-left: 0px;
    }
    section.section-marketing-benefits {
        padding-bottom: 90px;
    }
    section.section-marketing-benefits .benefits-images {
        margin-bottom: 90px;
        max-width: 450px;
        margin-left: auto;
        margin-right: auto;
    }
    section.section-marketing-benefits .benefits-info {
        max-width: 450px;
        margin-left: auto;
        margin-right: auto;
    }
    section.section-marketing-benefits .benefits-info .title {
        font-size: 32px;
        line-height: 40px;
        margin-bottom: 20px;
        text-align: center;
    }
    section.section-marketing-benefits .benefits-info ul li {
        font-size: 15px;
        line-height: 20px;
        padding-top: 10px;
        padding-bottom: 10px;
    }
    section.section-marketing-services {
        padding-top: 50px;
        padding-bottom: 60px;
    }
    section.section-marketing-services .section__head {
        margin-bottom: 35px;
    }
    section.section-marketing-services .section__head .section__head--title {
        font-size: 35px;
        line-height: 35px;
        margin-bottom: 10px;
    }
    section.section-marketing-services .section__head .section__head--description {
        font-size: 18px;
        line-height: 26px;
    }
    section.section-marketing-services .email-services .email-service {
        width: 300px;
        height: 440px;
        margin: 0 10px;
    }
    section.section-marketing-services .email-services .email-service:nth-child(3) {
        display: none;
    }
}
@media (max-width: 767px) {
    section.section-service-banner.section-service-banner-marketing .service_preview.service_preview-marketing {
        margin-top: -100px;
    }
    section.section-service-banner.section-service-banner-marketing .service_preview.service_preview-marketing .service_preview-content .service_preview--image.service_preview--imag-big {
        width: 225px;
        height: 330px;
    }
    section.section-service-banner.section-service-banner-marketing .service_preview.service_preview-marketing .service_preview-content .service_preview--image.service_preview--imag-small {
        width: 180px;
        height: 255px;
        margin-bottom: 12px;
    }
    section.section-service-banner.section-service-banner-marketing .service_preview.service_preview-marketing .service_preview-content .service_preview--image.service_preview--imag-small.left {
        margin-right: -25px;
    }
    section.section-service-banner.section-service-banner-marketing .service_preview.service_preview-marketing .service_preview-content .service_preview--image.service_preview--imag-small.right {
        margin-left: -25px;
    }
    section.section-marketing-services {
        padding-top: 50px;
        padding-bottom: 50px;
    }
    section.section-marketing-services .section__head {
        margin-bottom: 30px;
    }
    section.section-marketing-services .section__head .section__head--title {
        font-size: 32px;
        line-height: 32px;
        margin-bottom: 10px;
    }
    section.section-marketing-services .section__head .section__head--description {
        font-size: 18px;
        line-height: 26px;
    }
    section.section-marketing-services .email-services .email-service {
        width: 250px;
        height: 360px;
        margin: 0 10px;
    }
}
@media (max-width: 600px) {
    section.section-service-banner.section-service-banner-marketing .service_preview.service_preview-marketing {
        margin-top: -70px;
    }
    section.section-service-banner.section-service-banner-marketing .service_preview.service_preview-marketing .service_preview-content .service_preview--image.service_preview--imag-big {
        width: 150px;
        height: 220px;
    }
    section.section-service-banner.section-service-banner-marketing .service_preview.service_preview-marketing .service_preview-content .service_preview--image.service_preview--imag-small {
        width: 120px;
        height: 170px;
        margin-bottom: 8px;
    }
    section.section-service-banner.section-service-banner-marketing .service_preview.service_preview-marketing .service_preview-content .service_preview--image.service_preview--imag-small.left {
        margin-right: -18px;
    }
    section.section-service-banner.section-service-banner-marketing .service_preview.service_preview-marketing .service_preview-content .service_preview--image.service_preview--imag-small.right {
        margin-left: -18px;
    }
    section.section-marketing-products {
        padding-bottom: 50px;
        padding-top: 60px;
    }
    section.section-marketing-products .section__head {
        margin-bottom: 30px;
    }
    section.section-marketing-products .section__head .section__head--title {
        font-size: 30px;
        line-height: 32px;
        margin-bottom: 10px;
    }
    section.section-marketing-products .section__head .section__head--description {
        font-size: 15px;
    }
    section.section-marketing-products .email_designs .email_designs--heading {
        width: 100%;
        margin-right: 90px;
        padding-top: 0;
        padding-left: 15px;
        margin-bottom: 20px;
    }
    section.section-marketing-products .email_designs .email_designs--heading h4 {
        font-size: 20px;
        letter-spacing: 0.3px;
        line-height: 30px;
    }
    section.section-marketing-products .email_designs .email_designs--col {
        width: 50%;
        padding: 0 15px;
    }
    section.section-marketing-products .email_designs .email_designs--col .email_design {
        font-size: 13px;
        letter-spacing: 0.18px;
        line-height: 34px;
    }
    section.section-marketing-benefits {
        padding-bottom: 60px;
    }
    section.section-marketing-benefits .benefits-images {
        margin-bottom: 90px;
        max-width: 350px;
        margin-left: auto;
        margin-right: auto;
    }
    section.section-marketing-benefits .benefits-images .mail-image {
        width: 245px;
        height: 350px;
        margin-right: 0;
    }
    section.section-marketing-benefits .benefits-images .phone-image {
        max-width: 195px;
        max-height: 260px;
        bottom: -50px;
        left: 0;
    }
    section.section-marketing-benefits .benefits-info {
        max-width: 350px;
        margin-left: auto;
        margin-right: auto;
    }
    section.section-marketing-benefits .benefits-info .title {
        font-size: 30px;
        line-height: 40px;
        margin-bottom: 20px;
        text-align: center;
    }
    section.section-marketing-benefits .benefits-info ul li {
        font-size: 14px;
        line-height: 20px;
        padding-top: 10px;
        padding-bottom: 10px;
    }
    section.section-marketing-services .section__head .section__head--title {
        font-size: 30px;
        line-height: 40px;
        margin-bottom: 10px;
    }
    section.section-marketing-services .section__head .section__head--description {
        font-size: 18px;
        line-height: 20px;
    }
    section.section-marketing-services .email-services .email-service {
        width: 175px;
        height: 260px;
        margin: 0 5px;
    }
}










/* 2k */
@media screen and (min-width: 2400px) {

    /* container */
    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl {
        max-width: 2280px;
    }

    /* BTN */
    .btn.btn-primary {
        width: 315px;
        height: 70px;
        font-size: 19px;
        line-height: 20px;
    }
    .btn.btn-primary:hover::after {
        transform: translateX(250px);
    }

    .btn.btn-border {
        font-size: 22px;
        line-height: 35px;
        padding: 0 7px 8px;
    }

    /* header */
    header.header .header-left .header__logo .header__logo--logo .backlogo {
        width: 230px;
        height: 80px;
        background-size: contain;
        -webkit-mask-size: contain !important;
        mask-size: contain !important;
    }
    header.header .header-left .header__logo .header__logo--info {
        font-size: 11px;
    }
    header.header .header-right .header__contact {
        padding-left: 80px;
        margin-top: 10px;
    }
    header.header .header-right .header__contact:before {
        height: 40px;
        width: 1px;
    }
    header.header .header-right .header__contact a {
        font-size: 24px;
        line-height: 24px;
    }
    header.header .header-right .header__contact span {
        font-size: 12px;
        letter-spacing: 1.2px;
    }
    header.header .header-right .header__menu {
        margin-right: 55px;
    }
    header.header .header-right .header__menu ul.menu>.menu-item {
        padding: 15px 25px;
    }
    header.header .header-right .header__menu ul.menu>.menu-item+.menu-item {
        margin-left: 10px;
    }
    header.header .header-right .header__menu ul.menu>.menu-item>a {
        font-size: 18px;
        line-height: 30px;
    }
    header.header .header-right .header__menu ul.menu ul.sub-menu {
        padding: 35px 35px 30px 30px;
    }
    header.header .header-right .header__menu ul.menu ul.sub-menu li.menu-item a {
        font-size: 18px;
        line-height: 35px;
        padding: 0 22px 0 0;
    }
    body header.header .header-right .header__menu ul.menu li.menu-item.custom-menu-item {
        width: 250px;
    }
    body header.header .header-right .header__menu ul.menu li.menu-item.custom-menu-item span.custom-menu-item-title {
        font-size: 22px;
        line-height: 30px;
        margin-bottom: 20px;
    }
    body header.header .header-right .header__menu ul.menu li.menu-item.custom-menu-item>a {
        font-size: 22px;
    }

    /* Footer */
    footer.footer .footer__widgets .container {
        max-width: 1680px;
    }

    /* Banner */
    section.section-front-banner .front__banner-back .front__banner-back-figure {
        height: 960px;
        width: 1440px;
        clip-path: polygon(320px 0%, 100% 2px, 100% 100%, 0% calc(100% - 9px));
    }
    section.section-front-banner .banner__container .banner__content {
        padding-left: 200px;
        max-width: 1300px;
    }
    section.section-front-banner .banner__container .banner__container-title {
        font-size: 90px;
        line-height: 110px;
    }
    section.section-front-banner .banner__container .banner__container-description {
        font-size: 24px;
        margin-bottom: 38px;
    }

    /* scroll */
    section.section-front-banner .section-front-banner-down span:first-child {
        width: 29px;
        height: 29px;
    }
    section.section-front-banner .section-front-banner-down span:last-child {
        height: 120px;
    }

    /* WORK */
    section.section-work .section__work--head .section__work--head-title {
        font-size: 60px;
        line-height: 60px;
        margin-bottom: 90px;
    }
    section.section-work .works__work .works__work--content .works__work--content-title {
        font-size: 40px;
        margin-bottom: 10px;
    }
    section.section-work .works__work .works__work--content .works__work--content-categories .works__work--content-categories-category {
        font-size: 24px;
    }
    section.section-services {
        padding-top: 110px;
    }
    section.section-services .section__services-head .section__services-head-title {
        font-size: 60px;
        line-height: 90px;
        margin-bottom: 15px;
    }
    section.section-services .section__services-head .section__services-head-description {
        font-size: 20px;
    }
    section.section-services .services__container .service {
        padding: 80px 130px;
    }
    section.section-services .services__container .service .service-icon {
        width: 66px;
        height: 66px;
        margin-bottom: 10px;
        background-size: contain;
    }
    section.section-services .services__container .service .service-title,
    section.section-services .services__container .service .service-title a {
        font-size: 24px;
        line-height: 35px;
        margin-bottom: 20px;
    }
    section.section-services .services__container .service .service-content {
        font-size: 16px;
        line-height: 24px;
    }
    section.section-banner-w-back {
        height: 960px;
    }
    section.section-banner-w-back .banner__container {
        transform: translateY(-100%);
    }
    section.section-banner-w-back .banner__container .banner__container-title {
        font-size: 90px;
        line-height: 110px;
    }
    section.section-banner-w-back .banner__container .banner__container-bottom .banner__container-description {
        font-size: 31px;
        line-height: 47px;
        margin-bottom: 30px;
    }
    section.section-reviews .section__reviews-head .section__reviews-head-title {
        font-size: 36px;
        line-height: 55px;
        margin-bottom: 10px;
    }
    section.section-reviews .reviews__container .reviews__carousel {
        padding-top: 30px;
        padding-bottom: 5px;
        position: relative;
        margin-top: 120px;
    }
    section.section-reviews .reviews__container .reviews__carousel {
        max-width: 1680px;
        margin-left: auto;
        margin-right: auto;
    }
    section.section-footer-banner .banner__container .banner__container-title {
        font-size: 80px;
        line-height: 110px;
    }



    /* Work Pages */
    section.section-banner-small {
        height: 700px;
    }
    section.section-banner-small .banner__container h2.banner__container-title {
        font-size: 90px;
        line-height: 110px;
    }
    section.section-banner-small .banner__container .banner__container-description {
        font-size: 22px;
        line-height: 34px;
    }

    section.sub-menu-filter {
        padding-top: 45px;
        padding-bottom: 55px;
    }
    section.sub-menu-filter .sticky-content {
        padding: 15px 0;
    }
    section.sub-menu-filter .menu .menu-item+.menu-item {
        margin-left: 55px;
    }
    section.sub-menu-filter .menu .menu-item a {
        font-size: 18px;
        line-height: 26px;
    }

    section.works-container .works .work {
        padding: 27px;
    }
    section.works-container[data-layout="layout1"] .works .work .inner-wrap {
        height: 1000px;
    }
    section.works-container[data-layout="layout1"] .works .work .work--content .work--content-categories .work--content-categories-category {
        font-size: 21px;
    }
    section.works-container[data-layout="layout3"] .works .work {
        padding: 7px;
    }
    section.works-container[data-layout="layout3"] .works .work .inner-wrap {
        height: 585px;
    }
    section.works-container[data-layout="layout3"] .works .work.work-big .inner-wrap {
        height: 1120px;
    }
    section.section-services.service-services.service-app-services .services__container .service {
        padding: 40px;
    }


    section.section-marketing-products .section__head .container,
    section.section-print-products .section__head .container,
    section.section-marketing-benefits .container,
    section.section-expertize .container {
        max-width: 1680px;
    }
    section.section-services.service-services-branding .services__container .service {
        padding: 80px 130px;
    }

    section.work-single-banner .banner__container .banner__container-title,
    section.section-service-banner .banner__container h1.banner__container-title {
        font-size: 90px;
    }
    section.work-single-banner .banner__container .banner__container-bottom .banner__tabs .banner__tabs-tab .banner_tab-ico {
        width: 50px;
        height: 40px;
        margin-bottom: 5px;
    }
    section.work-single-banner .banner__container .banner__container-bottom .banner__tabs .banner__tabs-tab:after {
        height: 2px;
    }



    /* work details */
    section.work-single-banner {
        height: 960px;
    }
    section.work-single-banner .banner__container .banner__container-bottom .banner__tabs .banner__tabs-tab .banner_tab-ico {
        width: 60px;
        height: 50px;
        margin-bottom: 5px;
    }
    section.work-single-banner .banner__container .banner__container-bottom .banner__tabs .banner__tabs-tab .banner_tab-name {
        font-size: 18px;
        letter-spacing: 1.8px;
        padding: 4px 9px;
    }

    section.section-website-main {
        /*min-height: auto;*/
        display: flex;
        justify-content: center;
        align-items: center;
        padding-top: 90px;
        padding-bottom: 95px;
        width: 100%;
        overflow: hidden;
    }
    section.section-website-main .section-website-main-content .section-website-main--desktop {
        width: 1370px;
        height: 950px;
        border-radius: 13px;
    }
    section.section-website-main .section-website-main-content .section-website-main--mobile {
        margin-top: 185px;
        width: 400px;
        height: 715px;
        margin-left: -140px;
    }

    section.section-web-showcase .showcase-desktop-slider .showcase-slide {
        width: 1350px;
        padding: 10px 70px;
    }
    section.section-web-showcase .showcase-desktop-slider .showcase-slide .showcase-slide-content .showcase-slide-image {
        width: 100%;
        height: 950px;
        margin-bottom: 20px;
        border-radius: 13px;
    }
    section.section-web-showcase {
        padding-top: 80px;
        padding-bottom: 80px;
    }
    section.section-web-showcase .section__head {
        margin-bottom: 60px;
    }
    section.section-web-showcase .showcase-desktop-slider .showcase-slide .showcase-slide-content .showcase-slide-caption {
        line-height: 24px;
        font-size: 18px;
    }
    section.section-web-showcase.section-web-showcase-mobile {
        padding-top: 120px;
        padding-bottom: 200px;
        min-height: auto;
    }

    section.section-web-showcase .showcase-mobile-slider .showcase-slide {
        padding: 10px 50px;
        width: 550px !important;
    }
    section.section-web-showcase .showcase-mobile-slider .showcase-slide .showcase-slide-content .showcase-slide-image {
        height: 800px;
    }
    section.section-web-showcase .showcase-mobile-slider-container {
        width: 2200px;
        margin: 0 auto;
    }
    section.section-web-showcase.section-web-showcase-mobile .section__head {
        margin-bottom: 100px;
    }




    section.section-branding-brands .brands-container,
    section.section-print-works .print-works-container {
        width: 2070px;
    }
    section.section-branding-brands .brands-container .brands-info,
    section.section-print-works .print-works-container .print-works-info {
        width: 900px;
        padding: 0 100px;
    }
    section.section-branding-brands .brands-container .brands-info .brands-info--title,
    section.section-print-works .print-works-container .print-works-info .print-works-info--title {
        font-size: 70px;
        line-height: 76px;
    }
    section.section-branding-brands .brands-container .brands-info .brands-info--description,
    section.section-print-works .print-works-container .print-works-info .print-works-info--description {
        font-size: 20px;
    }
    section.section-branding-brands .brands-container .brands-info .brands-info--link,
    section.section-print-works .print-works-container .print-works-info .print-works-info--link {
        font-size: 16px;
    }

    section.section-branding-brands .brands-container .brands,
    section.section-print-works .print-works-container .print-works {
        width: 1140px;
    }
    section.section-branding-brands .brands-container .brands .brand,
    section.section-print-works .print-works-container .print-works .print-work {
        width: 50%;
        height: 450px;
    }
    section.section-branding-brands .brands-container .brands .brand:nth-child(3),
    section.section-branding-brands .brands-container .brands .brand:nth-child(2),
    section.section-print-works .print-works-container .print-works .print-work:nth-child(3),
    section.section-print-works .print-works-container .print-works .print-work:nth-child(2) {
        height: 525px;
    }



    section.section-service-banner.section-service-banner-branding .service_preview .service_preview-slider .service_preview-slide {
        width: 1490px;
        padding: 10px 15px;
        text-align: center;
    }
    section.section-service-banner.section-service-banner-branding .service_preview .service_preview-slider .service_preview-slide .service_preview-slide-content .service_preview-slide-image {
        width: 100%;
        height: 950px;
        background-size: cover;
        background-position: top;
    }
    section.section-services.service-services-branding .services__container .service {
        padding: 60px 130px;
    }
    section.section-services.service-services-branding .services__container .service .service-icon {
        width: 80px;
        height: 80px;
        margin-bottom: 10px;
        background-size: contain;
    }
    section.section-services.service-services-branding .services__container .service .service-icon::before {
        font-size: 120px;
        top: -40px;
        left: -5px;
        transform: translateX(-100%);
    }
    section.section-services.service-services-branding .services__container .service .service-content {
        font-size: 17px;
        line-height: 26px;
    }

    section.section-branding-services .branding-services-container {
        width: 2100px;
        padding: 0 15px;
        display: flex;
        margin-left: auto;
        margin-right: auto;
    }
    section.section-branding-services .branding-services-container .branding-services-image {
        width: 1140px;
    }
    section.section-branding-services .branding-services-container .branding-services-info {
        width: 745px;
        padding-top: 50px;
        padding-right: 120px;
        margin-left: 160px;
    }


    section.section-app-revials .app_revial .app_revial--img {
        width: 700px;
        padding: 11px;
        padding-top: 30px;
        transform: translateY(250px);
    }
    section.section-app-revials .app_revial .app_revial--content {
        width: 590px;
    }
    section.section-app-revials .app_revial .app_revial--content .app_revial--content-title {
        font-size: 50px;
    }
    section.section-app-revials .app_revial .app_revial--content .app_revial--content-description {
        font-size: 20px;
    }


    section.section-service-about .about__content .about__container-title,
    section.section-service-portfolio .section__head .section__head--title {
        font-size: 60px;
        line-height: 60px;
    }

    section.section-service-portfolio .portfolio-slider .portfolio-slide {
        width: 1100px;
    }
    section.section-service-portfolio .portfolio-slider .portfolio-slide .portfolio-slide-content .portfolio-slide-image {
        height: 700px;
    }


}


/*.ip-header {*/
/*    position: fixed;*/
/*    top: 0;*/
/*    z-index: 100;*/
/*    min-height: 160px;*/
/*    width: 100%;*/
/*    height: 100%;*/
/*    background: #fff;*/
/*}*/
/*.ip-loader {*/
/*    position: absolute;*/
/*    left: 0;*/
/*    width: 100%;*/
/*    opacity: 1;*/
/*    cursor: default;*/
/*    pointer-events: none;*/
/*    bottom: 20%;*/
/*}*/
/*.ip-header .ip-inner {*/
/*    display: block;*/
/*    margin: 0 auto;*/
/*}*/
/*.ip-header .ip-loader svg path {*/
/*    fill: none;*/
/*    stroke-width: 6;*/
/*}*/
/*.ip-header .ip-loader svg path.ip-loader-circlebg {*/
/*    stroke: #ddd;*/
/*}*/
/*.ip-header .ip-loader svg path.ip-loader-circle {*/
/*    -webkit-transition: stroke-dashoffset 0.2s;*/
/*    transition: stroke-dashoffset 0.2s;*/
/*    stroke: #0E59BC;*/
/*}*/

/*.ip-header .ip-loader svg path.ip-loader-circle {*/
/*    -webkit-animation: circleLoad 1s linear infinite;*/
/*    animation: circleLoad 1s linear infinite;*/
/*}*/
/*@keyframes circleLoad {*/
/*    from {*/
/*        stroke-dashoffset: 200;*/
/*    stroke-dasharray: 200;*/
/*      }*/

/*      to {*/
/*        stroke-dashoffset: -200;*/
/*    stroke-dasharray: 200;*/
/*      }*/
/*}*/








@media screen and (max-width:1800px) and (min-width:1000px) and (min-height:800px) and (max-height:901px) {
    /*section.section-front-banner {*/
    /*    height: auto;*/
    /*    min-height: 100vh;*/
    /*}*/








}



div#ip-container {
    display: none !important;
}





















@media screen and (min-height: 600px) and (min-width: 1000px) {
    section.section-front-banner {
        height: 100vh !important;
    }
    section.section-front-banner .front__banner-back .front__banner-back-figure {
        height: 73.5vh !important;
        width: 67% !important;
    }
    section.section-front-banner .section-front-banner-down {
        bottom: 2.5vh;
    }
    section.section-front-banner .section-front-banner-down span:last-child {
        height: 9vh;
    }
}
@media screen and (min-height: 800px) and (min-width: 1000px) {
    section.section-front-banner .section-front-banner-down span:first-child {
        width: 2.25vh;
        height: 2.25vh;
    }
}
@media screen and (min-height: 700px) and (min-width: 1000px) {
    section.section-front-banner .section-front-banner-down span:first-child {
        width: 2.5vh;
        height: 2.5vh;
    }
}

@media screen and (max-height: 600px) and (min-width: 1000px) {
    section.section-front-banner {
        height: 600px !important;
    }
    section.section-front-banner .front__banner-back .front__banner-back-figure {
        height: 440px !important;
        width: 67% !important;
    }
    section.section-front-banner .section-front-banner-down {
        bottom: 17px;
    }
    section.section-front-banner .section-front-banner-down span:last-child {
        height: 53px;
    }
    section.section-front-banner .section-front-banner-down span:first-child {
        width: 18px;
        height: 18px;
    }
}


@media (max-width: 320px) {
    section.section-front-banner .banner__container .banner__container-title {
        font-size: 24px;
        line-height: 32px;
    }
}
/*@media screen and (max-width: 1000px) {
    section.section-front-banner {
        height: 100vh !important;
    }
    section.section-front-banner .front__banner-back .front__banner-back-figure {
        height: 73.5vh !important;
        width: 67% !important;
    }
    section.section-front-banner .section-front-banner-down {
        bottom: 2.5vh;
    }
    section.section-front-banner .section-front-banner-down span:last-child {
        height: 9vh;
    }
}
*/