:root {
  --g: #2E8B57;
  --b: #202226;
  --lw: #F1F7EF;
  --w: #ffffff;
  --gs: #DDEFE1;
  --sb: #ADADAD;
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Karla", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-size: 16px;
    color: var(--b);
    background-color: var(--lw);
    box-sizing: border-box;
}

main {
    min-height: 90vh;
}

h1, h2, h3, h4, h5 {
    font-family: "Rubik", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-weight: 600;
}

h1, .h1 {
    font-size: 4em;
    margin: 0;
}

h2, .h2 {
    font-size: 2.75em;
}

h3, .h3 {
    font-size: 2em;
}

h4, .h4 {
    font-size: 1.5em;
}

h5, .h5 {
    font-size: 1.25em;
    font-weight: 500;
}

@media (max-width:767px) {
    h1, .h1 {
        font-size: 3em;
    }

    h2, .h2 {
        font-size: 2.25em;
    }

    h3, .h3 {
        font-size: 1.75em;
    }
}

p, span{
    font-size: 1em;
    line-height: 1.5em;
    font-weight: 400;
}

section {
    margin-top: 96px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#ukazky-prace {
    margin-top: 0;
    padding-top: 96px;
}

#zjistit-vice {
    margin-top: 0;
    padding-top: 96px;
}

a {
    color: var(--b);
    text-decoration: none;
    font-family: "Rubik", sans-serif;
    font-size: 1em;
    font-weight: 600;
}

.container {
    width: 1200px;
}

@media (max-width:1400px) {
    .container {
        width: 1140px;
    }
}

@media (max-width:1200px) {
    .container {
        width: 992px;
        padding-left: 16px;
        padding-right: 16px;
    }
}

@media (max-width:992px) {
    .container {
        width: 767px;
        padding-left: 32px;
        padding-right: 32px;
    }
}

@media (max-width:767px) {
    .container {
        width: 100%;
        padding-left: 32px;
        padding-right: 32px;
    }
}

@media (max-width:540px) {
    .container {
        width: 100%;
        padding-left: 20px;
        padding-right: 20px;
    }
}

.heading-center {
    display: flex;
    justify-content: center;
    text-align: center;
}

.btn {
    cursor: pointer;
    display: flex;
    align-items: center;
    height: 40px;
    gap: 12px;
    padding-right: 2px;
    padding-left: 12px;
    border-radius: 40px;
    font-family: "Rubik", sans-serif;
    font-weight: 600;
    font-size: 1em;
    transition: all 0.25s ease;
    text-decoration: none;
    width: fit-content;
}

.btn-icon {
    height: 32px;
    width: 32px;
    border-radius: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: inherit;
    transition: all 0.25s ease;
}

.btn-primary {
    border: 2px solid var(--g);
    color: var(--w);
    background-color: var(--g);
}

.btn-primary .btn-icon {
    background-color: var(--lw);
    color: var(--g);
}

.btn-primary:hover {
    color: var(--g);
    background-color: var(--lw);
}

.btn-primary:hover .btn-icon {
    background-color: var(--g);
    color: var(--lw);
}

.btn-outline {
    border: 2px solid var(--g);
    color: var(--g);
    background-color: var(--lw);
}

.btn-outline .btn-icon {
    background-color: var(--g);
    color: var(--lw);
}

.btn-outline:hover {
    color: var(--lw);
    background-color: var(--g);
}

.btn-outline:hover .btn-icon {
    background-color: var(--lw);
    color: var(--g);
}

.btn-white {
    border: 2px solid var(--lw);
    color: var(--b);
    background-color: var(--lw);
}

.btn-white .btn-icon {
    background-color: var(--b);
    color: var(--lw);
}

.btn-white:hover {
    color: var(--lw);
    background-color: var(--b);
}

.btn-white:hover .btn-icon {
    background-color: var(--lw);
    color: var(--b);
}

.btn-dark {
    border: 2px solid var(--b);
    color: var(--lw);
    background-color: var(--b);
}

.btn-dark .btn-icon {
    background-color: var(--lw);
    color: var(--b);
}

