
:root {
    --font-family-primary: "Open Sans", sans-serif;
    --font-family-header: "Syne", sans-serif;
    --font-family-auxillary: "Open Sans", sans-serif;
    --color-pink: #E31C79;
    --color-blue: #4665ff;
}

.grecaptcha-badge {
    display: none;
}


.navbar {
    transition: opacity 0.4s ease;
    opacity: 0;
}

.navbar.is-nav-visible {
    /*box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);*/
    opacity: 1;
}

#uppie {
    position: fixed;
    bottom: 20px;
    right: 20px;
    transition: opacity 0.4s ease;
    opacity: 0;
    z-index: 2000;
}
#uppie.is-nav-visible {
    opacity: 1;
}
#uppie span {
    display: block;
    width: 40px;
    height: 40px;
    border-radius: 20px;
    background: var(--color-blue);
    color: white;
    font-size: 15px;
    line-height: 40px;
    text-align: center;
    cursor: pointer;
}

#uppie span i {
    color: white;
}


.is-demo {
    color: var(--color-pink);
    font-style: italic;
    background-color: white;
    padding: 2rem;
    margin: 2rem 0;
}
html, body {
  background: #000;
}
body {
    background-image: url('/var/img/bg2.jpg');
    background-attachment: fixed;
    background-size: cover;
}
span {
  font-size: 4em;
}

p {
    font-family: var(--font-family-primary), 'sans-serif';
    color: white;
}
p, li {
    font-size: 18px;
    line-height: 24px;
}
.is-small {
    font-size: 16px;
    line-height: 22px;
}

.button {
    border-radius: 10px;
    padding-left: 3rem;
    padding-right: 3rem;
    border-width: 2px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    font-family: var(--font-family-header);
}
.navbar.is-dark {
    background-color: #000;
    color: #fff;
}
.navbar-start {
    margin-left: auto;
}
.navbar-logo {
    width: 200px;
}
.navbar-item {
    font-family: var(--font-family-header), 'sans-serif';
    font-weight: 600;
    text-transform: uppercase;
    font-size: 15px;
}

.button.is-primary.is-outlined {
    border-color: var(--color-blue);
    color: var(--color-blue);
    background: none;
    transition: background 0.2s ease-in-out;
}
.button.is-primary.is-outlined:hover,
.button.is-primary.is-outlined:focus {
    border-color: var(--color-blue);
    background: var(--color-blue);
    color: white;
}
.has-text-uppercase {
    text-transform: uppercase;
}

.title.is-1 {
    font-family: var(--font-family-header), 'sans-serif';
    font-size: 62px;
    font-weight: 600;
}
/*
.title.is-2 {
    font-family: var(--font-family-header), 'sans-serif';
    text-transform: uppercase;
    font-size: 28px;
    font-weight: 600;
}
.title.is-2 span {
    font-size: unset;
}
.hero.hello .title.is-3 {

}
.title.is-3 {
    font-family: var(--font-family-header);
    font-size: 24px;
    font-weight: 600;
    line-height: 32px;
    color: white;
}
.title.is-4 {
    font-family: var(--font-family-primary), 'sans-serif';
    font-size: 24px;
    letter-spacing: 0;
    line-height: 94%;
    font-weight: 600;
}
*/
.title.is-2 {
    font-family: var(--font-family-header), 'sans-serif';
    font-size: 40px;
    font-weight: 600;
}
.modal .title.is-2 {
    font-size: 36px;
}
.title.is-3 {
    font-family: var(--font-family-header), 'sans-serif';
    font-size: 28px;
    font-weight: 500;

}
.title.is-3 span {
    font-size: unset;
}
.title.is-3.is-super-big {
    font-size: 79px;
}
.title.is-4 {
    font-family: var(--font-family-header);
    font-size: 24px;
    font-weight: 600;
    line-height: 28px;
    color: white;
}

.title.is-5 {
    font-family: var(--font-family-primary), 'sans-serif';
    font-size: 22px;
    letter-spacing: 0;
    line-height: 94%;
    font-weight: 600;
}

