@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;500;600&family=Roboto:wght@300;400;500;900&display=swap");
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Open Sans", sans-serif;
}

main {
    position: relative;
    width: calc(min(90rem, 90%));
    margin: 0 auto;
    min-height: 100vh;
    column-gap: 3rem;
    padding-block: min(20vh, 3rem);
}

.bg {
    position: fixed;
    top: -4rem;
    left: -12rem;
    z-index: -1;
    opacity: 0;
    width: 60%;
}

.bg2 {
    position: fixed;
    bottom: -2rem;
    right: -3rem;
    z-index: -1;
    width: 9.375rem;
    opacity: 0;
}

main>div span {
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 1rem;
    color: #717171;
}

main>div h1 {
    text-transform: capitalize;
    letter-spacing: 0.8px;
    font-family: "Roboto", sans-serif;
    font-weight: 900;
    font-size: clamp(3.4375rem, 3.25rem + 0.75vw, 4rem);
    background-color: #505254;
    background-image: linear-gradient(45deg, #292929, #000000);
    background-size: 100%;
    background-repeat: repeat;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-background-clip: text;
    -moz-text-fill-color: transparent;
}

main>div hr {
    display: block;
    background: #000000;
    height: 0.25rem;
    width: 6.25rem;
    border: none;
    margin: 1.125rem 0 1.875rem 0;
}

main>div p {
    line-height: 1.6;
}


.swiper {
    width: 100%;
    padding-top: 3.125rem;
}

.swiper-pagination-bullet,
.swiper-pagination-bullet-active {
    background: #fff;
}

.swiper-pagination {
    bottom: 1.25rem !important;
}

.swiper-slide {
    width: 18.75rem;
    height: 28.125rem;
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: self-start;
    border-radius: 8px;
    text-overflow: ellipsis;
}

.swiper-slide h2 {
    color: #fff;
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-size: 1.4rem;
    line-height: 1.4;
    margin-bottom: 0.625rem;
    padding: 0 0 0 1.563rem;
    text-transform: uppercase;
}

.swipe-slide {
    overflow: hidden;
    max-width: 100%;
}

.swiper-slide p {
    color: #dadada;
    font-family: "Roboto", sans-serif;
    font-weight: 300;
    padding: 0 1.563rem;
    line-height: 1.6;
    font-size: 0.75rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.swiper-slide p span {
    color: #dadada;
    font-family: "Roboto", sans-serif;
    font-weight: 300;
    line-height: 1.6;
    font-size: 0.75rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.swiper-slide p a {
    color: #dadada !important;
    border-bottom: unset !important;
}


.swiper-slide div {
    display: none;
    opacity: 0;
    padding-bottom: 3.625rem;
}

.swiper-slide-active div {
    display: block;
    opacity: 1;
}

.swiper-slide--one {
    border-radius: 8px;
    background: linear-gradient(to top, #0f2027, #203a4300, #2c536400), url("/NewPages/assets/tec1.png") no-repeat 50% 50% / cover;
}

.swiper-slide--two {
    border-radius: 8px;
    background: linear-gradient(to top, #0f2027, #203a4300, #2c536400), url("/NewPages/assets/tec2.jpg") no-repeat 50% 50% / cover;
}

.swiper-slide--three {
    border-radius: 8px;
    background: linear-gradient(to top, #0f2027, #203a4300, #2c536400), url("/NewPages/assets/tec3.jpg") no-repeat 50% 50% / cover;
}

.swiper-slide--four {
    border-radius: 8px;
    background: linear-gradient(to top, #0f2027, #203a4300, #2c536400), url("/NewPages/assets/tec4.jpg") no-repeat 50% 50% / cover;
}

.swiper-slide--five {
    border-radius: 8px;
    background: linear-gradient(to top, #0f2027, #203a4300, #2c536400), url("/NewPages/assets/tec5.jpg") no-repeat 50% 50% / cover;
}

.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right {
    background-image: none;
}

@media screen and (min-width: 48rem) {
    main {
        display: flex;
        align-items: center;
    }
    .bg,
    .bg2 {
        opacity: 1;
    }
}

@media screen and (min-width: 93.75rem) {
    .swiper {
        width: 85%;
    }
}