.btn-dark:hover {
    color: var(--b);
    background-color: var(--lw);
}

.btn-dark:hover .btn-icon {
    background-color: var(--b);
    color: var(--lw);
}

.btn-transparent {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--lw);
    margin-top: auto;
    font-weight: 600;
    font-family: "Rubik", sans-serif;
    transition: all 0.25s ease;
}

.btn-transparent:hover {
    color: var(--w);
}

.btn-transparent:hover .btn-icon {
    background-color: var(--g);
    color: var(--w);
}

.dark-section {
    background-color: var(--b);
    color: var(--w);
    padding: 96px 0;
}

.subheading-dark {
    color: #C4C4C4;
    padding-bottom: 16px;
    font-weight: 500;
    font-size: 1em;
}



header {
    display: flex;
    justify-content: center;
    width: 100%;
    position: relative;
    z-index: 100;
}

.header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    position: relative;
    background-color: var(--lw);
    padding-top: 32px;
    padding-bottom: 24px;
}

.header-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.header-menu a {
    transition: all 0.2s;
}

.header-menu a:hover {
    color: var(--g);
}

.header-burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 102;
}

.header-burger-menu span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--b);
    border-radius: 3px;
    transition: transform 0.4s ease, opacity 0.4s ease;
    transform-origin: center;
}

@media (max-width: 992px) {
    .header-burger-menu {
        display: flex;
    }

    #header-contact {
        display: none;
    }

    .header-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        flex-direction: column;
        align-items: start;
        background-color: var(--lw);
        padding: 16px 0;
        padding-bottom: 24px;
        gap: 24px;
        transform: translateY(-150%);
        visibility: hidden;
        transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.5s;
        z-index: -1;
    }

    .header-menu.active {
        transform: translateY(0);
        visibility: visible;
    }

    .header-burger-menu.active span:nth-child(1) {
        transform: translateY(7.5px) rotate(45deg);
    }

    .header-burger-menu.active span:nth-child(2) {
        opacity: 0;
    }

    .header-burger-menu.active span:nth-child(3) {
        transform: translateY(-7.5px) rotate(-45deg);
    }
}






/* footer */
footer {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    margin-top: 144px;
}

.footer-wrapper {
    width: 100%;
    padding: 48px 64px;
    padding-bottom: 0;
    background-color: var(--b);
    border-radius: 42px;
    display: flex;
    flex-direction: column;
}

.footer-content {
    margin-bottom: 96px;
    display: grid;
    grid-template-columns: 380px auto auto 254px;
    gap: 48px;
}

.footer-column {
    display: flex;
    flex-direction: column;
    width: fit-content;
}

.footer-column span {
    color: var(--lw);
    margin-bottom: 4px;
}

.footer-logo {
    height: 65px;
    width: 87px;
    flex: none;
    margin-bottom: 24px;
}

.footer-column h5 {
    font-weight: 400;
    margin-bottom: 28px;
    color: var(--lw);
}

.footer-column .footer-link {
    color: #C4C4C4;
    font-weight: 400;
    margin-bottom: 8px;
    line-height: 1.5em;
    transition: all 0.2s;
}

.footer-link:hover {
    color: var(--w);
    text-decoration: underline;
}

.footer-column p {
    color: #C4C4C4;
    margin-bottom: 12px;
    margin-bottom: 32px;
}


.footer-bottom-webrise {
    width: 100%;
    padding: 12px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    border-top: 1px solid var(--sb);
}

.footer-bottom-webrise a {
    color: var(--sb);
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 400;
    font-size: 1em;
    transition: all 0.2s;
}

.footer-bottom-webrise a:hover {
    color: var(--w);
}

@media (max-width:1200px) {
    .footer-content {
        grid-template-columns: auto auto auto 240px;
    }
}

@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: 1fr 1fr 1fr;
        column-gap: 24px;
        margin-bottom: 48px;
    }
    
    .footer-column:first-child {
        grid-column: 1 / -1;
    }
}

@media (max-width: 767px) {
    .footer-content {
        display: flex;
        flex-direction: column;
        gap: 24px;
    }

    .footer-column h5 {
        margin-bottom: 16px;
    }
    
    .footer-contact {
        margin-bottom: 16px;
    }
}