.title.is-6 {
    font-family: var(--font-family-header), 'sans-serif';
    font-size: 24px;
    font-weight: 500;

}

.scroll {
    max-width: 92px;
}

.container {
}
@media screen and (min-width: 1408px) {
  .container:not(.is-max-tablet):not(.is-max-desktop):not(.is-max-widescreen) {
    max-width: 1024px;
  }
}

@media screen and (min-width: 1216px) {
  .container:not(.is-max-tablet):not(.is-max-desktop) {
    max-width: 1024px;
  }
}

.is-textured {
    background: url('/var/img/texture2.png');
    background-repeat: no-repeat;
    background-size: cover;
}

.hero.hello {
    background: url('/var/img/texture.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    /*background-attachment: fixed;*/
    background-position: bottom center;
}
.hero.hello::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 29px;
    height: 150px;
    background: url("/var/img/il-stripe.png") no-repeat;
    background-size: 29px auto;
    background-position: center bottom;
}
.hero.hello img.header {
    max-width: 300px;
}



.box {
    border: 1px solid #000;
    border-radius: 20px;
    background: none;
    box-shadow: none;
    padding: 4rem;
}
.box.is-dark {
    border: 1px solid var(--color-blue);
    border-radius: 20px;
    background: none;
}
.box.is-dark p {
    color: var(--color-blue);
}


.box.is-danger {
    border: 1px solid #DAEA96;
}
.box.is-danger .title {
    color: #DAEA96;
    text-transform: uppercase;
}
.box.is-success {
    border: 1px solid var(--color-blue);
}
.box.is-success .title {
    color: white;
    text-transform: uppercase;
}
.how img {
    width: 200px;
    height: 200px;
    object-fit: contain;
    margin-bottom: 1rem;
}
.how .title.is-3 {
    height: 75px;
}


.work .card {
  position: relative;
  overflow: hidden;
    border-radius: 20px;
    border: 1px solid white;
}


.work .card .card-image {
    position: relative;
}

.work .card .card-image img {
    overflow: hidden;
    width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.work .card .card-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('/var/img/overlay.png');
  background-size: cover;
  opacity: 0;
  z-index: 1;
  transition: opacity 0.3s ease;
}

.work .card:hover .card-image::before {
  opacity: 1;
}

.work .card:hover .card-image img {
  transform: scale(1.016);
  filter: grayscale(86%) brightness(80%);
}

.work .card .card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
    background: var(--color-blue);
  color: white;
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
  z-index: 2;
  padding: 1rem;
}

.modal-close, .modal-close:focus, .modal-close:hover {
    background-color: #7595F8;
}
.modal-close:focus, .modal-close:hover {
    background-color: #E67FF4;
}

.modal-work .modal-background {
    background: #000;
}
.modal-work .image img {
    border-radius: 20px;
    border: 1px solid white;
    background-size: cover;
}

.modal-work .content {
    color: white !important;
    font-family: var(--font-family-primary), 'sans-serif';
}

.work .card:hover .card-content {
  transform: translateY(0);
  opacity: 1;
}

.work .card .icon {
    font-size: 18px;
    /*float: right;*/
}

ul {
    list-style-type: disc;
    color: white;
    font-family: var(--font-family-primary), 'sans-serif';
}

.who li {
    margin-bottom: 2rem;
}
.who li:last-of-type {
    margin-bottom: 0;
}

.has-border {
    border-bottom: 1px solid rgba(229, 225, 218, 0.3);
}







.section.contact {
    /*
    background-image: url('/var/img/bg.jpg');
    background-attachment: fixed;
    background-size: cover;*/
}
.section.contact .column.contact-copy {
    padding-right: 3rem;
}


.section.contact .button {
}
.section.contact label {
    color: white;
    font-style: italic;
    font-weight: normal;
}
.section.contact .input,
.section.contact textarea {
    background: rgb(252 251 248 / 37%) !important;
    border-radius: 10px;
    border: 1px solid white;
    color: white;
}

