:root {
    --mx-primary: #ff6d00;
    --mx-primary-text: #fff;
    --mx-secondary: #071689;
    --mx-secondary-text: #fff;
    --mx-body-bg-color: #1a1a1a;
    --mx-body-color: #fff;
    --mx-white: #fff;
    --mx-black: #000;
}
html {
    scroll-behavior: smooth;
}
body {
    background-color: var(--mx-body-bg-color);
    color: var(--mx-body-color);
}
body.mx-state-fixed-body {
    overflow: hidden;
}
.img-responsive {
    width: 100%;
    height: auto;
}
.container--large {
    max-width: 1200px;
}
.mx-header {
    padding: 20px 0;
    position: absolute;
    z-index: 1300;
    top: 0;
    right: 0;
    left: 0;
    padding: 15px 0;
    background-color: var(--mx-body-bg-color);
}
.mx-header.mx-header-fixed {
    position: fixed;
}
.mx-header.mx-header-border-bottom {
    box-shadow: 0 1px 0 #e5e9f2;
}
.mx-header .mx-header-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.mx-header .mx-logo {
    position: relative;
    z-index: 50;
}
.mx-header .mx-logo-link {
    text-decoration: none;
    color: inherit;
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    vertical-align: middle;
    transition: opacity 0.25s ease;
}
.mx-header .mx-logo img {
    width: auto;
    max-height: 60px;
    margin-right: 10px;
}
.mx-header .mx-logo-text {
    padding-right: 25px;
    font-weight: 700;
    letter-spacing: 0.01em;
    font-size: 16px;
    white-space: nowrap;
}
.mx-header .mx-nav-list {
    padding: 0;
    margin: 0;
    list-style: none;
}
.mx-nav-list--mobile {
    display: none;
}
.mx-nav-burger {
    display: none;
}
.mx-burger {
    display: inline-block;
    position: relative;
    padding: 15px 15px;
    border-radius: 50%;
    font-size: 0;
    cursor: pointer;
    box-shadow: 0 2px 4px 0 rgb(136 144 195 / 20%), 0 5px 15px 0 rgb(37 44 97 / 15%);
}
.mx-burger::before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    margin: auto;
    border-radius: 9999px;
    width: 40px;
    height: 40px;
    background-color: var(--mx-body-bg-color);
}
.mx-burger-box {
    width: 12px;
    height: 14px;
    display: inline-block;
    position: relative;
}
.mx-burger-inner, .mx-burger-inner::before, .mx-burger-inner::after {
    width: 12px;
    height: 2px;
    background-color: var(--mx-body-color);
    border-radius: 4px;
    position: absolute;
    transition-property: transform;
    transition-duration: 0.15s;
    transition-timing-function: ease;
}
.mx-burger-inner {
    display: block;
    top: 50%;
    margin-top: -1px;
    transition-duration: 0.075s;
    transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.mx-burger-inner::before, .mx-burger-inner::after {
    content: "";
    display: block;
}
.mx-burger-inner::before {
    transition: top 0.2s 0.12s ease, opacity 0.075s ease;
    background-color: var(--mx-body-color);
    top: -6px;
}
.mx-burger-inner::after {
    transition: bottom 0.2s 0.12s ease, transform 0.08s cubic-bezier(0.55, 0.055, 0.675, 0.19);
    background-color: var(--mx-body-color);
    bottom: -6px;
}
.mx-state-active-burger .mx-burger-inner {
    transform: rotate(45deg);
    transition-delay: 0.12s;
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.mx-state-active-burger .mx-burger-inner::before {
    top: 0;
    opacity: 0;
    transition: top 0.08s ease, opacity 0.08s 0.12s ease;
}
.mx-state-active-burger .mx-burger-inner::after {
    bottom: 0;
    transform: rotate(-90deg);
    transition: bottom 0.08s ease, transform 0.08s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.mx-header .mx-nav-item {
    display: inline-block;
    vertical-align: middle;
    margin-right: 15px;
}
.mx-page-block {
    padding-top: 100px;
}
.mx-page-block.mx-page-block--first {
    padding-top: 90px;
}
.page-mode-html .mx-page-block.mx-page-block--first {
    padding-top: 0;
}
.mx-button {
    transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
    overflow: hidden;
    display: inline-block;
    position: relative;
    padding: 12px 20px 12px;
    min-width: 120px;
    border: 2px solid transparent;
    min-height: 44px;
    border-radius: 4px;
    box-shadow: 0 2px 4px 0 rgb(136 144 195 / 20%), 0 5px 15px 0 rgb(37 44 97 / 15%);
    font-size: 0;
    line-height: 1.2;
    font-weight: 700;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    text-decoration: none;
    color: var(--mx-body-color);
}
.mx-button:hover, .mx-button:focus {
    transform: translateY(-2px);
    box-shadow: 0 2px 8px 0 rgb(136 144 195 / 22%), 0 8px 15px 0 rgb(37 44 97 / 17%);
    text-decoration: none;
    color: var(--mx-body-color);
}
.mx-button.mx-button-nav-link {
    padding: 12px 8px 12px;
}
.mx-button--primary {
    background-color: var(--mx-primary) !important;
    color: var(--mx-primary-text) !important;
}
.mx-button--secondary {
    background-color: var(--mx-secondary) !important;
    color: var(--mx-secondary-text) !important;
}
.mx-button--body-bg-color {
    background-color: var(--mx-body-bg-color) !important;
    color: var(--mx-body-color) !important;
}
.mx-button--body-color {
    background-color: var(--mx-body-color) !important;
    color: var(--mx-body-bg-color) !important;
}
.mx-button--empty {
    min-width: auto;
    background-color: transparent !important;
    border-color: transparent !important;
    box-shadow: none !important;
}
.mx-button--empty:hover {
    box-shadow: none !important;
}
.mx-button--black-outline {
    background-color: transparent;
    border-color: #303030;
    color: #303030;
}
.mx-button--black-outline:hover,.mx-button--black-outline:focus {
    background-color: transparent;
    border-color: #303030;
    color: #303030;
}
.mx-button-text {
    vertical-align: middle;
    font-size: 14px;
    transition: opacity 0.2s ease, transform 0.2s ease;
}
.mx-buttons-set--list {
    padding: 0;
    margin: 0;
    list-style: none;
}
.mx-buttons-set--item {
    display: inline-block;
    vertical-align: middle;
    margin-left: 7px;
    margin-right: 7px;
    padding-bottom: 14px;
    font-size: 0;
}
.mx-block img {
    max-width: 100%;
}
.mx-personal-branding .intro {
    font-weight: 400;
    font-size: 24px;
    line-height: 33px;
    margin-bottom: 28px;
}
.mx-personal-branding .title {
    font-weight: 800;
    font-size: 96px;
    line-height: 1;
    margin-bottom: 28px;
}
.mx-personal-branding .subtitle {
    font-weight: 400;
    font-size: 36px;
    line-height: 49px;
    margin-bottom: 28px;
}
.mx-personal-branding .mx-button {
    padding: 10px 20px;
}
.mx-personal-branding .mx-buttons-set--list {
    display: flex;
    gap: 20px;
}
.mx-personal-branding .mx-button span {
    font-weight: 600;
    font-size: 26px;
    line-height: 35px;
}
.mx-personal-branding img {
    max-width: 100%;
}
.mx-about-me {
    background: var(--mx-body-bg-color);
}
.title-header {
    font-weight: 800;
    font-size: 48px;
    line-height: 1;
}
.mx-about-me .title-header {
    margin-bottom: 36px;
}
.mx-about-me .title {
    font-weight: 800;
    font-size: 36px;
    line-height: 33px;
    margin-bottom: 29px;
}
.mx-about-me .content-text {
    font-weight: 600;
    font-size: 20px;
    line-height: 1.5;
    margin-bottom: 36px;
    text-align: justify;
}
.mx-about-me .mx-buttons-set--list {
    display: flex;
    justify-content: center;
    gap: 20px;
}
.mx-block .mx-border-bottom {
    width: 90px;
    height: 3px;
    background-color: var(--mx-primary);
    color: transparent;
    margin-top: 19px;
}
.mx-about-me .introduction {
    padding-bottom: 50px;
}
.mx-my-service .title-header {
    text-align: center;
    margin-bottom: 50px;
}
.mx-my-service .title-header, .mx-education-experience .title-header, .mx-skill .title-header, .mx-project .title-header, .mx-block-client .title-header {
    text-align: center;
}
.mx-my-service .mx-border-bottom, .mx-education-experience .mx-border-bottom, .mx-skill .mx-border-bottom, .mx-project .mx-border-bottom, .mx-block-client .mx-border-bottom {
    margin: auto;
    margin-top: 19px;
}
.mx-card-list {
    align-items: center;
    display: flex;
    gap: 20px;
}
.mx-card {
    border: 1px solid var(--mx-body-color);
    border-radius: 10px;
    padding: 20px;
    width: 33%;
    height: 100%;
}
.mx-card-icon {
    border: 1px solid var(--mx-body-color);
    border-radius: 5px;
    padding: 10px;
}
.mx-card-title {
    font-weight: 800;
    font-size: 24px;
    line-height: 1.2;
    margin-bottom: 10px;
}
.mx-card-subtitle {
    font-weight: 400;
    font-size: 16px;
    line-height: 91.68%;
}
.mx-card-content {
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
}
.mx-education-experience .title {
    font-weight: 800;
    font-size: 40px;
    line-height: 54px;
    margin-bottom: 47px;
}
.mx-education-experience-item:not(:last-child) {
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);;
}
.mx-education-experience-item:not(:first-child) {
    padding-top: 30px;
}
.mx-education-experience-title {
    font-weight: 700;
    font-size: 28px;
    line-height: 24px;
    padding-bottom: 10px;
}
.mx-education-experience-subtitle {
    font-weight: 400;
    font-size: 15px;
    line-height: 24px;
}
.mx-skill .subtitle {
    font-weight: 400;
    font-size: 30px;
    line-height: 41px;
}
.mx-skill .content {
    font-weight: 600;
    font-size: 20px;
    line-height: 1.5;
}
.mx-progress-bar .progress {
    border-radius: 0;
}
.mx-progress-bar .progress-bar {
    border-radius: 0 5px 5px 0;
    background-color: var(--mx-secondary);
}
.mx-progress-bar-title {
    font-style: italic;
    font-weight: 800;
    font-size: 20px;
    line-height: 1.5;
}
.mx-progress-bar-percentage {
    font-weight: 400;
    font-size: 20px;
    line-height: 1.5;
}
.mx-project .title {
    font-weight: 700;
    font-size: 28px;
    line-height: 1.5;
}
.mx-project .content {
    font-weight: 400;
    font-size: 18px;
    line-height: 1.5;
}
.mx-contact-me .subtitle {
    font-weight: 700;
    font-size: 30px;
    line-height: 41px;
    margin-bottom: 27px;
}
.mx-contact-me .form-group {
    margin-bottom: 27px;
}
.mx-contact-me .form-control {
    font-weight: 400;
    font-size: 18px;
    line-height: 25px;
    padding: 20px 16px;
}
.mx-contact-me input.form-control {
    height: 57px;
}
.mx-contact-me-social-media {
    list-style: none;
    margin-left: 0;
    padding-left: 0;
}
.mx-contact-me-social-media li {
    font-weight: 700;
    font-size: 30px;
    line-height: 41px;
}
.mx-contact-me-social-media li a {
    display: flex;
    gap: 22px;
    padding: 10px 0 30px 0;
    align-items: center;
    text-decoration: none;
}
.mx-contact-me-social-media li i {
    color: var(--mx-primary);
}
.mx-contact-me-social-media li a div {
    color: var(--mx-body-color);
}
.mx-footer-bottom {
    font-weight: 400;
    font-size: 20px;
    line-height: 24px;
    padding: 25px;
    color: var(--mx-body-color);
}
.mx-button-nav-link.spy-scroll-primary.active {
    color: var(--mx-primary);
}
.mx-button-nav-link.spy-scroll-secondary.active {
    color: var(--mx-secondary);
}
.mx-image-about-me {
    position: relative;
    border: 5px solid var(--mx-primary);
    border-radius: 20px;
    max-width: 479px;
    max-height: 398px;
    height: 398px;
}
.mx-about-me img {
    max-width: 479px;
    max-height: 396px;
    position: absolute;
    bottom: 28px;
    left: 32px;
    border-radius: 20px;
}
.mx-project .mx-image {
    border-radius: 10px;
}
#mx-navbar-builder .list-group-item.active {
    border-color: transparent;
}
.mx-buttons-set--list {
    display: flex;
    justify-content: center;
    gap: 20px;
}
.mx-client-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
}
.mx-client-item {
    max-width: 17%;
}
.mx-client-item-title {
    font-weight: 600;
    font-size: 18px;
    line-height: 24px;
}
.mx-banner {
    height: 475px;
}
.mx-banner .intro {
    font-weight: 500;
    font-size: 20px;
    line-height: 140%;
    color: #fff;
}
.mx-banner .title {
    font-weight: 700;
    font-size: 70px;
    line-height: 110%;
    color: #fff;
    margin-bottom: 20px;
}
.mx-banner .mx-buttons-set--list {
    justify-content: flex-start;
}
.mx-banner .bg-banner {
    height: 100%;
    padding-top: 60px;
    background: rgba(0, 0, 0, 0.4);
}
.mx-about-us-image-list mx-about-us-image-item {
    max-height: 240px;
}
.mx-about-us-image-list {
    margin-top: 30px;
    display: flex;
    justify-content: center;
}
.mx-header-about-us .mx-image {
    border-radius: 20px;
}
.mx-header-about-us .title {
    font-weight: 700;
    font-size: 32px;
    line-height: 120%;
    text-transform: capitalize;
}
.mx-header-about-us .content-text {
    font-weight: 500;
    font-size: 20px;
    line-height: 165.5%;
}
.mx-photos-my-service {
    background-color: var(--mx-primary);
}
.mx-photos-my-service .title-header {
    color: #fff;
}
.mx-photos-my-service-list {
    display: flex;
    flex-wrap: wrap;
}
.mx-photos-my-service-item {
    width: 50%;
    overflow: hidden;
    padding: 7px;
}
.mx-photos-my-service-content .mx-image {
    object-fit: contain;
}
.mx-photos-my-service-content {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}
.mx-photos-my-service-content .image-description {
    position: absolute;
    right: 0;
    left: 0;
    top: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.63) 100%);
    font-weight: 700;
    font-size: 25px;
    line-height: 30px;
    color: #fff;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 20px;
}
.mx-page-block .mx-message-me {
    position: relative;
    margin-top: -100px;
}
.mx-page-block--first .mx-message-me {
    margin-top: 0;
}
.mx-page-block--first .mx-message-me .container {
    padding-top: 100px;
}
.bg-primary-top {
    background-color: var(--mx-primary);
    height: 50%;
    position: absolute;
    left: 0;
    right: 0;
    z-index: -1;
}
.mx-message-me-list {
    list-style: none;
    margin: 0;
    padding: 0;
}
.mx-message-me-list li {
    font-weight: 700;
    font-size: 30px;
    line-height: 41px;
}
.mx-message-me-list a {
    text-decoration: none;
}
.mx-message-me-list a .mx-message-label {
    font-weight: 700;
    font-size: 14px;
    color: #fff;
    line-height: 140%;
}
.mx-message-me-list a .mx-message-description {
    font-weight: 400;
    font-size: 14px;
    line-height: 140%;
    color: #fff;
}
.message-left-content {
    padding: 25px;
}
.message-left-content .subtitle {
    font-weight: 600;
    font-size: 24px;
    line-height: 120%;
    color: var(--mx-primary);
    margin-bottom: 20px;
}
.message-left-content .content-form-builder {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.message-left-content .content-form-builder > * {
    flex: auto;
    width: 30%;
}
.message-left-content .mx-buttons-set--list {
    justify-content: flex-end;
}
.message-right-content {
    background-color: var(--mx-primary);
    color: #fff;
    padding: 25px;
    height: 100%;
}
.message-right-content .mx-message-me-list li {
    margin-bottom: 20px;
}
.message-right-content .mx-message-me-list li:last-child {
    margin-bottom: 0;
}
.message-right-content .mx-message-me-list li i {
    color: #fff;
}
.mx-message-me > .container > .row {
    padding: 0;
    margin: 0;
    background: #fff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
}
.text-primary {
    color: var(--mx-primary) !important;
}
.text-secondary {
    color: var(--mx-secondary) !important;
}
.mx-page-block--first .mx-text-header {
    padding-top: 50px;
}
.mx-builder-header-title {
    font-weight: 700;
    font-size: 40px;
    line-height: 110%;
    margin-bottom: 10px;
}
.mx-builder-header-subtitle {
    font-weight: 600;
    font-size: 20px;
    line-height: 140%;
}
.mx-gallery-column-content-item .description-content {
    font-weight: 500;
    font-size: 20px;
    line-height: 175.5%;
}
.mx-gallery-column-content-item-image {
    flex-wrap: wrap;
    gap: 0;
}
.mx-gallery-column-content-item-image-item .description-content {
    font-weight: 500;
    font-size: 20px;
    line-height: 175.5%;
}
.mx-gallery-column-content-item-image-item {
    flex: 50%;
    padding: 10px;
    border-radius: 10px;
}
.mx-gallery-column-content-item-image-item:nth-child(even) {
    padding-right: 0;
}
.mx-gallery-column-content-item-image-item:nth-child(odd) {
    padding-left: 0;
}
.image-item-description {
    font-weight: 500;
    font-size: 28px;
    line-height: 120%;
    margin-top: 10px;
    margin-bottom: 10px;
}
.mx-gallery-image .header-title {
    font-weight: 700;
    font-size: 32px;
    line-height: 120%;
}
.mx-gallery-image .header-subtitle {
    font-weight: 700;
    font-size: 20px;
    line-height: 212.5%;
}
.mx-gallery-column-content-item-image-item {
    flex: 50%;
}
.mx-gallery-column-content-item-image-item .mx-image {
    border-radius: 10px;
}
.mx-footer-menu {
    border-top: 1px solid #e3e3e3;
    padding: 60px;
    margin-top: 50px;
}
.mx-footer-logo img {
    width: 100px;
}
.mx-footer-menu .description {
    font-weight: 500;
    font-size: 16px;
    line-height: 26px;
}
.mx-footer-menu i {
    color: var(--mx-primary);
}
.footer-menu-list {
    display: flex;
    gap: 30px;
    justify-content: flex-end;
    width: 100%;
}
.footer-menu-list .title {
    font-weight: 600;
    font-size: 20px;
    color: var(--mx-primary);
    line-height: 26px;
}
.footer-menu-list ul {
    padding: 0;
    margin: 0;
    min-width: 160px;
    list-style-type: none;
}
.footer-menu-list ul li {
    padding-top: 6px;
}
.footer-menu-list ul li a {
    font-weight: 500;
    font-size: 16px;
    line-height: 26px;
    text-decoration: none;
    color: var(--mx-body-color);
}
.mx-gallery-column .subtitle-header {
    font-weight: 700;
    font-size: 32px;
    line-height: 120%;
}
.mx-message-me .form-group label {
    font-weight: bold;
}
.mx-plugin-floating-button {

}
.mx-plugin-floating-button a {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 20px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
}
.mx-plugin-floating-button .mx-plugin-floating-button-icon {
    margin-top: 15px;
}
.blog-card {
    box-shadow: none;
    border: none;
}
.blog-card h4 a {
    text-decoration: none;
    color: rgb(82, 82, 82);
    font-weight: 700;
}
.blog-card h4 a:hover {
    text-decoration: none;
    color: rgb(82, 82, 82);
    font-weight: 700;
}
.blog-card .section-button {
    margin: 1.5rem 0;
}
.blog-section .blog-section-header {
    font-weight: 700;
    margin-bottom: 1rem;
}
.form-blog-search input.blog-search {
    border: 1px solid #cacaca;
    border-top-left-radius: 20px !important;
    border-bottom-left-radius: 20px !important;
    border-right: 0;
}
.form-blog-search .btn-blog-search {
    background-repeat: no-repeat;
    height: 100%;
    border: 1px solid #cacaca;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
    border-left: 0;
    background-position: center;
    min-width: 40px;
    display: block;
    box-shadow: none;
}
.form-blog-search .btn-blog-search svg path {
    fill: var(--mx-primary);;
}
ul.blog-section-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
ul.blog-section-list li {
    background: var(--mx-secondary);
    border-radius: 20px;
    padding: 15px 50px 15px 20px;
    position: relative;
}
ul.blog-section-list li::after {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f061";
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
    font-size: 1.1rem;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    position: absolute;
    color: var(--mx-secondary-text);
}
ul.blog-section-list li a {
    color: var(--mx-secondary-text);
    font-weight: 600;
    font-size: 0.8rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
    display: block;
}
ul.blog-section-list li a:hover {
    text-decoration: none;
}
ul.tag-menu-nav {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0;
    list-style-type: none;
    flex-wrap: wrap;
}
ul.tag-menu-nav li {
    margin-right: 10px;
    margin-bottom: 10px;
}
.btn-tag {
    background: #e2e2e2;
    border-radius: 5px;
    color: #8a8a8a;
    font-style: normal;
    font-weight: 700;
    border-color: #e2e2e2;
    max-width: 300px;
    overflow: hidden;
    text-overflow: ellipsis;
}
.btn-tag.active {
    background: var(--mx-primary);
    border-radius: 5px;
    color: var(--mx-primary-text);
    font-style: normal;
    font-weight: 700;
    border-color: var(--mx-primary);
}
.blog-content .blog-title {
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}
.cres-editor-js-image img {
    max-width: 100%;
    height: auto;
}
.cres-editor-js-block p {
    margin-bottom: 0;
}
.cres-editor-js-content .cres-editor-js-block {
    padding: 0.4em 0;
}
.cres-editor-js-block ol, .cres-editor-js-block ul {
    margin: 0;
    padding-left: 40px;
    outline: none;
}

@media (max-width: 1199px) {

    .mx-image-about-me {
        max-width: 338px;
        max-height: 298px;
        height: 298px;
    }
    .mx-about-me img {
        max-width: 379px;
        max-height: 296px;
    }
}

@media (max-width: 991px) {

    .mx-header.mx-fixed {
        position: fixed;
    }
    .mx-nav-burger {
        display: block;
    }
    .mx-nav-list--desktop {
        display: none;
    }
    .mx-header .mx-nav-list.mx-nav-list--mobile {
        display: flex;
        justify-content: center;
        align-items: flex-start;
        flex-wrap: wrap;
        flex-direction: column;
        padding: 90px 15px 40px 15px;
        background-color: var(--mx-body-bg-color);
    }
    .mx-state-opened-menu .mx-nav-links-wrapper {
        background-color: transparent;
    }
    .mx-header .mx-logo img {
        max-height: 40px;
    }
    .mx-nav-list--mobile .mx-buttons-set,
    .mx-nav-list--mobile .mx-nav-item {
        width: 100%;
    }
    .mx-header {
        padding: 20px 0;
    }
    .mx-nav-list--mobile .mx-button-nav-link {
        text-align: left;
    }
    .mx-nav-links-wrapper {
        opacity: 0;
        visibility: hidden;
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        top: 0;
        margin: auto;
        overflow: auto;
        transition: opacity 0.25s ease, transform 0.25s ease;
    }
    .mx-state-opened-menu .mx-nav-links-wrapper {
        visibility: visible;
        opacity: 1;
    }
    .mx-personal-branding .title {
        font-size: 60px;
    }
    .mx-personal-branding .subtitle {
        font-size: 20px;
        line-height: 27px;
    }
    .mx-button {
        width: 100%;
        padding: 10px;
    }
    .buttons-set--item {
        width: 100%;
    }
    .mx-personal-branding .mx-button span {
        font-weight: 600;
        font-size: 14px;
        line-height: 19px;
    }
    .mx-image-about-me {
        max-width: 80%;
        max-height: 80%;
        height: 225px;
    }
    .mx-about-me img {
        max-width: 100%;
        max-height: 100%;
        left: 20px;
        bottom: 18px;
    }
    .title-header {
        font-weight: 800;
        font-size: 40px;
        line-height: 1;
    }
    .mx-about-me .title {
        font-weight: 800;
        font-size: 24px;
        line-height: 1;
        text-align: left;
    }
    .mx-about-me .content-text {
        font-weight: 600;
        font-size: 16px;
        line-height: 1.5;
        text-align: left;
    }
    .mx-about-me .mx-buttons-set--list {
        display: block;
    }
    .mx-card-list {
        flex-direction: column;
    }
    .mx-card {
        width: 100%;
    }
    .mx-my-service .title-header, .mx-education-experience .title-header, .mx-skill .title-header, .mx-project .title-header, .mx-block-client .title-header {
        text-align: left;
    }
    .mx-my-service .mx-border-bottom, .mx-education-experience .mx-border-bottom, .mx-skill .mx-border-bottom, .mx-project .mx-border-bottom {
        margin: 0;
        margin-top: 19px;
    }
    .mx-education-experience .title {
        margin-top: 30px;
        margin-bottom: 30px;
    }
    .mx-page-block {
        padding-top: 90px;
        padding-bottom: 0;
    }
    .mx-about-me .introduction {
        padding-bottom: 0;
        padding-top: 10px;
    }
    .mx-personal-branding-image {
        display: none;
    }
    .mx-contact-me .subtitle {
        margin-bottom: 10px;
    }
    .mx-contact-me .form-group {
        margin-bottom: 20px;
    }
    .mx-contact-me input.form-control {
        height: 40px;
    }
    .mx-contact-me-social-media-label {
        font-weight: 700;
        font-size: 14px;
        line-height: 19px;
    }
    .mx-contact-me-social-media li {
        padding: 10px 0;
    }
    .mx-button .mx-button-text {
        font-weight: 600;
        font-size: 14px;
        line-height: 19px;
    }
    .mx-contact-me-social-media li a {
        padding-top: 0;
        padding-bottom: 10px;
    }
    .mx-gallery-column-content-item-image-item {
        flex: 100%;
        padding-left: 0;
        padding-right: 0;
    }
    .mx-footer-menu {
        padding: 10px;
    }
    .mx-footer-description {
        flex-direction: row;
    }
    .footer-menu-list {
        flex-direction: column;
    }
    .footer-menu-item {
        margin-top: 20px;
    }
    .message-left-content .content-form-builder {
        flex-direction: column;
    }
    .message-left-content .content-form-builder > * {
        width: 100%;
    }
    .mx-photos-my-service-item {
        width: 100%;
    }
    .mx-about-us-image-list {
        flex-wrap: wrap;
    }
    .mx-about-us-image-item {
        width: 25%;
    }
    .mx-banner .title {
        font-size: 32px;
    }
    .mx-banner {
        height: auto;
    }
    .mx-banner .bg-banner {
        padding-top: 30px;
        padding-bottom: 30px;
    }
}

@media (max-width: 960px) {

    .mx-about-me img {
        max-width: 100%;
        max-height: 100%;
        left: 20px;
        bottom: 18px;
    }
}

@media (max-width: 720px) {

    .mx-client-item {
        max-width: 100%;
        width: 100%;
    }
    .mx-client-item-title {
        margin-top: 20px;
    }
}