@media (max-width:580px) {
    .footer-wrapper {
        padding-right: 48px;
        padding-left: 48px;
    }
}

@media (max-width:480px) {
    .footer-wrapper {
        padding-right: 40px;
        padding-left: 40px;
    }
}

.hp-references-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 64px;
}

.hp-reference-card {
    background-color: var(--b);
    color: var(--w);
    border-radius: 20px;
    padding: 24px;
}

.hp-reference-img {
    width: 100%;
    height: auto;
    aspect-ratio: 329/194;
    object-fit: cover;
    object-position: center;
    border-radius: 16px;
}

.hp-reference-card h4 {
    margin-top: 24px;
    margin-bottom: 8px;
}

.hp-references-btns {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 48px;
}

@media (max-width:400px) {
	.hp-references-btns {
		flex-direction:column;
	}
}

@media (max-width:1200px) {
    .hp-references-grid {
        gap: 24px;
    }
}

@media (max-width:992px) {
    .hp-references-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width:660px) {
    .hp-references-grid {
        grid-template-columns: repeat(1, 1fr);
        gap: 24px;
    }

    .hp-reference-card {
        padding: 32px;
    }
}

.references-contact .container {
    margin-bottom: 72px;
}

.reference-wrap {
    width: 100%;
    padding: 44px 56px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    border-radius: 40px;
}

.reference-light {
    background-color: #DAEDDF;
}

.reference-dark {
    background-color: var(--b);
    color: var(--w);
}

.reference-texts {
    width: 80%;
}

.reference-texts p {
    margin-top: 16px;
    margin-bottom: 24px;
}

@media (max-width:520px) {
	.reference-texts {
		width: 100%;
	}
}

.reference-btns {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.reference-three-imgs {
    position: relative;
    width: 100%;
    height: 375px;
}

.reference-img {
    position: absolute;
    height: 200px;
    width: 232px;
    object-fit: cover;
    object-position: center;
    border-radius: 30px;
    box-sizing: content-box;
}

.reference-img:nth-child(1) {
    bottom: 0;
    left: 0;
}

.reference-img:nth-child(2) {
    top: 0;
    right: 50%;
    transform: translateX(50%);
    z-index: 2;
    border: 8px solid #DAEDDF;
}

.reference-img:nth-child(3) {
    bottom: 0;
    right: 0;
}


.reference-two-img {
    position: absolute;
    width: 330px;
    height: 213px;
    border-radius: 30px;
    object-fit: cover;
    object-position: center;
    box-sizing: content-box;
}

.reference-two-img:nth-child(1) {
    top: 0;
    right: 0;
    border: 12px solid var(--b);
    z-index: 2;
}

.reference-two-img:nth-child(2) {
    bottom: 0;
    left: 0;
}


@media (max-width:1200px) {
    .reference-three-imgs {
        height: 480px;
    }

    .reference-img:nth-child(1) {
        bottom: 50%;
        transform: translateY(50%);
        left: 0;
        z-index: 2;
        border: 8px solid #DAEDDF;
        border-left: 0;
    }

    .reference-img:nth-child(2) {
        top: 0;
        right: 0;
        transform: unset;
        z-index: 0;
        border: unset;
    }

    .reference-img:nth-child(3) {
        bottom: 0;
        right: 0;
    }
}

@media (max-width:992px) {
    .reference-three-imgs {
        height: 540px;
    }
    .reference-wrap {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .reference-img {
        height: 248px;
        width: 312px;
    }
}

@media (max-width:767px) {
    .reference-three-imgs {
        height: 75vw;
    }

    .reference-img {
        width: 55%;
        aspect-ratio: 230/200;
        height: auto;
    }
	
    .reference-two-img {
        width: 82%;
        aspect-ratio: 330/213;
        height: auto;
    }
}

@media (max-width:600px) {
    .reference-wrap {
        padding: 40px;
    }
}



.gallery-trigger {
    cursor: pointer;
}

.lb-modal {
    display: none;
    position: fixed;
    z-index: 99999;
    padding-top: 20px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: rgba(0,0,0,0.9);
    align-items: center;
    justify-content: center;
}

.lb-modal.active {
    display: flex;
}

.lb-content {
    max-width: 90%;
    max-height: 85vh;
    object-fit: contain;
    user-select: none;
}

.lb-close {
    position: absolute;
    top: 25px;
    right: 40px;
    color: #fff;
    font-size: 50px;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
}

.lb-prev, 
.lb-next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: auto;
    padding: 20px;
    color: white;
    font-weight: bold;
    font-size: 30px;
    border: none;
    background: transparent;
    user-select: none;
}

.lb-prev { left: 20px; }
.lb-next { right: 20px; }

.lb-prev:hover, 
.lb-next:hover,
.lb-close:hover {
    color: #ddd;
}

.service-hero-section {
    background: linear-gradient(180deg, #DDEFE100 0%, #DDEFE1 100%);
    height: calc(100vh - 121px);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0;
}

.service-hero-section .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.service-hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 700px;
    text-align: center;
    margin-bottom: 160px;
}


@media (max-width:767px) {
	.service-hero-section {
		height:auto;
	}
	
	.service-hero-content {
		margin-top:80px;
		margin-bottom: 112px;
	}
}

.service-hero-content p {
    margin-top: 24px;
    margin-bottom: 32px;
}

.service-hero-content h1 {
    font-size: 80px;
}

@media (max-width:767px) {
    .service-hero-content h1 {
        font-size: 3.5em;
    }
}

.service-hero-btns {
    display: flex;
    align-items: center;
    gap: 20px;
}

.service-about-section .container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    justify-content: space-between;
}