footer.footer {
    background: transparent;
    padding: 3rem 1.5rem 3rem;
    border-top: 1px solid rgba(229, 225, 218, 0.3);
}
footer.footer .wrapper-logo {
    margin: 0;
}
footer.footer p {
    color: white;
}
.legal, .legal span {
    font-size: 14px;
    font-family: var(--font-family-auxillary), 'sans-serif';
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-variation-settings: "wdth" 100;
}
.card-gallery {

}
.card-gallery .card {
    cursor: pointer;
}
.card-gallery .columns {
    margin-left: -.1rem;
    margin-right: -.1rem;
    margin-top: -.1rem;
}
.card-gallery .column {
    padding: 1rem;
}
/*
.card-gallery .content .title {
    text-transform: uppercase;
}
 */
.card-gallery .content
.card-gallery .content .is-info {
    color: white;
    font-size: 13px;
    /*font-weight: bold;
    text-transform: uppercase;*/
    letter-spacing: 0px;
}
footer .logo img {
    width: 200px;
}
footer.footer p a {
    color: white;
}

/*
footer .social-icons {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
*/

footer .icon-row {
    list-style: none;
    display: flex;
    justify-content: space-between;
    margin: 0;
    padding: 0;
    width: 100%;
}

footer .icon-row li {
    flex: 1;
    display: flex;
    justify-content: center;
}

footer .icon-row a {
    --social-size: 35px;
    --social-border: 3px;
    border: var(--social-border) solid var(--color-blue);
    border-radius: 5px;
    font-size: 12px;
    width: var(--social-size);
    height: var(--social-size);
    display: inline-block;
    text-align: center;
    line-height: calc(var(--social-size) - 2 * var(--social-border));
}

footer .icon-row a:hover {
    background: var(--color-blue);
    color: white;
}

.has-text-blue,
.title.has-text-blue {
    color: var(--color-blue);
}

.yet-another-new-style {
    font-size: 75px !important;
    white-space: nowrap;
    overflow-wrap: normal;
    word-break: keep-all;
}
/*
.yet-another-new-style2 {
    font-size: 32px !important;
}*/

@media screen and (min-width: 1408px) {
    .container:not(.is-max-desktop):not(.is-max-widescreen) {
        max-width: 1024px;
    }
}

@media screen and (min-width: 1216px) {
    .container:not(.is-max-desktop) {
        max-width: 1024px;
    }
}

@media screen and (min-width: 1024px) {
}

@media (min-width: 769px) and (max-width: 1023px) {
}


/* Not Mobile */
@media screen and (min-width: 769px) {
    .container.is-narrow {
        width: 960px;
    }
    .social-icons-wrapper {
        max-width:225px;
        margin-left:auto;
    }
        .section {
        padding: 4rem;
    }
    .modal-card, .modal-content {
        margin: 0 auto;
        max-height: calc(100vh - 40px);
        width: 960px;
    }
    .navbar.is-dark .navbar-brand>a.navbar-item:hover {
        background: none;
    }
}

/* Mobile */
@media screen and (max-width: 768px) {
    body {
        background-size: 100%;
    }
    .hero.hello::before {
        height: 100px;
    }
    .title.is-1 {
        font-size: 38px;
    }
    .title.is-2 {
        font-size: 30px;
    }
    .title.is-3 {
        font-size: 20px;
        line-height: 28px;
    }
    .navbar-brand {
        justify-content: center;
        width: 100%;
      }
    .modal-content .button {
        font-size: 14px;
        padding-left: 40px;
        padding-right: 40px;
    }
    /*
    .modal-content {
        max-height: calc(100vh - 100px);
    }
    .modal-content .hero-body {
        margin-top: 100px;
        padding-top: 0;
        padding-bottom: 0;
    }
     */
    .modal-content {
        max-height: unset;
        height: 100vh;
    }
    .modal-content .button {
        font-size: 14px;
        padding-left: 40px;
        padding-right: 40px;
    }
    .modal-content .hero-body {
        padding-top: 100px;
        padding-bottom: 0;
    }
    .social-icons-wrapper {
        max-width:225px;
        margin-left:auto;
        margin-right: auto;
    }
    .form-box {
        margin-top: 4rem;
        padding: 0;
    }
}

@media screen and (min-width: 769px) {

}

