/*-----------------------------------------------------------------------

  * Structor Template v1.0 
  * Copyright 2023 The Structor Author (https://themeforest.net/user/gianfar)

  =======================================================================*/
/*
---------------------
TABLE OF CONTENTS:
--------------------- 
BASIC SETTINGS
PRELOADER
ANIMATION SETTINGS
CONTAINER STYLE
SCROLLBAR
NAVIGATION
ICON MENU
BUTTON SETTINGS
SCROLL DOWN ICON
SKIP CONTENT
HEADER
SERVICES SECTION
OUR RECENT WORKS
FUN FACTS SECTION
CLIENTS SECTION
FOOTER
ABOUT US PAGE
TEAM SECTION
ABOUT ME PAGE
SPLIT BACKGROUND
VIDEO BACKGROUND PAGE
PARALLAX WORKS PAGE
SINGLE PROJECT PAGE
BLOG PAGE
COMMENTS
CONTACTS PAGE
FORM
CONTACT FORM 7
WORDPRESS STYLES
MEDIA QUERIES FOR RESPONSIVE DESIGN
HORIZONTAL SCROLL
 */

/* BASIC SETTINGS */
a {
    color: #ee3636;
    font-weight: 600;
}

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

ul,
menu,
dir {
    display: block;
    list-style-type: circle;
    ;
    -webkit-margin-before: 0px;
    -webkit-margin-after: 0px;
    -webkit-margin-start: 0px;
    -webkit-margin-end: 0px;
    -webkit-padding-start: 0px;
}

ul,
ol {
    color: #999;
}

ul {
    margin: 0;
    padding: 0;
}

figure {
    margin: 0;
}

p {
    margin-top: 0;
    margin-bottom: 0;
    -webkit-margin-before: 0;
    margin-block-start: 0;
    -webkit-margin-after: 0;
    margin-block-end: 0;
    color: #999;
}

html {
    font-size: 14px;
}

html,
body {
    position: relative;
    height: 100%;
    touch-action: auto;
}

body {
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    font-size: 14px;
    color: #ffffff;
    overflow: hidden !important;
    background-color: #0b0f17;
}

/* 1.1  POPUP TRANSITION */
.mfp-with-zoom .mfp-container,
.mfp-with-zoom.mfp-bg {
    opacity: 0;
    -webkit-backface-visibility: hidden;
    transition: all 0.3s ease-out;
}

.mfp-with-zoom.mfp-ready .mfp-container {
    opacity: 1;
}

.mfp-with-zoom.mfp-ready.mfp-bg {
    opacity: 0.8;
}

.mfp-with-zoom.mfp-removing .mfp-container,
.mfp-with-zoom.mfp-removing.mfp-bg {
    opacity: 0;
}

.scroll-content {
    overflow: hidden;
}

#main-scrollbar,
#horizontal-scrollbar {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

h1 {
    font-size: 60px;
}

h2 {
    font-size: 48px;
}

h3 {
    font-size: 24px;
}

h4 {
    font-size: 18px;
}

h5 {
    font-size: 16px;
}

#main-wrap {
    position: absolute;
    height: 100%;
    width: 100%;
    transition-duration: 0.2s;
}

.title-section {
    font-weight: 600;
    color: #fff;
    margin-bottom: 48px;
    font-size: 72px;
}

.subtitle-section {
    line-height: 38px;
    color: #999;
    font-weight: 200;
}

.wrap-scroll-img {
    overflow: hidden;
    height: calc(100% - 20%);
}

.c-scrollbar_thumb {
    background-color: #fff;
}

/* 1.2  PRELOADER */
.preloader-gif {
    position: relative;
    opacity: 0.6;
    z-index: 1001;
}

#loader-wrapper {
    font-family: 'Poppins', sans-serif;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
}

.loader-txt {
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

#loader {
    position: relative;
    color: transparent;
    font-size: 24px;
    line-height: 24px;
    margin-left: 24px;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #666666;
    text-transform: uppercase;
    z-index: 1001;
    letter-spacing: 4px;
    font-weight: 600;
}

#loader:before {
    content: attr(data-text);
    position: absolute;
    overflow: hidden;
    height: 24px;
    max-width: 7em;
    white-space: nowrap;
    color: #666666;
    -webkit-animation: loading 2s linear;
    animation: loading 2s linear;
}

@-webkit-keyframes loading {
    0% {
        max-width: 0;
    }
}

@keyframes loading {
    0% {
        max-width: 0;
    }
}

#loader-wrapper .loader-section {
    position: fixed;
    top: 0;
    width: 51%;
    height: 100%;
    background-color: #0b0f17;
    z-index: 1000;
    -webkit-transform: translateX(0);
    transform: translateX(0);
}

#loader-wrapper .loader-section.section-left {
    left: 0;
}

#loader-wrapper .loader-section.section-right {
    right: 0;
}

/* PRELOAER */
.loaded #loader-wrapper .loader-section.section-left {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
    transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.loaded #loader-wrapper .loader-section.section-right {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.loaded #loader,
.loaded .preloader-gif {
    opacity: 0;
    transition: all 0.3s ease-out;
}

.loaded #loader-wrapper {
    visibility: hidden;
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
    transition: all 0.3s 1s ease-out;
}

/* ANIMATION SETTINGS */
.animated.delay-01s {
    -webkit-animation-delay: 0.1s;
    animation-delay: 0.1s;
}

.animated.delay-02s {
    -webkit-animation-delay: 0.2s;
    animation-delay: 0.2s;
}

.animated.delay-03s {
    -webkit-animation-delay: 0.3s;
    animation-delay: 0.3s;
}

.animated.delay-04s {
    -webkit-animation-delay: 0.4s;
    animation-delay: 0.4s;
}

.animated.delay-05s {
    -webkit-animation-delay: 0.5s;
    animation-delay: 0.5s;
}

.animated.delay-06s {
    -webkit-animation-delay: 0.6s;
    animation-delay: 0.6s;
}

.animated.delay-07s {
    -webkit-animation-delay: 0.7s;
    animation-delay: 0.7s;
}

.animated.delay-08s {
    -webkit-animation-delay: 0.8s;
    animation-delay: 0.8s;
}

.animated.delay-09s {
    -webkit-animation-delay: 0.9s;
    animation-delay: 0.9s;
}

.img-anim-el {
    transition-duration: 0.15s;
}

/*
 * CONTAINER STYLE
 */
