/* Importing fonts */

@font-face {
    font-family: gentona-bold;
    src: url("/assets/fonts/Gentona\ Bold.otf");
}

@font-face {
    font-family: gentona-medium;
    src: url("/assets/fonts/Gentona\ Medium.otf");
}

@font-face {
    font-family: gentona-thin;
    src: url("/assets/fonts/Gentona\ Thin.otf");
}

@font-face {
    font-family: gentona-book;
    src: url("/assets/fonts/Gentona\ Book.otf");
}

@font-face {
    font-family: avenir-bold;
    src: url("/assets/fonts/AvenirNextLTPro-Bold.otf");
}

@font-face {
    font-family: avenir-italic;
    src: url("/assets/fonts/AvenirNextLTPro-It.otf");
}

@font-face {
    font-family: avenir-regular;
    src: url("/assets/fonts/AvenirNextLTPro-Regular.otf");
}

html {
    font-size: 14.5px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


/* Home section styling starts */

.homepage {
    width: 100%;
    height: 100vh;
    position: relative;
}

.homepage_video {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: bottom;
}

.navbar {
    width: 100%;
    padding: 0.5rem 3rem;
    background-color: rgba(0, 0, 0, 0.4);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1000;
}

.navbar .navbar-brand {
    display: flex;
    align-items: center;
}

.navbar .navbar-brand img {
    width: 140px;
}

.navbar .navbar-nav .nav-item {
    position: relative;
    margin-right: 1rem;
}

.navbar .navbar-nav .nav-link::after {
    content: "";
    width: 0;
    height: 3px;
    position: absolute;
    left: 0;
    bottom: 0;
    transition: 0.2s ease;
    background: #ed2024;
}

.navbar .navbar-nav .nav-link:hover::after {
    width: 100%;
}

.navbar-nav {
    margin-left: auto;
}

.navbar .navbar-nav .nav-item:last-child {
    margin-right: 0;
}

.navbar .navbar-nav .nav-item .nav-link {
    font: 1.2rem gentona-bold;
    position: relative;
}

.navbar .navbar-toggler {
    font-size: 2.6rem;
    color: #fff;
    padding: 0;
    border: none;
}

.navbar .navbar-toggler:active,
.navbar .navbar-toggler:focus {
    box-shadow: none;
}

.home-content-container {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.home-content-container h1 {
    font: 3.125rem gentona-bold;
    line-height: 3.8rem;
}

.home-content {
    position: absolute;
    bottom: 2.7rem;
}

.home-content-container p {
    font: 1.23rem gentona-book;
    color: #fff;
    margin: 1rem 0 2.4rem 0;
}

.home-content .home-btn {
    display: flex;
    align-items: center;
}

.home-content-container .home-content .home-page-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 18.875rem;
    height: 2.8125rem;
    font: 1.125rem gentona-bold;
    color: #fff;
    border: none;
    border-radius: 0.25rem;
    cursor: pointer;
    text-decoration: none;
    /**/
}

.home-content-container .home-content .home-page-btn.btn-1 {
    background-color: #ed2024;
    margin-right: 1.3rem;
}

.home-content-container .home-content .home-page-btn.btn-2 {
    background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(0.21875rem);
    border: 0.125rem solid #fff;
    margin-right: 1.3rem;
}

.overlay {
    width: 58%;
    margin-left: auto;
    background-color: #e6e4e4;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 8% 100%);
    display: flex;
    align-items: center;
    height: 4.5rem;
}

.overlay h3 {
    font: 2rem gentona-bold;
    line-height: 2.2rem;
    padding-left: 4rem;
    margin-right: 2rem;
    color: #000;
}

.overlay-logos {
    width: 100%;
    display: flex;
    align-items: center;
}

.overlay-logos-wrapper,
.overlay-logos {
    overflow: hidden;
}

.overlay-logos .logo {
    width: 400px;
    margin-right: 1.5rem;
}

.overlay-logos .logo:last-child {
    margin-right: 0;
}

.overlay-logos .logo img {
    width: 160px;
    height: auto;
    animation: move 8s linear infinite;
}


/* .a {
  transform: translateX(260%);
} */


/* @keyframes move {
  from {
    transform: translateX(30%);
  }
  to {
    transform: translateX(-585%);
  }
} */

* {
    box-sizing: border-box;
}

body {
    margin: 0;
}

.marquee {
    overflow: hidden;
}

.marquee-content {
    display: flex;
    animation: scrolling 10s linear infinite;
}

.marquee-item {
    flex: 0 0 8vw;
    margin: 0 1vw;
    /*   flex: 0 0 20vw; */
    /*   margin: 0 2vw; */
}

.marquee-item img {
    display: block;
    width: 100px;
    /*   padding: 0 20px; */
}

@keyframes scrolling {
    0% {
        transform: translateX(0vw);
    }
    100% {
        transform: translatex(-100vw);
    }
}

.marquee {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    width: 100%;
}

.coin1 {
    padding-right: 50px;
    display: inline-block;
    align-items: center;
}

.coin1 a img {
    width: 240px;
    height: 100%;
    animation: marquee 15s linear infinite;
}

@keyframes marquee {
    from {
        transform: translateX(100%);
    }
    to {
        transform: translateX(-1500%);
    }
}


/*=======HOME SECTION STYLING ENDS========*/


/*=======ABOUT US SECTION STYLING STARTS======= */

.about-us {
    margin-top: 4rem;
}

.products-content-container,
.about-us-content-wrapper,
.solutions-content-wrapper {
    padding-left: 1.5rem;
}

.about-us .title h2,
.products .title h2,
.solutions .title h2,
.news .title h2 {
    font: 2rem gentona-bold;
    padding-bottom: 0.5rem;
    /**/
    position: relative;
}

.about-us .title h2::after,
.products .title h2::after,
.solutions .title h2::after,
.news .title h2::after {
    content: "";
    display: inline-block;
    background: #ed2024;
    width: 6rem;
    height: 0.25rem;
    position: absolute;
    bottom: 0;
    left: 0;
}

.about-us .about-us-content h2 {
    font: 1.5rem gentona-bold;
}

.about-us .about-us-content p {
    font: 1.3rem gentona-book;
    margin-bottom: 0.625rem;
}

.about-us .about-us-content a,
.products-btn a {
    display: block;
    width: 18.75rem;
    height: 2.8rem;
    font: 1.125rem gentona-book;
    color: #ed2024;
    border: 0.125rem solid #ed2024;
    border-radius: 0.25rem;
    background: transparent;
    /**/
    text-decoration: none;
    line-height: 2.5rem;
    text-align: center;
    margin-top: 0.375rem;
}

.about-us .about-us-content a {
    margin-top: 1.6rem;
}


/*=======ABOUT US SECTION STYLING ENDS========*/


/*=======PRODUCTS SECTION STYLING STARTS======== */

.products {
    margin-top: 7rem;
}

.products .title {
    margin-bottom: 4.6rem;
}

.products .title h2::after,
.solutions .title h2::after {
    width: 8rem;
}

.products .products-btn {
    margin-top: .3rem;
}

.solutions .solution-btn a {
    display: block;
    width: 100%;
    height: 3.125rem;
    font: 1.125rem gentona-bold;
    color: #ed2024;
    border: 0.125rem solid #ed2024;
    border-radius: 0.25rem;
    background-color: transparent;
    /**/
    cursor: pointer;
    text-decoration: none;
    line-height: 2.6rem;
    text-align: center;
}

.products .products-content h3 {
    font: 1.5rem gentona-bold;
}

.products .products-content p,
.products-content ul li {
    font: 1.3rem gentona-book;
}

.products-content-wrapper {
    margin-top: 9.4rem;
}

.products-content-2 h2 {
    font: 6.4rem gentona-book;
    margin: 0.3rem 0;
}

.products-content-2 p {
    font: 1.6rem gentona-book;
}


/*=======PRODUCTS SECTION STYLING ENDS=======*/


/*=======OUR SOLUTIONS SECTIONS STYLING STARTS========*/

.solutions {
    margin-top: 9.375rem;
}


/* .solutions-card-wrapper{
        padding: 0 2.3rem 2.3rem 0;
    }
     */

.solutions .solutions-card {
    position: relative;
}

.solutions .solutions-card .solutions-card-overlay {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 0 0 2.5rem 2.5rem;
    background-color: rgba(0, 0, 0, 0.4);
}

.solutions .solutions-card .solutions-card-overlay .solutions-card-icon img {
    width: 2rem;
    height: auto;
}

.solutions .solutions-card .solutions-card-overlay .solutions-card-icon .icons_img {
    width: 1.5rem;
    height: auto;
}

.solutions .solutions-card .solutions-card-overlay .solutions-card-icon {
    width: 3.6rem;
    height: 3.6rem;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(0.1875rem);
}

.solution-cards-row-2 {
    margin-top: 4.5rem;
}

.solutions .solutions-card .solutions-card-overlay h3 {
    font: 1.5rem gentona-bold;
    color: #fff;
    /**/
    margin-top: 0.625rem;
}

.solutions .solution-btn {
    margin-top: 3rem;
}


/*=======SOLUTIONS CAROUSEL STARTS======== */

.carosuel-wrapper {
    display: none;
}

.carousel-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
}

