﻿/*========================= NEW CODE HERE ===============================  */

input.error {
    border: 1px solid red !important;
    outline:none !important;
}

.top-section .upper {
    display: flex;
    align-items: center;
    justify-content: center;
}

.top-section .upper img {
    width: 120px;
    margin-right: 20px;
}

.top-section .upper h1 small {
    font-size: 20px !important;
    font-weight: 600;
}

.top-section .upper h1 {
    font-size: clamp(30px, 3vw, 80px);
    font-weight: 600;
}

.top-section .image {
    height: 350px;
    width:100%;
    overflow: hidden;
    border-radius: 8px;
}

.top-section .image img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    object-position: left 45%;
}

#form1 .new_heading {

    font-weight: 700;
    font-size: 40px;
    text-align: center;
}


/* =========================== MEDIA QUERY HERE ===================== */

@media (max-width:576px) {

    .top-section .image {
        height: 180px;
    }

    .top-section .upper img {
        width: 100px;
    }
    .top-section .upper h1 {
        font-size: 20px;
    }
}

@media (max-width:420px) {

    .top-section .upper {
        display: block;
    }
    .top-section .upper img {
        position: relative;
        left: 50%;
        transform: translateX(-50%);
    }
    .top-section .upper h1 {
        text-align: center;
        margin-top: 10px;
    }
}