.ps {
    overflow: hidden !important;
    overflow-anchor: none;
    -ms-overflow-style: none;
    touch-action: auto;
    -ms-touch-action: auto;
}

/*
 * SCROLLBAR
 */
.ps__rail-x {
    display: none;
    opacity: 0;
    transition: background-color .2s linear, opacity .2s linear;
    -webkit-transition: background-color .2s linear, opacity .2s linear;
    height: 15px;
    bottom: 0px;
    position: absolute;
}

.ps__rail-y {
    display: none;
    opacity: 0;
    transition: background-color .2s linear, opacity .2s linear;
    -webkit-transition: background-color .2s linear, opacity .2s linear;
    width: 15px;
    right: 0;
    position: absolute;
}

.ps--active-x>.ps__rail-x,
.ps--active-y>.ps__rail-y {
    display: block;
    background-color: transparent;
}

.ps:hover>.ps__rail-x,
.ps:hover>.ps__rail-y,
.ps--focus>.ps__rail-x,
.ps--focus>.ps__rail-y,
.ps--scrolling-x>.ps__rail-x,
.ps--scrolling-y>.ps__rail-y {
    opacity: 0.6;
}

.ps .ps__rail-x:hover,
.ps .ps__rail-y:hover,
.ps .ps__rail-x:focus,
.ps .ps__rail-y:focus,
.ps .ps__rail-x.ps--clicking,
.ps .ps__rail-y.ps--clicking {
    background-color: #eee;
    opacity: 0.9;
}

/*
 * Scrollbar thumb styles
 */
.ps__thumb-x {
    background-color: #aaa;
    border-radius: 6px;
    transition: background-color .2s linear, height .2s ease-in-out;
    -webkit-transition: background-color .2s linear, height .2s ease-in-out;
    height: 6px;
    bottom: 2px;
    position: absolute;
}

.ps__thumb-y {
    background-color: #aaa;
    border-radius: 6px;
    transition: background-color .2s linear, width .2s ease-in-out;
    -webkit-transition: background-color .2s linear, width .2s ease-in-out;
    width: 6px;
    right: 2px;
    position: absolute;
}

.ps__rail-x:hover>.ps__thumb-x,
.ps__rail-x:focus>.ps__thumb-x,
.ps__rail-x.ps--clicking .ps__thumb-x {
    background-color: #999;
    height: 11px;
}

.ps__rail-y:hover>.ps__thumb-y,
.ps__rail-y:focus>.ps__thumb-y,
.ps__rail-y.ps--clicking .ps__thumb-y {
    background-color: #999;
    width: 11px;
}

/* MS supports */
@supports (-ms-overflow-style: none) {
    .ps {
        overflow: auto !important;
    }
}

@media screen and (-ms-high-contrast: active),
(-ms-high-contrast: none) {
    .ps {
        overflow: auto !important;
    }
}

/* NAVIGATION  */
.menu-icon {
    position: fixed;
    right: 24px;
    top: 24px;
    z-index: 5;
    background-repeat: no-repeat;
    width: 120px;
    height: 120px;
    overflow: hidden;
    cursor: pointer;
    transition-duration: 0.2s;
}

.text-menu {
   /* color: #ee3636;*/
    margin-right: 12px;
    font-size: 12px;
    font-weight: 600;
    opacity: 0.8;
}

@-webkit-keyframes spin {
    from {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes spin {
    from {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

.menu-logo:hover {
    -webkit-animation: spin 10s linear 0s infinite;
    animation: spin 10s linear 0s infinite;
}

/* ICON MENU */
.wrap-nav {
    cursor: pointer;
    position: fixed;
    top: 48px;
    right: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 4;
}

.icon-nav {
    display: inline-block;
    height: 10px;
}

.icon-nav-1 {
    display: block;
    width: 48px;
    height: 2px;
    transition-duration: 0.2s;
}

.icon-nav-2 {
    display: block;
    width: 48px;
    height: 2px;
    margin-top: 6px;
    transition-duration: 0.2s;
}

.icon-nav-1-on {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    transition-duration: 0.2s;
    margin-top: 3px !important;
}

.icon-nav-2-on {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    transition-duration: 0.2s;
    margin-top: 0 !important;
}

.full-nav {
    display: flex;
    justify-content: start;
    align-items: center;
    position: fixed;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    -webkit-transform: translateY(-110%);
    transform: translateY(-110%);
    transition: all 0.4s cubic-bezier(0.6, 0.05, 0.4, 1);
    background-color: #0b0f17;
}

.full-nav-on {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    transition: all 0.4s cubic-bezier(0.6, 0.05, 0.4, 1);
}

.top-layer {
    position: absolute;
    width: 100%;
    height: 100%;
    top: -100%;
    left: 0;
    bottom: auto;
    right: auto;
    transition: all 0.4s cubic-bezier(0.6, 0.05, 0.4, 0.5);
    z-index: 1;
}

.top-layer.active {
    top: 100%;
    background: transparent;
}

.full-nav-links {
    margin-top: 48px;
    position: relative;
    text-align: center;
    z-index: 5;

}

.full-nav-links ul {
    list-style: none;
}

.full-nav-links a {
    position: relative;
    overflow: hidden;
    display: inline-block;
    font-size: 36px;
    letter-spacing: 1px;
    color: #fff;
    line-height: 72px;
    font-weight: 600;
}

.full-nav-links a:hover {
    color: #fff;
    transition-duration: 0.5s;
}

.current-menu-item>a {
    color: #fff !important;
}

.nav-img>a {
    position: relative;
}

.nav-img>a:before {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: #fff;
    bottom: 0;
    transition-duration: 0.3s;
}

.nav-img>a:hover:before {
    width: 100%;
    transition-duration: 0.3s;
}

.str-submenu>li>a {
    font-size: 14px;
    color: #999;
    line-height: 24px;
}

.full-nav .section-scrollbar-demo-menu {
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.full-nav .section-scrollbar-demo-menu .scroll-content {
    max-height: 100%;
}

.full-nav .section-scrollbar-demo-menu .scrollbar-track {
    opacity: 0;
}

/* BUTTON SETTINGS */
.wrap-button-link {
    border-bottom: 3px solid;
    height: 24px;
    overflow: hidden;
    position: relative;
    display: inline-block;
    cursor: pointer;
}

.wrap-button-link:hover .button-link-hover {
    position: absolute;
    -webkit-transform: translateY(-26px);
    transform: translateY(-26px);
    transition-duration: 0.5s;
}

.wrap-button-link:hover span {
    -webkit-transform: translateY(-26px);
    transform: translateY(-26px);
    transition-duration: 0.5s;
}

.wrap-button-link span {
   /* color: #ee3636;*/
    font-weight: 900;
    font-size: 18px;
    display: block;
    transition-duration: 0.5s;
}

.wrap-button-link .button-link-hover {
    font-weight: 900;
    font-size: 18px;
    position: absolute;
    display: inline-block;
    top: 26px;
    left: 0;
    width: 100%;
    height: 26px;
    transition-duration: 0.5s;
}

.button-link a {
    display: inline-block;
}

.icon-link {
    margin-left: 12px;
    background: url(../icon/icon-link.svg);
    height: 14px;
    width: 14px;
    display: inline-block;
}

/* SCROLL DOWN ICON */
#wrapper {
    display: table;
    width: 100%;
    height: 100%;
    position: absolute;
    bottom: 24px;
    z-index: 1;
}

#wrapper-inner {
    display: table-cell;
    vertical-align: bottom;
    width: 100%;
    height: 100%;
}

#scroll-down {
    left: 0;
    right: 0;
    position: absolute;
    bottom: 90px;
    text-align: center;
    z-index: 1;
}

#scroll-down:before {
    -webkit-animation: elasticus 2.7s cubic-bezier(1, 0, 0, 1) infinite;
    animation: elasticus 2.7s cubic-bezier(1, 0, 0, 1) infinite;
    position: absolute;
    width: 1px;
    height: 90px;
    background: #fafafa;
    content: ' ';
    z-index: -1;
}

.home-parallax-v2>#scroll-down:before {
    background: #f3f3f3;
}