.caraousel-prev-btn {
    margin-right: 2rem;
}

.caraousel-next-btn {
    margin-left: 2rem;
}

.caraousel-prev-btn button,
.caraousel-next-btn button {
    border: none;
    background: transparent;
}

.caraousel-prev-btn button i,
.caraousel-next-btn button i {
    width: 3rem;
    height: 3rem;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.25rem;
    box-shadow: 0 0 0.3rem rgba(0, 0, 0, 0.4);
    background: #fff;
    border-radius: 50%;
}

.solutions .solution-btn a {
    font-family: gentona-medium;
}


/*========SOLUTIONS CAROUSEL ENDS======== */


/*========OUR SOLUTIONS SECTIONS STYLING ENDS======== */


/*========LATEST NEWS SECTION STYLING STARTS========= */

.news {
    margin-top: 10rem;
}

.news .title h2::after {
    width: 8.5rem;
    left: 50%;
    transform: translateX(-50%);
}

.news .news-card-container {
    margin-top: 4.5rem;
}

.news .news-card {
    border: 1px solid #cbcecf;
}

.news .news-card .news-card-content {
    padding: 1.25rem 1.25rem 0.8rem 1.25rem;
}

.news-card {
    transition: all 0.3s ease;
    cursor: pointer;
}

.news-card:hover {
    box-shadow: 0 0 14px rgba(0, 0, 0, 0.25);
}

