/* === CAMPANI SETTINGS === */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;700;900&family=Playfair+Display:wght@700;900&display=swap');

.hidden {
    display: none;
}

.left {
    float: left;
}

.right {
    float: right;
}

.center {
    text-align: center;
}

.clearfix:after {
    content: '';
    display: block;
    clear: both;
}

.clear {
    clear: both;
    height: 0px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1.3em;
}

b,
strong {
    font-weight: 700;
}

body {
    width: 100%;
    min-width: 320px;
    padding: 0px;
    margin: 0px auto;
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5em;
    color: #1a1a1a;
    background: #fff;
}

* {
    box-sizing: border-box;
}

section {
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    padding: 70px 0;
}

.wrap {
    width: 980px;
    padding: 0px 10px;
    margin: 0 auto;
    height: 100%;
    position: relative;
}

.wrap:after {
    clear: both;
    content: "";
    display: table;
}

img {
    max-width: 100%;
    height: auto;
}

h2.title {
    font-size: 32px;
}

/* FORM */
.mainform-body__field {
    position: relative;
    display: block;
    outline: 0;
    border: 2px solid rgba(255, 217, 116, 0.3);
    border-radius: 38px;
    width: 100%;
    height: 66px;
    line-height: 66px;
    margin: 0 auto 15px;
    padding: 0 25px;
    background: rgba(255, 255, 255, 0.05);
    text-align: center;
    font-size: 18px;
    font-family: 'Montserrat', Helvetica, sans-serif;
    font-weight: 400;
    color: #fff;
    transition: all 0.3s;
}

.mainform-body__field::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.mainform-body__field:focus {
    border-color: #ffd974;
    background: rgba(255, 217, 116, 0.08);
    outline: none;
}

.mainform-body__btn {
    position: relative;
    z-index: 2;
    display: block;
    width: 100%;
    height: 66px;
    line-height: 66px;
    margin: 10px auto 0;
    border: none;
    border-radius: 33px;
    text-align: center;
    font-family: 'Montserrat', Helvetica, sans-serif;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    color: #fff;
    background: linear-gradient(135deg, #c0392b, #e74c3c);
    transition: all 0.3s;
    -webkit-appearance: none;
    letter-spacing: 0.5px;
}

.mainform-body__btn:hover {
    background: linear-gradient(135deg, #a93226, #c0392b);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(192, 57, 43, 0.4);
}

.mainform-body {
    width: 100%;
    margin: 0;
}

.button {
    position: relative;
    z-index: 2;
    display: block;
    width: 280px;
    height: 54px;
    line-height: 54px;
    margin: 0 auto;
    border: none;
    border-radius: 27px;
    text-align: center;
    font-family: 'Montserrat', Helvetica, sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    color: #fff;
    background: linear-gradient(135deg, #c0392b, #e74c3c);
    transition: all 0.3s;
    letter-spacing: 0.5px;
}

.button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(192, 57, 43, 0.4);
}

.button:active {
    top: -1px;
}

.autoink {
    position: relative;
    overflow: hidden;
    transform: translate3d(0, 0, 0);
}

.ink {
    display: block;
    position: absolute;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 100%;
    transform: scale(0);
    z-index: 20;
}

.animate {
    animation: ripple 3s linear infinite;
}

@keyframes ripple {
    20% {
        opacity: 0;
        transform: scale(2.5);
    }

    100% {
        opacity: 0;
        transform: scale(2.5);
    }
}

@media screen and (max-width: 979px) {
    .wrap {
        width: 640px;
    }
}

@media screen and (max-width: 639px) {
    .wrap {
        width: 100%;
        padding: 0 15px;
    }
}

@media screen and (max-width: 479px) {
    .wrap {
        width: 100%;
        padding: 0 12px;
    }
}