* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    border: none;
    outline: none;
}

:root {
    --mainColor1: #101916;
    --mainColor2: #1c312a;
    --mainColor3: #648374;
    --mainColor4: #e3e5d8;
    --mainColor5: #afc1b6;
    --mainColor6: #fff;
    --mainColor7: #000;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    background: var(--mainColor6);
    color: var(--mainColor2);
}

.scrolanimation {
    animation: appear linear;
    animation-timeline: view();
    animation-range: entry 0% cover 40%;
}

.spacer {
    aspect-ratio: 960/300;
    width: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    height: 100vh;
    z-index: -1;
}

.layer1 {
    background: linear-gradient(#101916d6, #101916a6), url(../img/home/homebg.jpg) no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
}

.wlc h1 {
    text-align: center;
    font-size: 56px;
    color: var(--mainColor4);
}

.wlc p {
    text-align: center;
    font-size: 20px;
    padding: 10px 150px;
    color: var(--mainColor4);
}

button>a {
    color: var(--mainColor4);
    font-weight: 700;
    letter-spacing: 1.1px;
    text-decoration: none;
    display: block;
    transition: all .3s linear;
}

.dbtn {
    margin: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

button {
    cursor: pointer;
    border: none;
    background-color: transparent;
    position: relative;
    z-index: 1;
}

button::before,
button::after {
    content: "";
    position: absolute;
    transition: all .3s linear;
    z-index: -1;
}

.btn a {
    background-color: var(--mainColor4);
    color: var(--mainColor2);
    padding: 8px 30px;
}

.btn::before,
.btn::after {
    width: 2rem;
    height: 2rem;
}

.btn::before {
    border-top: .3rem solid var(--mainColor4);
    border-left: .3rem solid var(--mainColor4);
    top: -.5rem;
    left: -.5rem;
}

.btn::after {
    border-right: .3rem solid var(--mainColor4);
    border-bottom: .3rem solid var(--mainColor4);
    bottom: -.5rem;
    right: -.5rem;
}

.btn:hover::before,
.btn:hover::after {
    height: calc(100% + 1rem);
    width: calc(100% + 1rem);
}

.about {
    min-height: 100vh;
    background-color: var(--mainColor6);
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
    overflow: hidden;
    margin-bottom: 3rem;
    background: linear-gradient(#10191600, #10191600), url(../img/logo/HEZ_logo9.png) no-repeat;
    background-size: contain;
    background-position: right;
}

.about .row1 {
    padding: 8px 208px;
    display: flex;
    flex-flow: row wrap;
}

.about .row1 .hh1 {
    font-size: 8rem;
    color: var(--mainColor2);
}

.about .row1 h1 {
    font-size: 6rem;
    color: var(--mainColor2);
}

.about .row1 h2 {
    font-size: 50px;
    padding-top: 20px;
    color: var(--mainColor2);
}

.about .row1 p {
    font-size: 26px;
    color: var(--mainColor2);
    padding: 0 10px 10px 10px;
}

.education .title h1 {
    font-size: 4rem;
    text-align: center;
}

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    padding: 2rem 30px 5rem 30px;
    grid-gap: 20px;
    padding-top: 2rem;
    padding-bottom: 5rem;
}

.cards a {
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.card {
    border-radius: 10px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.18);
    position: relative;
    transition: .4s;
    min-height: 530px;
    max-width: 400px;
}

.card:hover {
    cursor: pointer;
    border: 6px solid var(--main-color);
    transition: .4s;
}

.container {
    position: relative;
    clip-path: polygon(0 0, 100% 0, 100% 90%, 0 90%);
    transition: .4s;
}

.card:hover .container {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    transition: .4s;
}

.container img {
    width: 100%;
    height: 40%;
    display: block;
    border-radius: 12px 12px 0 0;
}

.details {
    padding: 6px 1rem 1rem 1rem;
    color: var(--mainColor1);
    transition: .3s;
}

.details:hover {
    color: var(--mainColor3);
    transition: .3s;
}

.details h3 {
    font-size: 2rem;
}

.details p {
    font-size: .9rem;
}

.details .hh3 {
    font-size: 1.4rem;
}

.services .heading {
    color: var(--mainColor2);
    text-align: center;
}

.services .box-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.services .box-container .box {
    height: 20rem;
    width: 25rem;
    background: var(--mainColor6);
    text-align: center;
    border-radius: 1rem;
    border: var(--mainColor2) solid 4px;
    box-shadow: 0 .2rem .8rem var(--mainColor2);
    margin: 2rem;
    cursor: pointer;
    transition: .4s;
}

.services .box-container .box:hover {
    background-color: var(--mainColor4);
    transition: .4s;
}

.services .box-container .box i {
    height: 8rem;
    width: 8rem;
    line-height: 8rem;
    text-align: center;
    border-radius: 50%;
    color: var(--mainColor2);
    font-size: 4rem;
    margin: 3rem 0;
    transition: .2s;
}

.services .box-container .box h3 {
    font-size: 1.5rem;
    color: var(--mainColor2);
    transition: .2s;
    padding: 0 20px;
}

.services .box-container .box i:hover {
    background-color: var(--mainColor1);
    color: var(--mainColor4);
}

.recruitment-section {
    margin-top: 5rem;
}

.recruitment-section a {
    text-decoration: none;
    color: var(--mainColor2);
}

.recruitment {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 4rem;
    background-color: var(--mainColor6);
    color: var(--mainColor2);
    margin: 1rem 8rem 3rem 8rem;
}

.recruitment-section .ppd {
    font-size: 1.2rem;
    margin: 0 auto;
    text-align: center;
    padding: 0 200px;
    display: inline-block;
}

.recruitment-section .pp {
    font-size: 1.2rem;
    margin: 0 0;
    text-align: center;
    display: inline-block;
}

.recruitment-section .ppa {
    font-size: 1.2rem;
    margin: 0 0;
    text-align: center;
    text-decoration: underline;
    color: var(--mainColor3);
    display: inline-block;
}

.heading {
    text-align: center;
    font-size: 4rem;
    margin-top: 3.8rem;
}

.recruitment-content h2 {
    text-align: left;
    line-height: 1.5;
    font-size: 4rem;
}

.recruitment-content p {
    font-size: 1.2rem;
    margin: 2rem 0 2rem;
    text-align: left;
}

.divider {
    height: 3px;
    width: 400px;
    border-radius: 5px;
    background: var(--mainColor2);
}

.contactus {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    flex-direction: column;
    text-align: center;
    width: 90%;
    margin: 30px auto;
    margin-top: 5px;
}

.sectionHeader {
    text-transform: capitalize;
    font-weight: bold;
    font-size: 1.1rem;
    color: var(--mainColor4);
}

.heading {
    margin-top: .5em;
    font-weight: bold;
    font-size: 3rem;
    color: var(--mainColor2);
}

.icon {
    color: var(--mainColor2) !important;
    font-size: 3rem;
    padding: 1px;
    cursor: pointer;
    display: block;
    transition: .3s;
}

.iconn {
    transition: .3s;
}

.iconn:hover {
    color: var(--mainColor1);
    font-size: 3.2rem;
    transition: .3s;
}

.para1 {
    font-size: 1.2rem;
    color: var(--mainColor1) !important;
}

.input {
    width: 95%;
    max-width: 500px;
    font-size: .9rem;
    padding: 1em;
    outline: none;
    margin-bottom: 1em;
    background-color: var(--mainColor2);
    color: var(--mainColor3);
    border-radius: 10px;
    transition: .3s;
    resize: none;
}

.submit {
    font-weight: bold;
    cursor: pointer;
    width: 100%;
    margin: 0 auto 20px auto;
    border: 3px solid var(--mainColor2);
}

.submit a {
    color: var(--mainColor6);
}

.submit:hover {
    border: 3px solid var(--mainColor2);
    background-color: var(--mainColor6);
    color: var(--mainColor2);
    transition: .3s;
}

.submit:hover a {
    letter-spacing: 1px;
    color: var(--mainColor2);
    transition: .3s;
}

.map-container {
    position: relative;
    width: 100%;
    height: 300px;
    margin-bottom: 100px;
}

.map {
    width: 100%;
    height: 100%;
    border: solid 5px var(--mainColor1);
    border-radius: 25px;
}

.map iframe {
    width: 100%;
    height: 100%;
    border-radius: 20px;
}

.gotopbtn {
    background-color: var(--mainColor1);
    position: fixed;
    width: 50px;
    height: 50px;
    bottom: 16px;
    right: 32px;
    border-radius: 20%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 32px;
    color: var(--mainColor3);
    text-decoration: none;
    opacity: 0;
    z-index: -50;
    transition: all .3s;
    border: var(--mainColor3) solid 1px;
}

.gotopbtn.active {
    bottom: 32px;
    pointer-events: auto;
    cursor: pointer;
    opacity: .6;
    z-index: 50;
    transition: all .3s;
}

.gotopbtn:hover {
    background-color: var(--mainColor3);
    color: var(--mainColor2);
    opacity: 1;
    transition: all .3s;
    border: var(--mainColor2) solid 2px;
}

.gotopbtn {
    background-color: var(--mainColor1);
    position: fixed;
    width: 50px;
    height: 50px;
    bottom: 16px;
    right: 32px;
    border-radius: 20%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 32px;
    color: var(--mainColor3);
    text-decoration: none;
    opacity: 0;
    z-index: -50;
    transition: all .3s;
    border: var(--mainColor3) solid 1px;
}

.gotopbtn.active {
    bottom: 32px;
    pointer-events: auto;
    cursor: pointer;
    opacity: .6;
    z-index: 50;
    transition: all .3s;
}

.gotopbtn:hover {
    background-color: var(--mainColor3);
    color: var(--mainColor6);
    opacity: 1;
    transition: all .3s;
    border: var(--mainColor2) solid 2px;
}

.ha:visited {
    color: var(--mainColor2);
}

.ha:link {
    color: var(--mainColor2);
}

.ha:active {
    color: var(--mainColor2);
}

@keyframes appear {
    from {
        opacity: .3;
        transform: translateX(-100px);
    }

    to {
        opacity: 1;
        transform: translateX(0px);
    }
}


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

    .about {
        background: none;
    }

    .about .row2 {
        flex-flow: row wrap;
        width: 700px;
    }

    .about .row2 .cols img {
        width: 700px;
        height: 500px;
        margin-top: 60px;
    }

    .education .title h1 {
        font-size: 3.5rem;
    }

    .about .row1 p {
        font-size: 20px;
        padding: 8px;
    }

    .about .row1 h1 {
        font-size: 4.5rem;
    }

    .recruitment {
        margin: 4rem 4rem 2rem 4rem;
    }

    .recruitment-section .pp {
        font-size: 1.2rem;
        padding: 0 100px;
    }

    .heading {
        font-size: 2.8rem;
    }

    .recruitment-content h2 {
        line-height: 1.5;
        font-size: 3.5rem;
    }

    .recruitment-content p {
        font-size: 1.1rem;
        margin: 2rem 0 2rem;
    }

    .recruitment-section .ppd {
        padding: 0 60px;
    }
}

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

    .education .title h1 {
        font-size: 3rem;
    }

    .recruitment {
        margin: 3rem 3rem 2rem 3rem;
    }

    .recruitment-section p {
        font-size: 1rem;
    }

    .heading {
        font-size: 2.5rem;
    }

    .recruitment-section .pp {
        font-size: 1.2rem;
        padding: 0 50px;
    }

    .recruitment-content p {
        font-size: 1rem;
        margin: 1.5rem 0 1.5rem;
    }

    .divider {
        width: 300px;
    }

}

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

    .education .title h1 {
        font-size: 3.7rem;
    }

    .wlc h1 {
        font-size: 54px;
    }

    .wlc p {
        font-size: 18px;
        padding: 8px 120px;
    }

    .about .row1 {
        padding: 4px 12px;
        flex-flow: column wrap;
    }

    .nums {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .heading {
        font-size: 2.2rem;
    }

    .recruitment-section {
        margin-top: 0;
    }

    .recruitment-section .pp {
        font-size: 1.2rem;
        padding: 0 30px;
    }

    .title h1 {
        font-size: 3rem;
    }

    .scrolanimation {
        animation: none;
    }

    section {
        padding: 1rem 3% 2rem;
    }

    .details h3 {
        font-size: 2rem;
    }

    .details p {
        font-size: 1rem;
    }

    .details .hh3 {
        font-size: 1.5rem;
    }

}

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

    .education .title h1 {
        font-size: 3.2rem;
    }

    .wlc h1 {
        font-size: 48px;
    }

    .wlc p {
        font-size: 16px;
        padding: 8px 60px;
    }

    .about .row1 {
        padding: 4px 4px;
        flex-flow: column wrap;
    }

    .about .row1 h2 {
        font-size: 40px;
    }

    .input {
        font-size: 1.9rem;
    }

    .services .box-container .box {
        height: 25rem;
        width: 30rem;
    }

    .services .box-container .box i:hover {
        background-color: var(--mainColor4);
        color: var(--mainColor2);
    }

    .services .box-container .box i {
        height: 7rem;
        width: 7rem;
        line-height: 7rem;
        font-size: 4rem;
        margin: 3rem 0 2rem 0;
    }

    .services .box-container .box h3 {
        font-size: 2rem;
    }

    .recruitment {
        margin: 2rem 2rem 1.2rem 2rem;
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .recruitment-section p {
        font-size: .9rem;
        margin: 0 1.5rem 2rem 1.5rem;
    }

    .heading {
        font-size: 2rem;
    }

    .recruitment-section .pp {
        font-size: 1.2rem;
        padding: 0 25px;
    }

    .recruitment-content h2 {
        line-height: 1.2;
        font-size: 2rem;
    }

    .recruitment-content p {
        font-size: 1.2rem;
        margin: 1rem 0 1rem;
    }

    .divider {
        width: 200px;
        margin-top: .6rem;
    }

}

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

    .education .title h1 {
        font-size: 2.6rem;
    }

    .about .row1 p {
        font-size: 16px;
        padding: 6px;
    }

    .about .row1 h1 {
        font-size: 4rem;
    }

    .about .row1 h2 {
        font-size: 30px;
    }

    .heading {
        font-size: 1.8rem;
    }

    .recruitment-section .pp {
        font-size: 1.2rem;
        padding: 0 10px;
    }

    .services .box-container .box {
        height: 17rem;
        width: 22rem;
    }

    .services .box-container .box i {
        height: 6rem;
        width: 6rem;
        font-size: 3.5rem;
        margin: 1rem 0 1.5rem 0;
    }

    .services .box-container .box h3 {
        font-size: 1.5rem;
    }

    .recruitment-section .pp {
        font-size: 1rem;
    }

    .recruitment-section .ppa {
        font-size: 1rem;
    }

}

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

    .about .row1 h2 {
        font-size: 20px;
    }

    .education .title h1 {
        font-size: 2.1rem;
    }

    .services .box-container .box {
        height: 15rem;
        width: 18rem;
    }

    .services .box-container .box i {
        height: 4rem;
        width: 4rem;
        line-height: 4rem;
        font-size: 3rem;
        margin: 1.2rem 0 .7rem 0;
    }

    .services .box-container .box h3 {
        font-size: 1.3rem;
        margin-top: 2rem;
    }

    .recruitment-content p {
        font-size: .9rem;
        margin: .4rem 0 .4rem;
    }

    .recruitment-section .ppd {
        padding: 0 20px;
    }

}

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

    .education .title h1 {
        font-size: 2rem;
    }

    .cards {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        padding: 2rem 0px 5rem 0px;
    }

    .wlc h1 {
        font-size: 36px;
    }

    .wlc p {
        font-size: 14px;
        padding: 6px 10px;
    }

    .about .row1 {
        padding: 4px 2px;
        flex-flow: column wrap;
    }

    .about .row2 .cols {
        padding: 8px;
        margin: 8px;
        flex: 33.3%;
        width: 300px;
    }

    .about .row2 .cols img {
        width: 300px;
        height: 150px;
    }

    .nums {
        grid-template-columns: repeat(1, 1fr);
        gap: 15px;
    }

    .title h1 {
        font-size: 2.5rem;
    }

    .about .row1 p {
        font-size: 14px;
        padding: 4px;
    }

    .about .row1 h1 {
        font-size: 3.5rem;
    }

    .services .box-container .box {
        margin: 1rem 0.1rem;
    }

}