@-webkit-keyframes elasticus {
    0% {
        -webkit-transform-origin: 0% 0%;
        transform-origin: 0% 0%;
        -webkit-transform: scale(1, 0);
        transform: scale(1, 0);
    }

    50% {
        -webkit-transform-origin: 0% 0%;
        transform-origin: 0% 0%;
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1);
    }

    50.1% {
        -webkit-transform-origin: 0% 100%;
        transform-origin: 0% 100%;
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1);
    }

    100% {
        -webkit-transform-origin: 0% 100%;
        transform-origin: 0% 100%;
        -webkit-transform: scale(1, 0);
        transform: scale(1, 0);
    }
}

@keyframes elasticus {
    0% {
        -webkit-transform-origin: 0% 0%;
        transform-origin: 0% 0%;
        -webkit-transform: scale(1, 0);
        transform: scale(1, 0);
    }

    50% {
        -webkit-transform-origin: 0% 0%;
        transform-origin: 0% 0%;
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1);
    }

    50.1% {
        -webkit-transform-origin: 0% 100%;
        transform-origin: 0% 100%;
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1);
    }

    100% {
        -webkit-transform-origin: 0% 100%;
        transform-origin: 0% 100%;
        -webkit-transform: scale(1, 0);
        transform: scale(1, 0);
    }
}

/*SKIP CONTENT*/
a.skip-main {
    display: flex;
    justify-content: center;
    color: fafafa;
    position: absolute;
    top: 48px;
    width: 100%;
    text-decoration: underline;
    opacity: 0;
}

a.skip-main:focus {
    opacity: 1;
}
/*HEADER */
.header-logo {
    color: #fff;
    font-weight: 600;
    position: absolute;
    font-size: 18px;
    width: 50px;
    height: 50px;
    left: 24px;
    top: 48px;
    z-index: 2;
}

.header-logo img {
    width: inherit;
    height: inherit;
}

.str-text-logo {
    color: #fff;
    font-weight: 600;
    position: absolute;
    font-size: 18px;
    left: 24px;
    top: 48px;
    z-index: 2;
    padding: 4px;
    border: 1px solid #999;
}

.home-header-bg {
    min-height: 100vh;
    position: relative;
}

.parallax-slider .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    min-height: 100vh;
}

.slider-text {
    width: 500px;
}

.slider-text p {
    color: #ffffff;
    font-weight: 300;
}

.slider-text .button-link {
    margin-top: 48px;
}

.main-title {
    font-size: 60px;
}

.about-text {
    transition-duration: 0.2s;
}

.about-text .button-link {
    margin-top: 48px;
}

/*SERVICES SECTION*/
.services-item {
    position: relative;
    border-top: 1px solid #1f1f1f;
    padding-top: 24px;
    padding-bottom: 24px;
}

.services-item .service-name {
    color: #fff;
}

.services-item .service-name span {
    font-size: 14px;
    margin-right: 12px;
    font-weight: 800;
}

.header-text-section {
    margin-bottom: 72px;
}

/*OUR RECENT WORKS*/
.recent-works {
    padding-top: 48px;
    position: relative;
    overflow: hidden;
}

.recent-works .header-text-section {
    margin-bottom: 0;
}

.alcon-works-img {
    width: 90%;
}

/*FUN FACTS SECTION*/
.fun-facts {
    position: relative;
    overflow: hidden;
    padding: 144px 0 144px 0;
}

.fun-facts span {
    font-size: 96px;
    font-weight: 100;
}

.facts-trigger {
    position: absolute;
}

.fact-item p {
    color: #fff;
    font-weight: 400;
}

/* CLIENTS SECTION */
.clients {
    padding-top: 0;
    padding-bottom: 144px;
}

.client-logo-wrap {
    justify-content: center;
}

.client-logo {
    margin: 24px;
    padding: 24px;
    width: 168px;
    height: 168px;
    border: 1px solid #999999;
    opacity: 1;
}

/* FOOTER */
footer {
    border-top: 1px solid #222;
}

footer .logo>img {
    margin-top: 96px;
    width: 120px;
    opacity: 0.9;
}

footer .social-link {
    margin-top: 48px;
}

footer .social-link h4 {
    font-weight: 600;
    display: inline-block;
    color: #fff;
    margin-right: 12px;
}

footer .social-link a {
    margin-right: 6px;
}

.footer-about h3 {
    margin-top: 48px;
    margin-bottom: 24px;
    color: #fff;
}

.footer-about p {
    font-weight: 400;
}

.footer-cotact-info {
    font-size: 24px;
    margin-top: 24px;
}

.footer-cotact-info p {
    text-decoration: underline;
    font-weight: 400;
}

.footer-cotact-info p span {
    color: #fff;
}