.service-about-text {
    max-width: 464px;
}

.service-about-text-right {
    margin-left: 80px;
}

.service-about-text h2 {
    margin-bottom: 24px;
}

.service-about-img-wrap {
    position: relative;
}

.service-about-img {
    width: 100%;
    height: auto;
    aspect-ratio: 117/100;
    border-radius: 30px;
}

.service-about-overlay-wrap {
    position: absolute;
    left: 32px;
    top: 32px;
    background-color: rgba(32, 34, 38, 0.8);
    color: white;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    padding-right: 24px;
    border-radius: 20px;
}

.service-about-overlay-wrap span {
    font-weight: 600;
    font-size: 1.25em;
}


.service-about-overlay-icon-wrap {
    height: 36px;
    width: 36px;
    border-radius: 36px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #DDEFE1;
    color: black;
}

@media (max-width:1200px) {
    .service-about-text {
        max-width: 420px;
    }

    .service-about-text-right {
        margin-left: 56px;
    }
}

@media (max-width:992px) {
    .service-about-text {
        max-width: unset;
    }

    .service-about-section .container {
        display: grid;
        grid-template-columns: 1fr;
        align-items: center;
        gap: 48px;
    }

    .service-about-overlay-wrap {
        left: 24px;
        top: 24px;
    }

    .service-about-text h2 {
        max-width: 480px;
    }
    
    .service-about-text-right {
        margin-left: 0;
    }
}

@media (max-width:560px) {
    .service-about-overlay-wrap {
        left: 16px;
        top: 16px;
        padding: 12px;
        padding-right: 20px;
    }
}


.benefits-section .container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
}

.service-benefit {
    background-color: #DDEFE1;
    border-radius: 20px;
    padding: 32px;
}

.service-benefit h3 {
    margin-top: 12px;
    margin-bottom: 8px;
}

.service-benefit-icon-wrap {
    height: 64px;
    width: 64px;
    border-radius: 64px;
    color: black;
    background-color: var(--lw);
    display: flex;
    justify-content: center;
    align-items: center;
}

@media (max-width:1200px) {
    .benefits-section .container {
        gap: 24px;
    }
}

