main {
    width: 100%;
    min-height: 100vh;
    height: max-content;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
header {
    position: relative;
    width: 100vw;
    height: calc(100vh - 5rem);
}

.sliderDiv {
    width: 100%;
    height: 100%;
}

.headerSlider {
    width: 100% !important;
    height: 100% !important;
}

.headerSliderSlayt {
    width: 100% !important;
    height: 100% !important;
}

.headerSliderSlayt > img {
    width: 100% !important;
    height: 100% !important;
}

.headerSliderButtons {
    background-color: var(--primaryBackgroundColor);
    margin: 0rem 1rem;
    width: 3rem;
    height: 5rem;
    font-size: 2rem;
    color: var(--primaryTextColor);
    top: 50vh;
    border-radius: 0.5rem;
}

.headerLabelDiv {
    position: absolute;
    z-index: 10;
    color: rgb(224, 224, 224);
    top: 60%;
    left: 15%;
}

.headerLabelH2 {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.headerLabelH4 {
    font-size: 2rem;
}

.main {
    display: flex;
    flex-direction: column;
}

/* ************ contact *****************/
.contactUsSection {
    width: 100%;
    height: 20vh;
    display: flex;
    flex-direction: column;
    justify-content: baseline;
    align-items: center;
}
.contactUsLink {
    margin-top: 2rem;
    text-decoration: none;
    color: var(--primaryTextColor);
    font-size: 2rem;
    width: 50%;
    text-align: center;
    transition: 600ms;
}
.contactUsLink:hover {
    background-color: var(--navBackColor);
    color: var(--secondaryTextColor);
    border-radius: 1rem;
    width: 30%;
}