.copyright {
    padding: 12px 0 12px 0;
    margin-top: 96px;
    border-top: 1px solid rgba(255, 255, 255, 8%);
}

.copyright p {
    font-size: 12px;
    font-weight: 300;
    color: #999;
}

.o-image_wrapper {
    position: relative;
    overflow: hidden;
}

/* ABOUT US PAGE */
.about-us {
    position: relative;
    overflow: hidden;
    padding-top: 168px;
    padding-bottom: 168px;
}

.about-me .container {
    position: relative;
}

.row.header-tagline {
    position: absolute;
    width: 100%;
}

.header-tagline h2 {
    font-family: 'Playfair Display', serif;
    text-align: right;
    position: relative;
    font-weight: 500;
    color: #fff;
    line-height: 48px;
    z-index: 0;
    font-style: italic;
    font-size: 32px;
}

.header-text-bg {
    display: flex;
    align-items: center;
    position: absolute;
    width: 1000%;
    height: 100%;
    top: 0px;
    left: 10%;
    z-index: -1;
}

.header-text-bg span {
    transition-duration: 0.5s;
    font-size: 360px;
    color: #fff;
    font-weight: 700;
    -webkit-text-stroke-width: 2px;
    -webkit-text-stroke-color: #fff;
    opacity: 0.1;
}

.single-scroll-bg span {
    position: relative;
    left: 5%;
}

.our-philosophy {
    background: url(../img/bg-1.svg);
    background-size: 40%;
    background-position: right bottom;
    background-repeat: no-repeat;
}

/* TEAM SECTION */
.item-team-2,
.item-team-3 {
    margin-top: 96px;
}

.team-content {
    margin-top: 48px;
}

.team-content h3 {
    color: #fff;
    font-weight: 600;
    margin-bottom: 12px;
}

.team-content h4 {
    font-weight: 400;
    color: #999;
    margin-bottom: 24px;
}

/* ABOUT ME PAGE */
.my-story {
    background: url(../img/bg-2.svg);
    background-size: 60%;
    background-position: right bottom;
    background-repeat: no-repeat;
}

.about-me {
    position: relative;
    overflow: hidden;
    padding-top: 168px;
    padding-bottom: 168px;
    border-bottom: 1px solid #1f1f1f;
}

.sub-title {
    color: #999;
    font-weight: 600;
    margin-top: 24px;
}

.skill .header-text-section {
    margin-bottom: 48px;
}

/* SPLIT BACKGROUND */
.home-split {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    overflow: hidden;
    border-bottom: 1px solid #1f1f1f;
}

.home-split .img-slider:before {
    opacity: 0;
}

.home-split-img {
    position: absolute;
    right: 0;
    height: 120%;
    width: 50%;
    background-position: center !important;
    background-size: cover !important;
    transition-duration: 0.3s;
    will-change: transform;
}

.home-split-pattern {
    position: absolute;
    left: -20%;
    height: 100%;
    width: 100%;
    background-position: center !important;
    background-size: cover !important;
    transition-duration: 0.3s;
    will-change: transform;
    z-index: -1;
}

.home-split-content {
    width: 50%;
    will-change: transform;
    transition-duration: 0.12s;
}

.home-split-content h1 {
    color: #fff;
}

.home-split-content .button-link {
    margin-top: 48px;
}

