*,
*:before,
*:after {
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}
html,
body {
    height: 100%;
}
body {
    margin: 0;
    font-family: "dolgan";
}

.landing {
    width: 100%;
    height: 100%;
    /* display: flex;
    justify-content: center;
    align-items: center; */
}
.landing .bg-image {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 0;
    pointer-events: none;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.landing .bg-image img {
    width: 100%;
    position: absolute;
    opacity: 0.5;
}
.landing .bg-image img.cat {
    width: auto;
    height: 100%;
    right: 0;
}
.content {
    text-align: center;
    position: relative;
    z-index: 1;
}
.logo {
    width: 118px;
    height: 118px;
    margin: 0 auto;
    position: absolute;
    top: 16px;
    left: 16px;
}
.logo img {
    width: auto;
    height: 100%;
}
.content .text {
    width: 720px;
    margin: 0 auto;
}
.content .text p {
    line-height: 48px;
    font-size: 36px;
    font-weight: 500;
    margin: 16px auto 0;
}
.content .text p span {
    position: relative;
}
.content .text:hover {
    cursor: pointer;
}
.content .text:hover p span {
    font-size: 0px;
    line-height: 0px;
}
.content .text:hover p span:before {
    content: attr(data-hover);
    font-size: 36px;
    width: auto;
    margin: 16px auto 0;
}
.content .text.active p span {
    font-size: 0px;
    line-height: 0px;
}
.content .text.active p span:before {
    content: attr(data-hover);
    font-size: 36px;
    width: auto;
    margin: 16px auto 0;
}

.copy {
    position: absolute;
    left: 0;
    bottom: 0;
    font-size: 14px;
    z-index: 2;
    width: 100%;
    text-align: center;
}

.overlay {
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    position: fixed;
    left: 0;
    top: 0;
    z-index: 8;
    display: none;
}
.contactForm {
    width: 100%;
    height: 100%;
    position: fixed;
    left: 0;
    top: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: top 600ms ease-in-out;
    z-index: 9;
}
.contactForm.show {
    top: 0%;
    animation: skewIn 600ms ease-in-out;
}
@keyframes skewIn {
    0% {
        transform: skewY(10deg);
    }
    90% {
        transform: skewY(8deg);
    }
    100% {
        transform: skewY(0deg);
    }
}
.form-wrap {
    width: 480px;
    padding: 24px 24px 36px;
    background-color: #ffffff;
    border-radius: 6px;
    position: relative;
}
.form-wrap h3 {
    margin: 0;
}
.form-wrap .field {
    margin: 8px 0;
    position: relative;
}
.form-wrap label {
    color: #999999;
    display: block;
    font-size: 12px;
    position: absolute;
    left: 6px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}
.form-wrap label.textarea {
    top: 6px;
    transform: none;
}
.form-wrap input,
.form-wrap textarea {
    width: 100%;
    font-family: inherit;
    border: 1px solid #cccccc;
    border-radius: 4px;
    padding: 6px;
    outline: none;
}
.form-wrap textarea {
    resize: none;
}

.form-wrap .button {
    border: none;
    background-color: #5b4135;
    padding: 8px 24px;
    border-radius: 4px;
    color: #c6dff4;
    cursor: pointer;
}

.contactForm .close {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 24px;
    height: 24px;
    cursor: pointer;
}
.contactForm .close span {
    position: absolute;
    top: 12px;
    right: 0px;
    width: 100%;
    height: 2px;
    background-color: #333333;
    transform: rotate(45deg);
}
.contactForm .close span:last-child {
    transform: rotate(-45deg);
}

.output_message {
    font-size: 12px;
    position: absolute;
    bottom: 8px;
    left: 24px;
}
.output_message .success {
    color: #0087fe;
}
.output_message .error {
    color: #ff0000;
}

@media screen and (max-width: 1024px) {
}
@media screen and (max-width: 768px) {
    .content .text {
        width: 640px;
        margin: 0 auto;
    }
}
@media screen and (max-width: 480px) {
    .content .text {
        width: 90%;
        margin: 0 auto;
    }
    .content .text p {
        margin: 16px auto 0;
    }
    .form-wrap {
        width: 90%;
    }
    .content .text p {
        font-size: 18px;
        line-height: 30px;
    }
    .content .text p span:after {
        bottom: 0px;
    }
    .content .text:hover p span:before {
        font-size: 18px;
    }
    .content .text.active p span:before {
        font-size: 18px;
    }
}
.loader {
 display:none;
  border: 16px solid #f3f3f3;
  border-radius: 50%;
  border-top: 16px solid #5b4135;
  margin:auto;
  width: 20px;
  height: 20px;
  -webkit-animation: spin 2s linear infinite; /* Safari */
  animation: spin 2s linear infinite;
  
}

/* Safari */
@-webkit-keyframes spin {
  0% { -webkit-transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}