::-webkit-scrollbar {
  display: none;
}

body {
  overflow: hidden;
}

@media screen and (min-width: 767.98px) {
  .homePage .main {
    height: 100vh;
    width: 100vw;
    position: relative;
    overflow-y: hidden;
  }
  .homePage .main .videoBg {
    width: 100vw;
    height: 100vh;
    position: absolute;
    top: 0;
    left: 0;
  }
  .homePage .main .videoBg video {
    width: 100%;
    height: 100vh;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .homePage .main .videoBg::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(90deg, #000 0%, transparent 150%);
  }
  .homePage .main .header {
    position: relative;
    padding-left: 8%;
    top: 30%;
    transform: translateY(-30%);
    color: var(--white);
    display: flex;
    flex-direction: column;
    gap: calc(var(--1) * 20);
    width: 100%;
    z-index: 2;
  }
  .homePage .main .header .logo p {
    font-size: calc(var(--1) * 45);
  }
  .homePage .main .header .logo svg path {
    fill: aqua;
  }
  .homePage .main .header nav ul {
    display: flex;
    gap: var(--30);
    color: hsla(0, 0%, 100%, 0.5);
  }
  .homePage .main .header nav ul li {
    position: relative;
    padding-block: 2px;
    transition: all 0.3s ease-in-out;
    font-size: calc(var(--1) * 22);
  }
  .homePage .main .header nav ul li:after {
    content: "";
    width: 50%;
    position: absolute;
    left: 0;
    bottom: 0;
    height: 1px;
    background-color: rgb(133, 133, 133);
    transition: all 0.3s ease-in-out;
  }
  .homePage .main .header nav ul li:hover {
    color: #fff;
  }
  .homePage .main .header nav ul li:hover::after {
    width: 100%;
    background-color: #fff;
  }
  .homePage .aboutUs {
    height: 100vh;
    width: 100vw;
    position: relative;
    overflow-y: hidden;
  }
  .homePage .aboutUs .bg {
    position: absolute;
    top: 0;
  }
  .homePage .aboutUs .bg img {
    width: 100vw;
    height: 100vh;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .homePage .aboutUs .bg::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-image: linear-gradient(90deg, #000 0%, transparent 150%);
  }
  .homePage .aboutUs .content {
    width: calc(var(--1) * 500);
    z-index: 1;
    color: #fff;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    margin-left: 8%;
    font-size: calc(var(--1) * 30);
    font-weight: 300;
    display: flex;
    flex-direction: column;
    gap: calc(var(--1) * 15);
  }
  .homePage .aboutUs .content .link {
    display: flex;
    align-items: center;
    gap: calc(var(--1) * 10);
  }
  .homePage .aboutUs .content .link a {
    font-size: calc(var(--1) * 25);
    font-weight: 600;
    transition: all 0.3s ease-in-out;
  }
  .homePage .aboutUs .content .link:hover {
    gap: calc(var(--1) * 20);
  }
  .homePage .slider {
    background-color: black;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
  }
  .homePage .slider .provider {
    width: 100%;
    height: 500px;
    background-color: black;
  }
  .homePage .slider .provider .title {
    display: none;
    border: 1px solid green;
    padding-block: calc(var(--1) * 50);
    padding-inline: 8%;
  }
  .homePage .slider .provider .swiper {
    background-color: black;
    width: 100%;
    height: 100%;
  }
  .homePage .slider .provider .text {
    display: flex;
    flex-direction: column;
    padding-inline: 5%;
    padding-block: 5%;
    gap: calc(var(--1) * 10);
    justify-content: flex-end;
    background-color: black;
  }
  .homePage .slider .provider .text h2 {
    font-size: calc(var(--1) * 40);
  }
  .homePage .slider .provider .text p {
    width: calc(var(--1) * 300);
    font-size: calc(var(--1) * 24);
  }
  .homePage .slider .provider .swiper-slide {
    width: 40%;
    display: flex;
    flex-direction: column;
    cursor: pointer;
  }
  .homePage .slider .provider .swiper-slide img {
    display: block;
    width: 100%;
    height: 90%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .homePage .slider .provider .swiper-slide h3 {
    margin-top: calc(var(--1) * 15);
    font-size: calc(var(--1) * 20);
  }
  .homePage .slider .provider .lins h2 {
    width: calc(var(--1) * 350);
    font-size: calc(var(--1) * 40);
    margin-bottom: calc(var(--1) * 15);
  }
  .homePage .slider .provider .lins .sliderLink {
    width: -moz-max-content;
    width: max-content;
    display: flex;
    align-items: center;
    gap: calc(var(--1) * 10);
    margin-bottom: calc(var(--1) * 10);
  }
  .homePage .slider .provider .lins .sliderLink a {
    font-size: calc(var(--1) * 25);
    font-weight: 700;
    transition: all 0.3s ease-in-out;
  }
  .homePage .slider .provider .lins .sliderLink:hover {
    gap: calc(var(--1) * 20);
  }
  .homePage .slider .provider .swiper-slide:nth-child(2n) {
    width: 40%;
  }
  .homePage .slider .provider .swiper-slide:nth-child(3n) {
    width: 30%;
  }
  .homePage .slider .provider .swiper-slide:last-child {
    width: 80%;
    background-color: black;
  }
  .homePage .contactPageContent {
    height: 100vh;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .homePage .contactPageContent .bg {
    position: absolute;
    width: 100%;
  }
  .homePage .contactPageContent .bg img {
    width: 100%;
    height: 100vh;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .homePage .contactPageContent .bg::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-image: linear-gradient(90deg, #000 0%, transparent 150%);
  }
  .homePage .contactPageContent .contactArea {
    position: relative;
    padding-left: 8%;
    z-index: 99;
    padding-bottom: calc(var(--1) * 100);
    width: 100%;
    height: auto;
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: calc(var(--1) * 50);
  }
  .homePage .contactPageContent .contactArea h2 {
    max-width: calc(var(--1) * 400);
    font-size: calc(var(--1) * 40);
    color: #fff;
    font-weight: 600;
  }
  .homePage .contactPageContent .contactArea p {
    max-width: calc(var(--1) * 520);
    font-size: calc(var(--1) * 20);
    line-height: calc(var(--1) * 35);
    font-weight: 400;
    color: #999;
  }
  .homePage .contactPageContent .contactArea .contactlink {
    display: flex;
    align-items: center;
    gap: calc(var(--1) * 10);
  }
  .homePage .contactPageContent .contactArea .contactlink a {
    font-size: calc(var(--1) * 25);
    font-weight: 600;
    transition: all 0.3s ease-in-out;
  }
  .homePage .contactPageContent .contactArea .contactlink:hover {
    gap: calc(var(--1) * 20);
    color: #fff;
  }
  .homePage .contactPageContent .contactHeader {
    position: relative;
    padding-left: 8%;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    align-self: stretch;
    color: #999;
  }
  .homePage .contactPageContent .box {
    padding-right: calc(var(--1) * 30);
    padding-top: calc(var(--1) * 20);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: calc(var(--1) * 20);
    position: relative;
  }
  .homePage .contactPageContent .box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 20%;
    height: calc(var(--1) * 1);
    background-color: #757575;
  }
  .homePage .contactPageContent .box h6 {
    font-size: calc(var(--1) * 22);
    font-weight: 600;
  }
  .homePage .contactPageContent .box p {
    font-size: calc(var(--1) * 20);
    font-weight: 300;
  }
  .homePage .contactPageContent .box a {
    max-width: -moz-max-content;
    max-width: max-content;
    font-size: calc(var(--1) * 20);
    font-weight: 600;
    position: relative;
  }
  .homePage .contactPageContent .box a:after {
    content: "";
    width: 0%;
    position: absolute;
    left: 0;
    bottom: -3%;
    height: 1px;
    background-color: rgb(133, 133, 133);
    transition: all 0.3s ease-in-out;
  }
  .homePage .contactPageContent .box a:hover {
    color: #fff;
  }
  .homePage .contactPageContent .box a:hover::after {
    width: 50%;
    background-color: #fff;
  }
}
@media screen and (max-width: 767.98px) {
  .homePage {
    background-color: black;
    height: auto;
  }
  .homePage .main {
    width: 100vw;
    position: relative;
    overflow-y: hidden;
    display: flex;
    flex-direction: column;
  }
  .homePage .main .videoBg {
    width: 100%;
    height: auto;
    position: relative;
    top: 0;
    left: 0;
  }
  .homePage .main .videoBg video {
    width: 100%;
    height: auto;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .homePage .main .header {
    position: relative;
    padding-top: calc(var(--dsm-1) * 100);
    padding-bottom: calc(var(--dsm-1) * 50);
    color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: calc(var(--dsm-1) * 20);
    width: 100%;
    z-index: 2;
  }
  .homePage .main .header .logo p {
    font-size: calc(var(--dsm-1) * 30);
    color: #fff;
  }
  .homePage .main .header nav ul {
    display: flex;
    gap: calc(var(--dsm-1) * 20);
    color: hsla(0, 0%, 100%, 0.5);
  }
  .homePage .main .header nav ul li {
    position: relative;
    padding-block: calc(var(--dsm-1) * 2);
    transition: all 0.3s ease-in-out;
  }
  .homePage .main .header nav ul li:after {
    content: "";
    width: 50%;
    position: absolute;
    left: 0;
    bottom: 0;
    height: 1px;
    background-color: rgb(133, 133, 133);
    transition: all 0.3s ease-in-out;
  }
  .homePage .main .header nav ul li:hover {
    color: #fff;
  }
  .homePage .main .header nav ul li:hover::after {
    width: 100%;
    background-color: #fff;
  }
  .homePage .aboutUs {
    width: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    justify-content: center;
    align-items: center;
    overflow-y: hidden;
  }
  .homePage .aboutUs .bg {
    position: relative;
    top: 0;
  }
  .homePage .aboutUs .bg img {
    width: 100vw;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .homePage .aboutUs .content {
    max-width: calc(var(--dsm-1) * 350);
    padding-block: calc(var(--dsm-1) * 50);
    position: relative;
    font-weight: 400;
    z-index: 1;
    color: #fff;
    font-weight: 300;
    display: flex;
    flex-direction: column;
    gap: calc(var(--dsm-1) * 15);
  }
  .homePage .aboutUs .content h2 {
    font-size: calc(var(--dsm-1) * 25);
  }
  .homePage .aboutUs .content p {
    font-size: calc(var(--dsm-1) * 16);
  }
  .homePage .aboutUs .content .link {
    display: flex;
    align-items: center;
    gap: calc(var(--dsm-1) * 10);
  }
  .homePage .aboutUs .content .link a {
    font-size: calc(var(--dsm-1) * 16);
    font-weight: 700;
    transition: all 0.3s ease-in-out;
  }
  .homePage .aboutUs .content .link:hover {
    gap: calc(var(--dsm-1) * 20);
  }
  .homePage .slider {
    background-color: black;
    padding-bottom: calc(var(--dsm-1) * 250);
    display: flex;
    flex-direction: column;
    color: #fff;
  }
  .homePage .slider .provider {
    width: 100%;
    height: 500px;
    background-color: black;
  }
  .homePage .slider .provider .title {
    width: calc(var(--dsm-1) * 250);
    margin-block: calc(var(--1) * 200);
    padding-inline: 8%;
    font-size: calc(var(--dsm-1) * 16);
  }
  .homePage .slider .provider .swiper {
    background-color: black;
    width: 90%;
    height: 100%;
  }
  .homePage .slider .provider .text {
    display: none;
  }
  .homePage .slider .provider .swiper-slide {
    width: 40%;
    display: flex;
    flex-direction: column;
    cursor: pointer;
  }
  .homePage .slider .provider .swiper-slide img {
    display: block;
    width: 100%;
    height: 80%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .homePage .slider .provider .swiper-slide h3 {
    margin-top: calc(var(--dsm-1) * 15);
  }
  .homePage .slider .provider .lins h2 {
    width: calc(var(--dsm-1) * 350);
    font-size: calc(var(--dsm-1) * 25);
    margin-bottom: calc(var(--dsm-1) * 10);
  }
  .homePage .slider .provider .lins .sliderLink {
    width: -moz-max-content;
    width: max-content;
    display: flex;
    align-items: center;
    gap: calc(var(--dsm-1) * 5);
    margin-bottom: calc(var(--dsm-1) * 10);
  }
  .homePage .slider .provider .lins .sliderLink a {
    font-size: calc(var(--dsm-1) * 16);
    font-weight: 700;
    transition: all 0.3s ease-in-out;
  }
  .homePage .slider .provider .lins .sliderLink:hover {
    gap: calc(var(--dsm-1) * 10);
  }
  .homePage .slider .provider .swiper-slide:nth-child(2n) {
    width: 40%;
  }
  .homePage .slider .provider .swiper-slide:nth-child(3n) {
    width: 30%;
  }
  .homePage .slider .provider .swiper-slide:last-child {
    width: 80%;
    background-color: black;
  }
  .homePage .contactPageContent {
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: black;
    padding-block: calc(var(--dsm-1) * 50);
  }
  .homePage .contactPageContent .bg {
    position: relative;
    width: 100vw;
  }
  .homePage .contactPageContent .bg img {
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .homePage .contactPageContent .bg::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0.3;
    background-color: black;
  }
  .homePage .contactPageContent .contactArea {
    position: relative;
    padding-inline: 5%;
    z-index: 99;
    padding-bottom: calc(var(--dsm-1) * 100);
    width: 100%;
    height: auto;
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: calc(var(--dsm-1) * 25);
  }
  .homePage .contactPageContent .contactArea h2 {
    width: 100%;
    font-size: calc(var(--dsm-1) * 20);
    color: #fff;
    font-weight: 600;
  }
  .homePage .contactPageContent .contactArea p {
    width: 100%;
    font-size: calc(var(--dsm-1) * 14);
    line-height: calc(var(--dsm-1) * 25);
    font-weight: 300;
    color: #999;
  }
  .homePage .contactPageContent .contactArea .contactlink {
    display: flex;
    align-items: center;
    gap: calc(var(--dsm-1) * 5);
  }
  .homePage .contactPageContent .contactArea .contactlink a {
    font-size: calc(var(--dsm-1) * 14);
    font-weight: 600;
    transition: all 0.3s ease-in-out;
  }
  .homePage .contactPageContent .contactArea .contactlink:hover {
    gap: calc(var(--dsm-1) * 10);
    color: #fff;
  }
  .homePage .contactPageContent .contactHeader {
    position: relative;
    padding-inline: 5%;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-self: stretch;
    row-gap: calc(var(--dsm-1) * 50);
    color: #999;
  }
  .homePage .contactPageContent .box {
    padding-right: calc(var(--dsm-1) * 20);
    padding-top: calc(var(--dsm-1) * 20);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: calc(var(--dsm-1) * 10);
    position: relative;
  }
  .homePage .contactPageContent .box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 20%;
    height: calc(var(--dsm-1) * 1);
    background-color: #757575;
  }
  .homePage .contactPageContent .box h6 {
    font-size: calc(var(--dsm-1) * 14);
    font-weight: 600;
  }
  .homePage .contactPageContent .box p {
    font-size: calc(var(--dsm-1) * 14);
    font-weight: 300;
  }
  .homePage .contactPageContent .box a {
    max-width: -moz-max-content;
    max-width: max-content;
    font-size: calc(var(--dsm-1) * 14);
    font-weight: 600;
    position: relative;
  }
  .homePage .contactPageContent .box a:after {
    content: "";
    width: 0%;
    position: absolute;
    left: 0;
    bottom: -3%;
    height: 1px;
    background-color: rgb(133, 133, 133);
    transition: all 0.3s ease-in-out;
  }
  .homePage .contactPageContent .box a:hover {
    color: #fff;
  }
  .homePage .contactPageContent .box a:hover::after {
    width: 50%;
    background-color: #fff;
  }
}/*# sourceMappingURL=main.css.map */