@font-face {
    font-family: "Prata";
    src: url("/fonts/Prata/Prata-Regular.ttf");

    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: "GreatVibes";
    src: url("/fonts/Great_Vibes/GreatVibes-Regular.ttf");

    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: "PT Sans";
    src: url("/fonts/PT_Sans/PTSans-Regular.ttf");
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: "PT Sans";
    src: url("/fonts/PT_Sans/PTSans-Bold.ttf");
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: "PT Sans";
    src: url("/fonts/PT_Sans/PTSans-BoldItalic.ttf");
    font-weight: bold;
    font-style: italic;
}
@font-face {
    font-family: "PT Sans";
    src: url("/fonts/PT_Sans/PTSans-Italic.ttf");
    font-weight: normal;
    font-style: italic;
}

:root {
    --blue: #0077b5;
    --blue-light: #b0e3ff;
    --indigo: #6610f2;
    --purple: #6f42c1;
    --pink: #e83e8c;
    --red: #dc3545;
    --red-light: #ffcdd2;
    --orange: #fd7e14;
    --yellow: #ffc107;
    --yellow-light: #fff2cc;
    --green: #28a745;
    --green-light: #b8ffc9;
    --teal: #20c997;
    --teal-light: #caffef;
    --cyan: #17a2b8;
    --cyan-light: #c8f8ff;
    --white: #fff;
    --gray: #82888d;
    --gray-light: #dadada;
    --gray-dark: #42464a;

    --success: #28a745;
    --info: #17a2b8;
    --warning: #ffc107;
    --danger: #dc3545;
    --light: #f8f9fa;
    --dark: #343a40;

    --primary: #c3185d;
    --primary-light: #f4c2c2;
    --primary-dark: #7d0e3b;

    --text-color: #030303;
    --back-color: #ffffff;
    --panel-color: #ffffff80;
    --backdrop-filter: var(--backdrop-filter);
    --font-size: 14px;

    --heading-size: 40px;
    --sub-heading-size: 36px;
    --text-size: 24px;

    --text-shadow: 1px 1px 2px #00000060;
    --box-shadow: 0 1px 2px 0 rgba(12, 10, 10, 0.2),
        0 2px 4px 0 rgba(0, 0, 0, 0.19);
    --box-shadow-reverse: 0 -1px -2px 0 rgba(12, 10, 10, 0.2),
        0 -2px -4px 0 rgba(0, 0, 0, 0.19);
    --inset-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.2) inset,
        0 2px 4px 0 rgba(0, 0, 0, 0.19) inset;

    --font-family: "Prata", sans-serif;
    --section-margin: 80px;
    --side-padding: 128px;
}

@media screen and (max-width: 1440px) {
    :root {
        --heading-size: 38px;
        --sub-heading-size: 34px;
        --text-size: 22px;
    }
}

@media screen and (max-width: 1366px) {
    :root {
        --heading-size: 36px;
        --sub-heading-size: 32px;
        --text-size: 20px;
        --side-padding: 96px;
    }
}

@media screen and (max-width: 1200px) {
    :root {
        --heading-size: 34px;
        --sub-heading-size: 30px;
        --text-size: 19px;
    }
}

@media screen and (max-width: 1024px) {
    :root {
        --heading-size: 32px;
        --sub-heading-size: 28px;
        --text-size: 18px;
        --side-padding: 64px;
    }
}

@media screen and (max-width: 800px) {
    :root {
        --heading-size: 30px;
        --sub-heading-size: 26px;
        --text-size: 17px;
        --side-padding: 56px;
    }
}

@media screen and (max-width: 768px) {
    :root {
        --heading-size: 28px;
        --sub-heading-size: 24px;
        --text-size: 16px;
        --side-padding: 32px;
    }
}

@media screen and (max-width: 600px) {
    :root {
        --heading-size: 26px;
        --sub-heading-size: 22px;
        --text-size: 15px;
    }
}

@media screen and (max-width: 500px) {
    :root {
        --heading-size: 24px;
        --sub-heading-size: 20px;
        --text-size: 14px;
    }
}

