@import url(https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;700&display=swap);
* {
    font-family: Montserrat, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    color: #fff
}

p {
    font-size: 16px;
    line-height: 22px
}

h2 {
    font-size: 36px;
    font-weight: 500;
    margin-bottom: 50px
}

.wrapper {
    min-height: 100vh;
    width: 100%;
    background: #000;
    background: linear-gradient(0deg, #000 50%, #593944 100%)
}

.container {
    max-width: 1200px;
    padding: 75px 40px;
    box-sizing: content-box;
    flex-wrap: wrap
}

footer,
header,
section {
    display: flex;
    justify-content: center
}

.btns {
    margin-top: 30px;
    border-radius: 30px
}

.blob-btn {
    z-index: 1;
    position: relative;
    margin-bottom: 30px;
    text-align: center;
    text-transform: uppercase;
    color: #000;
    font-size: 16px;
    font-weight: 700;
    background-color: transparent;
    outline: 0;
    border: none;
    transition: color .5s;
    cursor: pointer;
    border-radius: 30px;
    width: 200px;
    height: 50px
}

.blob-btn:before {
    content: "";
    z-index: 1;
    position: absolute;
    left: 0;
    top: 0;
    width: calc(100% - 3px);
    height: calc(100% - 3px);
    border-radius: 30px;
    border: 2px solid #ff8538
}

.blob-btn:after {
    content: "";
    z-index: -2;
    position: absolute;
    left: 3px;
    top: 3px;
    width: 100%;
    height: 100%;
    transition: all .3s .2s;
    border-radius: 30px
}

.blob-btn:hover {
    border-radius: 30px;
    color: #FFF
}

.blob-btn:hover:after {
    transition: all .3s;
    left: 0;
    top: 0;
    border-radius: 30px
}

.blob-btn:hover:before {
    border: 2px solid #ff8538
}

.blob-btn__inner {
    z-index: -1;
    overflow: hidden;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border-radius: 30px;
    background: #ff8538
}

.blob-btn__blobs {
    position: relative;
    display: block;
    height: 100%;
    -webkit-filter: url(#goo);
    filter: url(#goo)
}

.blob-btn__blob {
    position: absolute;
    top: 2px;
    width: 25%;
    height: 100%;
    background: #37232a;
    border-radius: 100%;
    transform: translate3d(0, 150%, 0) scale(1.7);
    transition: transform .45s
}

@supports ((-webkit-filter:url("#goo")) or (filter:url("#goo"))) {
    .blob-btn__blob {
        transform: translate3d(0, 150%, 0) scale(1.4)
    }
}

.blob-btn__blob:nth-child(1) {
    left: 0;
    transition-delay: 0s
}

.blob-btn__blob:nth-child(2) {
    left: 30%;
    transition-delay: .08s
}

.blob-btn__blob:nth-child(3) {
    left: 60%;
    transition-delay: .16s
}

.blob-btn__blob:nth-child(4) {
    left: 90%;
    transition-delay: .24s
}

.blob-btn:hover .blob-btn__blob {
    transform: translateZ(0) scale(1.7)
}

@supports ((-webkit-filter:url("#goo")) or (filter:url("#goo"))) {
    .blob-btn:hover .blob-btn__blob {
        transform: translateZ(0) scale(1.4)
    }
}

header {
    width: 100%
}

header .container nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 150px
}

header .container nav .logo {
    font-size: 24px;
    font-weight: 500
}

header .container nav ul {
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 350px
}

header .container nav ul li a:hover {
    color: #ff8538
}

header .container nav ul .sign {
    background: 0 0;
    color: #fff;
    width: 90px;
    height: 38px;
    border-radius: 50px;
    border: 2px solid #ff8538;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: .5s;
    font-weight: 500
}

header .container nav ul .sign:hover {
    background: #ff8538;
    color: #000
}

header .container .content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px
}

header .container .content .text {
    width: 50%
}

header .container .content .text h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 30px
}

header .container .content .text p {
    margin-bottom: 30px
}

header .container .content .parallax-container {
    -webkit-perspective: 1000;
    -moz-perspective: 1000px;
    transform-style: preserve-3d;
    width: 60%
}

header .container .content .parallax-container .parallax-base {
    transform-style: preserve-3d
}

header .container .content .parallax-container .parallax-base img {
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    width: 100%
}