.news-card .news-card-content h2 {
    font: 1.4rem gentona-medium;
    color: #cbcdcf;
    /**/
}

.home-news-img {
    height: 25vh;
}

.news-card a {
    text-decoration: none;
}

.news-card-date {
    font: 1.4rem gentona-medium;
    color: #cbcdcf;
}

.news-card-heading {
    margin: 0.6rem 0;
    color: #000;
    overflow: hidden;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    /* line-height: 16px;     */
    /* max-height: 32px; */
    -webkit-line-clamp: 2;
    /* Write the number of 
                            lines you want to be 
                            displayed */
    -webkit-box-orient: vertical;
}

.news-card-paragraph {
    margin: 0.6rem 0;
    color: #000 !important;
    font: 1.3rem gentona-book;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    /* line-height: 16px;     */
    /* max-height: 32px; */
    -webkit-line-clamp: 4;
    /* Write the number of 
                            lines you want to be 
                            displayed */
    -webkit-box-orient: vertical;
}

.news-card .news-card-content h2:nth-child(2) {
    margin: 0.6rem 0;
    color: #000 !important;
}

.news-card .news-card-content p {
    font: 1.3rem gentona-book;
    /**/
}

.news-card .news-card-content .arrow {
    text-align: right;
}

.news-card .news-card-content .arrow i {
    font-size: 1.125rem;
    transition: all 0.3s ease;
    color: #cbcdcf;
}

.news-card:hover .arrow i {
    color: #ed2024;
}

.news-cards-carousel {
    display: none;
    margin-top: 50px;
}

.solutions .solutions-card .solutions-card-overlay .solutions-card-icon .devices-img {
    width: 20px;
}


/*=======LATEST NEWS SECTION STYLING ENDS=======*/


/* footer styling starts*/

footer {
    margin-top: 6.25rem;
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65)), url("/assets/images/footer.webp");
    background-size: cover;
    background-position: center;
    padding: 5rem 2.5rem 5rem 2.5rem;
}

