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


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

@font-face {
    font-family: "Lato";
    font-style: normal;
    font-weight: 700;
    src: url("./fonts/Lato-Bold.woff2") format("woff2"),
        url("./fonts/Lato-Bold.woff") format("woff");
}

@font-face {
    font-family: "Playfair";
    font-style: normal;
    font-weight: 700;
    src: url("./fonts/PlayfairDisplay-Bold.woff2") format("woff2"),
        url("./fonts/PlayfairDisplay-Bold.woff") format("woff");
}



/****************************************************************************************************
        VARIABLES       |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
****************************************************************************************************/
:root {
    /* fonts */
    --font-basic: "Lato", sans-serif;
    --font-heading: "Playfair", sans-serif;

    /* colors */
    --text-black: #424255;
    --text-white: #fff;

    --grey-color: #424255;
    --color-orange: #F4D06F;
    --color-green: #9DD9D2;

    --background-grey: #424255;
    --background-light-grey: #F2F2F2;

    --text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.7);
}



/****************************************************************************************************
        BASIC       |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
****************************************************************************************************/
body {
    min-height: 100vh;
    padding: 0;
    margin: 0;
    font-size: 16px;
    font-weight: 400;
    color: var(--text-black);
    font-family: var(--font-basic);
    background-color: var(--background-light-grey);
    line-height: 1.4;
}
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, h2, h3, h4, h5 {
    font-family: var(--font-heading);
    font-weight: 700;
}
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;
}
.body__middle {
    max-width: 1920px;
    margin: 0 auto;
}
.wrapper {
    width: 1180px;
    max-width: 100%;
    margin: 0 auto;
}
.wrapper--lg {
    width: 1200px;
}
.wrapper--sm {
    width: 700px;
}
.cover {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.hero__item--video {
    background: #000;
}
.video__cover {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);   
    min-width: 100%;
    min-height: 100%;
    max-width: unset;
    max-height: unset;
    z-index: 1;
    width: 100%;
}
.video__cover + .wrapper {
    min-height: 56.25vw;
    z-index: 2;
    position: relative;
}
.hero__item--video:only-child .video__cover + .wrapper {
    height: 56.25vw;
}
.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;
}
.visibility--hidden {
    display: none !important;
}
.ajax,
.ajax-url {
    display: none;
}
.socials {
    display: flex;
    align-items: center;
    gap: 15px;
}
.socials a {
    display: flex;
    align-items: center;
    justify-content: center;
}
.socials a img {
    max-width: 14px;
    max-height: 14px;
}