@media screen and (max-width: 450px) {
    :root {
        --heading-size: 20px;
        --sub-heading-size: 16px;
        --text-size: 13px;
    }
}

@media screen and (max-width: 360px) {
    :root {
        --heading-size: 18px;
        --sub-heading-size: 14px;
        --text-size: 12px;
    }
}

html {
    overflow-x: hidden;
    overflow-y: auto;
}

*,
*::before,
*::after {
    outline-style: none;
    position: relative;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    border: 0;
    scroll-behavior: smooth;
    -webkit-app-region: no-drag;
}

*:focus,
*:active {
    outline-style: none;
}

::-webkit-input-placeholder {
    font-size: var(--text-size);
}
::-moz-placeholder {
    font-size: var(--text-size);
} /* Firefox 19+ */
:-moz-placeholder {
    font-size: var(--text-size);
} /* Firefox 18- */
:-ms-input-placeholder {
    font-size: var(--text-size);
}

body {
    position: relative;
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: var(--dark);
    font-family: "PT Sans";
    text-align: center;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 100%;
    min-width: 320px;
    min-height: 100vh;
    overflow: hidden;
}

a {
    color: var(--text-color);
}

a:hover {
    color: var(--primary);
    text-decoration: none;
    cursor: pointer;
}

datalist {
    font-size: var(--text-size);
}

strong {
    font-family: "Prata";
}

.relative {
    position: relative;
}

.full {
    width: 100%;
}

.nowrap {
    white-space: nowrap;
}

.container {
    position: relative;
    display: inline-block;
    max-width: 144 0px;
    width: 100%;
    padding-left: var(--side-padding);
    padding-right: var(--side-padding);
    margin: 0 auto;
}

.heading {
    font-size: var(--heading-size);
    color: inherit;
    font-weight: 900;
    font-family: "Prata";
}

.sub-heading {
    font-size: var(--sub-heading-size);
    color: inherit;
    font-weight: 600;
    font-family: "Prata";
}

.text {
    font-size: var(--text-size);
    color: inherit;
    font-weight: 400;
    font-family: inherit;
}

.form-group {
    float: left;
    width: 100%;
    margin: 0;
    padding: 8px 16px;
}

.form-label {
    float: left;
    font-size: var(--text-size);
    width: 100%;
    text-align: left;
    padding: 4px 0 0 0;
    margin: 0;
}

.form-control {
    float: left;
    font-size: var(--text-size);
    width: 100%;
    padding: 8px 12px;
    margin: 0;
    border: 2px solid var(--gray-light);
    border-radius: 4px;
}

.form-control:hover,
.form-control:focus,
.form-control:active {
    border: 2px solid var(--gray);
}

.form-control:focus,
.form-control:active {
    box-shadow: 0 0 2px 2px #00000060;
}

.form-button {
    padding: 8px 32px;
    border-radius: 4px;
    font-size: var(--text-size);
    background-color: var(--primary);
    color: var(--back-color);
    border: 2px solid var(--primary);
    cursor: pointer;
}

.form-button:hover {
    background-color: var(--back-color);
    color: var(--primary);
}

.align-left {
    text-align: left;
}

.align-center {
    text-align: center;
}

.align-right {
    text-align: right;
}

.float-left {
    float: left;
}

.float-right {
    float: right;
}

.text-white {
    color: var(--white) !important;
}

.text-gray {
    color: var(--gray) !important;
}

.text-danger {
    color: var(--danger) !important;
}

.text-primary {
    color: var(--primary) !important;
}

.text-white:hover,
.text-gray:hover,
.text-danger:hover,
.text-primary:hover {
    color: initial;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    height: 120px;
    width: 100%;
    margin: 0;
    padding: 8px 32px;
    background-color: var(--primary-light);
    color: #ffffff;
    box-shadow: var(--box-shadow);
    border-radius: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    z-index: 999;
    border: 0;
    /* border-bottom: 50px solid var(--primary); */
}

#nav-toggle {
    display: none;
    background-color: transparent;
    outline: 0;
    border-radius: 4px;
    border: 2px solid transparent;
    cursor: pointer;
}