.footer-logo img {
    width: 110px;
}

footer .footer-icons a {
    margin-right: 1.5rem;
    color: #000;
    text-decoration: none;
}

footer .footer-icons a:nth-child(4) {
    margin-right: 0;
}

footer .footer-icons i {
    width: 2.5rem;
    height: 2.5rem;
    font-size: 1.25rem;
    line-height: 2.625rem;
    background-color: #fff;
    border-radius: 50%;
    text-align: center;
    cursor: pointer;
}

footer .footer-content {
    margin-top: 3.375rem;
}

footer ul {
    margin: 0;
}

footer ul li {
    list-style: none;
    padding: 0;
}

footer ul li a {
    text-decoration: none;
}

footer .footer-contact {
    padding: 0;
}

footer .footer-contact li,
footer .footer-contact li a {
    color: #fff;
    font: 1.2rem gentona-book;
}

footer .footer-contact-info li {
    line-height: 1.25rem;
}

footer .footer-contact li:nth-child(2) {
    margin: 0.8rem 0 0.3rem 0;
}

footer .footer-contact li:nth-child(2) a,
footer .footer-contact li:nth-child(3) a {
    color: #ed2024;
}

footer .footer-links li:nth-child(2),
footer .footer-links li:nth-child(3),
footer .footer-links li:nth-child(4) {
    margin-top: 1.1rem;
}

footer .footer-links li a,
footer .footer-mailbox li:nth-child(1) {
    font: 1.2rem gentona-medium;
    color: #fff;
}

footer .footer-mailbox li:nth-child(2) {
    display: flex;
    margin-top: 0.375rem;
}

footer .footer-mailbox li:nth-child(2) button[type="submit"] {
    border: none;
    border-radius: 0 0.25rem 0.25rem 0;
    overflow: hidden;
}

footer .footer-mailbox li:nth-child(2) input[type="email"] {
    width: 12.4rem;
    border: none;
    outline: none;
    border-radius: 0.25rem 0 0 0.25rem;
    height: 2.8125rem;
    padding: 0 1rem;
}

footer .footer-mailbox li:nth-child(2) i {
    color: #fff;
    width: 3.125rem;
    height: 2.8125rem;
    background-color: #f87375;
    line-height: 2.8125rem;
    text-align: center;
    cursor: pointer;
}


/* footer styling ends */


/* Media query for tablets ipads portrait mode */

@media (min-width: 768px) and (max-width: 1024px) {
    html {
        font-size: 13px;
    }
    .navbar .navbar-nav .nav-item {
        margin-right: 0.3rem;
    }
    .navbar .navbar-brand img {
        width: 130px;
    }
    .products-content-2 .first-img {
        width: 36px;
    }
    .solutions .solutions-card .solutions-card-overlay .solutions-card-icon .devices-img {
        width: 15px;
    }
    @keyframes scrolling {
        0% {
            transform: translateX(2vw);
        }
        100% {
            transform: translatex(-110vw);
        }
    }
    .products-content-2 .second-img {
        width: 98px;
    }
    .products-content-2 .third-img {
        width: 70px;
    }
    .products-content-container,
    .about-us-content-wrapper,
    .solutions-content-wrapper {
        padding-left: 0;
    }
    /* 
  .a {
    transform: translateX(100%);
  } */
    .solution-cards-row-2 {
        margin-top: 1.4rem;
    }
    .news-card-wrapper {
        padding: 0 0.6rem;
    }
    .overlay {
        width: 100%;
    }
    .news {
        margin-top: 3.8rem;
    }
    .footer-icons {
        margin-left: 1.5rem;
    }
    footer .footer-links li a,
    footer .footer-mailbox li:nth-child(1),
    footer .footer-contact li,
    footer .footer-contact li a {
        font-size: 1.3rem;
    }
}

@media (min-width: 993px) and (max-width: 1024px) {
    .solution-cards-row-2 {
        margin-top: 4.5rem;
    }
}


/* Media query for low resolution tablets */