/*  VIDEO BACKGROUND PAGE  */
.ytp-video-bg {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.ytp-logo>.header-logo {
    -webkit-filter: invert(100);
    filter: invert(100);
}

.home-video-content h1,
.home-video-content p {
    color: #ffffff;
}

.home-video-content .button-link {
    margin-top: 48px;
}

/* PARALLAX WORKS PAGE */
.wrap-panel {
    width: 100%;
    height: 100vh;
    transition-duration: 0.01s;
    overflow: hidden;
}

.wrap-panel .p-works-item {
    display: inline-block;
    position: relative;
    height: 170%;
    width: 100%;
    background-position: center !important;
    background-size: cover !important;
    transition-duration: 0.2s;
}

.p-info-works {
    position: absolute;
    color: #ffffff;
    bottom: 15%;
    margin-left: 48px;
    width: 40%;
    text-shadow: 0px 0px 20px #000000;
}

.p-info-works p {
    margin-top: 24px;
    color: #ffffff;
    font-weight: 200;
}

/* SINGLE PROJECT PAGE */
.header-project {
    position: relative;
    overflow: hidden;
    padding-top: 168px;
    padding-bottom: 72px;
}

.project-section {
    padding-top: 0;
    padding-bottom: 144px;
}

.project-info>p>span {
    padding-right: 6px;
    font-weight: 600;
    color: #fafafa;
}

.project-info>p>a {
    color: #999;
    text-decoration: underline;
    transition-duration: 0.3s;
    font-weight: 400;
}

.project-info>p>a:hover {
    color: #fafafa;
}

.image-link-project {
    display: inline-block;
    margin-bottom: 30px;
}

.image-link-project img {
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
    transition: 1s cubic-bezier(0.085, 0.85, 0.17, 1);
}

.image-link-project img:hover {
    -webkit-clip-path: inset(10px 10px 10px 10px);
    clip-path: inset(10px 10px 10px 10px);
}

.arrows-section {
    margin-top: 48px;
}

.arrows-obj {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 48px;
}

.arrow-left {
    display: inline-block;
}

.project-arrow {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    height: 48px;
    text-transform: uppercase;
    font-weight: 600;
    color: #fff;
    position: relative;
}

.project-arrow:before {
    content: "";
    width: 150%;
    height: 1px;
    bottom: 0;
    background-color: #fff;
    position: absolute;
}

.arrow-text {
    transition-duration: 0.5s;
}

.arrow-left:hover div .arrow-text {
    -webkit-transform: translateX(24px);
    transform: translateX(24px);
    transition-duration: 0.5s;
}

.arrow-right:hover div .arrow-text {
    -webkit-transform: translateX(-24px);
    transform: translateX(-24px);
    transition-duration: 0.5s;
}

.page-link {
    font-size: 16px;
    position: relative;
    display: block;
    padding: 6px;
    margin-left: -1px;
    color: #9E9E9E;
    background-color: transparent;
    border: none;
    transition-duration: 0.2s;
}

.page-item.active .page-link {
    z-index: 0;
    color: #fafafa;
    background-color: transparent;
    border-color: transparent;
    font-weight: 600;
}

.page-link:focus,
.page-link:hover {
    color: #fafafa;
    text-decoration: none;
    background-color: transparent;
    border-color: transparent;
    font-weight: 600;
}

.project-nav nav {
    position: relative;
    width: 100%;
}

.project-nav nav .nav-links {
    display: flex;
    justify-content: space-between;
    flex-direction: row-reverse;
}

.project-nav nav .nav-links .nav-next {
    position: absolute;
    left: 0;
}

.project-nav .arrow-right:hover div .arrow-text {
    -webkit-transform: translateX(24px);
    transform: translateX(24px);
    transition-duration: 0.5s;
}

.project-nav .arrow-left:hover div .arrow-text {
    -webkit-transform: translateX(-24px);
    transform: translateX(-24px);
    transition-duration: 0.5s;
}

/* BLOG PAGE */
.news-sidebar {
    margin-bottom: 48px;
}

.latest-post-text h3 {
    color: #fff;
    margin-bottom: 24px;
    margin-top: 24px;
    font-weight: 600;
}

.news-tag {
    float: right;
    display: inline-block;
    color: #fff;
    font-weight: 400;
    transition-duration: 0.5s;
}

.news-tag a {
    display: inline-block;
    margin-bottom: 6px;
    color: #666;
    font-weight: 800;
    transition-duration: 0.5s;
    border: 1px solid #303048;
    border-radius: 142px;
    padding: 3px 14px;
}

.news-tag a:hover {
    color: #E0E0E0;
    background-color: #303048;
}

.news-tag a::before {
    content: '#';
}

.post-date {
    display: inline-block;
    color: #666;
    margin-right: 24px;
}

.date-post {
    color: #666;
}

.search-block {
    margin-bottom: 12px;
}

.form-control {
    display: block;
    width: 100%;
    height: 48px;
    padding: 6px 12px;
    font-size: 12px;
    font-style: italic;
    color: #666 !important;
    background-color: #131313;
    background-image: none;
    border: none;
    border-bottom: none;
    border-radius: 0;
    box-shadow: none;
    transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
    resize: none;
}

.form-control:focus {
    background-color: #131313 !important;
    border-color: transparent;
    outline: 0;
    box-shadow: none;
}

.latest-post {
    margin-bottom: 96px;
}

.latest-post-info {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.latest-post-text {
    margin-top: 24px;
}

.latest-post-text p {
    margin-top: 12px;
}

.latest-post-text .button-link {
    margin-top: 24px;
}

.blog-about-me h5 {
    margin-top: 24px;
    margin-bottom: 12px;
}

ol.wp-block-latest-comments {
    padding: 0;
}

.wp-block-categories-list a,
.wp-block-latest-comments a,
.wp-block-archives-list a,
.wp-block-latest-posts a {
    color: #757575;
    font-weight: 600;
    text-decoration: underline;
}

.wp-block-categories-list a:hover,
.wp-block-latest-comments a:hover,
.wp-block-archives-list a:hover,
.wp-block-latest-posts a:hover {
    color: #E0E0E0;
    text-decoration: underline;
}

.widget_block {
    margin-top: 24px;
}

.widget_block ul {
    list-style: none;
}

.widget_block:first-child {
    margin-top: 0;
}

.wp-block-latest-comments__comment-date {
    color: #fafafa;
    letter-spacing: 1px;
    margin-top: 6px;
}

.tags a {
    color: #999;
    font-weight: 600;
}

.tags a:hover {
    color: #E0E0E0;
}

.blog-categories a:hover,
.recent-post a:hover,
a.news-tag:hover {
    color: #E0E0E0;
}

.blog-categories h5,
.recent-post h5,
.tags h5 {
    margin-bottom: 12px;
}

.blog-sidebar h5 {
    font-weight: 600;
    color: #fafafa;
}

.blog-categories,
.recent-post,
.tags {
    margin-top: 24px;
}

.blog-categories a,
.recent-post a {
    text-decoration: underline;
}

.sidebar-tags li {
    display: inline-block;
    padding: 3px 18px;
    background-color: #131313;
    margin-bottom: 12px;
    margin-right: 12px;
    border-radius: 50px;
}

blockquote {
    margin: 24px 0;
    color: #fafafa;
    font-style: italic;
    font-size: 16px;
    font-weight: 600;
}

.header-single-post {
    position: relative;
    overflow: hidden;
    padding-top: 168px;
    border-bottom: 1px solid #1f1f1f;
}

.single-post-img {
    height: 400px;
}

.post-author {
    margin-top: 24px;
    color: #ffff;
    float: right;
    font-style: italic;
}

.wp-block-quote em {
    color: #fff;
}

nav.navigation.pagination {
    display: inline-block;
    width: 100%;
}

.nav-links {
    width: 100%;
    display: inline-block;
    text-align: center;
}

a.next.page-numbers {
    float: right;
}

a.prev.page-numbers {
    float: left;
}

.str-pagination {
    font-size: 16px;
    display: inline-block;
    padding: 12px 6px;
}

.str-pagination:hover {
    color: #fafafa;
    font-weight: 600;
}

a .str-pagination {
    color: #999;
}

span .str-pagination {
    font-weight: 600;
}

/* COMMENTS */

.comments-area {
    margin-top: 40px;
    margin-bottom: 12px;
}

.comments-area h2.comments-title {
    font-size: 25px;
    margin-bottom: 20px;
}

.comment-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.comment-meta {
    margin-bottom: 20px;
}

.comment-meta a {
    color: #fafafa;
}

.comment-metadata a {
    color: #999;
}

.comment-meta img {}

.comment-author.vcard {
    position: relative;
    padding-left: 50px;
    margin-top: 12px;
}

.comment-author.vcard img {
    position: absolute;
    left: 0;
    top: 5px;
}

.comment-metadata {
    margin-left: 50px;
}

.comments-area table {
    border-left: 1px solid #dddd;
    border-bottom: 1px solid #ddd;
    margin-bottom: 20px;
}

.comments-area table td,
.comments-area table th {
    border-right: 1px solid #ddd;
    border-top: 1px solid #ddd;
    padding: 10px;
}

.comments-area th {
    background: #278cc1;
    color: #fff;
}

.comments-area dd {
    margin-bottom: 15px;
}

.comments-area .comments-content ul,
.comments-area .comments-content ol {
    padding-left: 15px;
}

.comments-area .comment-content ul,
.comments-area .comment-content ol {
    padding-left: 15px;
}

.comment-reply-link {
    background: #303048;
    display: inline-block;
    padding: 5px 20px;
    color: #fafafa;
    border-radius: 100px;
}

a.comment-reply-link:hover {
    color: #fafafa;
}

.comment-list li.comment {
    margin-bottom: 30px;
}

.comment-metadata {
    font-size: 80%;
}

.comment-reply-link {
    margin-top: 10px;
}

.comment-list li ol.children {
    padding-left: 50px;
    margin: 0;
    list-style: none;
    margin-top: 25px;
}

.comment-list li ol.children ol.children {
    padding-left: 20px;
}

.comment-list li.comment:last-child {
    border-bottom: 0px solid;
    padding-bottom: 0;
    margin-bottom: 0;
}

.comment-respond {
    margin-top: 50px;
}

.comment-notes {
    font-size: 90%;
    margin-bottom: 40px;
}

.comment-form label {
    display: inline-block;
}

.comment-form input,
.comment-form textarea {
    width: 100%;
    margin-bottom: 20px;
    background: transparent;
    color: #999;
    border: 1px solid #333;
    border-radius: 2px;
}

.comment-form textarea:focus-visible {
    border: unset;
}

.comment-form input[type=submit] {
    width: auto;
}

.comment-reply-title a {
    color: #fafafa;
    padding-left: 12px;
    text-decoration: underline;
}

.comment-form a {
    color: #fafafa;
    text-decoration: underline;
}

input#submit {
    background-color: #303048;
    color: #fafafa;
    padding: 5px 20px;
    border-radius: 100px;
    cursor: pointer;
    font-weight: 300;

}

.comment-form-cookies-consent {
    margin-bottom: 24px;
}

.comment-form-cookies-consent input {
    width: 18px;
    margin: unset;
    margin-right: 6px;
}

/* CONTACTS PAGE */
.contact-info {
    margin-top: 48px;
}

.contact-info ul>li>p span {
    font-weight: 600;
    color: #fafafa;
}

/* FORM */
.well {
    min-height: 20px;
    background-color: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    margin-top: 48px;
}

.form-control {
    display: block;
    width: 100%;
    height: 48px;
    padding: 6px 12px;
    color: #666 !important;
    background-color: transparent;
    background-image: none;
    border: 1px solid #666;
    border-radius: 0;
    box-shadow: none;
    transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
    resize: none;
}

.has-error .form-control {
    box-shadow: none;
}

.has-error .form-control:focus {
    border-color: #843534;
    box-shadow: none;
}

.inform {
    text-align: center;
}

.inform span {
    font-weight: 700;
    color: #4db6ac;
}

.contact_inform {
    margin-bottom: 44px;
    border-bottom: 1px solid #000000;
    padding: 22px 0 22px 0;
}

.form-control:focus {
    background-color: #131313 !important;
    border-color: transparent;
    outline: 0;
    box-shadow: none;
}

textarea#message {
    height: 96px;
}

