html {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

*,
*:before,
*:after {
    -webkit-box-sizing: inherit;
    box-sizing: inherit;
}

/* GLOBAL */

h1 {
    font-size: 42px;
    font-weight: 900;
}

h2 {
    font-size: 26px;
    font-weight: 700;
}

h3 {
    font-size: 20px;
    font-weight: 600
}

:root {
    --dark-color: #121212;
    --primary-color: #EDAD01;
    --color-white: #ffffff;
}

.cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

button.link-btn {
    color: var(--color-white);
    transition: all 0.2s ease;
    background: transparent;
    border: none;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    font-size: 18px;
}

button.link-btn.yellow {
    color: var(--primary-color);
}

button.link-btn .icon {
    width: 42px;
    height: 42px;
    background: var(--primary-color);
    color: var(--dark-color);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    border: solid 1px var(--primary-color);
    transition: all ease .3s;
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);
}

button.link-btn .icon svg {
    width: 32px;
    height: 32px;
    border: none;
    box-shadow: none;
}

button.link-btn .icon svg path:first-child {
    fill: transparent;
}

button.link-btn:hover,
.blog-grid a:hover button.link-btn {
    color: var(--primary-color);
    cursor: pointer;
}

button.link-btn:hover .icon,
.blog-grid a:hover button.link-btn .icon {
    transform: translateX(8px);
    color: var(--primary-color);
    transition: all ease .3s;
    border: solid 1px var(--primary-color);
    transition: all ease .3s;
    background: var(--dark-color);
    box-shadow: 0px 8px 15px var(--primary-color)39;
}

button.link-btn:hover .icon svg,
.blog-grid a:hover button.link-btn .icon svg {
    transform: translateX(0px);
    border: none;
    box-shadow: none;
}

button.global-btn,
a.global-btn {
    padding: 6px 20px;
    background-color: var(--primary-color);
    border: 2px solid var(--primary-color);
    color: var(--dark-color);
    transition: all 0.2s ease;
    text-decoration: none;
    text-align: center;
    min-width: 160px;
    display: inline-block;
    max-width: max-content;
    border-radius: 32px;
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);
    max-height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
}

button.global-btn:hover,
a.global-btn:hover {
    background-color: var(--dark-color);
    border: 2px solid var(--dark-color);
    color: var(--primary-color);
    box-shadow: 0px 8px 15px var(--primary-color)39;
    cursor: pointer;
}

button.global-btn.outline-btn {
    background: transparent;
    border-color: var(--color-white);
    color: var(--color-white);
}

button.global-btn.outline-btn:hover {
    background: var(--color-white);
    color: var(--dark-color);
}



/* NAVIGATION */
.header {
    display: block;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 100;
    transition: all 0.2s ease;
}

.dark-header {
    background: #12121273;
    backdrop-filter: blur(5px);
}

/* .dark-header .logo {
    transition: all ease .3s;
    width: 42px;
    height: 42px;
} */