@media (min-width: 576px) and (max-width: 767px) {
    html {
        font-size: 10px;
    }
    /* .navbar {
    padding: 0.2rem 1rem;
  }

  .navbar .navbar-nav .nav-item {
    margin-right: 1rem;
  }

  .navbar .navbar-nav .nav-item .nav-link {
    font-size: 1.2rem;
  } */
    .solutions .solutions-card .solutions-card-overlay .solutions-card-icon .devices-img {
        width: 12px;
    }
    .navbar .navbar-brand img {
        width: 110px;
    }
    .products-content-2 .first-img {
        width: 36px;
    }
    .products-content-2 .second-img {
        width: 98px;
    }
    .products-content-2 .third-img {
        width: 70px;
    }
    .solution-cards-row-2 {
        margin-top: 1.4rem;
    }
    .news-card-wrapper {
        padding: 0 0.6rem;
    }
    footer .footer-logo img {
        width: 90px;
    }
    footer .footer-links li a,
    footer .footer-mailbox li:nth-child(1),
    footer .footer-contact li,
    footer .footer-contact li a {
        font-size: 1.1rem;
    }
    footer .footer-links li a,
    footer .footer-mailbox li:nth-child(1),
    footer .footer-contact li,
    footer .footer-contact li a {
        font-size: 1.3rem;
    }
    footer .footer-icons {
        margin-left: 2rem;
    }
}


/* Media query for small devices(Mobile devices) */

@media (max-width: 575px) {
    html {
        font-size: 11px;
    }
    .navbar {
        padding: 0.2rem 1rem;
    }
    .navbar .navbar-brand img {
        position: unset;
        width: 100px;
    }
    .navbar .navbar-nav .nav-item .nav-link {
        font-family: gentona-medium;
        font-size: 1.5rem;
        display: inline-block;
    }
    .navbar .navbar-nav .nav-item {
        margin-top: 0.6rem;
        margin-right: 0;
    }
    .navbar .navbar-nav .nav-link {
        display: inline-block;
    }
    .home-content-container .home-content .home-page-btn {
        width: 19.875rem;
        height: 3.4rem;
        font: 1.5rem gentona-bold;
    }
    .home-content .home-btn {
        flex-direction: column;
        align-items: unset;
    }
    .home-content .home-btn a:nth-child(2) {
        margin-top: 1.25rem;
    }
    .homepage .overlay h3 {
        font-size: 2.5rem;
        line-height: 24px;
    }
    .solutions .solutions-card .solutions-card-overlay .solutions-card-icon .cell-img {
        width: 1.4rem;
        height: auto;
    }
    .wrapper {
        padding: 0 2.5rem;
    }
    .products .products-content {
        padding-left: unset;
    }
    .about-us .title {
        margin-bottom: 2rem;
    }
    .product-img {
        margin-bottom: 30px;
    }
    .products-content-2 {
        padding: 0 4.375rem;
    }
    .overlay {
        width: 100%;
    }
    .products .products-btn {
        margin: unset;
    }
    .products-content-wrapper {
        margin-top: 4rem;
    }
    .products-content-2 .first-img {
        width: 36px;
    }
    .products-content-2 .second-img {
        width: 98px;
    }
    .products-content-2 .third-img {
        width: 70px;
    }
    .products-content-2.middle {
        margin: 38px 0;
    }
    .news-card-wrapper {
        padding: 0 0.5rem;
    }
    .solutions {
        margin-top: 5rem;
        margin-bottom: 5rem;
    }
    .solutions-wrapper,
    .news-card-container,
    .home-content h1 br {
        display: none;
    }
    .carosuel-wrapper,
    .news-cards-carousel {
        display: block;
    }
    .products-content-container,
    .about-us-content-wrapper,
    .solutions-content-wrapper {
        padding-left: 0;
    }
    .news {
        margin-top: 2rem;
    }
    /* .news-card {
        height: 350px;
    } */
    .products {
        margin-top: 3.6rem;
    }
    .about-us .about-us-content a,
    .products-btn a {
        width: 13.75rem;
        height: 2.8rem;
    }
    /* .magnis {
        margin-right: 5px;
    } */
    footer {
        padding: 3.5rem 2.8rem 3.5rem 2.8rem;
    }
    .footer-links-wrapper {
        margin: 2.6rem 0 1.4rem 0;
    }
    footer .footer-icons {
        margin-top: 1.5rem;
    }
    footer .footer-icons a {
        margin-right: 1rem;
    }
    footer .footer-content {
        margin-top: 2.375rem;
    }
}