/**
Theme Name: Sobi Design
Theme Description: Sobi Design   wp-theme
*/


/****************************************************************************************************
        FONTS       |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
****************************************************************************************************/
@font-face {
    font-family: "FTPolar";
    font-style: normal;
    font-weight: 400;
    src: url("./fonts/FTPolar-Regular.woff2") format("woff2"),
        url("./fonts/FTPolar-Regular.woff") format("woff");
}



/****************************************************************************************************
        BASIC       |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
****************************************************************************************************/
body {
    font-family: "FTPolar", sans-serif;
    font-size: 16px;
    line-height: 1.4;
    font-weight: 400;
    background-color: #000;
    color: #EFEFEF;
    padding: 0;
    margin: 0;
}
body * {
    box-sizing: border-box;
    outline: 0;
    max-width: 100%;
}
body.menu--on {
    overflow: hidden;
}
select {
    -webkit-appearance: none;
}
a {
    text-decoration: none;
    transition: all .2s ease;
}
p {
    margin: 0;
    margin-bottom: 20px;
}
img {
    max-width: 100%;
    height: auto;
}
h1 {
    font-size: 54px;
    font-weight: 400;
    line-height: 1.2;
    margin: 50px 0 40px 0;
}
h2 {
    font-size: 46px;
    font-weight: 400;
    line-height: 1.2;
    margin: 40px 0;
}
h3 {
    font-size: 36px;
    font-weight: 400;
    line-height: 1.2;
    margin: 40px 0;
}
h4 {
    font-size: 26px;
    font-weight: 400;
    line-height: 1.2;
    margin: 35px 0 20px 0;
}
h5 {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.4;
    margin: 30px 0 15px 0;
}
ul,
ol {
    margin: 20px 0;
}
ul {
    padding: 0;
}
ul li {
    list-style: none;
}
ul:first-child,
ol:first-child,
h1:first-child, 
h2:first-child, 
h3:first-child, 
h4:first-child, 
h5:first-child, 
h6:first-child {
    margin-top: 0 !important;
}
ul:last-child,
ol:last-child,
ul li:last-child,
p.zero-margin,
p:last-child,
h1:last-child,
h2:last-child,
h3:last-child,
h4:last-child,
h5:last-child,
h6:last-child {
    margin-bottom: 0 !important;
}

/* COMMON CLASSES ********************************************************************************/
.body__inner {
    position: relative;
    overflow: hidden;
    z-index: 1;
}
body.is-loading .body__inner {
    opacity: 0.2;
}
.box {
    transition: transform 0.6s ease;
}
.wrapper {
    width: 1180px;
    max-width: 100%;
    margin: 0 auto;
}
.cover {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.align--left {
    text-align: left;
}
.align--center {
    text-align: center;
}
.align--right {
    text-align: right;
}
.flex {
    display: flex;
    flex-wrap: wrap;
}
.flex-align--center {
    align-items: center;
}
.flex-justify--center {
    justify-content: center;
}
.wp-block-image {
    margin: 30px 0;
}
.wp-block-image:first-child {
    margin-top: 0;
}
.wp-block-image:last-child {
    margin-bottom: 0;
}
.disable-margin--top {
    margin-top: 0 !important;
}
.disable-margin--bottom {
    margin-bottom: 0 !important;
}
.disable-margin--top-and-bottom {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}
.theme--light {
    color: #101010;
    background-color: #EFEFEF;
    padding: 80px 0;
    margin: 0 !important;
}


/* LOADING ********************************************************************************/
@keyframes loading {
    from {
      transform: scale(0);
      opacity: 1;
    }
  
    to {
      transform: scale(1);
      opacity: 0;
    }
}
.loading {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 42px;
    height: 42px;
    z-index: 555;
}
body.is-loading .loading {
    display: block;
}
.loading div {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 0.3rem solid #B01A1B;
    animation: 1.5s loading infinite;
}
.loading div:nth-child(2) {
    animation-delay: 0.5s;
}

/* LINK ********************************************************************************/
.link {
    position: relative;
    display: block;
    color: #EFEFEF;
    font-size: 18px;
    z-index: 1;
}
.link::before {
    display: inline-block;
    content: "";
    width: 12px;
    height: 12px;
    background-image: url('./images/arrow-top-right.svg');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    margin-right: 4px;
    z-index: 1;
}

/* BACK ********************************************************************************/
.back {
    display: flex;
    align-items: center;
    cursor: pointer;
}
.back img {
    margin-right: 10px;
}

/* BUTTON ********************************************************************************/
.btns {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px;
    max-width: calc(100% + 20px);
    margin-top: 30px;
}
.btns:first-child {
    margin-top: 0;
}
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 55px;
    min-width: 180px;
    font-size: 18px;
    color: #EFEFEF;
    text-decoration: none;
    padding: 10px 30px;
    background-color: transparent;
    border-radius: 55px;
    border: 1px solid #EFEFEF;
    transition: all .2s ease;
    margin: 15px 0;
}
.btns .btn {
    margin: 15px 10px;
}
.btn:hover {
    color: #000;
    background-color: #EFEFEF;
}

