
@font-face {
    font-family: DMSerifText-Regular;
    src: url("../fonts/DMSerifText-Regular.ttf");
}

@font-face {
    font-family: Apercu-Regular;
    src: url("../fonts/Apercu Regular.otf");
}
@font-face {
    font-family: Apercu-Light;
    src: url("../fonts/Apercu Light.otf");
}
@font-face {
    font-family: DailyChallenge-Regular;
    src: url("../fonts/DailyChallenge-Regular.otf");
}
/*@font-face {*/
/*font-family: DailyChallenge-Italic;*/
/*src: url("../fonts/DailyChallenge-Italic.otf");*/
/*}*/
* {
    box-sizing: border-box;
}

body {
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100vh;
    margin: 0;
    background-color: #DFE0E1;
}


h1, h2, h3, h4, h5, h6 {
    font-family: 'DMSerifText-Regular', sans-serif;
}

h1 {
    font-size: 160px;
    line-height: 138px;
    margin-top: 0;
    margin-bottom: 0;
    font-weight: 400;
    color: #161616;
}

p {
    font-weight: 400;
    font-family: 'Apercu-Light', sans-serif;
    font-size: 20px;
    margin-top: 0;
    line-height: 1.2;
    text-align: center;
}


ul img {
    max-width: 65px;
    object-fit: cover;
}

ul {
    padding-left: 0;
    position: absolute;
    top: 30px;
    right: 56px;
}

.intro-text {
    margin-top: 25px;
    position: absolute;
    width: 100%;
    opacity: 0;
    transition: opacity 0.2s ease-in-out;
}

.intro-text.visible {
    opacity: 1;
}

.main {
    display: flex;
    justify-content: center;
    margin-top: 50px;
    text-align: right;
    height: 100%;
    align-items: center;
    transition: all 0.3s ease-in-out;
}
.new-phone {
    display: flex !important;
    flex-direction: column!important;
    align-items: flex-start!important;
    justify-content: center!important;
    gap: 5px;
}

.pos-rel {
    position: relative;
    margin-top: -38px;
}

.dog-walking {
    position: relative;
    height: 90px;
    aspect-ratio: 5/3;
}

.desc {
    max-width: 460px;
}

footer {
    text-align: right;
    position: relative;
    bottom: 0;
    padding-right: 56px;
    width: 100%;
    height: 50px;
    margin-right: 8px;
    background-color: #DFE0E1;
    z-index: 2;
}

footer p {
    font-size: 11px;
    display: none;
}
.icons {
    display: flex;
    align-items: center;
}
.icons a {
    margin-left: 40px;
}

.icons a img {
    height: 36px;
}
.icons a:hover img{
    transform: rotate(6deg);
}
.icons .email-img {
    height: 44px;
}
.icons .slack-img {
    height: 45px;
}
.icons #text-button img{
    height: 37px;
}
#text-button, #email-button, #reference-button {
    transition: all 0.3s ease-in-out;
}

#text-button.active, #email-button.active, #reference-button.active {
    filter: invert(64%) sepia(0%) saturate(395%) hue-rotate(136deg) brightness(93%) contrast(84%);
}

.slider {
    height: 30px;
    width: 100%;
    position: relative;
}

.slider span {
    font-family: 'DailyChallenge-Regular', cursive;
    font-size: 27px;
    font-weight: normal;
}

.slider > * {
    animation: 24s autoplay6 infinite linear;
    position: absolute;
    top: 0;
    right: 0;
    opacity: 0.0;
}

.slider > *:nth-child(1) {
    animation-delay: 0s
}

.slider > *:nth-child(2) {
    animation-delay: 3s
}

.slider > *:nth-child(3) {
    animation-delay: 6s
}

.slider > *:nth-child(4) {
    animation-delay: 9s
}

.slider > *:nth-child(5) {
    animation-delay: 12s
}

.slider > *:nth-child(6) {
    animation-delay: 15s
}

.slider > *:nth-child(7) {
    animation-delay: 18s
}
.slider > *:nth-child(8) {
    animation-delay: 21s
}
/*.slider > *:nth-child(8) {*/
    /*animation-delay: 21s*/
/*}*/
/*@keyframes autoplay6 {*/
    /*0% {*/
        /*opacity: 0.0*/
    /*}*/
    /*10% {*/
        /*opacity: 1.0*/
    /*}*/
    /*14% {*/
        /*opacity: 1.0*/
    /*}*/
    /*20% {*/
        /*opacity: 0.0*/
    /*}*/
    /*100% {*/
        /*opacity: 0.0*/
    /*}*/