/* GRID ********************************************************************************/
.grid {
    display: grid;
}
.grid--2 {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.grid--3 {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px;
}
.grid--4 {
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 10px;
}

/* 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 #000;
    animation: 1.5s loading infinite;
}
.loading div:nth-child(2) {
    animation-delay: 0.5s;
}


/* BREADCRUMBS ********************************************************************************/
.breadcrumbs ul {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px 5px;
}
.breadcrumbs ul li,
.breadcrumbs ul li a {
    color: inherit;
}
.breadcrumbs ul li a:hover {
    text-decoration: underline;
}


/* HAMBURGER ********************************************************************************/
.hamburger {
    position: relative;
    width: 40px;
    height: 19px;
    cursor: pointer;
    z-index: 1;
}
.hamburger::before {
    position: absolute;
    content: "";
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-top: 3px solid #000;
    border-bottom: 3px solid #000;
    pointer-events: none;
    z-index: 1;
}
.hamburger::after {
    position: absolute;
    content: "";
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 3px;
    background-color: #000;
    pointer-events: none;
    z-index: 1;
}

/* BUTTON ********************************************************************************/
.btns {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.btns:not(:first-child) {
    margin-top: 30px;
}
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 44px;
    flex-shrink: 0;
    color: #000;
    font-weight: 400;
    font-size: 14px;
    line-height: 1;
    text-decoration: none;
    padding: 10px 30px;
    background-color: var(--color-orange);
    transition: all .2s ease;
    cursor: pointer;
    text-shadow: none !important;
    border: 2px solid var(--color-orange);
}
.btn img {
    max-width: 15px;
    transform: translateX(0);
    transition: all .2s ease;
}
.btn:hover img {
    transform: translateX(4px);
}

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

/* SECTION ********************************************************************************/
section {
    position: relative;
    margin: 90px 0;
    z-index: 1;
}
section.has-bg {
    padding: 90px 0;
}
.text--black {
    color: var(--text-black);
}
.text--white {
    color: var(--text-white);
}
.section__title {
    margin-bottom: 50px;
}
.section__title * {
    margin: 0;
}
.section__title *:not(:last-child) {
    margin-bottom: 10px;
}

/* TEXT BODY ********************************************************************************/
.text__body a:not(.btn) {
    color: inherit;
    text-decoration: underline;
}

/* SLICK SLIDER ********************************************************************************/
.slick-slider {
    max-width: 100%;
}
.slick-track {
    max-width: unset;
    margin: 0;
}
.slick-dots {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 0 15px;
    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%;
    background-color: #fff;
    cursor: pointer;
    opacity: 0.5;
    z-index: 1;
}
.slick-dots li.slick-active {
    opacity: 1;
} 
.slick-dots li button {
    display: none;
}
.slick-dots li:only-child {
    display: none;
}
.slick-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.5);
    transition: all .2s ease;
    color: transparent;
    border: none;
    cursor: pointer;
    z-index: 1;
}
.slick-arrow.slick-disabled {
    display: none !important;
}
.slick-prev {
    left: 0;
}
.slick-next {
    right: 0;
}
.slick-arrow:before,
.slick-arrow:after {
   position: absolute;
   content: "";
   left: 50%;
   width: 18px;
   height: 2px;
   background-color: #fff;
   z-index: 1;
}
.slick-prev:before {
    top: 18px;
    transform: translateX(-50%) rotate(-45deg);
}
.slick-prev:after {
    bottom: 18px;
    transform: translateX(-50%) rotate(45deg);
}
.slick-next:before {
    top: 18px;
    transform: translateX(-50%) rotate(45deg);
}
.slick-next:after {
    bottom: 18px;
    transform: translateX(-50%) rotate(-45deg);
}

/* 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%;
}



/****************************************************************************************************
        TOPBAR       ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
****************************************************************************************************/
.topbar {
    font-size: 14px;
    background-color: var(--background-grey);
    min-height: 48px;
    padding: 15px 0;
}
.topbar .inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.topbar__content {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px 20px;
}
.topbar__content span,
.topbar__content a {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #fff;
    text-decoration: none;
}



/****************************************************************************************************
        HEADER       ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
****************************************************************************************************/
.header {
    position: relative;
    background-color: var(--background-light-grey);
    padding: 20px 0;
    z-index: 100;
}
.header .inner {
    display: flex;
    align-items: center;
    gap: 0 40px;
}
.header__logo {
    display: flex;
    align-items: center;
    width: 250px;
    height: auto;
    flex-shrink: 0;
    margin-right: auto;
}
.header__logo img {
    max-width: 100%;
    max-height: 100%;
}
.header__menu .menu {
    display: flex;
    align-items: center;
    gap: 20px;
}
.header__menu .menu li {
    position: relative;
    z-index: 1;
}
.header__menu .menu li a {
    color: inherit;
}
.header__menu .menu li a:hover
 {
    color: var(--color-orange);
}

.header__menu .menu li.current-menu-ancestor > a,
.header__menu .menu li.current-menu-item > a {
    background: var(--color-orange);
    color: #000;
    padding: 2px 9px;
}
.header__menu .menu li .sub-menu {
    display: none;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 100%);
    background-color: var(--background-light-grey);
    border-radius: 6px;
    padding: 15px;
    min-width: 100%;
    max-width: unset;
    z-index: 1;
}
.header__menu .menu li .sub-menu a {
    white-space: nowrap;
}
@media only screen and (min-width: 992px) {
    .header__menu .menu li:hover .sub-menu {
        display: block;
    }
}
.header__menu .menu li .sub-menu li:not(:last-child) {
    margin-bottom: 8px;
}
.header__menu .menu li.menu-item-has-children {
    padding-right: 16px;
}
.header__menu .menu li.menu-item-has-children:after {
    position: absolute;
    content: "⌄";
    top: -4px;
    right: 0;
    pointer-events: none;
    font-size: 16px;
    font-weight: 700;
    z-index: 1;
}