/* CLOSE ********************************************************************************/
.close {
    position: relative;
    width: 20px;
    height: 20px;
    cursor: pointer;
    margin-right: 12px;
    z-index: 1;
}
.close::before,
.close::after {
    position: absolute;
    content: "";
    top: 50%;
    left: 50%;
    height: 4px;
    width: 22px;
    border-radius: 2px;
    background-color: #EFEFEF;
    z-index: 1;
}
.close::before {
    transform: translate(-50%, -50%) rotate(-45deg);
}
.close::after {
    transform: translate(-50%, -50%) rotate(45deg);
}

/* TEXT ********************************************************************************/
.text a:not(.btn) {
    color: #B01A1B;
    text-decoration: underline;
}
.text a:hover {
    text-decoration: none;
}
.text ul li {
    position: relative;
    padding-left: 20px;
    z-index: 1;
}
.text ul li:before {
    position: absolute;
    content: "";
    top: 11px;
    left: 0;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #525250;
    z-index: 1;
}

/* SECTION ********************************************************************************/
section {
    position: relative;
    z-index: 1;
}
.section__title {
    margin-bottom: 40px;
}
.section__title * {
    margin: 0;
}
.section__title span {
    position: relative;
    display: inline-block;
    z-index: 1;
}
.section__title span:after {
    display: inline-block;
    content: "";
    width: 8px;
    height: 16px;
    background-image: url('./images/arrow-down-small.svg');
    background-size: contain;
    background-position: center bottom;
    background-repeat: no-repeat;
    margin-left: 5px;
    z-index: 1;
}

/* SLICK SLIDER ********************************************************************************/
.slick-track {
    max-width: unset;
    margin: 0;
}
.slick-dots {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    bottom: 20px;
    left: 0;
    width: 100%;
    margin: 0;
    z-index: 1;
}
.slick-dots li {
    position: relative;
    display: block;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 2px solid #233875;
    cursor: pointer;
    margin: 0 4px;
    z-index: 1;
}
.slick-dots li:before {
    position: absolute;
    content: "";
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #233875;
    transition: all .2s ease;
    opacity: 0;
    z-index: 1;
}
.slick-dots li.slick-active:before {
    opacity: 1;
} 
.slick-dots li button {
    display: none;
}
.slick-dots li:only-child {
    display: none;
}
.slick-arrow {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 36px;
    height: 36px;
    background-size: 28px 28px;
    background-position: center;
    background-repeat: no-repeat;
    cursor: pointer;
    z-index: 1;
}
.slick-prev {
    background-image: url('./images/chevron-left-white.png');
    margin-right: 37px;
}
.slick-next {
    background-image: url('./images/chevron-right-white.png');
}

/* MODAL ********************************************************************************/
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 200;
}
.modal.is-visible {
    display: block;
}
.modal .close {
    position: absolute;
    top: 68px;
    right: 58px;
}
.modal .inner {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 90px;
}
.modal iframe {
    width: 900px;
    max-width: 100%;
    height: 500px;
    max-height: 100%;
}
.modal video {
    width: 900px;
    max-width: 100%;
    height: auto;
    max-height: 100%;
}

/* SOCIALS ********************************************************************************/
.socials {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin: -6px;
    max-width: calc(100% + 12px);
}
.socials a {
    display: block;
    width: 53px;
    height: 53px;
    margin: 6px;
}
.socials a img {
    width: 100%;
    height: auto;
}



