/* hero section */
.hero-container {
    padding: 70px 0;
    overflow: hidden;
    /* background: rgb(53,172,225);
    background: linear-gradient(90deg, rgba(53,172,225,1) 0%, rgba(172,203,31,1) 100%); */
    background-image: url('../assets/images/bg.webp');
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.container {
    position: relative;
}

.hero-sub-container {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.content-container{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.date-location-container {
    width: 100%;
    display: flex;
    flex-direction: row;    
    align-items: center;
    justify-content: center;
    margin: 10px 0;
}

.border-line {
    width: 2px;
    height: 70px;
    background-color: #000;
    margin: 0px 20px;
}

.date-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}

.date-text {
    display: inline;
}

.date-sub {
    height: 45px;
}

.date-text {
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 0;
}

.th-text {
    font-size: 20px;
    top: -20px;
}

.location-text,
.date-month {
    font-weight: 600;
    font-size: 20px;
    margin-top: 0;
    margin-bottom: 0;
}

.location-text {
    height: 25px;
}

.location-color {
    color: #056608;
}

.hero-tagline-container{
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin: 20px 0;
}

.hero-tagline{
    color: #fff;
    width: fit-content;
    text-align: center;
    background-color: #1B3B68;
    font-weight: 600;
    font-size: 20px;
    padding: 10px 30px;
    margin-bottom: 0;
    clip-path: polygon(20% 0, 80% 1%, 100% 50%, 80% 100%, 20% 100%, 0% 50%);
}

.hero-partner-body{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    margin: 0px 0 30px;
}

.unext-hero-logo{
    width: 170px;
}

.hero-animation-container {
    width: 600px;
    height: 380px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-sub-animation {
    width: 100%;
    height: 100%;
    position: relative;
}

.hero-animation-icon {
    width: 60px;
}

.bank-icon {
    width: 100px;
}

.icon-container {
    position: absolute;
    border-radius: 50%;
    padding: 24px;
    animation: hanging 2s linear infinite;
}

.icon-container::after {
    content: "";
    position: absolute;
    /* border: #000 dashed 3px; */
    border-radius: 50%;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: url("data:image/svg+xml,%3csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='100%25' height='100%25' fill='none' rx='100' ry='100' stroke='black' stroke-width='5' stroke-dasharray='17%2c 20' stroke-dashoffset='6' stroke-linecap='square'/%3e%3c/svg%3e");
    border-radius: 100px;
    animation: border 8s linear infinite;
}

.icon-container::before {
    content: "";
    position: absolute;
    border: #000 solid 2px;
    border-radius: 50%;
    padding: 59px;
    width: 100%;
    height: 100%;
    top: -7px;
    left: -7px;
    animation: border2 5s linear infinite;
}

.bank-container {
    top: 25%;
    left: 225px;
    padding-top: 24px;
    animation: none;
}

.bank-container::before {
    padding: 79px;
}

.extra-border {
    contain: "";
    position: absolute;
    width: 195px;
    height: 195px;
    top: -25px;
    left: -25px;
    background-image: url("data:image/svg+xml,%3csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='100%25' height='100%25' fill='none' rx='100' ry='100' stroke='black' stroke-width='25' stroke-dasharray='1%2c 6' stroke-dashoffset='15' stroke-linecap='butt'/%3e%3c/svg%3e");
    border-radius: 50%;
}

.wifi-container {
    top: 0%;
    left: 0%;
}

.data-container {
    bottom: 0%;
    left: 0%;
}

.money-container {
    bottom: 0%;
    right: 0%;
}

.lock-container {
    top: 0%;
    right: 0%;
}

.line {
    position: absolute;
    width: 1px;
    height: 119%;
    background-color: #000;
}

.line-1 {
    right: -58%;
    bottom: -45%;
    transform: rotate(115deg);
}

.line-2 {
    right: -60%;
    top: -48%;
    height: 124%;
    transform: rotate(245deg);
}

.line-3 {
    left: -60%;
    top: -48%;
    height: 124%;
    transform: rotate(115deg);
}

.line-4 {
    left: -58%;
    bottom: -45%;
    transform: rotate(245deg);
}

@keyframes border {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes hanging {
    0% {
        transform: translateX(0);
    }

    33% {
        transform: translateX(2px);
    }

    67% {
        transform: translateX(-2px);
    }

    100% {
        transform: translateX(0);
    }
}

/* about us */
.about-us-container {
    padding: 50px 0;
    overflow: hidden;
    background: rgb(52,170,223);
    background: linear-gradient(180deg, rgba(52,170,223,1) 0%, rgba(27,59,104,1) 100%);
    color: #fff;
}

.about-us-heading {
    color: #fff;
}

.about-us-heading::after,
.about-us-heading::before {
    position: absolute;
    top: 53%;
    background-color: #fff;
}

.about-us-content-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 40px;
    align-items: center;
}

.about-us-content {
    margin-top: 40px;
    text-align: justify;
}

.about-us-img-container {
    grid-column: 3/4;
    width: auto;
    height: 100%;
}

.about-us-img {
    width: 100%;
}

/* Technologies */
.technologies-container {
    padding: 50px 0;
    background: rgb(53, 172, 225);
    background: linear-gradient(145deg, rgba(53, 172, 225, 1) 25%, rgba(172, 203, 31, 1) 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}

/* .technologies-heading {
    width: 650px;
} */

.technologies-heading::after,
.technologies-heading::before {
    background-color: #FFF;
}

.technologies-sub-text {
    margin-top: 30px;
}

.technologies-content-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.techno-body {
    width: 100%;
    background-color: #fff;
    color: #000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
    padding: 20px 0px;
    border-radius: 10px;
}

.techno-body:hover .techno-icon {
    transform: scale(1.14);
}

.techno-icon {
    width: 80px;
    transition: all ease 0.4s;
}

.techno-text {
    margin-bottom: 0;
    padding: 0 20px;
    font-weight: 600;
    text-align: center;
}

/* Meet */
/* Meet 1 */
.meet-container {
    padding: 50px 0;
    position: relative;
    background-color: #FFF;
    overflow: hidden;
}

.meet-heading::before,
.meet-heading::after {
    background-color: #000;
}

.meet-content-1 {
    margin-top: 35px;
}

.meet-sub-content {
    margin-top: 20px;
    display: grid;
    grid-template-columns: repeat(11, 1fr);
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.meet-body-container {
    grid-column: 1/8;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 10px;
    position: relative;
    z-index: 4;
}

.meet-body {
    width: fit-content;
    height: 100%;
    text-align: start;
    margin: 5px 0;
    border-radius: 5px;
    display: grid;
    grid-template-columns: 30px auto auto auto auto auto auto auto auto auto;
    align-items: flex-start;
    justify-content: start;
    box-shadow: 0 2px 7px 0 rgba(0, 0, 0, .25), 0 3px 20px 0px rgba(0, 0, 0, 0);
    padding: 10px;
}

.meet-body:nth-child(4) {
    width: fit-content;
}

.meet-icon-container {
    grid-column: 1/2;
    width: 20px;
    height: 20px;
    margin: 0 5px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.meet-icon {
    margin-bottom: 0;
}

.meet-text {
    grid-column: 2/10;
    margin-bottom: 0;
}

.meet-image-container {
    height: 100%;
    grid-column: 8/12;
    position: absolute;
    z-index: 2;
}

.meet-image {
    width: 100%;
}

.shadow-line {
    color: #ccc;
    margin: 30px auto;
    width: 90%;
    position: absolute;
    left: 5%;
    bottom: 135px;
}

/* Meet 2 */
.meet-content-2 {
    margin-top: 45px;
}

.meet-sub-content-2 {
    display: flex;
    flex-direction: row;
    gap: 20px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.meet-body-2 {
    width: fit-content;
    text-align: start;
    margin: 5px 0;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 10px;
    box-shadow: 0 2px 7px 0 rgba(0, 0, 0, .25), 0 3px 20px 0px rgba(0, 0, 0, 0);
    padding: 10px;
}

.meet-icon-2 {
    width: 23px;
}

.meet-text-2 {
    margin-bottom: 0;
}




@media (max-device-width: 1400px) {
    .meet-sub-content {
        display: flex;
        flex-direction: column-reverse;
    }

    .meet-image-container {
        position: relative;
        width: 60%;
        margin: auto;
    }

    .meet-body {
        width: fit-content;
    }
}

@media (max-device-width: 1200px) {
    .hero-animation-container {
        width: 450px;
    }
    .hero-animation-icon {
        width: 30px;
    }
    .bank-icon {
        width: 60px;
    }
    .icon-container::before {
        padding: 44px;
    }
    .bank-container::before {
        padding: 60px;
    }
    .extra-border {
        width: 160px;
        height: 160px;
    }
    .bank-container {
        left: 38%;
        top: 33%;
    }
    .line {
        position: absolute;
        width: 1px;
        height: 148%;
        background-color: #000;
    }
    .line-1 {
        right: -62%;
        bottom: -92%;
        transform: rotate(125deg);
    }
    .line-2 {
        right: -60%;
        top: -94%;
        height: 144%;
        transform: rotate(235deg);
    }
    .line-3 {
        left: -60%;
        top: -94%;
        height: 144%;
        transform: rotate(125deg);
    }
    .line-4 {
        left: -62%;
        bottom: -92%;
        transform: rotate(235deg);
    }
    /* .technologies-heading {
        width: 580px;
    } */
    .content-container{
        padding-left: 20px;
    }
}

@media (max-device-width: 992px) {
    .hero-animation-container {
        display: none;
    }
    .hero-sub-container {
        display: block;
        position: relative;
    }
    .content-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding-left: 0px;
    }
    .hero-container {
        padding: 30px 0;
    }

    .technologies-content-container {
        grid-template-columns: repeat(2, 1fr);
    }

    /* .technologies-heading {
        width: 300px;
    } */

    .meet-image-container {
        width: 90%;
    }

    .shadow-line {
        color: #ccc;
        bottom: 210px;
    }
}

@media (max-device-width: 567px) {
    .meet-image-container {
        width: 100%;
    }
    .technologies-heading {
        width: 90%;
        margin: auto;
    }
    .shadow-line {
        width: 100%;
        left: 0%;
        color: #ccc;
        bottom: 210px;
    }
    .hero-tagline-container{
        gap: 10px;
        align-items: center;
    }
    .hero-tagline{
        font-size: 15px;
        padding: 8px 20px;
    }
}

@media (max-device-width: 458px) {
    .shadow-line {
        color: #ccc;
        bottom: 290px;
    }
}

@media (max-device-width: 421px) {
    .shadow-line {
        color: #ccc;
        bottom: 360px;
    }
}

@media (max-device-width: 355px) {
    .techno-body {
        width: 100%;
    }

    .technologies-content-container {
        grid-template-columns: repeat(1, 1fr);
    }
}

@media (max-device-width: 327px) {
    .shadow-line {
        color: #ccc;
        bottom: 390px;
    }
}