/* FONTS */
html {
    --font-b: 'suisse_intlregular';
}
body {
    font-family: var(--font-b);
    font-kerning: none;
}
.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
    margin-top: 0;
    margin-bottom: 0;
    font-kerning: none;
    text-rendering: optimizeLegibility;
    font-family: var(--font-b);
}
h1, .h1,
h2, .h2 {
    font-size: calc(1.875rem + ((1vw - 0.225rem) * 6.7708)); /* 30 - 56 */
    min-height: 0vw;
    line-height: 100%;
}
@media (min-width: 744px) {
    h1, .h1,
    h2, .h2 {
        font-size: calc(3.5rem + ((1vw - 0.465rem) * 6.2925)); /* 56 - 130 */
    }
}
@media(min-width: 1800px) {
    h1, .h1,
    h2, .h2 {
        font-size: calc(8.125rem + ((1vw - 1.2rem) * 7.8125)); /* 130 - 180 */
    }
}
@media(min-width: 2500px) {
    h1, .h1,
    h2, .h2 {
        font-size: 11.25rem;; /* 180 */
    }
}
/******************************************************************************************/
h3, .h3 {
    font-size: calc(1.875rem + ((1vw - 0.225rem) * 2.6042)); /* 30 - 40 */
    min-height: 0vw;
    line-height: 100%;
}
@media (min-width: 744px) {
    h3, .h3 {
        font-size: calc(2.5rem + ((1vw - 0.465rem) * 7.6531)); /* 40 - 130 */
    }
}
@media(min-width: 1800px) {
    h3, .h3 {
        font-size: 8.125rem; /* 130 */
    }
}
/******************************************************************************************/
h4, .h4 {
    font-size: calc(1.25rem + ((1vw - 0.225rem) * 2.6042)); /* 20 - 30 */
    min-height: 0vw;
    line-height: 100%;
}
@media (min-width: 744px) {
    h4, .h4 {
        font-size: calc(1.875rem + ((1vw - 0.465rem) * 0.8503)); /* 30 - 40 */
    }
}
@media(min-width: 1800px) {
    h4, .h4 {
        font-size: 2.5rem; /* 40 */
    }
}
/******************************************************************************************/
h5, .h5 {
    font-size: calc(1.25rem + ((1vw - 0.225rem) * 1.0417)); /* 20 - 24 */
    min-height: 0vw;
    line-height: 100%;
}
@media (min-width: 744px) {
    h5, .h5 {
        font-size: calc(1.5rem + ((1vw - 0.465rem) * 0.5102)); /* 24 - 30 */
    }
}
@media(min-width: 1800px) {
    h5, .h5 {
        font-size: 1.875rem; /* 30 */
    }
}
/******************************************************************************************/
h6, .h6 {
    font-size: calc(1.25rem + ((1vw - 0.225rem) * 1.0417)); /* 20 - 24 */
    min-height: 0vw;
    line-height: 100%;
}
@media (min-width: 744px) {
    h6, .h6 {
        font-size: 1.5rem; /* 24 */
    }
}
/******************************************************************************************/
.h7, .nav-link {
    font-size: calc(0.625rem + ((1vw - 0.225rem) * 0.7813)); /* 10 - 13 */
    min-height: 0vw;
    line-height: 130%;
}
@media (min-width: 744px) {
    .h7, .nav-link {
        font-size: 0.8125rem; /* 13 */
    }
}
/******************************************************************************************/
.h8 {
    font-size: calc(1.875rem + ((1vw - 0.225rem) * 2.6042)); /* 10 - 12 */
    min-height: 0vw;
    line-height: 130%;
}
@media (min-width: 744px) {
    .h8 {
        font-size: 0.75rem; /* 12 */
        line-height: 133.333%;
    }
}
/******************************************************************************************/
body, p, .text-def {
    font-size: calc(0.8125rem + ((1vw - 0.225rem) * 0.7813)); /* 13 - 16 */
    margin-bottom: 0;
    line-height: 123%;
}
@media(min-width: 1800px) {
    body, p, .text-def {
        font-size: 1rem; /* 16 */
    }
}
/* END FONTS */
/* COLORS */
html {
    --color-black: #070707;
    --color-white: #ffffff;
    --color-grey: #AAAAAA;
    --color-orange: #FE5200;
}
.color-black {
    color: var(--color-black);
}
.color-white {
    color: var(--color-white);
}
.color-grey {
    color: var(--color-grey);
}
.color-orange {
    color: var(--color-orange);
}
body, .bg-white {
    background-color: var(--color-white);
}
/* END COLORS */
/* GENERAL */
/* selections */
::-moz-selection {
    color: var(--color-white);
    background: var(--color-black);
}
::selection {
    color: var(--color-white);
    background: var(--color-black);
}
/* selections */
.grecaptcha-badge { 
    opacity:0; 
}
.text-balance {
    text-wrap: balance;
}
.min-vh-75 {
    min-height: 75vh;
}
.zIndex-0 {
    z-index: 0;
}
.zIndex-1 {
    z-index: 1;
}
.wrapper {
    padding: 0;
}
.overflow-h {
    overflow: hidden;
}
.pos-rel, section {
    position: relative;
}
.img-container {
    position: relative;
    overflow: hidden;
}
.img-container img {
    width: 100%;
}
a {
    text-decoration: none!important;
    color: var(--color-black);
}
a:hover {
    color: var(--color-grey);
}
html {
    --header-height: 74px;
}
.header-pt {
    padding-top: var(--header-height);
}
.brd-t {
    border-top: 1px solid var(--color-grey);
}
.brd-b {
    border-bottom: 1px solid var(--color-grey);
}
.brd-l {
    border-left: 1px solid var(--color-grey);
}
.brd-r {
    border-right: 1px solid var(--color-grey);
}
.btn-main {
    border: 1px solid var(--color-grey);
    display: inline-flex;
    text-decoration: none;
    width: auto;
    padding: 25px 90px;
    justify-content: center;
    align-items: center;
    font-size: 0.8125rem;
    line-height: 123%;
    font-weight: 400;
}
/* END GENERAL */
/* marquee */
.marquee-wrapper {
    position: relative;
    display: block;
    width: 100%;
}
.marquee {
    position: relative;
    width: 100%;
}
.marquee__text {
    overflow: hidden;
    /* pointer-events: none; */
}
.marquee__line {
    position: relative;
    display: flex;
}
.marquee__sentence {
    display: flex;
    align-items: center;
    overflow: inherit;
    padding: 1rem 10rem;
    white-space: nowrap;
}
/* HEADER */
#wrapper-navbar {
    position: fixed;
    width: 100%;
    z-index: 999;
}
.sitelogo {
    display: block;
    max-width: calc(3.125rem + ((1vw - 0.234375rem) * -0.4577));
}
#navbarNavDropdown .nav-link {
    color: var(--color-black);
    padding: 0;
    margin-right: 1rem;
}
/* END HEADER */
/* PROJECTS */
@media (min-width: 744px) {
    .projects-row > [class*='col'] {
        border-right: 1px solid var(--color-grey);
    }
    .projects-row > [class*='col']:nth-child(2n) {
        border-right: none;
    }
}
@media (min-width: 1200px) {
    .projects-row > [class*='col'] {
        border-right: 1px solid var(--color-grey);
    }
    .projects-row > [class*='col']:nth-child(2n) {
        border-right: 1px solid var(--color-grey);
    }
    .projects-row > [class*='col']:nth-child(4n) {
        border-right: none;
    }
}
@media (min-width: 2000px) {
    .projects-row > [class*='col'] {
        border-right: 1px solid var(--color-grey);
    }
    .projects-row > [class*='col']:nth-child(4n) {
        border-right: 1px solid var(--color-grey);
    }
    .projects-row > [class*='col']:nth-child(6n) {
        border-right: none;
    }
}
.tags-list {
    margin-top: 16px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.tags-list .btn-tag {
    display: block;
    padding: 4px 8px;
    border: 1px solid var(--color-grey);
    border-radius: 3px;
}
/* END PROJECTS */
/* CONTACT */
.wpcf7 {
    max-width: 100%;
}
.wpcf7 input[type=text],
.wpcf7 input[type=tel],
.wpcf7 input[type=email],
.wpcf7 textarea {
    background: transparent!important;
    border: none!important;
    border-radius: 0;
    border-bottom: 1px solid var(--color-grey)!important;
    color: var(--color-black);
    outline: none!important;
    -webkit-box-shadow: none!important;
            box-shadow: none!important;
    margin-top: 1.5rem;
    padding-bottom: 10px;
    padding-left: 0;
}
.wpcf7 form .wpcf7-response-output {
    display: block;
    margin: 3rem auto;
    max-width: 65rem;
    width: 100%;
    text-align: center;
}
.btn-send {
    background: transparent!important;
    border: none;
}
svg#send-arrow {
    width: 1.5rem;
}
/* END CONTACT */
/* FOOTER */  
svg#logo-f {
    width: calc(3rem + ((1vw - 0.5rem) * 2.2727));
}
svg#top-arrow {
    width: calc(5.9375rem + ((1vw - 0.234375rem) * 0.3204));
}
/* END FOOTER */  
/* MEDIA Qs */
