/**
Theme Name: LM
Theme Description: LM wp-theme
*/



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

@font-face {
    font-family: "Neue Haas Grotesque Text Pro";
    font-style: normal;
    font-weight: 700;
    src:
        url('./assets/fonts/NHaasGroteskTXPro-75Bd.woff2') format('woff2'),
        url('./assets/fonts/NHaasGroteskTXPro-75Bd.woff') format('woff');
}
@font-face {
    font-family: "Neue Haas Grotesque Text Pro";
    font-style: normal;
    font-weight: 500;
    src:
        url('./assets/fonts/NHaasGroteskTXPro-65Md.woff2') format('woff2'),
        url('./assets/fonts/NHaasGroteskTXPro-65Md.woff') format('woff');
}
@font-face {
    font-family: "Neue Haas Grotesque Text Pro";
    font-style: normal;
    font-weight: 400;
    src:
        url('./assets/fonts/NHaasGroteskTXPro-55Rg.woff2') format('woff2'),
        url('./assets/fonts/NHaasGroteskTXPro-55Rg.woff') format('woff');
}



/******************************************************************* 
||||||||||    BASE    |||||||||||||||||||||||||||||||||||||||||||||| 
********************************************************************/
:root {
    --font-base: "Neue Haas Grotesque Text Pro", sans-serif;
    --font-heading: "Prociono", sans-serif;

    --color-back: #000000;
    --color-dark-grey: #212121;
    --color-white: #ffffff;
    --color-beige: #F7F4ED;
    --color-green: #39523D;
    --color-dark-green: #2F4444;

    --text-dark-color:  var(--color-dark-grey);
    --text-light-color: var(--color-beige);
}


/* COMMON */
body {
    font-size: 18px;
    font-family: var(--font-base);
    background-color: var(--color-beige);
    line-height: 29px;
    padding: 0;
    margin: 0;
}
body * {
    box-sizing: border-box;
    max-width: 100%;
}
.body__top {
	position: sticky;
	top: 0;
	background-color: var(--color-beige);
	z-index: 111;
}
.bg--darkgreen {
    color: var(--text-light-color);
    background-color: var(--color-dark-green);
}


/* HEADINGS */
h1,h2,h3,h4,h5,h6 {
    font-family: var(--font-heading);
    font-weight: 400;
}
h1 {
    font-size: 58px;
    line-height: 1.1;
}
h2 {
    font-size: 46px;
    line-height: 1.1;
}
h3 {
    font-size: 36px;
    line-height: 1.1;
}
h4 {
    font-size: 30px;
    line-height: 1.1;
}
h5 {
    font-size: 22px;
}
h6 {
    font-size: 18px;
}
h1:first-child,
h2:first-child,
h3:first-child,
h4:first-child,
h5:first-child,
h6:first-child {
    margin-top: 0 !important;
}
h1:last-child,
h2:last-child,
h3:last-child,
h4:last-child,
h5:last-child,
h6:last-child {
    margin-bottom: 0 !important;
}


/* BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    text-transform: capitalize;
    min-height: 40px;
    font-size: 14px;
    padding: 5px 50px;
    border: 1px solid transparent;
}

.btn--dark {
    color: var(--text-light-color);
    background-color: var(--color-dark-grey);
}
.btn--dark:hover {
    color: var(--text-dark-color);
    background-color: var(--color-beige);
    border-color: var(--color-dark-grey);
}
.btn--light {
    color: var(--text-dark-color);
    background-color: var(--color-beige);
}
.btn--light:hover {
    color: var(--text-light-color);
    background-color: var(--color-dark-grey);
    border-color: var(--color-beige);
}


/* GRID */
.grid {
    display: grid;
    gap: 40px;
}
.grid.masonry > .grid__item {
    grid-row-end: span var(--rows);
}
.grid--2 {
    grid-template-columns: 1fr 1fr;
}
.grid--3 {
    grid-template-columns: 1fr 1fr 1fr;
}
.grid--4 {
    grid-template-columns: 1fr 1fr 1fr 1fr;
}


