input {
    width: 100%;
    height: 6vh;
    outline: none;
    border: none;
}

textarea {
    width: 100%;
    outline: none;
    border: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
}

a {
    text-decoration: none;
    color: inherit;
}

.custom_btn {
    padding: 0.8rem;
    height: 6vh;
    color: white;
    background-color: var(--main);
    font-weight: bold;
    cursor: pointer;
    border: none;
    outline: none;
    border-radius: 1.2vh;
    font-size: 2vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: capitalize;
}

.custom_btn3 {
    margin-top:20px;
    width: auto;
    padding: 1vh 5vh;
    border-radius: 5vh;
    height: 8vh;
    gap: 2vh;
    color: white;
    background-color: var(--main);
    font-size: 3vh;
    display: flex;
    align-items: center;
    border-bottom: 0.8vh solid #010094;
    justify-content: center;
    font-weight: bold;
}

.submit_btn {
    padding: 1.8rem;
    height: 8vh;
    color: black;
    background-color: var(--yellow);
    font-weight: bold;
    cursor: pointer;
    border: none;
    outline: none;
    border-radius: 5vh;
    font-size: 5vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-transform: capitalize;
    border-bottom: 0.5vh solid #e2c100;
}

.submit_btn2 {
    padding: 1.1rem 1.8rem;
    height: 6vh;
    color: black;
    background-color: var(--yellow);
    font-weight: bold;
    cursor: pointer;
    border: none;
    outline: none;
    border-radius: 5vh;
    font-size: 3vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-transform: capitalize;
    border-bottom: 0.5vh solid #e2c100;
}

.get_in_touch_section .map_container {
    width: 100%;
    height: 30vh;
}

.get_in_touch_section .map_container iframe {
    height: 100%;
    width: 100%;
    border-radius: 1.2rem;
}

.line {
    height: 0.4vh;
    width: 10vw;
    background-color: var(--main);
}

div.heading {
    font-size: 5vh;
    font-weight: bold;
    color: var(--main);
}

h1.heading {
    font-size: 5vh;
    font-weight: bold;
}

h2.heading2 {
    font-size: 5vh;
    font-weight: bold;
    color: white;
}

h2.heading {
    font-size: 5vh;
    font-weight: bold;
}

h2.heading2 {
    font-size: 5vh;
    font-weight: bold;
    color: white;
}

h2.heading {
    font-size: 4vh;
}

h2.heading2 {
    font-size: 4vh;
    color: white;
}

img {
    height: 100%;
    width: 100%;
}

span.color {
    font-size: inherit;
    color: var(--main);
}

span.background {
    background-color: var(--main);
    color: white;
    font-size: inherit;
    padding: 0 1vw;
    border-radius: 1vh;
}

@media screen and (min-width: 1000px) {
    .desktop_none {
        display: none !important;
    }
}

@media screen and (max-width: 1000px) {
    .mobile_none {
        display: none !important;
    }

    .desktop_none {
        display: block !important;
    }
}

/* navbar css */

.navbar_overlay {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 1;
    top: 0;
    right: 0;
    background-color: white;
    overflow-x: hidden;
    transition: 0.5s;
}

.overlay-content {
    position: relative;
    top: 50%;
    width: 100%;
    text-align: center;
    transform: translateY(-50%);
}

.navbar_overlay a {
    padding: 8px;
    text-decoration: none;
    font-size: 1.4rem;
    color: black;
    display: block;
    transition: 0.3s;
}

.navbar_overlay a:hover,
.navbar_overlay a:focus {
    color: #f1f1f1;
}

.navbar_overlay .closebtn {
    position: absolute;
    top: 20px;
    right: 45px;
    font-size: 60px;
}

@media screen and (max-height: 450px) {
    .navbar_overlay a {
        font-size: 20px
    }

    .navbar_overlay .closebtn {
        font-size: 40px;
        top: 15px;
        right: 35px;
    }
}