.contact-icons {
    display: flex;
    gap: 20px;
    align-items: center;
}

.contact-icons img {
    width: 32px;
    height: 24px;
}

.header__menu__scroller {
    display: flex;
    gap: 30px;
}

/****************************************************************************************************
        PAGEBUILDER       |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
****************************************************************************************************/


/* HERO ********************************************************************************/
.hero__item {
    position: relative;
    text-align: center;
    z-index: 1;
}
.hero__item .inner {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 600px;
    padding: 100px 0;
}
.hero__item .cover {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}
.hero__item__content {
    width: 600px;
	text-shadow: 1px 1px 2px black;
    font-size: 18px;
}
.hero__item__title {
    font-size: 55px;
    line-height: 1;
    margin-bottom: 20px;
}
.hero__item .btns {
    justify-content: center;
}

/* PAGE TITLE ********************************************************************************/
.page-title {
    display: flex;
    align-items: center;
    min-height: 312px;
    padding: 90px 0;
}
.has-bg .page-title {
    padding: 0;
    min-height: 132px;
}
.page-title .cover {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}
.page-title h1 {
    font-size: 65px;
    line-height: 1;
    margin-bottom: 20px;
}

/* TEXT AND GALLERY ********************************************************************************/
.text-gallery .inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.text-gallery.order--reverse .inner {
    flex-direction: row-reverse;
}
.text-gallery .content {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 540px;
    flex-shrink: 0;
    min-height: 540px;
    padding-left: 30px;
    z-index: 0;
}
.text-gallery.order--reverse .content {
    padding-right: 30px;
    padding-left: 0;
}
.text-gallery .content:before {
    position: absolute;
    content: "";
    top: -30px;
    bottom: -30px;
    left: -30px;
    right: -250px;
    background-color: var(--color-green);
    z-index: -1;
}
.text-gallery.order--reverse .content::before {
    left: -250px;
    right: -30px;
}
.text-gallery__subtitle {
    font-size: 14px;
    color: var(--color-orange);
    text-transform: uppercase;
}
.text-gallery__title {
    font-size: 45px;
    margin-top: 0;
    margin-bottom: 20px;
}
.text-gallery__slider {
    width: 540px;
    flex-shrink: 0;
}
.text-gallery__slider__image {
    height: 530px;
}

/* PROJECTS ********************************************************************************/
.projects__subtitle {
    display: block;
    text-align: center;
    font-size: 14px;
    color: var(--color-orange);
    text-transform: uppercase;
}
.projects__title {
    font-size: 55px;
    line-height: 1;
    text-transform: capitalize;
    text-align: center;
    margin-top: 0;
}
.projects__items.projects__items--grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.projects__items .slick-list {
    margin: 0 -10px;
    max-width: calc(100% + 20px);
}
.projects__item {
    position: relative;
    display: block;
    color: var(--text-white);
}
.projects__items.projects__items--slider .projects__item {
    margin: 0 10px;
}
.projects__item .cover {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: -1;
}
.projects__item__content {
    display: flex;
    align-content: center;
    justify-content: center;
    flex-wrap: wrap;
    flex-direction: column;
    text-align: center;
    width: 100%;
    opacity: 1;
    min-height: 320px;
    padding: 20px 60px;
    background-color: rgba(53, 53, 64, 0.8);
}
.projects__items.projects__items--grid .projects__item {
    width: 380px !important;
}
.projects__item__content img {
    display: none;
    max-width: 40px;
    max-height: 40px;
    margin: 0 auto;
    margin-top: 15px;
}
.projects__item:hover .projects__item__content img {
    display: block;
}
.projects__item__cats {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    gap: 10px;
}
.projects__item__cats:not(:last-child) {
    margin-bottom: 5px;
}
.projects__item__cats span {
    text-transform: uppercase;
    color: var(--color-orange);
    font-size: 12px;
}
.projects__item__title {
    display: block;
    text-align: center;
    width: 100%;
    max-width: 250px;
    font-size: 18px;
    font-weight: 700;
    margin: 0 auto ;
}