/*}*/
@keyframes autoplay6 {
    0% {
        opacity: 0.0
    }
    8% {
        opacity: 1.0
    }
    13% {
        opacity: 1.0
    }
    15% {
        opacity: 0.0
    }
    100% {
        opacity: 0.0
    }
}

/* Contact form styles */
.form-wrap {
    background-color: #DFE0E1;
}

.contact-form-custom {
    position: absolute;
    top: 130px;
    left: 0;
    right: 0;
    transform: translateY(0) scale(0) !important;
    transition: transform 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
    background-color: #DFE0E1;
    z-index: -5;
}

.contact-form-custom.visible {
    top: 130px;
    z-index: 9;
    position: absolute;
    transform: translateY(20px) scale(1) !important;

}

.contact-form-custom .form-wrap input {
    padding: 10px;
    border-radius: 3px;
    border: 1px solid #000;
    width: 100%;
    margin-bottom: 10px;
    margin-top: 5px;
    background-color: #DFE0E1;
}

.contact-form-custom .form-wrap span {
    width: 100%;
}

.contact-form-custom .form-wrap textarea {
    border-radius: 3px;
    border: 1px solid #000;
    padding: 10px;
    max-height: 80px;
    width: 100%;
    margin-bottom: 10px;
    background-color: #DFE0E1;
}

.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

textarea::-webkit-input-placeholder, input::-webkit-input-placeholder {
    font-family: 'Lato', sans-serif;
    color: #000;
}

textarea:-ms-input-placeholder, input:-ms-input-placeholder {
    font-family: 'Lato', sans-serif;
    color: #000;
}

textarea:-moz-placeholder, input:-moz-placeholder {
    font-family: 'Lato', sans-serif;
    color: #000;
}

textarea::-moz-placeholder, input::-moz-placeholder {
    font-family: 'Lato', sans-serif;
    color: #000;
}

.contact-form-custom .form-wrap .submit {
    width: 100%;
    text-align: center;
    color: #000;
    background-color: #DFE0E1;
    border-radius: 3px;
    border: 1px solid #000;
    cursor: pointer;
    font-family: 'Lato', sans-serif;
    font-weight: bold;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    height: 35px;
    transition: all 0.2s ease-in-out;
}
.contact-form-custom .form-wrap .submit:hover {
    background-color: #294aff;
    color: #fff;
}

.contact-form-custom .form-wrap form {
    width: 100% !important;
    text-align: left;
    padding: 15px;
}

.contact-form-custom .form-wrap label {
    font-family: 'Lato', sans-serif;
    color: #000;
    font-size: 12px;
    font-weight: 900;
}

.contact-form-custom .form-wrap label span {
    color: red;
    margin-left: 3px;
}

.additional-info {
    margin-top: 15px;
    margin-bottom: 25px;
    display: flex;
    justify-content: space-between;
    padding-left: 20px;
    padding-right: 20px;
}

.additional-info img {
    height: 15px;
    opacity: .7;
    width: 15px;
    object-fit: contain;
    margin-right: 5px;
}