button#form-submit {
    cursor: pointer;
    border: none;
    background-color: transparent;
    padding: 0;
}

button#form-submit .wrap-button-link {
    margin-top: 24px;
}

button:focus {
    outline: none;
}

.form-group {
    margin-bottom: 24px;
}

.help-block.with-errors {
    color: #fff;
}

.text-success {
    color: #fff !important;
}

/* CONTACT FORM 7 */

.wpcf7-form label {
    width: 100%;
}

.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 textarea {
    background-color: transparent;
    color: #fafafa;
    width: 100%;
    border-width: 1px;
    border-style: solid;
    border-color: #333;
    margin-bottom: 24px;
    padding-left: 6px;
}

.wpcf7-text {
    height: 48px;
}

.wpcf7 textarea::placeholder,
.wpcf7 input::placeholder {
    padding-left: 6px;
    font-style: italic;
}

.wpcf7-submit {
    padding: 6px 20px!important;
    font-size: 14px;
    cursor: pointer;
    background-color: transparent;
    color: #fafafa;
    font-weight: 400;
    border: 1px solid #303048;
    border-radius: 100px;
    transition-duration: .3s;
}

.wpcf7-submit:hover {
    color: #fafafa;
    background-color: #303048;
}
/* WORDPRESS STYLES */
.wp-block-calendar table th {
    background: transparent;
}

.wp-block-calendar tbody td,
.wp-block-calendar th {
    border: transparent;
}

.wp-calendar-table thead {
    border-bottom: 1px solid #333;
}

span.wp-calendar-nav-prev a,
span.wp-calendar-nav-next a {
    color: #999;
}

.wp-block-calendar a {
    color: #fafafa;
    font-weight: 600;
    text-decoration: unset;
}

.wp-block-calendar table caption,
.wp-block-calendar table tbody {
    color: #999;
}

a.wp-block-pages-list__item__link {
    color: #757575;
    font-weight: 600;
    text-decoration: underline;
}

a.wp-block-pages-list__item__link:hover {
    color: #E0E0E0;
    text-decoration: underline;
}

.wp-block-search__input.wp-block-search__input {
    display: block;
    width: 100%;
    height: 48px;
    padding: 6px 12px;
    color: #666 !important;
    background-color: transparent;
    background-image: none;
    border: 1px solid #666;
    border-radius: 0;
    box-shadow: none;
    transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
    resize: none;
}

.tag-cloud-link {
    font-size: 14px !important;
    font-weight: 600;
    color: #757575;
    border-radius: 100px;
    padding: 3px 14px;
    border: 1px solid #303048;
    transition-duration: .3s;
    margin-bottom: 6px;
    text-decoration: unset !important;
}

a.tag-cloud-link::before {
    content: '#';
}

.tag-cloud-link:hover {
    color: #fafafa;
    background-color: #303048;
}

.widget_meta a,
.wp-block-rss__item a {
    color: #757575;
    font-weight: 600;
    text-decoration: underline;
}

.widget_meta a:hover,
.wp-block-rss__item a:hover {
    color: #E0E0E0;
    text-decoration: underline;
}

.wp-block-latest-comments__comment-meta {
    padding-top: 12px;
}

.wp-block-button.alignright {
    text-align: right;
}

.wp-block-button.alignleft {
    text-align: left;
}

code {
    color: #4caf50;
    background-color: #191922;
}

.wp-block-code {
    color: #4caf50;
}

font {
    color: #999;
}

.wp-post-image {
    width: 100%;
    height: 100%;
}