@media (max-width:992px) {
    .benefits-section .container {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width:767px) {
    .benefits-section .container {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

.contact-section .container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 80px;
}

.contact-info-part {
    padding: 48px;
    background-color: #C0E2CC;
    border-radius: 44px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact-particle {
    background-color: var(--lw);
    color: var(--b);
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    border-radius: 20px;
}

.contact-particle-icon {
    height: 64px;
    width: 64px;
    border-radius: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #C0E2CC;
}

.contact-particle-texts {
    display: flex;
    flex-direction: column;
}

.contact-first-span {
    font-weight: 500;
}

.contact-form-part {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.input-group {
    display: flex;
    align-items: center;
    gap: 16px;
    border: 1px solid var(--b);
    padding: 16px 24px;
    border-radius: 12px;
}

.textarea-group {
    display: flex;
    gap: 16px;
    border: 1px solid var(--b);
    padding: 16px 24px;
    border-radius: 12px;
}

.input-group-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #474747;
    flex: none;
    height: fit-content;
}

.contact-input, .contact-textarea {
    outline: 0;
    border: 0;
    background-color: transparent;
    font-family: "Rubik", sans-serif;
    font-weight: 400;
    font-size: 1em;
    width: 100%;
}

.contact-textarea {
    resize: none;
    height: 120px;
}

.contact-input::placeholder {
    color: #474747;
}

.contact-textarea::placeholder {
    color: #474747;
}

.contact-submit {
    width: 100%;
    height: 48px;
    text-align: center;
    outline: 0;
    border-radius: 60px;
    font-weight: 600;
    font-size: 1em;
    cursor: pointer;
    background-color: var(--g);
    color: var(--w);
    border: 2px solid var(--g);
    font-family: "Rubik", sans-serif;
    transition: all 0.25s ease;
}

.contact-submit:hover {
    background-color: var(--lw);
    color: var(--g);
}

.contact-map {
    width: 100%;
    border-radius: 44px;
    height: 440px;
}

@media (max-width:1200px) {
    .contact-section .container {
        gap: 48px;
    }
}

@media (max-width:992px) {
    .contact-section .container {
        display: flex;
        flex-direction: column-reverse;
        gap: 48px;
    }
}

@media (max-width:580px) {
    .contact-info-part {
        padding: 32px;
        gap: 24px;
    }
}

@media (max-width:520px) {
    .contact-particle {
        padding: 16px;
        gap: 12px;
    }
}

@media (max-width:480px) {
    .contact-particle {
        flex-direction: column;
        align-items: start;
    }
}

.contact-form-message {
    color: rgb(194, 0, 0);
    text-align: center;
    font-weight: 500;
    height: 18px;
}

.contact-form-error {
    color: rgb(194, 0, 0);
}

.contact-form-success {
    color: var(--g);
}

.input-group.active {
    border: 1px solid var(--g);
}

.input-group.active .input-group-icon {
    color: var(--g);
}

.textarea-group.active {
    border: 1px solid var(--g);
}

.textarea-group.active .input-group-icon {
    color: var(--g);
}

.hero .container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
}

.hero-texts {
    max-width: 456px;
}

.hero-texts p {
    margin-top: 16px;
}

.hero-btns {
    display: flex;
    align-items: center;
    gap: 1.25em;
    margin-top: 24px;
}

.hero-img {
    width: 596px;
}

@media (max-width:1200px) {
    .hero-img {
        width: 100%;
    }

    .hero .container {
        gap: 32px;
    }
}

@media (max-width:992px) {
    .hero .container {
        display: flex;
        flex-direction: column;
        align-items: start;
        gap: 64px;
    }
}


/* Homepage services cards */
.hp-services-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 64px;
}

.hp-service-card {
    background-color: var(--b);
    padding: 20px;
    border-radius: 20px;
    display: flex;
    justify-content: space-between;
}

.hp-service-card img {
    height: 254px;
    height: 191px;
    object-fit: cover;
    object-position: center;
    border-radius: 16px;
}

.hp-service-icon-wrap {
    height: 64px;
    width: 64px;
    background-color: var(--lw);
    border-radius: 64px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--g);
}

.hp-service-text-part {
    display: flex;
    flex-direction: column;
}

.hp-service-text-part h4 {
    color: var(--w);
    margin-top: 20px;
}