.additional-info > div {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.additional-info a {
    text-decoration: none;
    color: #878787;

}

.close-mobile {
    position: absolute;
    right: 10px;
    top: 5px;
    width: 32px;
    height: 32px;
    opacity: 0.3;
}

.close-mobile:before, .close-mobile:after {
    position: absolute;
    left: 15px;
    content: ' ';
    height: 33px;
    width: 2px;
    background-color: #333;
}

.close-mobile:before {
    transform: rotate(45deg);
}

.close-mobile:after {
    transform: rotate(-45deg);
}

/* captcha */
.not-found, .success {
    margin-bottom: 10px;
}

.not-found {
    color: red;
    text-transform: capitalize;
    font-weight: bold;
    font-family: 'Lato', sans-serif;
    margin-top: 0;
    line-height: 1.2;
}

.success {
    color: #000;
    font-family: 'Lato', sans-serif;
    font-size: 13px;
    line-height: 1.2;
    border: 2px solid #000;
    padding: 10px 10px;
    width: fit-content;
    margin-left: auto;
    margin-top: 10px;
    transition: opacity 0.4s ease-out;
}

.success.finish {
    opacity: 0;
}

.success.finish.gone {
    display: none;
}

.g-recaptcha {
    transform: scale(0.77);
    transform-origin: 0 0;
}

.center-div {
    display: flex;
    align-items: baseline;
    cursor: pointer;
}
.fade {
    position: absolute;
    width: 100%;
    min-height: 50px;
    top:0;
    background-image: linear-gradient(0deg, transparent, #DFE0E1 75%);
    z-index: 1;
}
/*.star-wrapper {*/
    /*display: flex;*/
    /*flex-direction: column;*/
    /*position: absolute;*/
    /*width: 100%;*/
    /*height: 230px;*/
    /*overflow: hidden;*/
    /*transition: opacity 0.2s ease-in-out;*/
/*}*/

/*.star-wars {*/
    /*display: flex;*/
    /*flex-direction: row;*/
    /*align-items: center;*/
    /*position: absolute;*/
    /*height: 200px;*/
    /*width: 100%;*/
    /*flex-wrap: wrap;*/

/*}*/

.star-wrapper {
    position: absolute;
    width: 100%;
    height: 230px;
    overflow: hidden;
}

.star-wars {
    position: absolute;
    width: 100%;
    animation: scroll 120s linear infinite;
    text-align: left;
}
@media (max-width: 600px) {
    .star-wars {
        animation: scroll 180s linear infinite;
    }
}
@keyframes scroll {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-50%);
    }
}

@keyframes moveUp {
    0% {
        bottom: -100%; /* Start hidden below the container */
    }
    100% {
        bottom: 100%; /* Move completely out of the top */
    }
}
.star-wars span {
    display: inline-block;
}
.star-wars p {
    position: absolute;
    transform-origin: 50% 100%;
    top: 300px;
    perspective: 200px;
    perspective-origin: bottom;
}
.star-wars p::before {
    position: absolute;
    content: '';
    height: 1px;
    width: 50px;
    background-color: #161616;
    top: 50%;
    left: -30px;
    transform: translate(-50%, -50%);
    z-index: -1;
}
.star-wars p::after {
    position: absolute;
    content: '';
    height: 1px;
    width: 50px;
    background-color: #161616;
    top: 50%;
    right: -80px;
    transform: translate(-50%, -50%);
    z-index: -1;
}
.star-wrapper.visible {
    opacity: 1!important;
}
/* RESPONSIVE */
@media (min-width: 767px) {
    .close-mobile {
        display: none;
    }

}
@media (max-width: 850px) {
    h1 {
        font-size: 21vw;
        line-height: 45px;
    }
    .dog-walking {
        height: 12vw;
    }
}

@media (max-width: 767px) {
    .g-recaptcha {
        display: inline-block;
    }

    .text-xs-center {
        text-align: center;
    }

    .slider span {
        font-size: 21px;
    }

    .contact-form-custom {
        position: absolute;
        top: 25px;
        left: 0;
        padding-top: 70px;
        width: 100%;
        height: 100%;
        z-index: -5;

    }
    .form-wrap {
        max-width: 380px;
    }
    .two-col {
        display: flex;
        flex-direction: column;
    }
    .icons a {
        margin-left: 20px;
    }
    .intro-text {
        margin-top: 20px;
    }

    .contact-form-custom.visible {
        top: -20px;
        padding-top: 70px;
        height: 100%;
        width: 100%;
        margin: auto;
        z-index: 9;
        position: fixed;
        transform: translateY(20px) scale(1) !important;
        display: flex;
        justify-content: center;
        align-items: flex-start;
    }



    p {
        font-size: 13px;
        line-height: 1.2;
    }

    .contact-form-custom .form-wrap form {
        padding: 0 5px;
    }

    .additional-info {
        padding-left: 10px;
        padding-right: 10px;
        gap: 20px;
        flex-direction: column;
        justify-content: center;
    }
    .new-phone {
        gap: 30px;
    }

}
@media (max-width: 553px) {
    .contact-form-custom {
        display: none;
    }
    .contact-form-custom.visible {
        display: flex;
    }

}
@media (max-width: 450px) {
    .icons {
        transform: scale(0.9);
    }
    ul {
        right: 15px;
    }
    footer {
        padding-right: 35px;
    }
}
@supports (-webkit-touch-callout: none) {
    body {
        height: calc(100vh - 100px);
    }
}