* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

:root {
    --width78: 78%;
    --maxwidth: 100%;
    --dlinecolor: #d9d9d9;
    --bordercolor: rgba(198, 197, 197, 0.34);
}

main {
    max-width: var(--maxwidth);
    margin: auto;
    background: #F2F2F2;
}
.alert-danger {
    font-size: 16px;
    padding: 0 10px;
    line-height: 2em;
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
}
.alert-success {
    font-size: 16px;
    padding: 0 10px;
    line-height: 2em;
    color: #155724;
    background-color: #d4edda;
    border-color: #c3e6cb;
}
html {
    font-size: 62.5%;
}

.header_more {
    width: 100%;
    background: #2E2E2E;
}

.coheader {
    width: 100%;
    position: relative;
}

.coheaderimg {
    width: 100%;
    max-height: 90vh;
    object-fit: cover;
}

.coheaderinfo {
    position: absolute;
    left: 0;
    top: 35%;
    width: 100%;
    padding-left: 11%;
}

.coreertxt {
    font-weight: 700;
    font-size: 1.8rem;
    line-height: 3rem;
    letter-spacing: 0.12em;
    background: linear-gradient(271.26deg, #56ACDE 6.14%, #6DB8E3 99.72%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.wetxt {
    font-weight: 700;
    font-size: 4rem;
    line-height: 4.9rem;
    color: #FFFFFF;
    width: 45%;
    margin-top: 0.5rem;
}

.leavebox {
    width: var(--width78);
    margin: auto;
    text-align: center;
    padding: 5rem 0;
    position: relative;
    /* border: 1px solid var(--bordercolor); */
}

.at {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--bordercolor);

}

.ab {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--bordercolor);
}

.al {
    position: absolute;
    left: 0;
    top: 0;
    width: 2px;
    height: 100%;
    background-color: var(--bordercolor);
}

.ar {
    position: absolute;
    right: 0;
    top: 0;
    width: 2px;
    height: 100%;
    background-color: var(--bordercolor);
}

.leavetxt {
    font-weight: 700;
    font-size: 2.4rem;
    line-height: 2.9rem;
    color: #000000;
}

.contactcont {
    width: 78%;
    margin: auto;
    padding: 0 4%;
    padding-bottom: 5rem;
    /* border: 1px solid rgba(198, 197, 197, 0.34) */
    position: relative;
}

.bl {
    position: absolute;
    left: 0;
    top: 0;
    width: 2px;
    height: 100%;
    background-color: var(--bordercolor);
}

.br {
    position: absolute;
    right: 0;
    top: 0;
    width: 2px;
    height: 100%;
    background-color: var(--bordercolor);
}

.whattxt {
    font-weight: 600;
    font-size: 2rem;
    line-height: 2.4rem;
    color: #2F2F2F;
    padding-top: 4rem;
}

.wanttxt {
    font-weight: 400;
    font-size: 1.6rem;
    line-height: 2rem;
    color: #8C8C8C;
    margin-top: 1rem;
}

.formbox2 {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 3rem;

}

.speccont {
    width: 32%;
    margin-bottom: 7.2rem;
}

.specbox {
    display: block;
    position: relative;
}

.specbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.specmark {
    position: absolute;
    top: 0;
    left: 0;
    /* height: 25px; */
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid rgba(73, 73, 73, 0.4);
    font-weight: 400;
    font-size: 1.6rem;
    line-height: 2rem;
    color: #2F2F2F;
    padding: 1.4rem 0;
    transition: 0.3s all;
    cursor: pointer;
}

.specbox:hover .specmark {
    background-color: #E8E9EA;
    border: 1px solid rgba(73, 73, 73, 0.2);
}

.specbox input:checked~.specmark {
    background: linear-gradient(271.26deg, rgba(86, 172, 222, 0.1) 6.14%, rgba(109, 184, 227, 0.1) 99.72%);
    color: #34ADE3;
    font-weight: 700;
    border-color: #2196F3;
}

.txtarea {
    resize: none;
    height: 18vh;
}

.mt2rem {
    margin-top: 2rem;
}