.header .container {
    padding: 16px 0px;
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.header .navigation {
    gap: 22px;
}

.navigation .link,
.navigation .link a {
    text-decoration: none;
    font-weight: 600;
}

.header .navigation .link,
.header .navigation .link a,
.footer-section .navigation .link a {
    color: var(--color-white);
}

.navigation .link:hover,
.navigation .link a:hover,
.footer-section .navigation .link a:hover {
    cursor: pointer;
    color: var(--primary-color);
}

.header .navigation ul {
    gap: 22px;
    align-items: center;
}

.header .navigation li,
.footer-section .navigation li {
    list-style: none;
    color: var(--color-white);
}

.logo {
    width: 102px;
    height: auto;
    display: block;
    transition: all ease .3s;
}

.logo img {
    width: 100%;
    height: 100%;
}

/* HERO SECTION */

.hero-section {
    height: 92vh;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-section .big-bg {
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    z-index: 0;
}

.hero-section .object-right {
    width: 160px;
    height: auto;
    right: -30px;
    bottom: 0px;
}

.hero-section .big-bg::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
    z-index: 1;
    background: linear-gradient(172deg, rgba(0, 0, 0, 0.60) 0%, rgba(0, 0, 0, 0.00) 100%);
}

.hero-section .hero-content {
    z-index: 2;
}

.hero-section .hero-content h3 {
    font-size: 26px;
    font-weight: 300;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.hero-section .hero-content h1 {
    color: var(--color-white);
    margin-bottom: 22px;
}

.hero-section .hero-content p {
    font-size: 18px;
    margin-bottom: 32px;
    font-weight: 500;
    color: var(--color-white);
}

.hero-section .hero-content .buttons-group {
    gap: 22px;
}

/* SERVICING SECTION */

.servicing-section {
    padding-top: 64px;
    padding-bottom: 64px;
}

.servicing-section .black-bg {
    background: var(--dark-color);
    width: 100%;
    height: 80%;
    top: 0px;
    left: 0px;
    z-index: -1;
}

.servicing-section .object-2 {
    left: -20px;
    bottom: 140px;
    width: 180px;
    height: 180px;
    z-index: 1;
}

.servicing-section h2 {
    font-size: 42px;
    color: var(--color-white);
    margin-bottom: 32px;
}

.servicing-section .service-box::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border: solid 2px var(--primary-color);
    z-index: 0;
    border-radius: 12px;
    top: -4px;
    right: -4px;
}

.servicing-section .service-box .service-box-content {
    padding: 16px;
    padding-top: 32px;
    background: var(--color-white);
    border-radius: 12px;
    box-shadow: 4px -4px 12px 0px var(--primary-color);
    z-index: 1;
    height: 100%;
}

.servicing-section .service-box .circle {
    width: 22px;
    height: 22px;
    top: 8px;
    right: 8px;
    background: var(--primary-color);
    border-radius: 50%;
}

.servicing-section .two-boxes {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;

}

.servicing-section .three-boxes {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    margin-top: 16px;
    position: relative;
    z-index: 2;
}

.servicing-section .service-box .box-head {
    gap: 16px;
    margin-bottom: 10px;
    align-items: center;
}

.servicing-section .service-box .icon {
    width: 42px;
    height: 42px;
}

.servicing-section .service-box .icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.servicing-section .service-box h3 {
    font-size: 18px;
    font-weight: 900;
    max-width: 180px;
    margin-bottom: 0px;
}

.servicing-section .service-box p {
    margin-bottom: 0px;
    font-size: 14px;
}

/* ABOUT SECTION */

.about-section {
    padding-top: 64px;
    padding-bottom: 64px;
}

.about-section .images-section {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    height: 460px;
}

.about-section .small-images {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.about-section .small-images::before {
    content: '';
    position: absolute;
    left: -20px;
    top: 80px;
    z-index: -1;
    width: 220px;
    height: 320px;
    border-radius: 12px;
    border: 4px solid var(--primary-color);
}

.about-section .small-images .image {
    width: 100%;
    height: 50%;
}

.about-section .small-images .image img,
.about-section .big-image .image img {
    border-radius: 12px;
}

.about-section .big-image::after {
    content: '';
    position: absolute;
    width: 52px;
    height: 52px;
    border-radius: 12px;
    border: 4px solid var(--primary-color);
    z-index: 2;
    bottom: -16px;
    right: -16px;
}

.about-section .big-image .image {
    width: 100%;
    height: 100%;
}

.about-section .about-content {
    padding-left: 32px;
}

.about-section h3 {
    font-size: 26px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 22px
}

.about-section h2 {
    font-size: 42px;
    margin-bottom: 32px;
    color: var(--dark-color);
}

.about-section button {
    margin-top: 32px;
}

/* CTA SECTION */

.cta-section {
    padding-top: 64px;
    padding-bottom: 64px;
}

.cta-section .container {
    display: flex;
    justify-content: center;
}

.cta-section .cta-container .bg-image {
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
    z-index: -1;
}

.cta-section .cta-container .bg-image img {
    background-blend-mode: exclusion;
    box-shadow: 4px 4px 12px 0px rgba(0, 0, 0, 0.25);
    border-radius: 24px;
}

.cta-section .cta-container::before {
    content: '';
    position: absolute;
    border-radius: 24px;
    border: 3px solid var(--primary-color);
    width: 96%;
    height: 92%;
}

.cta-section .cta-container .cta-content {
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cta-section .cta-container {
    max-width: 820px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 52px 32px;
}

.cta-section .cta-container h2 {
    color: var(--color-white);
    font-size: 42px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 32px;
}

/* REFERENCES SECTION */

.references-section {
    padding-top: 84px;
    padding-bottom: 84px;
}

.references-section .bg-image {
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
}

.references-section .benefits-section {
    padding-bottom: 62px;
    border-bottom: 2px solid #ffffff61;
}

.references-section .benefits-box h3 {
    font-size: 26px;
    font-weight: 800;
    color: var(--color-white);
    margin-top: 16px;
}

.references-section .benefits-box .icon {
    width: 82px;
    height: 82px;
    background: var(--primary-color);
    box-shadow: 4px 4px 12px 0px rgba(0, 0, 0, 0.25);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.references-section .benefits-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.references-section .object-left {
    width: 110px;
    height: auto;
    left: 0px;
    bottom: 0px;
}


.references-section .three-boxes {
    margin-top: 22px;
}

.references-section .two-boxes::after {
    content: '';
    position: absolute;
    z-index: 2;
    border-radius: 12px;
    border: 4px solid var(--primary-color);
    width: 82px;
    height: 82px;
    bottom: -46px;
    right: 246px;
}


.references-section .references-content {
    padding-top: 62px;
}

.references-section .references-content .title-section h3 {
    color: var(--primary-color);
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 16px;
}

.references-section .references-content .title-section h2 {
    font-size: 42px;
    font-weight: 900;
    color: var(--color-white);
    margin-bottom: 22px;
}


.references-section .references-content .title-section {
    color: var(--color-white);
}

.references-section .references-content .ref-image {
    width: 100%;
    height: 250px;
}

.references-section .references-content .ref-image img {
    border-radius: 12px;
}


/* CONTACT SECTION */

.contact-section {
    padding-top: 102px;
    padding-bottom: 82px;
}

.contact-section .container {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

.contact-section h2 {
    font-size: 42px;
    font-weight: 900;
    margin-bottom: 62px;
}

.contact-section .container-small {
    max-width: 1000px;
    width: 100%;
}

.contact-section .contact-box {
    border-radius: 12px;
    background: var(--dark-color);
    box-shadow: 4px 4px 12px 0px rgba(0, 0, 0, 0.25);
    padding: 32px;
}

.contact-section .contact-box::before {
    content: '';
    position: absolute;
    top: -8px;
    right: -8px;
    z-index: -1;
    border-radius: 12px;
    width: 100%;
    height: 100%;
    border: 4px solid var(--primary-color, #EDAD01);
}

.contact-section .contact-box h4 {
    font-size: 18px;
    font-weight: 300;
    color: var(--color-white);
    margin-bottom: 16px;
}


.contact-section .contact-box p {
    font-size: 20px;
    font-weight: 400;
    color: var(--color-white);
}

.contact-section .contact-box .contact-link {
    gap: 22px;
    align-items: center;
    margin-bottom: 22px;
}

.contact-section .contact-box .contact-link:last-child {
    margin-bottom: 0px;
}

.contact-section .contact-box a {
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    color: var(--color-white);
}

.contact-section .contact-box a:hover,
.contact-section .contact-form a:hover,
.footer-section a.contact-link:hover,
.footer-section .navigation a:hover,
.footer-section .company-section a:hover {
    color: var(--primary-color);
}

.contact-section .contact-box .contact-info {
    margin-top: 32px;
}

.contact-section .contact-form {
    padding-left: 32px;
}

.contact-section .contact-form a {
    font-weight: 800;
    color: var(--dark-color);
    text-decoration: none;
}

.contact-section .object-2 {
    right: -60px;
    bottom: 20px;
    width: 160px;
    height: 160px;
    z-index: -1;
}


input.wpcf7-form-control {
    width: 100%;
    border-radius: 32px;
    padding-left: 16px;
    border: solid 1px var(--dark-color);
    box-shadow: 4px 4px 12px 0px rgba(70, 70, 70, 0.25);
    padding-top: 4px;
    padding-bottom: 4px;
}

.wpcf7-form input:focus-visible,
.wpcf7-form textarea:focus-visible {
    border: solid 1px var(--primary-color) !important;
    outline: none;
}

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

.wpcf7-form textarea {
    width: 100%;
    height: 120px;
    border-radius: 12px;
    padding: 16px;
    border: solid 1px var(--dark-color);
    box-shadow: 4px 4px 12px 0px rgba(70, 70, 70, 0.25);
}

.wpcf7-form .wpcf7-submit {
    width: 160px;
    background: var(--primary-color);
    color: var(--white-color);
    border: 1px solid var(--primary-color);
    transition: all 0.2s ease;
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);
    padding-left: 0px;
    padding-right: 0px;
}

.wpcf7-form .wpcf7-submit:hover {
    background-color: var(--dark-color);
    border: 1px solid var(--dark-color);
    color: var(--primary-color);
    box-shadow: 0px 8px 15px #b2293244;
    cursor: pointer;
    font-weight: 800;
}

/* FOOTER SECTION */

footer {
    background: var(--dark-color);
}

.footer-section {
    padding-top: 52px;
    padding-bottom: 42px;
    border-bottom: solid 2px #ffffff74;
}

.footer-section .navigation ul {
    flex-direction: column;
    gap: 16px;

}

.footer-section .logo {
    max-width: 180px;
    margin-bottom: 32px;
    width: 100%;
    height: auto;
}

.footer-section .logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.footer-section .company-section h3 {
    font-size: 26px;
    color: var(--color-white);
    font-weight: 800;
    margin-bottom: 32px;
}

.footer-section .company-section .contact-info {
    gap: 52px;
}

.footer-section .company-section a {
    font-size: 22px;
    font-weight: 700;
    text-decoration: none;
    color: var(--color-white);
    gap: 22px;
}

.footer-section .navigation {
    justify-content: flex-end;
}

.footer-section .navigation a {
    display: block;
    margin-bottom: 8px;
    color: var(--color-white);
    text-decoration: none;
}

.copy-section {
    padding-top: 22px;
    padding-bottom: 22px;
}

.copy-section .container {
    justify-content: space-between;
    align-items: center;
}

.copy-section p {
    color: var(--color-white);
    margin-bottom: 0px;
}

.copy-section .gettogether-logo {
    gap: 16px;
    color: var(--color-white);
}

.copy-section .gettogether-logo .logo {
    width: 100px;
    height: auto;
}

.copy-section .gettogether-logo a:hover {
    cursor: pointer;
}

.page-text {
    padding: 80px 0;
}

/* GDPR page */

.gdpr-page {
    padding-top: 82px;
}

.gdpr-page .hero-pages-section .bg-image,
.error-page .bg-image {
    width: 100%;
    height: 80px;
    top: 0px;
    left: 0px;
}

.gdpr-page .container.page-content {
    padding-top: 80px;
}

.gdpr-page h2 {
    font-size: 32px;
    margin-bottom: 22px;
    margin-top: 32px;
}

.error-page {
    padding-top: 102px;
}

/* RESPONSIVE DESIGN */

/* MOBILE NAVIGATION */

.mobile-nav {
    display: none;
}

.nav-popup {
    position: absolute;
    top: 0px;
    right: 0px;
    height: 100vh;
    width: 100%;
    background: #000000de;
    padding-top: 82px;
    padding-left: 64px;
    transition: all ease .4s;
    transform: translateY(-100%);
    z-index: 9999;
}

.nav-popup ul {
    padding-left: 0px;
    margin-bottom: 32px;
}

.nav-popup li {
    list-style: none;
}

.nav-popup a {
    color: #ffffff;
    text-decoration: none;
}

.nav-popup .link {
    color: #ffffff;
    font-size: 24px;
    margin-bottom: 16px;
    font-weight: 600;
}

.nav-popup .link:hover {
    cursor: pointer;
    color: var(--primary-color);
}

.nav-popup.active {
    display: block;
    transition: all ease .4s;
    transform: translateY(0%);
}

.mobile-nav .link-btn {
    margin-top: 16px;
}


.hamburger-btn {
    background: var(--primary-color);
    border: solid 1px var(--primary-color);
    width: 42px;
    height: 42px;
    padding: 8px;
    top: 10px;
    padding: 8px;
    border-radius: 6px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    right: 8px;
}


.hamburger-btn svg path {
    fill: white;
}

.hamburger-btn:hover {
    cursor: pointer;
    background: white;
    border: solid 1px var(--primary-color);
}

.hamburger-btn:hover svg path {
    stroke: var(--primary-color);
}

.page-header {
    padding-top: 40px;
}

.text-content {
    padding-bottom: 40px;
}

@media (max-width: 1190px) {
    .servicing-section .service-box h3 {
        font-size: 16px;
    }


    .contact-section .container-small .col-md-4 {
        width: 50%;
    }

    .contact-section .container-small .col-md-8 {
        width: 50%;
    }


    .contact-section .object-2 {
        right: 0px;
        bottom: 10px;
        opacity: .4;
    }
}

@media (max-width: 1024px) {
    header .navigation {
        display: none !important;
    }

    .dark-header {
        height: 60px;
    }

    .header .logo {
        width: 72px;
    }

    .mobile-nav {
        display: block;
    }

    .hero-section .col-md-6 {
        width: 100%;
    }

    .hero-section {
        height: 82vh;
    }

    .contact-section .contact-form {
        padding-left: 0px;
    }

    .copy-section .container {
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
    }

    .copy-section .gettogether-logo {
        margin-top: 22px;
    }
}


@media (max-width: 992px) {

    .servicing-section .col-md-6,
    .about-section .col-md-6 {
        width: 100%;
    }

    .servicing-section .mobile-none {
        display: none;
    }

    .servicing-section .three-boxes {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .servicing-section .col-md-12:last-child .three-boxes {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .servicing-section .title-section {
        padding-bottom: 32px;
    }

    .about-section {
        padding-top: 32px;
        padding-bottom: 32px;
    }

    .about-section .images-col {
        order: 2;
        margin-top: 32px;
    }

    .about-section .about-content {
        padding-left: 0px;
    }

    .contact-section .container-small {
        max-width: 100%;
    }

    .contact-section .container-small .col-md-4 {
        margin-bottom: 32px;
    }


    .footer-section .company-section .contact-info {
        flex-direction: column;
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .nav-popup {
        padding-left: 32px;
    }

    h2,
    .references-section .references-content .title-section h2,
    .contact-section h2,
    .about-section h2 {
        font-size: 32px;
    }

    .header {
        padding-left: 8px;
        padding-right: 8px;
    }

    .hero-section .hero-content {
        padding-top: 32px;
    }

    .hero-section .hero-content h3 {
        font-size: 18px;
    }

    .hero-section .hero-content h1 {
        font-size: 32px;
    }

    .servicing-section {
        padding-bottom: 32px;
    }

    .servicing-section .two-boxes,
    .servicing-section .three-boxes,
    .servicing-section .col-md-12:last-child .three-boxes {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }

    .servicing-section .service-box h3 br {
        display: none;
    }

    .servicing-section .black-bg {
        height: 92%;
    }

    .about-section .images-section {
        height: 340px;
    }

    .about-section .small-images::before {
        width: 150px;
        height: 270px;
        left: -20px;
        top: 40px;
    }

    .about-section .big-image::after {
        bottom: 8px;
        right: 8px;
    }

    .cta-section .cta-container h2 {
        font-size: 32px;
        line-height: 42px;
    }

    .references-section {
        padding-bottom: 32px;
    }

    .references-section .benefits-box {
        margin-bottom: 32px;
    }

    .references-section .col-md-4:last-child .benefits-box {
        margin-bottom: 0px;
    }

    .references-section .references-content .ref-image {
        height: 200px;
        margin-bottom: 22px;
    }

    .references-section .two-boxes::after {
        display: none;
    }

    .references-section .three-boxes {
        margin-top: 0px;
    }

    .contact-section .container-small .col-md-4,
    .contact-section .container-small .col-md-8 {
        width: 100%;
    }

    .contact-section {
        padding-top: 62px;
    }

    .contact-section h2 {
        margin-bottom: 32px;
    }


    .footer-section .navigation {
        justify-content: flex-start;
        padding-top: 22px;
    }

    .footer-section .navigation ul {
        padding-left: 0px;
    }

}


@media (max-width: 560px) {
    .hero-section .hero-content h1 {
        font-size: 26px;
    }

    .cta-section .cta-container h2 {
        font-size: 24px;
        line-height: 32px;
    }
}