/* SOCIALS */
.socials {
    display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
    gap: 10px;
}
.socials a {
    display: flex;
    align-items: center;
    gap: 4px;
}
.socials img {
    display: block;
    width: 20px;
    height: auto;
}


/* PAGE SECTION */
.page-section {
    position: relative;
    z-index: 1;
}
.page-section:not(.disable--margin-top):not(.disable--margin-top-and-bottom) {
    margin-top: 80px;
}
.page-section:not(.disable--margin-bottom):not(.disable--margin-top-and-bottom) {
    margin-bottom: 80px;
}
.page-section__container {
    width: 1186px;
    max-width: calc(100% - 60px);
    margin: 0 auto;
}
.page-section__container[data-full-width="1"] {
    width: 100%;
}
.page-section__container.page-section__container--lg {
    width: 1440px;
}
.page-section__title {
    padding-bottom: 15px;
    border-bottom: 1px solid var(--color-dark-grey);
    margin-bottom: 40px;
}
.page-section__head h1,
.page-section__head h2,
.page-section__head h3,
.page-section__head h4,
.page-section__head h5,
.page-section__head h6 {
    margin: 0;
}
.page-section__body {}
.page-section__text {}
.page-section__text p {
    margin: 0;
}
.page-section__text p:not(:last-child) {
    margin-bottom: 15px;
}
.page-section__text a:not(.btn) {
    color: inherit;
    text-decoration: underline;
}

/* PAGE ANCHORS */
.page-anchors {
	position: sticky;
	top: 0;
	padding-bottom: 10px;
	margin: 0 !important;
}
.page-anchors__nav {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 10px 30px;
/* 	padding-right: 100px; */
/* 	overflow-x: scroll;
    scrollbar-width: none; */
}
.page-anchors__nav__link {
	text-decoration: none;
	color: var(--black-color);
	font-size: 14px;
/* 	flex-shrink: 0; */
/*     white-space: nowrap; */
}
.page-anchors__nav__link:hover {
	text-decoration: underline;
}


/* ANIMATION */
.waits-animation[data-animation="fade-in"] { opacity: 0; }
.has-animation[data-animation="fade-in"].animated { animation: fadeIn .5s ease-in-out forwards; }
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
.waits-animation[data-animation="fade-in-top"] { opacity: 0; transform: translateY(-40px); }
.has-animation[data-animation="fade-in-top"].animated {
    animation: fadeInTop .5s ease-in-out forwards;
}
@keyframes fadeInTop {
    from { opacity: 0; transform: translateY(-40px); }
    to { opacity: 1; transform: translateY(0); }
}
.waits-animation[data-animation="fade-in-left"] { opacity: 0; transform: translateX(-40px); }
.has-animation[data-animation="fade-in-left"].animated {
    animation: fadeInLeft .5s ease-in-out forwards;
}
@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-40px); }
    to { opacity: 1; transform: translateX(0); }
}
.waits-animation[data-animation="fade-in-right"] { opacity: 0; transform: translateX(40px); }
.has-animation[data-animation="fade-in-right"].animated {
    animation: fadeInRight .5s ease-in-out forwards;
}
@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(40px); }
    to { opacity: 1; transform: translateX(0); }
}
.waits-animation[data-animation="fade-in-bottom"] { opacity: 0; transform: translateY(40px); }
.has-animation[data-animation="fade-in-bottom"].animated {
    animation: fadeInBottom .5s ease-in-out forwards;
}
@keyframes fadeInBottom {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}