/****************************************************************************************************
        HEADER       ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
****************************************************************************************************/
.header {
    padding: 39px 0;
}
.header .inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.header__logo {
    display: flex;
    align-items: center;
    max-width: 140px;
    height: auto;
}
.header__logo img {
    max-width: 100%;
    height: auto;
}
.header .btn {
    margin: 0;
}


/****************************************************************************************************
        FOOTER       ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
****************************************************************************************************/
.footer {
    padding: 100px 0;
}
.footer .inner {
    display: flex;
    justify-content: space-between;
}
.footer a {
    color: #EFEFEF;
}
.footer__col {
    flex-shrink: 0;
    min-width: 160px;
}
.footer__col:nth-child(1) {
    width: 380px;
}
.footer__col h5 {
    margin-bottom: 30px;
}
.footer__logo {
    display: flex;
    align-items: center;
    width: 140px;
    height: auto;
    margin-bottom: 30px;
}
.footer__logo img {
    max-width: 100%;
    height: auto;
}
.footer__links li {
    position: relative;
    display: block;
    font-size: 18px;
    z-index: 1;
}
.footer__links li::before {
    display: inline-block;
    content: "";
    width: 12px;
    height: 12px;
    background-image: url('./images/arrow-top-right.svg');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    margin-right: 4px;
    z-index: 1; 
}
.footer__links li:not(:last-child) {
    margin-bottom: 10px;
}
.footer__links a {
    color: #EFEFEF;
}


/****************************************************************************************************
        FRONT PAGE       ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
****************************************************************************************************/
.front-heading .inner {
    width: 880px;
}
.front-heading h1 {
    font-size: 106px;
    line-height: 1;
}

/* ABOUT ********************************************************************************/
.about__content {
    display: flex;
    align-items: flex-start;
}
.about__content h2 {
    width: 680px;
    margin-right: 120px;
}
.about__list__item {
	display: flex;
	align-items: center;
}
.about__list__item h4 {
	margin: 0;
	margin-right: 6px;
}
.about__list p {
    font-size: 26px;
    margin-bottom: 10px;
}

/* WE VALUE ********************************************************************************/
.we-value__items {
    display: flex;
    flex-wrap: wrap;
    width: calc(100% + 20px);
    max-width: calc(100% + 20px);
    margin: -30px -10px;
}
.we-value__item {
    width: 280px;
    margin: 30px 10px;
}


/****************************************************************************************************
        PROJECTS       ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
****************************************************************************************************/
.projects__items {
    display: flex;
    flex-wrap: wrap;
    width: calc(100% + 20px);
    max-width: calc(100% + 20px);
    margin: -10px -10px -60px -10px;
}
.projects__item {
    flex: 1;
    min-width: 380px;
    min-height: 450px;
    color: #EFEFEF;
    margin: 10px 10px 60px 10px;
}
.projects__item:nth-child(5n-4) {
    min-width: 580px;
    min-height: 690px;
}
.projects__item__media {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 119%;
    margin-bottom: 18px;
    z-index: 1;
}
.projects__item__media div {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}
.projects__item h4 {
    margin-bottom: 10px;
}
.projects__item span {
    font-size: 18px;
}
.projects .btn {
    margin-top: 60px;
}

/* RECENT PROJECTS ********************************************************************************/
.recent-projects .inner {
    display: flex;
    justify-content: space-between;
}
.recent-project {
    display: block;
    width: 580px;
    max-width: 49%;
}
.recent-project a {
    display: block;
    color: #EFEFEF;
    text-decoration: none;
}
.recent-project .recent-project__link {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}
.recent-project .recent-project__link--prev img {
    margin-right: 20px;
}
.recent-project:nth-child(2) .recent-project__link {
    justify-content: flex-end;
}
.recent-project .recent-project__link--next img {
    margin-left: 20px;
}
.recent-project__image {
    position: relative;
    display: block;
    width: 100%;
    height: 0;
    padding-bottom: 119%;
    margin-bottom: 18px;
}
.recent-project .text h4 {
    margin-bottom: 10px;
}
.recent-project .text span {
    font-size: 18px;
}


/****************************************************************************************************
        SECTIONS       ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
****************************************************************************************************/
.page-section {
    margin: 80px 0;
}