.sticky {
    background-color: #191922;
    padding: 12px;
    border-radius: 5px;
    margin-bottom: 48px;
}

.sticky .latest-post {
    margin-bottom: 24px;
}

.error-404 {
    margin-top: 96px;
}

.widget {
    margin-bottom: 24px;
}

.widget a {
    display: inline-block;
    color: #757575;
    font-weight: 600;
    text-decoration: underline;
}

table#wp-calendar {
    width: 200px;
}

.widget a:hover {
    color: #E0E0E0;
    text-decoration: underline;
}

.search-form {
    display: flex;
}

.search-form .search-field {
    display: block;
    width: 100%;
    height: 48px;
    padding: 6px 12px;
    color: #666 !important;
    background-color: transparent;
    background-image: none;
    border: 1px solid #666;
    border-radius: 0;
    box-shadow: none;
    transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
    resize: none;
}

.search-form .search-submit {
    border: 1px solid #ccc;
    padding: 0.375em 0.625em;
    cursor: pointer;
}

.search-form label {
    margin: unset;
    margin-right: 9px;
}

.page-404 {
    position: relative;
    overflow: hidden;
    padding-top: 168px;
    padding-bottom: 168px;
    border-bottom: 1px solid #1f1f1f;
}

.page-404 h1 {
    text-transform: uppercase;
}

.page-404 .header-text-bg {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0px;
    z-index: -1;
}

.wp-block-button.is-style-squared a,
.wp-block-button__link.wp-block-button.is-style-squared a {
    border-radius: 0;
}

.wp-block-quote {
    padding-left: 12px;
    border-left: 2px solid #191922;
}

.wp-block-quote p {
    color: #fafafa;
}

.wp-block-pullquote cite,
.wp-block-pullquote.has-background cite,
.wp-block-quote.is-style-large cite em,
.wp-block-quote cite {
    font-weight: 300;
    color: #999;
    font-size: 14px;
}

.wp-block-quote.is-style-large {
    padding-left: 12px;
    border-left: 4px solid #191922;
}

.wp-block-pullquote p {
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    font-style: italic;
    font-size: 32px;
}

.wp-block-pullquote.has-background {
    background-color: #303048 !important;
}

.wp-block-pullquote.has-background p {
    color: #fafafa;
}

.wp-block-pullquote.has-background cite {
    color: #999;
}

.has-text-color strong {
    color: #fafafa !important;
}

nav.wp-calendar-nav {
    text-align: left;
}

pre,
pre.wp-block-preformatted {
    color: #999;
}

.wp-block-table.is-style-stripes tbody tr:nth-child(odd) {
    background-color: #191922;
}

pre.wp-block-verse {
    color: #999;
}

article .latest-post-text p {
    margin-bottom: 24px;
}

.wp-block-heading {
    margin-top: 48px;
    font-size: 24px;
}

p:has(.aligncenter) {
    text-align: center
}

.aligncenter:has(img) {
    text-align: center;
    width: 100% !important;
}

p:has(.alignright) {
    float: right;
    margin-left: 24px;
    margin-bottom: 24px;
}

.aligncenter {
    text-align: center
}

.alignright {
    float: right;
    margin-left: 24px;
    margin-bottom: 24px;
}

.alignleft {
    margin-right: 24px;
    margin-bottom: 24px;
    float: left;
}

figure {
    max-width: 100% !important;
}

table,
th,
td {
    border: 1px solid #999;
    padding: 10px;
    vertical-align: middle;
}

input[type="password"i] {
    display: block;
    width: 100%;
    height: 48px;
    padding: 6px 12px;
    color: #666 !important;
    background-color: transparent;
    background-image: none;
    border: 1px solid #666;
    border-radius: 0;
    box-shadow: none;
    transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
    resize: none;
}

input[type="submit"i] {
    border: 1px solid #ccc;
    padding: 0.375em 0.625em;
    height: 48px;
}

.gallery-columns-3 {
    width: 100%;
}

.gallery-item {
    display: inline-block;
    text-align: center;
    vertical-align: top;
    width: 100%;
}

img.attachment-thumbnail.size-thumbnail {
    height: 100%;
    width: 100%;
}

.gallery-columns-2 .gallery-item {
    max-width: 50% !important;
}

.gallery-columns-3 .gallery-item {
    max-width: 33.33% !important;
}

.gallery-columns-4 .gallery-item {
    max-width: 25% !important;
}

.gallery-columns-5 .gallery-item {
    max-width: 20% !important;
}

.gallery-columns-6 .gallery-item {
    max-width: 16.66% !important;
}

.gallery-columns-7 .gallery-item {
    max-width: 14.28% !important;
}

.gallery-columns-8 .gallery-item {
    max-width: 12.5% !important;
}

.gallery-columns-9 .gallery-item {
    max-width: 11.11% !important;
}

.gallery-caption {
    display: block;
}

figcaption,
.wp-caption,
.wp-caption-text,
.wp-block-embed figcaption {
    margin-top: 12px;
    margin-bottom: 24px;

}

.title-section,
.latest-post-text h3,
.entry-title {
    overflow-wrap: break-word;
}

.no-comments {
    margin-top: 24px;
    padding: 6px 12px;
    background-color: #191922;
    color: #fafafa;
    display: inline-block;
}

.wp-block-group.has-background {
    padding: 24px;
}

.wp-block-separator:not(.is-style-wide):not(.is-style-dots) {
    width: 100px;
}

.page-links .post-page-numbers {
    margin-right: 6px;
    margin-left: 6px;
}

.menu-item-has-children .sub-menu a {
    line-height: 24px;
    font-size: 18px;
    font-weight: 400;
    color: #999;
}

.menu-item-has-children .sub-menu {
    overflow: hidden;
    height: 0;
}

.menu-item-has-children:hover .sub-menu {
    height: 100%;
}

.menu>.menu-item-has-children:hover:before{
    transition-duration: .5s;
    transform: rotateZ(90deg);
}

.menu>.menu-item-has-children:before{
    content: "+";
    position: absolute;
    font-size: 40px;
    top: 10px;
    right: -40px;
    color: #fafafa;
}

.sub-menu .menu-item-has-children .sub-menu {
    margin-left: 48px;
}

.sub-menu .menu-item-has-children .sub-menu li a {
    font-size: 14px;
    font-weight: 300;
}