#nav-toggle img {
    height: 48px;
    width: 48px;
}

.navbar .brand-container {
    width: 320px;
    height: 192px;
    border-radius: 50%;
    background-color: var(--primary-light);
}

.navbar .brand-container .brand-logo {
    position: absolute;
    top: -22px;
    left: 50%;
    width: 250px;
    transform: translate(-50%, 0);
}

.navbar .nav-container {
    flex: 1;
    font-size: var(--text-size);
    background-color: transparent;
    box-shadow: none;
    backdrop-filter: none;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    transition: all 0.3s;
}

.navbar .nav-container .nav-item {
    text-decoration: none;
    color: #ffffff;
    text-shadow: var(--text-shadow);
    font-size: 90%;
    font-family: "PT Sans";
    font-weight: bold;
    font-style: italic;
    margin: 16px;
    cursor: default;
}

.navbar .nav-container .nav-item a {
    font-size: 90%;
    color: #ffffff;
    cursor: pointer;
}

.navbar .nav-container .nav-item.nav-item-action-button {
    padding: 8px 18px;
    font-size: 60%;
    color: #ffffff;
    background-color: var(--primary);
    border: 2px solid var(--primary);
    border-radius: 100px;
    outline: none;
    text-shadow: none;
    cursor: pointer;
}

.navbar .nav-container .nav-item.nav-item-action-button:hover {
    color: var(--primary);
    background-color: #ffffff;
}

@media screen and (max-width: 1200px) {
    .navbar {
        height: 100px;
    }

    .navbar .brand-container {
        width: 250px;
        height: 160px;
    }

    .navbar .brand-container .brand-logo {
        top: -16px;
        width: 200px;
    }
}

@media screen and (max-width: 1100px) {
    #nav-toggle {
        display: block;
    }

    #nav-toggle.active {
        border: 2px solid #ffffff;
    }

    .navbar .nav-container {
        position: absolute;
        right: 10px;
        width: calc(100% - 20px);
        max-width: 300px;
        background-color: var(--primary-light);
        box-shadow: var(--box-shadow);
        border-radius: 4px;
        flex-direction: column;
        align-items: start;
        transition: all 0.3s ease;
    }

    .navbar .nav-container:first-child {
        top: -1000px;
        height: 200px;
    }

    .navbar .nav-container:last-child {
        top: -1000px;
        height: 150px;
    }

    .navbar .nav-container.show:first-child {
        top: 110px;
    }

    .navbar .nav-container.show:last-child {
        top: 320px;
    }
}

@media screen and (max-width: 600px) {
    .navbar .brand-container {
        width: 200px;
        height: 100px;
    }

    .navbar .brand-container .brand-logo {
        top: -42px;
        width: 180px;
    }

    .navbar .nav-container:first-child {
        height: 150px;
    }

    .navbar .nav-container:last-child {
        height: 136px;
    }

    .navbar .nav-container.show:last-child {
        top: 270px;
    }
}

.main {
    position: relative;
}

.page-section {
    float: left;
    width: 100%;
    padding-bottom: var(--section-margin);
}

.banner-container {
    float: left;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: none;
}

.banner-container.show {
    display: block;
}

.banner-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: left;
    animation: animate-zoom 10s linear;
    z-index: 2;
}

@keyframes animate-zoom {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.2);
    }
}

.banner-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #00000050;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 3;
}

.banner-title {
    font-size: 256px;
    font-family: "GreatVibes";
    font-weight: 400;
    color: #ffffff;
    user-select: none;
    text-shadow: var(--text-shadow);
    animation: animate-appear-in 1s linear;
}