/******************************************************************* 
||||||||||    HEADER    ||||||||||||||||||||||||||||||||||||||||||||
********************************************************************/
.header {
    position: relative;
    z-index: 100;
}
.header .hamb,
.header__mobile-nav {
    display: none;
}
.header .page-section__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 70px;
    min-height: 100px;
    padding: 30px 0;
}
.header__logo {
    position: relative;
    display: block;
    width: 400px;
    height: 26px;
    flex-shrink: 0;
    z-index: 999;
}
.header__logo img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    max-width: 100%;
    max-height: 100%;
    z-index: 1;
}
.header__logo img.active {
    opacity: 0;
}
.header__links,
.header__links ul.menu {
    display: flex;
    align-items: center;
    font-size: 14px;
    gap: 20px 70px;
    padding: 0;
    margin: 0;
    list-style: none;
}
.header__links a {
    color: inherit;
    text-decoration: none;
}
.header__links .current-menu-item a,
.header__links a:hover {
    text-decoration: underline;
}



/******************************************************************* 
||||||||||    HERO    |||||||||||||||||||||||||||||||||||||||||||||| 
********************************************************************/
.hero {
    overflow: hidden;
}
.hero__image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}
.hero .page-section__container {
    display: flex;
    align-items: flex-end;
    min-height: calc(100vh - 100px);
    padding: 130px 0;
}
.hero .page-section__content {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 60px;
    width: 100%;
    color: var(--text-light-color);
}
.hero .page-section__text {
    width: 670px;
}



/******************************************************************* 
||||||||||    IMAGE TEXT    ||||||||||||||||||||||||||||||||||||||||
********************************************************************/
.text_and_image__image {
    position: absolute;
    top: 0;
    bottom: 0;
    height: 100%;
    width: 50%;
    object-fit: cover;
    object-position: top center;
    z-index: 1;
}
.text_and_image:not([data-reversed="1"]) .text_and_image__image {
    left: 0;
}
.text_and_image[data-reversed="1"] .text_and_image__image {
    left: auto;
    right: 0;
}
.text_and_image .page-section__container {
    display: flex;
    align-items: center;
    min-height: 100vh;
    padding: 100px 0;
}
.text_and_image:not([data-reversed="1"]) .page-section__container {
    justify-content: flex-end;
}
.text_and_image[data-reversed="1"] .page-section__container {
    justify-content: flex-start;
}
.text_and_image .page-section__content {
    width: 50%;
    padding: 0 15px;
}
.text_and_image:not(:has(.text_and_image__image)) .page-section__content {
	flex: 1;
}
.text_and_image:not([data-reversed="1"]):has(.text_and_image__image) .page-section__container[data-full-width="0"] .page-section__content {
    padding-left: 144px;
}
.text_and_image[data-reversed="1"]:has(.text_and_image__image) .page-section__container[data-full-width="0"] .page-section__content {
    padding-right: 144px;
}
.text_and_image:not([data-reversed="1"]):has(.text_and_image__image) .page-section__container[data-full-width="1"] .page-section__content {
    padding-left: 44px;
}
.text_and_image[data-reversed="1"]:has(.text_and_image__image) .page-section__container[data-full-width="1"] .page-section__content {
    padding-right: 44px;
}
.text_and_image .page-section__head {
    margin-bottom: 60px;
}
.text_and_image:has(.page-section__head) .page-section__body::before {
    display: block;
    content: '_';
    line-height: 1;
    margin-bottom: 30px;
}
.text_and_image .btn:not(:first-child) {
    margin-top: 100px;
}



/******************************************************************* 
||||||||||    TEXT    ||||||||||||||||||||||||||||||||||||||||||||||
********************************************************************/
.textbox .page-section__container {
    display: flex;
    align-items: center;
    padding: 75px 0;
}
.textbox.size--default .page-section__container {
    min-height: 668px;
    padding: 100px 0;
}
.textbox .page-section__content {
    display: flex;
    gap: 48px;
}
.textbox .page-section__head {
    width: 564px;
    flex-shrink: 0;
}
.textbox .page-section__head:only-child {
    width: 1183px;
    text-align: center;
    margin: 0 auto;
}
.textbox .page-section__text {
    font-size: 22px;
}
.textbox .btn:not(:first-child) {
    margin-top: 95px;
}
.textbox .page-section__content:has(.page-section__head h6) .page-section__body {
    padding-top: 38px;
}