/* MEDIA QUERIES FOR RESPONSIVE DESIGN */
@media (max-height: 520px) {
    .horizontal-el {
        height: 400px;
        width: 300px;
        margin-right: 160px;
    }
}

@media (max-height: 420px) {
    .header-text-bg span {
        font-size: 260px;
    }

    .horizontal-el {
        height: 300px;
        width: 270px;
    }

    .htl-works-img {
        width: 150%;
    }
}

@media (max-width: 992px) {
    .image-link-home .img {
        height: 400px;
    }

    .image-link-home .img .anim-el-works {
        height: 140%;
    }

    .p-info-works {
        width: 50%;
    }

    .masonry-grid-sizer-3 {
        width: 50%;
    }

    .masonry-item-3 {
        overflow: hidden;
        width: 33.333%;
    }
}

@media (max-width: 768px) {
    .full-nav-links a {
        font-size: 24px !important;
        line-height: 36px !important;
    }

    .wrap-scroll-img {
        height: 100%;
    }

    .about-text {
        margin-top: 24px;
    }

    .home-split-content h1 {
        font-size: 48px;
    }

    .service-name {
        margin-bottom: 24px;
    }

    .fun-facts {
        padding: 24px 0 24px 0;
    }

    .fun-facts span {
        font-size: 60px;
    }

    .fun-facts .fun-facts-bg span {
        font-size: 160px;
    }

    .photo-frame {
        display: none;
    }

    footer {
        padding-bottom: 0;
    }

    .about-us,
    .about-me {
        padding-bottom: 120px;
    }

    .our-philosophy,
    .my-story {
        border-top: 1px solid #1f1f1f;
        background-size: 60%;
    }

    .team-content {
        margin-top: 24px;
    }

    .circle {
        margin-top: 48px;
    }

    .news-sidebar {
        margin-top: 48px;
    }

    .other-posts {
        padding: 96px 0 48px 0;
    }

    .other-posts .post-link {
        display: inline-block;
        margin-bottom: 48px;
    }

    .p-info-works {
        width: 90%;
    }

    a.img-link-hover {
        font-size: 36px;
        line-height: 68px;
    }

    .wrap-portfolio-bg {
        left: 15%;
    }

    .image-link-home .img {
        height: 300px;
    }

    .image-link-home .img .anim-el-works {
        height: 150%;
    }

    .masonry-item-3 .image-link-home .img {
        height: 300px;
    }

    .masonry-item-3 .image-link-home .img .anim-el-works {
        height: 130%;
    }

    .header-tagline h2 {
        font-size: 18px;
    }

    .header-text-section .title-section {
        font-size: 48px;
    }
}

@media (max-width: 576px) {
    .full-nav-links {
        width: 100%;
    }

    .home-split-img {
        display: none;
    }

    .home-split-content {
        width: 100%;
    }

    .number-attr-2 {
        margin: 48px 0 48px 0;
    }

    h1 {
        font-size: 48px;
    }

    h2 {
        font-size: 24px;
    }

    h3 {
        font-size: 18px;
    }

    h4 {
        font-size: 14px;
    }

    .header-text-section {
        margin-bottom: 48px;
    }

    .header-text-section .title-section {
        font-size: 36px;
    }

    .header-logo,
    .wrap-nav {
        top: 24px;
    }

    .first-number {
        font-size: 48px;
    }

    .main-title {
        font-size: 48px;
    }

    .slider-text {
        width: 300px;
    }

    .tagline-marquee {
        font-size: 60px;
        line-height: 60px;
    }

    .anime-number-2,
    .anime-number-3 {
        display: inline-block;
        margin-top: 48px;
    }

    .about-us .title-section,
    .about-me .title-section {
        margin-bottom: 24px;
    }

    .subtitle-section {
        line-height: 36px;
    }

    .skill .header-text-section {
        margin-bottom: 0;
    }

    .wrap-masonry-grid-2,
    .masonry-grid-sizer-2,
    .masonry-item-2 {
        width: 100%;
        margin-top: 0px !important;
    }

    .masonry-item-2,
    .masonry-item-3 {
        margin-top: 48px !important;
    }

    .wrap-masonry-grid-3,
    .masonry-grid-sizer-3,
    .masonry-item-3 {
        width: 100%;
    }

    .contact-info {
        margin-top: 0;
    }

    .fact-item:nth-child(2n) {
        margin-top: 48px;
        margin-bottom: 48px;
    }

    .wrap-circle-button {
        margin-top: 48px;
    }

    .carousel-slider .swiper-slide {
        align-items: center;
    }

    .p-info-works {
        width: 90%;
        margin-left: 15px;
    }

    .my-story {
        background: none;
    }

    .image-link-home .img {
        height: 600px;
    }

    .image-link-home .img .anim-el-works {
        height: 120%;
    }

    .masonry-item-3 .image-link-home .img {
        height: 600px;
    }

    .header-text-bg {
        width: 1500%;
    }
}

@media (max-width: 450px) {
    .main-title {
        font-size: 24px;
        font-weight: 600;
        margin-bottom: 24px;
    }

    .footer-cotact-info p {
        font-size: 18px;
    }

    .our-philosophy {
        background: none;
    }

    a.img-link-hover {
        font-size: 24px;
        line-height: 48px;
    }

    .image-link-home .img {
        height: 400px;
    }

    .image-link-home .img .anim-el-works {
        height: 140%;
    }

    .header-text-bg {
        width: 1700%;
    }
}

/* HORIZONTAL SCROLL */
@media (max-height: 575.9px) {
    .wrap-horizontal .title-section {
        margin-bottom: 12px;
    }

    .wrap-horizontal .header-text-section {
        margin-bottom: 24px;
    }

    .wrap-horizontal .header-tagline h2 {
        line-height: 48px;
    }

    .wrap-horizontal h1 {
        font-size: 48px;
    }

    .wrap-horizontal h2 {
        font-size: 36px;
    }

    .wrap-horizontal footer .logo>img {
        width: 124px;
        margin-top: 0px;
    }

    .wrap-horizontal .footer-about h3 {
        margin-top: 24px;
    }

    .wrap-horizontal .footer-cotact-info {
        font-size: 18px;
        margin-top: 24px;
    }
}

@media (max-height: 650px) {
    .p-info-works {
        bottom: 10%;
    }
}

@media (max-height: 460px) {
    .wrap-horizontal .footer-horizontal div {
        width: 500px;
    }

    .p-info-works {
        bottom: 0;
    }
}