/* PROJECT DETAILS ********************************************************************************/
.project-details .inner {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 80px 50px;
}
.project-details__gallery {
    width: 600px;
    flex-shrink: 0;
}
.project-details__gallery__nav {
    margin: 0 -4px;
    margin-top: 10px;
    max-width: calc(100% + 8px);
}
.project-details__gallery__nav .slick-slide {
    margin: 0 4px;
}
.project-details__gallery__nav .slick-list {
    padding: 0 !important;
}
.project-details__title {
    font-size: 34px;
}
.project-details__info:not(:first-child) {
    margin-top: 30px;
}
.project-details__info__title {
    font-size: 22px;
    font-weight: 400;
}
.project-details__info span {
    display: block;
}

/* CONTACT INFO ********************************************************************************/
.contact-info {
    position: relative;
    background-color: var(--background-grey);
    color: #fff;
    z-index: 1;
}
.contact-info .inner {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    min-height: 620px;
}
.contact-info__content {
    width: 50%;
    padding: 70px;
    padding-right: 0;
}
.contact-info__title {
    text-transform: uppercase;
}
.contact-info .text__body:not(:last-child) {
    margin-bottom: 20px;
}
.contact-info__contact {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #fff;
}
.contact-info__contact:not(:last-child) {
    margin-bottom: 10px;
}
a.contact-info__contact:hover {
    text-decoration: underline;
}
.contact-info__image {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}


/* LOGOS ********************************************************************************/
.logos__title {
    font-size: 45px;
    line-height: 1;
    text-transform: capitalize;
    text-align: center;
}
.logos__items {
    display: flex;
    margin: 0 70px;
}
/* .logos__items .slick-list {
    width: calc(100% + 40px);
    max-width: calc(100% + 40px);
    margin-left: -20px;
} */
.logos__items .slick-track {
    display: flex;
    align-items: center;
}
.logos__item {
    padding: 10px;
    height: 100%;
}
.logos__item__image {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;
}
.slick-initialized .logos__item {
    display: flex;
    justify-content: center;
}
.logos__item__image img {
    max-width: 100%;
    max-height: 100%;
}

.logos__items .slick-prev {
    left: -70px;
}

.logos__items .slick-next {
    right: -70px;
}

/****************************************************************************************************
        FOOTER       ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
****************************************************************************************************/
.footer {
    color: var(--text-white);
    background-color: var(--background-grey);
}
.footer__copyright {
    text-align: center;
    padding: 20px 0;
}



/****************************************************************************************************
        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       ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
****************************************************************************************************/
.show--lg,
.show--md,
.show--sm,
.show--xs,
.visibility--mobile_only {
    display: none;
}