/******************************************************************* 
||||||||||    SERVICES    ||||||||||||||||||||||||||||||||||||||||||
********************************************************************/
.services__item__image {
	position: relative;
	width: 100%;
	height: 0;
	padding-bottom: 160%;
	overflow: hidden;
	z-index: 1;
}
.services__item__link {
	position: absolute;
	inset: 0;
	z-index: 1;
}
.services__item__image img {
	display: block;
	position: absolute;
    width: 100%;
    height: 100%;
	inset: 0;
	object-fit: cover;
	transition: all .5s ease;
}
.services__item__image .services__item__link:hover > img {
	transform: scale(1.1);
}
.services__item__subtitle {
    display: block;
    font-size: 12px;
    line-height: 1.2;
    font-family: var(--font-heading);
    text-transform: uppercase;
    margin-bottom: 10px;
}
.services__item__title {
    text-align: right;
    margin: 0;
}
.services__item:not(.services__item-alt) .services__item__title {
    margin-top: 6px;
}
.services__item.services__item-alt .services__item__title {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 15px;
}



/******************************************************************* 
||||||||||    BANNER    ||||||||||||||||||||||||||||||||||||||||||||
********************************************************************/
.banner__image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}
.banner .page-section__container {
    position: relative;
    display: flex;
    align-items: flex-end;
    min-height: 675px;
    z-index: 1;
}
.banner .page-section__container:before {
    position: absolute;
    content: "";
    inset: 0;
    bottom: 0;
    background-image: url('./assets/icons/banner-icon.svg');
    background-size: 364px 364px;
    background-position: left 130px;
    background-repeat: no-repeat;
    z-index: 0;
}
.banner .page-section__content {
    color: var(--text-light-color);
    padding: 170px 0;
}



/******************************************************************* 
||||||||||    PROJECTS    ||||||||||||||||||||||||||||||||||||||||||
********************************************************************/
.projects__item {
    display: block;
    text-decoration: none;
    color: inherit;
    margin-bottom: 40px;
}
.projects__item > img {
    width: 100%;
    height: auto;
}
.projects__item__subtitle {
    display: block;
    font-size: 12px;
    line-height: 1.2;
    font-family: var(--font-heading);
    text-transform: uppercase;
    margin-bottom: 10px;
}
.projects__item__title {
    text-align: right;
    margin: 0;
}
.projects__item:hover .projects__item__title {
    text-decoration: underline;
}

@media screen and (min-width: 568px) {
    .projects__items {
        position: relative;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        width: calc(100% + 20px);
        max-width: calc(100% + 20px);
    }
    .projects__item {
        width: calc(50% - 20px);
        margin: 0 10px;
        margin-bottom: 80px;
    }
}


/****************************************************************************************************
        BLOG       ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
****************************************************************************************************/
.tmpl--index .projects__items {
    margin: 60px 0;
}


/****************************************************************************************************
        POST       ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
****************************************************************************************************/
.post {
    margin-top: 60px;
}
.post .inner {
    display: flex;
    flex-direction: column;
    gap: 50px;
    align-items: center;
}
.post__title {
    text-align: center;
    margin: 0;
}




/******************************************************************* 
||||||||||    FOOTER    ||||||||||||||||||||||||||||||||||||||||||||
********************************************************************/
.footer {
    color: var(--text-light-color);
    background-color: var(--color-dark-grey);
    padding: 46px 0;
}
.footer__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0 30px;
    flex-wrap: wrap;
}
.footer__logo {
    width: 300px;
    height: 19.5;
    height: auto;
}
.footer__logo img {
    max-width: 100%;
    max-height: 100%;
}
.footer__head p {
    font-size: 14px;
}
.footer__body {
    position: relative;
    display: flex;
/*     align-items: center; */
    gap: 60px;
    z-index: 1;
}
.footer__body:not(:first-child) {
    margin-top: 40px;
}
.footer__links {
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 14px;
    flex-grow: 1;
}
.footer__links a {
    display: flex;
    align-items: center;
    gap: 10px;
    text-transform: capitalize;
    color: inherit;
    text-decoration: none;
}
.footer__links a:hover {
    text-decoration: underline;
}
.footer__form {
    width: calc(50% + 288px);
    flex-shrink: 0;
}
.footer__form__inner {
    width: 576px;
}
.footer__form__head:not(:last-child) {
    margin-bottom: 50px;
}
.footer__form__head h1,
.footer__form__head h2,
.footer__form__head h3,
.footer__form__head h4,
.footer__form__head h5,
.footer__form__head h6 {
    margin: 0;
}
.footer__form__head h6 {
    font-size: 12px;
}
.footer__icon {
    display: block;
    position: absolute;
    right: 0;
    bottom: 0;
    width: 60px;
    height: auto;
    z-index: 1;
}



