.canvasContact {
    height: 38vw;
}

.contactcontainer {
    padding-left: 10vw;
    padding-right: 10vw;
}

form {
    width: 65%;
}

.formheading p {
    color: #A9A9A9;
}

.formbtncnt {
    display: flex;
    flex-wrap: wrap;
    gap: 1vw;
}

.formbtncnt a {
    font-size: 1.14vw;
    padding: 1vw 2.1vw;
    border-radius: 50px;
    border: 2px solid #000;
    color: #000;
    background: transparent;
    transition: all .5s ease;
}

.cfbtn.cfactive,
.pricebtn.cfactive2,
.socialbtn.cfactive3 {
    background: #000;
    color: #fff;
}

form input {
    width: 100%;
    height: 55px;
    outline: none;
    border: none;
    border-bottom: 2px solid #A9A9A9;
    font-size: 1.87vw;
    transition: all .3s ease;
    padding: 5px 0;
}

form ::placeholder {
    font-size: 1.87vw;
    color: #A9A9A9;
}

form input:focus {
    border-bottom: 2px solid #000;
}

.sendr {
    color: #000;
    display: inline-block;
    position: relative;
    padding-bottom: 5px;
}

.sendr::after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(1);
    height: 1.5px;
    bottom: 0;
    left: 0;
    background-color: #000;
    transform-origin: center;
    transition: transform 0.3s ease-out;
}

.sendr:hover::after {
    transform: scaleX(0);
    transform-origin: center;
}


.elem2 {
    width: 100%;
    height: 20vw;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
}

.elem2 img {
    height: 18.2vw;
    width: 18.2vw;
    border-radius: 50%;
    position: absolute;
    scale: 0;
    opacity: 0;
    transition: all ease 0.3s;
    z-index: -1;
}

.elem2 p {
    font-size: 10vw;
    z-index: 5;
    pointer-events: none;
    position: relative;
    letter-spacing: -10px;
}

.formmarquee {
    width: 100vw;
    max-width: 100%;
    height: 200px;
    overflow-x: hidden;
    box-sizing: border-box;
    position: relative;
}

.formtrack {
    position: absolute;
    white-space: nowrap;
    animation: marquee2 300s linear infinite running;
}



@media (max-width: 1280px) {
    .canvasContact {
        height: 45vw;
    }
}

@media (max-width: 868px) {
    .canvasContact {
        height: 50vw;
    }

    form {
        width: 100%;
        margin-top: 5vw;
    }

    form input {
        height: 50px;
        font-size: 3.4vw;
        padding: 0;
    }

    form ::placeholder {
        font-size: 3.4vw;
    }

    .formbtncnt {
        gap: 2vw;
    }

    .formbtncnt a {
        font-size: 2.2vw;
        padding: 1.5vw 3vw;
    }

    .elem2 p {
        font-size: 12vw;
        letter-spacing: -5px;
    }

    .elem2 {
        height: 25vw;
    }
}

@media (max-width: 670px) {
    .canvasContact {
        height: 60vw;
    }

    .contactcontainer {
        padding-left: 4vw;
        padding-right: 4vw;
    }

    form {
        margin-top: 15vw;
    }

    form input {
        height: 30px;
        font-size: 4vw;
    }

    form ::placeholder {
        font-size: 4vw;
    }

    .formbtncnt a {
        font-size: 3vw;
        padding: 2vw 4vw;
    }

    .elem2 p {
        font-size: 15vw;
        letter-spacing: -5px;
    }

    .elem2 {
        height: 50vw;
    }
}