@media only screen and (max-width: 1259px) {
    .hide--lg {
        display: none !important;
    }
    .show--lg {
        display: block;
    }
    .wrapper {
        width: 931px;
    }
    .text-gallery .content,
    .text-gallery__slider {
        width: 440px;
    }
    .text-gallery__slider__image {
        height: 430px;
    }
    .text-gallery .content {
        min-height: 430px;
    }
    .projects__item__content {
        min-height: 297px;
    }
    .projects__items.projects__items--grid .projects__item {
        width: 297px !important;
    }
    .project-details__gallery {
        width: 480px;
    }
    .contact-info .inner {
        min-height: 520px;
    }
}
@media only screen and (max-width: 991px) {
    .hide--md {
        display: none !important;
    }
    .show--md {
        display: block;
    }
    .wrapper {
        width: 708px;
    }
    .header__menu {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        width: 360px;
        transform: translateX(100%);
        transition: all .4s ease;
        padding: 60px 30px 15px 30px;
        background-color: var(--background-light-grey);
        z-index: 222;
    }
    .header__menu__scroller {
        flex-direction: column;
    }
    body.menu--on .header__menu {
        transform: translateX(0);
    }
    .header__menu .close {
        position: absolute;
        top: 30px;
        right: 30px;
    }
    .header__menu__scroller {
        overflow: hidden;
        overflow-y: auto;
        height: 100%;
        max-height: 100%;
    }
    .header__menu .menu {
        flex-wrap: wrap;
    }
    .header__menu .menu li {
        width: 100%;
    }
    .header__menu .menu li .sub-menu {
        position: relative;
        max-width: 100%;
        width: 100%;
        left: auto;
        top: auto;
        bottom: auto;
        transform: translate(0, 0);
        padding: 0 15px;
        margin-top: 10px;
    }
    .header__menu .menu li.current-menu-ancestor .sub-menu {
        display: block;
    }
    .grid--4 {
        grid-template-columns: 1fr 1fr;
    }
    .text-gallery .inner {
        flex-wrap: wrap;
        gap: 0;
    }
    .text-gallery .content, .text-gallery__slider {
        width: 100%;
    }
    .text-gallery .content {
        min-height: unset;
    }
    .text-gallery__slider {
        order: 1;
    }
    .text-gallery .content {
        order: 2;
        padding: 30px !important;
    }
    .text-gallery.order--reverse .content::before,
    .text-gallery .content::before {
        left: 0;
        right: 0;
        bottom: 0;
        top: 0;
    }
    .projects__item__content {
        min-height: 344px;
    }
    .projects__items.projects__items--slider .projects__item__content {
        min-height: 244px;
    }
    .projects__items.projects__items--grid .projects__item {
        width: 344px !important;
    }
    .page-title h1 {
        font-size: 60px;
    }
    .project-details .inner {
        flex-wrap: wrap;
        gap: 60px 0;
    }
    .project-details__gallery {
        width: 100%;
    }
    .contact-info__content {
        padding: 60px;
        padding-left: 30px;
        padding-right: 0;
    }
    .contact-info .inner {
        min-height: unset;
    }
}
@media only screen and (max-width: 767px) {
    .hide--sm,
    .visibility--desktop_only {
        display: none !important;
    }
    .show--sm,
    .visibility--mobile_only {
        display: block;
    }
    .wrapper,
    .wrapper--lg,
    .wrapper--sm {
        width: 100%;
        max-width: 100%;
    }
    .wrapper {
        padding: 0 30px;
    }
    .grid--2 {
        gap: 10px;
    }
    .header__logo {
        width: 200px;
    }
    .projects__items.projects__items--grid .projects__item {
        width: 100% !important;
    }
    .logos__title,
    .projects__title {
        font-size: 48px;
    }
    .projects__item__content {
        opacity: 1;
    }
    .page-title h1 {
        text-align: center;
    }
    .contact-info__image {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        bottom: auto;
        width: 100%;
        height: 100vw;
    }
    .contact-info__content {
        width: 100%;
        padding-left: 0;
    }
    .projects__item .projects__item__content img {
        display: block;
    }
    .projects__items.projects__items--slider .projects__item__content {
        min-height: 54vw;
    }
    .hero__item .inner {
        min-height: 100vw;
        padding: 60px 0;
    }
}
@media only screen and (max-width: 575px) {
    .hide--xs {
        display: none !important;
    }
    .show--xs {
        display: block;
    }
    section {
        margin: 60px 0;
    }
    section.has-bg,
    .page-title {
        padding: 60px 0;
    }
    .wrapper {
        padding: 0 15px;
    }
    .header__menu {
        padding: 60px 15px 15px;
    }
    .header__menu .close {
        right: 15px;
    }
    .grid--2,
    .grid--3,
    .grid--4 {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    .slick-dots {
        gap: 8px;
    }
    .slick-dots li {
        width: 12px;
        height: 12px;
    }
    .hero__item__title {
        font-size: 48px;
    }
    .text-gallery__slider__image {
        height: calc(100vw - 30px);
    }
    .footer__copyright {
        font-size: 12px;
    }
    .text-gallery__title,
    .page-title h1,
    .logos__title,
    .projects__title {
        font-size: 42px;
    }
    .project-details__title {
        font-size: 28px;
    }
}
@media only screen and (max-width: 359px) {}