@keyframes animate-appear-in {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }

    25% {
        opacity: 0.5;
        transform: scale(0.8);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.banner-anchor {
    font-size: var(--text-size);
    font-family: "PT Sans";
    font-weight: 400;
    color: #ffffff;
    user-select: none;
    text-decoration: underline;
    text-shadow: var(--text-shadow);
    transform: translate(-60px, -120px);
    animation: animate-slide-in 0.5s linear;
    transition: all 0.2s linear;
}

.banner-anchor:hover {
    color: var(--primary-light);
    text-decoration: underline;
    text-decoration-color: var(--primary);
}

@keyframes animate-slide-in {
    0% {
        transform: translate(-60px, -100px);
    }

    100% {
        opacity: 1;
        transform: translate(-60px, -120px);
    }
}

@media screen and (max-width: 1024px) {
    .banner-title {
        font-size: 200px;
    }

    .banner-anchor {
        font-size: var(--text-size);
        transform: translate(-60px, -90px);
    }

    @keyframes animate-slide-in {
        0% {
            transform: translate(-60px, -60px);
        }

        100% {
            opacity: 1;
            transform: translate(-60px, -90px);
        }
    }
}

@media screen and (max-width: 768px) {
    .banner-image {
        animation: animate-zoom 30s linear;
    }

    @keyframes animate-zoom {
        0% {
            transform: scale(1);
            object-position: left;
        }
        50% {
            transform: scale(1);
            object-position: right;
        }
        100% {
            transform: scale(1);
            object-position: left;
        }
    }

    .banner-title {
        font-size: 156px;
    }

    .banner-anchor {
        font-size: var(--text-size);
        transform: translate(-40px, -74px);
    }

    @keyframes animate-slide-in {
        0% {
            transform: translate(-40px, -40px);
        }

        100% {
            opacity: 1;
            transform: translate(-40px, -74px);
        }
    }
}

@media screen and (max-width: 600px) {
    .banner-title {
        font-size: 96px;
    }

    .banner-anchor {
        font-size: var(--text-size);
        transform: translate(-60px, -48px);
    }

    @keyframes animate-slide-in {
        0% {
            transform: translate(-60px, -24px);
        }

        100% {
            opacity: 1;
            transform: translate(-60px, -48px);
        }
    }
}

@media screen and (max-width: 600px) {
    .banner-title {
        font-size: 96px;
    }

    .banner-anchor {
        font-size: var(--text-size);
        transform: translate(-10px, -48px);
    }

    @keyframes animate-slide-in {
        0% {
            transform: translate(-10px, -24px);
        }

        100% {
            opacity: 1;
            transform: translate(-10px, -48px);
        }
    }
}

.work-gallery {
    float: left;
    margin-top: 50px;
    padding: calc(var(--side-padding) / 3);
    width: 100%;
    display: grid;
    grid-template-columns: repeat(6, 16.66%);
    grid-template-rows: repeat(6, 100px);
    gap: 10px;
    grid-template-areas:
        "a a a a b b"
        "a a a a b b"
        "a a a a b b"
        "c c c d d d"
        "c c c d d d"
        "c c c d d d";
    align-content: center;
    justify-content: center;
}

.work-gallery-item {
    box-shadow: var(--box-shadow);
    border-radius: 4px;
    overflow: hidden;
    transition: all 1s;
}

.work-gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 1s;
}

.work-gallery-item:nth-child(1) {
    grid-area: a;
}
.work-gallery-item:nth-child(2) {
    grid-area: b;
}
.work-gallery-item:nth-child(3) {
    grid-area: c;
}
.work-gallery-item:nth-child(4) {
    grid-area: d;
}

.work-gallery-item-title {
    color: #ffffff;
    text-align: center;
    font-size: var(--sub-heading-size);
    font-family: "Prata";
    font-weight: 700;
    text-shadow: var(--text-shadow);
    user-select: none;
}

.work-gallery-item:hover .work-gallery-image {
    transform: scale(1.1);
}

.about-container {
    position: relative;
    float: left;
    width: 100%;
    padding: 0;
    background-color: #ffffff;
    background-image: url("/media/images21.e9ea3fe9.jpg");
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 1;
}