.about .container .content {
    display: flex;
    align-items: center;
    flex-direction: column
}

.about .container .content .text {
    max-width: 650px;
    text-align: center;
    margin-bottom: 100px
}

.service {
    background: url(../img/bg.png);
    background-size: cover;
    background-position: center center;
    -webkit-clip-path: polygon(0 10%, 100% 0, 100% 90%, 0 100%);
    clip-path: polygon(0 10%, 100% 0, 100% 90%, 0 100%);
    margin-top: -120px
}

.service .container .content {
    display: flex;
    align-items: center;
    flex-direction: column
}

.service .container .content .text {
    padding: 50px 0;
    max-width: 650px;
    text-align: center
}

.contact {
    background: #000
}

.contact .container .content {
    display: flex;
    align-items: center;
    flex-direction: column
}

.contact .container .content .text {
    padding: 50px 0;
    max-width: 650px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center
}

.contact .container .content .text form {
    max-width: 350px;
    width: 100%;
    text-align: left;
    margin-top: 50px
}

.contact .container .content .text .material-form__item {
    position: relative;
    margin-top: 16px;
    margin-bottom: 26px
}

.contact .container .content .text .material-form__item:after {
    height: 2px;
    background-color: #cecfcf;
    width: 100%;
    display: block;
    content: '';
    position: absolute;
    bottom: 0
}

.contact .container .content .text .material-form__item:before {
    height: 2px;
    background: #ff8538;
    z-index: 1;
    width: 0;
    transition: width .3s;
    display: block;
    content: '';
    position: absolute;
    bottom: 0
}

.contact .container .content .text .material-form__item.error {
    margin-bottom: 36px
}

.contact .container .content .text .material-form__item.error:before {
    background-color: #ff8538
}

.contact .container .content .text .material-form__item.focused:before {
    width: 100%
}

.contact .container .content .text .error small.error {
    position: absolute;
    background: 0 0;
    color: #ff8538;
    font-style: normal;
    padding-left: 0
}

.contact .container .content .text .error .material-form__label {
    color: #ff8538
}

.contact .container .content .text .material-form__label {
    display: block;
    width: 100%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    line-height: 1;
    cursor: text;
    color: #3e3e3e;
    font-size: 16px;
    font-weight: 500;
    transition: transform ease .3s, color ease .3s;
    transform-origin: 0 0
}

.contact .container .content .text .focused .material-form__label {
    transform: translateY(-220%) scale(.9);
    color: #ff8538
}

.contact .container .content .text .error.focused .material-form__label {
    color: #ff8538
}

.contact .container .content .text .has-value .material-form__label {
    transform: translateY(-220%) scale(.9)
}

.contact .container .content .text input.material-form__field {
    box-sizing: border-box;
    background-color: transparent;
    border: 0;
    outline: 0;
    width: 100%;
    border-width: 0;
    padding-left: 0;
    padding-right: 0;
    box-shadow: none;
    margin: 0;
    height: 46px;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none
}

.contact .container .content .text input.material-form__field:focus {
    box-shadow: none;
    background: 0 0
}

.contact .container .content .text .ripple-effect {
    position: relative;
    overflow: hidden;
    transform: translate3d(0, 0, 0)
}

.contact .container .content .text .ink {
    display: block;
    position: absolute;
    pointer-events: none;
    border-radius: 50%;
    transform: scale(0);
    background: #fff;
    opacity: 1
}

.contact .container .content .text .ink.animate {
    -webkit-animation: ripple .5s linear;
    animation: ripple .5s linear
}

.contact .container .content .text .btns {
    margin-top: 50px;
    text-align: center
}

.contact .container .content .text .blob-btn__blob {
    background: #000
}

footer {
    background: #000
}

footer .container {
    padding: 0 0 50px;
    text-align: center
}

@media (max-width:992px) {
    .content,
    .text {
        flex-wrap: wrap;
        width: 100% !important
    }
    .content {
        align-items: center;
        flex-direction: column
    }
    .parallax-container,
    .text {
        max-width: 650px;
        width: 100% !important;
        text-align: center
    }
    img {
        width: 100%
    }
}

@media (max-width:768px) {
    header ul {
        width: auto !important
    }
    header ul li a {
        display: none
    }
    header ul .sign {
        display: flex !important
    }
}

@media (max-width:480px) {
    h1 {
        font-size: 32px !important
    }
}