/* PAGE TITLE ********************************************************************************/
.page-title .inner {
    position: relative;
    padding-bottom: 10px;
    z-index: 1;
}
.page-title .inner:before {
    position: absolute;
    content: "";
    bottom: 0;
    left: 0;
    transform: translateY(100%);
    width: 8px;
    height: 18px;
    background-image: url('./images/arrow-down.svg');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

/* PAGE TITLE ********************************************************************************/
.project-introduction .inner {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}
.project-introduction__title {
    padding-right: 120px;
    flex-grow: 1;
}
.project-introduction__title h2 {
    position: relative;
    display: inline-flex;
    align-items: flex-start;
    margin: 0;
    z-index: 1;
}
.project-introduction__title h2 span {
    font-size: 18px;
    font-weight: 400;
    margin-left: 10px;
}
.project-introduction__title p {
    display: block;
    font-size: 18px;
    margin-top: 5px;
}
.project-introduction .text {
    width: 580px;
    flex-shrink: 0;
}

/* HEADING ********************************************************************************/
.heading .text {
    width: 978px;
}

/* HOW WHO WHERE ********************************************************************************/
.hww .inner {
    display: flex;
    justify-content: space-between;
}
.hww__col .text {
	margin: 50px 0;
}
.hww__who {
    width: 580px;
}
.hww__who .text {
    font-size: 26px;
}
.hww__where .text {
    font-size: 26px;
}

/* GIF ********************************************************************************/
.gif__items {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
    z-index: 1;
}

.gif__item {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    z-index: 1;
}
.gif__item.is-active {
    opacity: 1;
}


/* SPLIT ********************************************************************************/
.split__items {
    display: flex;
    justify-content: space-between;
    width: calc(100% + 40px);
    max-width: calc(100% + 20px);
    margin: 0 -10px;
}
.split__item {
    width: 580px;
    margin: 0 10px;
}
.split__item .text {
    padding: 20px 0;
}
.split__item:nth-child(1) .text {
    padding-right: 110px;
    padding-left: 0;
}
.split__item:nth-child(2) .text {
    padding-left: 110px;
    padding-right: 0;
}

/* TESTIMONIAL ********************************************************************************/
.testimonial {
    padding: 70px 0;
    color: #101010;
    background-color: #EFEFEF;
}
.testimonial .inner {
    width: 680px;
}
.testimonial__title {
    display: block;
    font-size: 18px;
    margin-bottom: 20px;
}
.testimonial .text {
    font-size: 46px;
    line-height: 1.2;
}
.testimonial__author {
    font-size: 18px;
    margin-top: 80px;
}
.testimonial__author p {
    margin: 0;
}

/* SUMMARY ********************************************************************************/
.summary .inner {
    overflow: hidden;
}
.summary .text {
    width: 680px;
    float: right;
    font-size: 46px;
	line-height: 1.2;
}

/* DESIGNER ********************************************************************************/
.designer .inner {
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
}
.designer__picture {
    width: 180px;
    height: auto;
    margin-right: 20px;
}
.designer .text {
    width: 480px;
}
.designer__subtitle {
    display: block;
    font-size: 18px;
    margin-bottom: 15px;
}
.designer__name {
    display: block;
    font-size: 26px;
    margin-bottom: 20px;
}

/* CTA ********************************************************************************/
.cta .inner {
    width: 680px;
}

/****************************************************************************************************
        RESPONSIVE STYLES       |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
****************************************************************************************************/
.show--lg,
.show--md,
.show--sm,
.show--xs {
    display: none;
}

@media only screen and (max-width: 1239px) {
    h1 {
        font-size: 48px;
    }
    h2 {
        font-size: 36px;
    }
    h3 {
        font-size: 30px;
    }
    h4 {
        font-size: 26px;
    }
    h5 {
        font-size: 18px;
    }
    .wrapper {
        width: 932px;
    }
    .front-heading h1 {
        font-size: 80px;
    }
    .front-heading .inner {
        width: 700px;
    }
    .hww__who {
        width: 470px;
    }
    .summary .text {
        font-size: 32px;
    }
    .summary .text {
        width: 490px;
    }
    .projects__item {
        min-width: 297px;
    }
    .projects__item:nth-child(5n-4) {
        min-width: 456px;
    }
    .we-value__item {
        width: 218px;
    }
    .split__item:nth-child(1) .text {
        padding-right: 60px;
    }
    .split__item:nth-child(2) .text {
        padding-left: 60px;
    }
    .heading .text {
        width: 760px;
    }
}

@media only screen and (max-width: 991px) {
    h4 {
        font-size: 22px;
    }
    .wrapper {
        width: 708px;
    }
    .front-heading h1 {
        font-size: 70px;
    }
    .hww__who {
        width: 340px;
    }
    .hww__where .text {
        font-size: 22px;
    }
    .hww__who .text {
        font-size: 18px;
    }
    .projects__item {
        min-width: 222px;
        min-height: 350px;
    }
    .projects__item:nth-child(5n-4) {
        min-width: 344px;
        min-height: 490px;
    }
    .about__content h2 {
        width: 420px;
        margin-right: 60px;
    }
    .about__list p {
        font-size: 20px;
    }
    .we-value__item {
        width: 344px;
    }
    .designer .text {
        width: 508px;
    }
    .cta .inner {
        width: 480px;
    }
    .footer__col:nth-child(1) {
        width: 260px;
    }
    .project-introduction__title {
        padding-right: 60px;
    }
    .project-introduction .text {
        width: 400px;
    }
    .split__item:nth-child(1) .text {
        padding-right: 30px;
    }
    .split__item:nth-child(2) .text {
        padding-left: 30px;
    }
    .testimonial .text {
        font-size: 34px;
    }
    .testimonial .inner {
        width: 540px;
    }
    .testimonial__author {
        margin-top: 40px;
    }
    .recent-project .text span {
        font-size: 16px;
    }
}

@media only screen and (max-width: 767px) {
    .hide--sm {
        display: none !important;
    }
    .show--sm {
        display: block;
    }
	.body__inner {
		padding-top: 100px
	}
	.header {
		position: fixed;
		top: 0;
		left: 0;
		right: 0;
		background-color: #000;
		padding: 30px 0;
		z-index: 999;
	}
    .btn.show--sm {
        display: inline-flex;
    }
    h2 {
        font-size: 30px;
    }
    .page-section {
        margin: 60px 0;
    }
    .wrapper {
        width: 100%;
        padding: 0 30px;
    }
    .hamb {
        position: relative;
        width: 28px;
        height: 18px;
        cursor: pointer;
        margin-left: 30px;
        z-index: 10;
    }
    .hamb div {
        position: absolute;
        height: 2px;
        left: 0;
        right: 0;
        background-color: #fff;
        transition: all .2s ease;
        z-index: 1;
    }
    .hamb div:nth-child(1) {
        top: 0;
        left: 12px;
    }
    .hamb div:nth-child(2) {
        top: 50%;
        transform: translateY(-50%);
    }
    .hamb div:nth-child(3) {
        top: auto;
        bottom: 0;
        right: 12px;
    }
    .header__nav {
        display: flex;
        align-items: flex-start;
        flex-wrap: wrap;
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        max-height: 100vh;
        background-color: #000;
        transform: translateY(-100%);
        padding: 0 30px;
        transition: all .4s ease;
        z-index: 555;
    }
    .menu--on .header__nav {
        transform: translateY(0);
    }
    .header__nav__top {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 39px 0;
    }
    .header__nav .inner {
        display: block;
        align-self: flex-end;
        padding-bottom: 30px;
    }
    .header__nav .menu-main-navigation-container {
        width: 100%;
    }
    .header__nav__top .close {
        margin-right: 0;
    }
    .header__nav .menu li a {
        position: relative;
        font-size: 48px;
        color: #EFEFEF;
        z-index: 1;
    }
    .header__nav .menu li a:before {
        display: inline-block;
        content: "";
        width: 12px;
        height: 12px;
        background-image: url('./images/arrow-top-right.svg');
        background-size: contain;
        background-position: center;
        background-repeat: no-repeat;
        margin-right: 12px;
        margin-bottom: 5px;
        z-index: 1;
    }
    .header .inner .btn {
        margin-top: 44px;
    }
    .front-heading h1 {
        font-size: 56px;
    }
    .hww .inner {
        flex-wrap: wrap;
        margin-bottom: -80px;
    }
    .hww__col {
        width: 100%;
        margin-bottom: 80px;
    }
    .hww__who .text {
        font-size: 22px;
    }
    .hww__col .link {
        margin-top: 30px;
        font-size: 14px;
    }
	.hww__col .text {
		margin: 0;
	}
    .hww__how {
        order: 0;
    }
    .hww__who {
        order: 2;
    }
    .hww__where {
        order: 1;
    }
    .summary .text {
        width: 100%;
        font-size: 30px;
		line-height: 1.2;
    }
    .section__title span {
        font-size: 14px;
    }
    .projects__items {
        position: relative;
        width: 100vw;
        max-width: 100vw;
        transform: translateX(-30px);
        margin: 0;
        margin-bottom: -50px;
    }
    .projects__item,
    .projects__item:nth-child(5n-4) {
        width: 100% !important;
        min-width: 100% !important;
        max-width: 100% !important;
        margin: 0;
        margin-bottom: 50px;
    }
    .projects__item__media {
        margin-bottom: 0;
    }
    .projects__item .text {
        padding: 30px;
    }
    .projects__item span {
        font-size: 14px;
    }
    .projects .flex.flex-justify--center {
        justify-content: flex-start;
    }
    .about__content {
        flex-wrap: wrap;
    }
    .about__content h2,
    .about__list {
        width: 100%;
    }
    .about__content h2 {
        margin-right: 0;
    }
    .about__list p {
        font-size: 22px;
    }
    .we-value__items {
        width: 100%;
        max-width: 100%;
        margin: 0;
        margin-bottom: -40px;
    }
    .we-value__item {
        width: 100%;
        margin: 0;
        margin-bottom: 40px;
    }
    .theme--light {
        padding: 40px 0;
    }
    .designer .inner {
        flex-wrap: wrap;
        justify-content: flex-start;
    }
    .designer__picture {
        width: 100%;
        margin-right: 0;
        margin-bottom: 40px;
    }
    .designer .text {
        width: 100%;
    }
    .designer__subtitle {
        margin-bottom: 40px;
    }
    .footer {
        padding: 60px 0;
    }
    .footer .inner {
        flex-wrap: wrap;
        margin-bottom: -70px;
    }
    .footer__col {
        width: 100% !important;
        margin: 0;
        margin-bottom: 70px;
    }
    .project-introduction .inner {
        flex-wrap: wrap;
    }
    .project-introduction__title {
        width: 100%;
        padding-right: 0;
        margin-bottom: 40px;
    }
    .project-introduction .text {
        width: 100%;
    }
    .split__items {
        position: relative;
        width: 100vw;
        max-width: 100vw;
        transform: translateX(-30px);
        flex-wrap: wrap;
        margin: 0;
        margin-bottom: -30px;
    }
    .split__item {
        width: 100%;
        margin: 0;
        margin-bottom: 30px;
    }
    .page-section--image img {
        position: relative;
        display: block;
        width: 100vw;
        max-width: 100vw;
        height: auto;
        transform: translateX(-30px);
    }
    .split__item .text {
        padding: 0 30px !important;
    }
    .testimonial .text {
        font-size: 34px;
    }
}

@media only screen and (max-width: 575px) {
    h5 {
        font-size: 14px;
    }
    body {
        font-size: 14px;
        line-height: 1.6;
    }
    .btn {
        height: 46px;
        font-size: 14px;
        min-width: 150px;
    }
    .page-section {
        margin: 40px 0;
    }
    .front-heading h1 {
        font-size: 48px;
    }
    .designer__name {
        font-size: 22px;
    }
    .project-introduction__title p {
        font-size: 14px;
    }
    .testimonial .text {
        font-size: 30px;
    }
    .testimonial__author,
    .testimonial__title {
        font-size: 14px;
    }
    .recent-projects .inner {
        position: relative;
        width: 100vw;
        max-width: 100vw;
        flex-wrap: wrap;
        transform: translateX(-30px);
        margin: 0;
        margin-bottom: -100px;
        flex-direction: column-reverse;
    }
    .recent-project {
        width: 100%;
        max-width: 100%;
        margin: 0;
        margin-bottom: 50px;
    }
    .recent-project .recent-project__link {
        padding: 0 30px;
        margin-bottom: 30px;
    }
    .recent-project__image {
        margin-bottom: 0;
    }
    .recent-project .text {
        padding: 30px;
    }
    .recent-projects {
        padding: 40px 0;
        margin-bottom: 50px;
    }
}