@media (max-width:992px) {
    .hp-service-card {
        flex-direction: column;
        gap: 32px;
    }

    .hp-service-card img {
        width: 100%;
        aspect-ratio: 254/191;
        height: unset;
    }
}

@media (max-width:767px) {
    .hp-services-wrapper {
        grid-template-columns: repeat(1, 1fr);
        gap: 24px;
    }

    .hp-service-text-part {
        min-width: 30%;
    }

    .hp-service-card {
        display: grid;
        grid-template-columns: 35% calc(65% - 24px);
        gap: 24px;
    }

    .hp-service-card img {
        width: 100%;
        height: auto;
        aspect-ratio: 254/191;
    }
}

@media (max-width:480px) {
    .hp-service-card {
        display: flex;
        flex-direction: column;
        gap: 24px;
        padding: 28px;
    }

    .hp-service-text-part .btn-transparent {
        margin-top: 16px;
    }

    .hp-reference-card {
        padding: 24px !important;
    }

}

.about-us-section .container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.about-text {
    max-width: 458px;
}

.about-text p {
    margin-top: 16px;
    margin-bottom: 32px;
}

.about-img {
    width: 100%;
    height: auto;
}

@media (max-width:992px) {
    .about-us-section .container {
        display: flex;
        flex-direction: column;
        gap: 48px;
    }
}

.our-work-section {
    margin-top: 0;
    padding-top: 96px;
}

.our-work-section .container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.our-work-left {
    background-color: var(--gs);
    padding: 48px;
    border-radius: 44px;
}

.our-work-left p {
    max-width: 320px;
    margin-top: 16px;
    margin-bottom: 24px;
}

.our-work-right {
    display: grid;
    grid-template-rows: repeat(2, 1fr);
    gap: 32px;
}

.our-work-right-upper {
    background-color: var(--b);
    color: var(--w);
    border-radius: 44px;
    padding: 40px;
}

.our-work-right-bottom {
    background-color: var(--g);
    color: var(--w);
    border-radius: 44px;
    padding: 40px;
}

.our-work-right-upper p, .our-work-right-bottom p {
    margin-top: 8px;
}

@media (max-width:992px) {
    .our-work-section .container {
        grid-template-columns: repeat(1, 1fr);
        gap: 32px;
    }

    .our-work-right {
        display: grid;
        grid-template-rows: unset;
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
}

@media (max-width:767px) {
    .our-work-section .container {
        grid-template-columns: repeat(1, 1fr);
        gap: 24px;
    }

    .our-work-right {
        display: grid;
        grid-template-rows: unset;
        grid-template-columns: repeat(1, 1fr);
        gap: 24px;
    }
}

@media (max-width:600px) {
    .our-work-left {
        padding: 32px;
    }

    .our-work-right-upper {
        padding: 32px;
    }

    .our-work-right-bottom {
        padding: 32px;
    }
}



.hidden {
    opacity: 0;
    filter: blur(1px);
    transition: all 1600ms;
}


.hid-right {
    transform: translateX(-25%);
}

.hid-left {
    transform: translateX(25%);
}

.hid-up {
    transform: translateY(10%);
}

.hid-down {
    transform: translateY(-30%);
}

.hid-left-up {
    transform: translate(25%, 30%)
}

.hid-right-up {
    transform: translate(-25%, 30%)
}

.hid-left-down {
    transform: translate(25%, -30%)
}

.hid-right-down {
    transform: translate(-25%, -30%)
}

.del-1 {
    transition: all 800ms;
}

.del-2 {
    transition: all 800ms;
    transition-delay: 150ms;
}

.del-3 {
    transition: all 800ms;
    transition-delay: 300ms;
}

.del-4 {
    transition: all 800ms;
    transition-delay: 450ms;
}

.del-5 {
    transition: all 800ms;
    transition-delay: 600ms;
}

.del-6 {
    transition: all 800ms;
    transition-delay: 500ms;
}

@media only screen and (max-width: 750px){
    .hid-left {
        transform: translateX(0);
        transform: translateY(30%);
    }
    
    .hid-right {
        transform: translateX(0);
        transform: translateY(30%);
    }
}

.show {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
    transform: translateX(0);
}