.about-content {
    float: right;
    margin-right: var(--side-padding);
    width: calc(50% - 100px);
    background-color: #ffffff;
    padding: 150px 50px;
    border: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

@media screen and (max-width: 1200px) {
    .about-content {
        width: 50%;
    }
}

@media screen and (max-width: 1024px) {
    .about-content {
        width: 60%;
    }
}

@media screen and (max-width: 768px) {
    .about-content {
        padding: 150px 50px;
        width: calc(100% - var(--side-padding) - var(--side-padding));
    }
}

.why-us .features-heading {
    line-height: var(--heading-size);
}

.why-us .features-sub-heading {
    font-size: var(--text-color) !important;
    line-height: calc(var(--text-size) * 0.8) !important;
    font-family: "PT Sans";
}

.featured-card-container {
    float: left;
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: center;
}

.features-card {
    float: left;
    width: 33%;
    display: block;
    margin: 0;
    padding: 16px;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
}

.features-image {
    height: 100px;
    object-fit: contain;
}

.features-card:nth-of-type(1) .features-image {
    animation: animate-float 8s linear 0.2s infinite;
}

.features-card:nth-of-type(2) .features-image {
    animation: animate-float 8s linear 0s infinite;
}

.features-card:nth-of-type(3) .features-image {
    animation: animate-float 8s linear 0.2s infinite;
}

.features-card:nth-of-type(4) .features-image {
    animation: animate-float 8s linear 0.5s infinite;
}

.features-card:nth-of-type(5) .features-image {
    animation: animate-float 8s linear 0.2s infinite;
}

.features-card:nth-of-type(6) .features-image {
    animation: animate-float 8s linear 0.1s infinite;
}

@keyframes animate-float {
    0% {
        transform: translateY(0);
    }
    33% {
        transform: translateY(-2px);
    }
    50% {
        transform: translateY(0);
    }
    66% {
        transform: translateY(2px);
    }
    100% {
        transform: translateY(0);
    }
}

.features-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 0 8px;
    margin: 8px 0;
}

.feaures-card-heading {
    font-size: var(--text-size);
    line-height: var(--heading-size);
    color: var(--gray-dark);
}

@media screen and (max-width: 1280px) {
    .features-card {
        width: 50%;
    }

    .features-image {
        height: 80px;
    }
}

@media screen and (max-width: 800px) {
    .features-image {
        height: 60px;
    }
}

@media screen and (max-width: 640px) {
    .features-card {
        width: 100%;
    }

    .features-image {
        height: 60px;
    }
}

.gallery-title-container {
    padding: 16px var(--side-padding);
}

.gallery-image {
    position: relative;
    height: 400px;
    width: 100%;
    border-radius: 4px;
    object-fit: cover;
    transition: all 0.1s;
}

.swiper-wrapper {
    transition-timing-function: linear;
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--primary-light);
}

.gallery-section {
    user-select: none;
    padding-bottom: 0;
}

.gallery-section .swiper {
    padding: 0 16px;
}

.contact-us-container {
    margin-top: 100px;
    background-color: var(--primary);
    padding-top: 50px;
}

.contact-grid {
    float: left;
    padding: 10px;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 50%);
    gap: 10px;
    grid-template-areas:
        "a c"
        "b c";
    align-content: center;
    justify-content: center;
}

.contact-column {
    float: left;
    position: relative;
    margin: 0;
    padding: 0;
    padding: 32px;
    background-color: var(--white);
    box-shadow: var(--box-shadow);
    border-radius: 4px;
    overflow: hidden;
    transition: all 1s;
}

.contact-column:nth-child(1) {
    grid-area: a;
}
.contact-column:nth-child(2) {
    grid-area: b;
}
.contact-column:nth-child(3) {
    grid-area: c;
}

.contact-column iframe {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.contact-column li {
    text-align: left;
    list-style-type: disc;
    list-style: outside;
}

@media screen and (max-width: 820px) {
    .contact-grid {
        grid-template-columns: repeat(2, 50%);
        grid-template-areas:
            "a a"
            "a a"
            "b b"
            "c c"
            "c c";
        align-content: center;
        justify-content: center;
    }

    .contact-column:nth-child(3) {
        padding-top: 100%;
    }
}

.footer {
    background-color: var(--primary-light);
    padding-top: 50px;
    padding-bottom: 50px;
}