.formbox1 {
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.lableinputbox {
    width: 48%;
    margin-bottom: 3rem;
}

.labletxt {
    font-weight: 600;
    font-size: 1.8rem;
    line-height: 2.2rem;
    color: #2F2F2F;
}

.inputtxt {
    background: #E8E9EA;
    outline: none;
    border: 1px solid transparent;
    font-weight: 500;
    font-size: 1.6rem;
    line-height: 2rem;
    color: #8C8C8C;
    opacity: 0.6;
    outline: none;
    width: 100%;
    padding: 1.9rem 1rem;
    margin-top: 1rem;
    transform: 0.5s;
}

.inputtxt:focus {
    border: 1px solid rgba(0, 0, 0, 0.4);
    border-radius: 2px;
}

.file {
    background: #FFFFFF url(img/contact/fileicon.webp) no-repeat 95% 50%;
}

.attachbox {
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-top: 2.5rem;
}

.attachsub1 {
    width: 58%;
}

.attachsub2 {
    width: 38%;
}

.attchtxt {
    font-weight: 600;
    font-size: 1.8rem;
    line-height: 2.2rem;
    color: #2F2F2F;
}

.attachsubtxt {
    font-style: normal;
    font-weight: 400;
    font-size: 1.6rem;
    line-height: 2rem;
    color: #8C8C8C;
    margin-top: 1rem;
}

.fileupbox {
    width: 100%;
    display: flex;
    gap: 1rem;
    justify-content: center;
    background: #F2F2F2;
    border: 1px solid #34ADE3;
    border-radius: 2px;
    padding: 1.6rem 1.4rem;
    margin-top: 0.6rem;
    cursor: pointer;
}

.fileuptxt {
    background: linear-gradient(271.26deg, #56ACDE 6.14%, #6DB8E3 99.72%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    font-weight: 600;
    font-size: 1.8rem;
    line-height: 2.2rem;
}

.filupicon {
    width: 2.2rem;
    height: 2.2rem;
}



.contactsumit {
    display: block;
    font-weight: 600;
    font-size: 2rem;
    line-height: 2.4rem;
    color: #FFFFFF;
    background: linear-gradient(271.26deg, #56ACDE 6.14%, #6DB8E3 99.72%);
    outline: none;
    border: none;
    padding: 1.2rem 3.5rem;
    width: 15%;
    margin: auto;
    margin-top: 5.5rem;
    cursor: pointer;

}

.supotxt {
    font-weight: 500;
    font-size: 1.5rem;
    line-height: 2.2rem;
    color: #8C8C8C;

}

.contacttwolines {
    width: 100%;
    position: relative;
}

.addcont {
    width: 78%;
    margin: auto;
    /* border: 1px solid rgba(198, 197, 197, 0.34); */
    position: relative;
}

.ct {
    width: 100%;
    height: 2px;
    position: absolute;
    top: 0;
    background-color: var(--bordercolor);
}

.cl {
    width: 2px;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: var(--bordercolor);
}

.cr {
    width: 2px;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    background-color: var(--bordercolor);
}

.addtxtbox {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding: 5% 0 5% 5px;
}

.txtbox {
    width: 48%;
}

.meettxt {
    font-weight: 700;
    font-size: 1.8rem;
    line-height: 3rem;
    letter-spacing: 0.12em;
    background: linear-gradient(271.26deg, #56ACDE 6.14%, #6DB8E3 99.72%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    padding-left: 5px;
}

.findtxt {
    font-weight: 700;
    font-size: 2.4rem;
    line-height: 2.9rem;
    color: #2F2F2F;
    margin-top: 0.5rem;
    width: 50%;
    padding-left: 5px;
}

.timetxt {
    font-weight: 700;
    font-size: 2rem;
    line-height: 2.4rem;
    color: #2F2F2F;
}

.locheadtxt {
    font-weight: 700;
    font-size: 2.4rem;
    line-height: 2.9rem;
    color: #2F2F2F;
    margin-top: 0.5rem;
    padding-left: 5px;
}

.locsubtxt {
    font-weight: 500;
    font-size: 1.4rem;
    line-height: 2rem;
    color: #2F2F2F;
    width: 80%;
    margin-top: 0.5rem;
    padding-left: 5px;
}

.bottomimg {
    display: block;
    width: 100%;
    margin: auto;
    padding-bottom: 6.5%;
    padding-left: 2px;
    padding-right: 2px;
}

.validtxt {
    font-size: 1.4rem;
    line-height: 2rem;
    color: red;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin: 0;
}

@media screen and (min-width: 1441px) {
    html {
        font-size: 62.5%;
    }
}

@media screen and (min-width: 1666px) {
    html {
        font-size: 66%;
    }
}

@media screen and (min-width: 1850px) {
    html {
        font-size: 70%;
    }
}

@media screen and (min-width: 2000px) {
    html {
        font-size: 75%;
    }
}

@media screen and (min-width: 2150px) {
    html {
        font-size: 80%;
    }
}

@media screen and (min-width: 2300px) {
    html {
        font-size: 85%;
    }
}

@media screen and (min-width: 2450px) {
    html {
        font-size: 90%;
    }
}

@media screen and (min-width: 2600px) {
    html {
        font-size: 95%;
    }
}

@media screen and (min-width: 2750px) {
    html {
        font-size: 100%;
    }
}

@media only screen and (max-width: 1200px) {
    html {
        font-size: 55%;
    }

    .contactsumit {
        width: 35%;
    }

    .fileupbox {
        gap: 1rem;
        align-items: center;
    }
}

@media only screen and (max-width: 991px) {
    .wetxt {
        width: 90%;
    }

    .locsubtxt {
        width: 99%;
    }

    .findtxt {
        width: 99%;
    }
}

@media only screen and (max-width: 767px) {
    html {
        font-size: 40%;
    }


    .speccont {
        width: 48%;
    }

    .contactsumit {
        width: 35%;
    }

    .fileupbox {
        gap: 1%;
        align-items: center;
    }

}

@media only screen and (max-width: 600px) {
    .mhide {
        display: none;
    }

    main {
        max-width: 100%;
        margin: auto;
        background: #F2F2F2;
    }

    html {
        font-size: 62.5%;
    }

    .header_more {
        width: 100%;
        background: #2E2E2E;
    }

    .coheader {
        width: 100%;
        position: relative;
    }

    .coheaderimg {
        width: 100%;
        max-height: 90vh;
        object-fit: cover;
    }

    .coheaderinfo {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        padding: 5% 0 0 5%;
    }

    .coreertxt {
        font-weight: 700;
        font-size: 1.2rem;
        line-height: 2rem;
        letter-spacing: 0.12em;
        background: linear-gradient(271.26deg, #56ACDE 6.14%, #6DB8E3 99.72%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        text-fill-color: transparent;
    }

    .wetxt {
        font-weight: 700;
        font-size: 2.4rem;
        line-height: 2.9rem;
        color: #FFFFFF;
        width: 99%;
        margin-top: 0rem;
    }

    .leavebox {
        width: 90%;
        margin: auto;
        text-align: left;
        padding: 10% 5px;
        position: relative;
        border: 1px solid var(--bordercolor);
    }

    .at {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 2px;
        background-color: var(--dlinecolor);

    }

    .ab {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 1px;
        background-color: var(--dlinecolor);
    }

    .al {
        position: absolute;
        left: 0;
        top: 0;
        width: 2px;
        height: 100%;
        background-color: var(--dlinecolor);
    }

    .ar {
        position: absolute;
        right: 0;
        top: 0;
        width: 2px;
        height: 100%;
        background-color: var(--dlinecolor);
    }

    .leavetxt {
        font-weight: 700;
        font-size: 2rem;
        line-height: 2.4rem;
        color: #000000;
    }

    .contactcont {
        width: 90%;
        margin: auto;
        padding: 0 0%;
        padding-bottom: 5rem;
        border: 1px solid var(--bordercolor);
        border-top: none;
        position: relative;
    }

    .bl {
        position: absolute;
        left: 0;
        top: 0;
        width: 2px;
        height: 100%;
        background-color: var(--dlinecolor);
    }

    .br {
        position: absolute;
        right: 0;
        top: 0;
        width: 2px;
        height: 100%;
        background-color: var(--dlinecolor);
    }

    .whattxt {
        font-weight: 600;
        font-size: 1.8rem;
        line-height: 2.2rem;
        color: #2F2F2F;
        padding-top: 15%;
        padding-left: 5px;
    }

    .wanttxt {
        font-weight: 400;
        font-size: 1.4rem;
        line-height: 1.7rem;
        color: #8C8C8C;
        margin-top: 1rem;
        padding-left: 5px;
    }

    .formbox2 {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        margin-top: 3rem;

    }

    .speccont {
        width: 48%;
        margin-bottom: 6rem;
    }

    .specbox {
        display: block;
        position: relative;
    }

    .specbox input {
        position: absolute;
        opacity: 0;
        cursor: pointer;
        height: 0;
        width: 0;
    }

    .specmark {
        position: absolute;
        top: 0;
        left: 0;
        /* height: 25px; */
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        border: 1px solid rgba(73, 73, 73, 0.4);
        font-weight: 400;
        font-size: 1.2rem;
        line-height: 1.5rem;
        color: #2F2F2F;
        padding: 1.5rem 0;
        transition: 0.5s all;
    }

    .specbox input:checked~.specmark {
        background-color: #2196F3;
        color: #FFFFFF;
        font-weight: 700;
        border-color: #2196F3;
    }

    .txtarea {
        resize: none;
        height: 13vh;
    }

    .mt2rem {
        margin-top: 2rem;
    }

    .formbox1 {
        width: 100%;
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        margin-top: 3rem;
    }

    .lableinputbox {
        width: 100%;
        margin-bottom: 3rem;
    }

    .labletxt {
        font-weight: 600;
        font-size: 1.6rem;
        line-height: 2rem;
        color: #2F2F2F;
        padding-left: 5px;
    }

    .inputtxt {
        background: #e8e8e8;
        outline: none;
        border: 1px solid transparent;
        font-weight: 500;
        font-size: 1.6rem;
        line-height: 2rem;
        color: #8C8C8C;
        opacity: 0.6;
        outline: none;
        width: 100%;
        padding: 1.5rem 1rem;
        margin-top: .5rem;
        transform: 0.5s;
    }

    .inputtxt:focus {
        border: 1px solid rgba(0, 0, 0, 0.4);
        border-radius: 2px;
    }

    .file {
        background: #FFFFFF url(img/contact/fileicon.webp) no-repeat 95% 50%;
    }

    .attachbox {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .attachsub1 {
        width: 100%;
    }

    .attachsub2 {
        width: 100%;
        margin-top: 1.5rem;
    }

    .attchtxt {
        font-weight: 600;
        font-size: 1.6rem;
        line-height: 2rem;
        color: #2F2F2F;
        padding-left: 5px;
    }

    .attachsubtxt {
        font-style: normal;
        font-weight: 400;
        font-size: 1.6rem;
        line-height: 2rem;
        color: #8C8C8C;
        margin-top: 1rem;
        padding-left: 5px;
    }

    .fileupbox {
        width: 100%;
        display: flex;
        gap: 1rem;
        justify-content: center;
        background: #F2F2F2;
        border: 1px solid #5FB1E0;
        border-radius: 2px;
        padding: 1.5rem 1.4rem;
        margin-top: 0.6rem;
    }

    .fileuptxt {
        background: linear-gradient(271.26deg, #56ACDE 6.14%, #6DB8E3 99.72%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        text-fill-color: transparent;
        font-weight: 600;
        font-size: 1.6rem;
        line-height: 2.2rem;
    }

    .filupicon {
        width: 2rem;
        height: 2rem;
    }



    .contactsumit {
        display: block;
        font-weight: 600;
        font-size: 2rem;
        line-height: 2.4rem;
        color: #FFFFFF;
        background: linear-gradient(271.26deg, #56ACDE 6.14%, #6DB8E3 99.72%);
        outline: none;
        border: none;
        padding: 1.5rem 3.5rem;
        width: 100%;
        margin: auto;
        margin-top: 4rem;

    }

    .supotxt {
        font-weight: 500;
        font-size: 1.5rem;
        line-height: 2.2rem;
        color: #8C8C8C;

    }

    .contacttwolines {
        width: 100%;
        position: relative;
        border-top: 1px solid var(--bordercolor);
    }

    .addcont {
        width: 90%;
        margin: auto;
        border: 1px solid rgba(198, 197, 197, 0.34);
        border-top: none;
        border-bottom: none;
        position: relative;
    }

    .ct {
        width: 100%;
        height: 2px;
        position: absolute;
        top: 0;
        background-color: var(--dlinecolor);
    }

    .cl {
        width: 2px;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        background-color: var(--dlinecolor);
    }

    .cr {
        width: 2px;
        height: 100%;
        position: absolute;
        top: 0;
        right: 0;
        background-color: var(--dlinecolor);
    }

    .addtxtbox {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        padding: 15% 0 15% 0;
    }

    .txtbox {
        width: 100%;
    }

    .meettxt {
        font-weight: 700;
        font-size: 1.2rem;
        line-height: 1.7rem;
        letter-spacing: 0.2em;
        background: linear-gradient(271.26deg, #56ACDE 6.14%, #6DB8E3 99.72%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        text-fill-color: transparent;
    }

    .findtxt {
        font-weight: 700;
        font-size: 2.4rem;
        line-height: 2.9rem;
        color: #2F2F2F;
    }

    .timetxt {
        font-weight: 700;
        font-size: 1.4rem;
        line-height: 1.7rem;
        color: #2F2F2F;
        margin-top: 0rem;
    }

    .locheadtxt {
        font-weight: 700;
        font-size: 1.4rem;
        line-height: 1.7rem;
        color: #2F2F2F;
    }

    .locsubtxt {
        font-weight: 500;
        font-size: 1.2rem;
        line-height: 1.5rem;
        color: #2F2F2F;
        margin-top: 1rem;
    }

    .bottomimg {
        margin-bottom: 5%;
        display: block;
        width: 100%;
        margin: auto;
        padding-left: 0px;
        padding-right: 0px;
    }

    .validtxt {
        font-size: 1.2rem;
        line-height: 2rem;
        color: red;
        padding-left: 5px;
    }
}


@media only screen and (max-width: 768px) {
    html {
        font-size: 50.5%;
    }
}

@media only screen and (max-width: 992px) {
    html {
        font-size: 55.5%;
    }
}

@media only screen and (max-width: 1200px) {

    html {
        font-size: 60.5%;
    }
}