/****************************************************************************************************
        404       |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
****************************************************************************************************/
.lost .content {
    width: 520px;
    text-align: center;
    margin: 0 auto;
}
.lost__icon {
    max-width: 156px;
    max-height: 156px;
}
.lost__icon:not(:last-child) {
    margin-bottom: 30px;
}
.lost__title {
    font-size: 66px;
    line-height: 1;
    margin: 0 0 30px 0;
}
.lost__subtitle {
    text-transform: uppercase;
}
.lost .content .btns {
    justify-content: center;
}



/******************************************************************* 
||||||||||    RESPONSIVE    ||||||||||||||||||||||||||||||||||||||||
********************************************************************/
@media screen and (max-width: 1399px) {
    .header__links {
        gap: 20px 30px;
    }
    .grid {
        gap: 30px;
    }
    .text_and_image:not([data-reversed="1"]):has(.text_and_image__image) .page-section__content {
        padding-left: 70px;
    }
    .text_and_image[data-reversed="1"]:has(.text_and_image__image) .page-section__content {
        padding-right: 70px;
    }
}
@media screen and (max-width: 1099px) {
    .grid {
        gap: 60px 20px;
    }
    h4 {
        font-size: 26px;
    }
    .header__logo {
        width: 300px;
    }
    .header .page-section__content {
        gap: 50px;
        min-height: 80px;
        padding: 20px 0;
    }
    .hero .page-section__container {
        min-height: calc(100vh - 80px);
        padding: 80px 0;
    }
    .header__links {
        gap: 20px;
    }
    .hero .page-section__content {
        gap: 40px;
    }
    .text_and_image .page-section__head {
        margin-bottom: 30px;
    }
    .text_and_image .btn:not(:first-child) {
        margin-top: 60px;
    }
    .banner .page-section__container::before { 
        background-size: 270px 270px;
    }
    .banner .page-section__content {
        padding: 120px 0;
    }
    .text_and_image .page-section__container {
        min-height: 70vh;
    }
}
@media screen and (max-width: 991px) {
    .header .page-section__content {
        justify-content: center;
    }
    .text_and_image__image {
        position: relative;
        inset: auto;
        width: 100%;
        height: 100vh;
    }
    .text_and_image .page-section__content {
        width: 100%;
    }
    .text_and_image .page-section__container {
        padding: 60px 0;
        min-height: unset;
    }
    .text_and_image .page-section__content {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
    .textbox .page-section__content {
        flex-direction: column;
    }
    .textbox .page-section__content:has(.page-section__head h6) .page-section__body {
        padding-top: 0;
    }
    .grid--4 {
        grid-template-columns: 1fr 1fr;
    }
    .grid--2,
    .grid--3 {
        grid-template-columns: 1fr;
    }
    .footer__form {
        width: calc(100% - 190px);
    }
    .footer__form__inner {
        width: 380px;
    } 
    .header__links {
        display: none;
    }
    .header .hamb {
        position: absolute;
        right: 15px;
        top: 26px;
        display: block;
        width: 24px;
        height: 8px;
        border-top: 2px solid var(--color-dark-green);
        border-bottom: 2px solid var(--color-dark-green);
        cursor: pointer;
        z-index: 999;
    }
    .header__mobile-nav {
        display: flex;
        align-items: center;
        justify-content: center;
        position: fixed;
        top: 0;
        right: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        transform: translateY(-100%);
        color: var(--text-light-color);
        background-color: var(--color-beige);
        transition: all .4s ease;
        z-index: 555;
    }
    body.nav-is-active {
        overflow: hidden;
    }
    body.nav-is-active .header__mobile-nav {
        transform: translateY(0);
        background-color: var(--color-dark-green);
    }
    .header__mobile-nav .scroller {
        display: flex;
        flex-direction: column;
        text-align: center;
        align-items: center;
        gap: 10px;
        max-height: calc(100vh - 260px);
        overflow-y: auto;
    }
    .header__mobile-nav .menu {
        display: flex;
        flex-direction: column;
        text-align: center;
        align-items: center;
        gap: 10px;
        padding: 0;
        margin: 0;
        list-style: none;
    }
    .header__mobile-nav .scroller a {
        display: flex;
        align-items: center;
        font-size: 14px;
        text-transform: capitalize;
        gap: 10px;
        color: inherit;
        text-decoration: none;
    }
    body.nav-is-active .hamb {
        border-color: var(--color-beige);
    }
    body.nav-is-active .header__logo img {
        opacity: 0;
    }
    body.nav-is-active .header__logo img.active {
        opacity: 1;
    }
    .header__mobile-nav__icon {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        bottom: 30px;
    }
}
@media screen and (max-width: 767px) {
    .footer__body {
        padding-bottom: 100px;
    }
    .footer__icon {
        left: 50%;
        transform: translateX(-50%);
        right: auto;
    }
	.page-anchors {
		position: relative;
		z-index: 1;
	}
	.page-anchors:before {
		position: absolute;
		content: "";
		top: 0;
		right: 0;
		bottom: 0;
		width: 100px;
		background-image: linear-gradient(to right, transparent, var(--color-beige));
		pointer-events: none;
		z-index: 1;
	}
	.page-anchors__nav {
		justify-content: flex-start;
		flex-wrap: nowrap;
		padding-right: 100px;
		gap: 15px;
		overflow-x: scroll;
		scrollbar-width: none;
	}
	.page-anchors__nav__link {
		flex-shrink: 0;
	    white-space: nowrap;
	}
}
@media screen and (max-width: 576px) {
    .page-section__container {
        max-width: calc(100% - 30px);
    }
    .header__logo {
        width: 200px;
        height: 13px;
    }
    .header .page-section__content {
        min-height: 60px;
    }
    h1 {
        font-size: 44px;
    }
    h2 {
        font-size: 35px;
    }
    h3 {
        font-size: 30px;
    }
    h4 {
        font-size: 22px;
    }
    h5 {
        font-size: 18px;
    }
    h6 {
        font-size: 16px;
    }
    .hero .page-section__container {
        min-height: calc(100vh - 60px);
        padding: 60px 0;
    }
    .grid--4 {
        grid-template-columns: 1fr;
    }
    .banner .page-section__content {
        padding: 80px 0;
    }
    .banner .page-section__container {
        min-height: 100vw;
    }
    .banner .page-section__container h1 {
        font-size: 32px;
    }
    .banner .page-section__container::before {
        background-size: 120px 120px;
        background-position: left 60px;
    }
    .footer__body {
        flex-direction: column;
        width: 330px;
        padding-bottom: 120px;
        margin: 0 auto;
    }
    .footer__logo {
        width: 245px;
        margin: 0 auto;
    }
    .footer__body h4 {
        font-size: 30px;
    }
    .footer__head {
        margin-bottom: 70px;
    }
    .footer__head p {
        display: none;
    }
    .footer__form {
        order: 0;
        width: 100%;
    }
    .footer__form__inner {
        width: 100%;
    }
    .footer__links {
        display: none;
    }
}
@media screen and (max-width: 359px) {}