:root {
    /* colors */
    --dv_white: #ffffff;
    --dv_darkwhite: #f5f5f5;
    --dv_red: #eb1e1e;
    --dv_darkgrey: #292835;
    --dv_lightblue: #0085d0;
    --dv_electricblue: #0067f6;
    --dv_bgblue: #121120;
    --dv_lightgrey: #d6d6d6;

    /* Font */
    --dv_font_family: "Inter", sans-serif;

    /* inter-100 - latin */
    @font-face {
        font-display: swap;
        font-family: "Inter";
        font-style: normal;
        font-weight: 100;
        src: url("../fonts/inter-v18-latin-100.woff2") format("woff2");
    }

    /* inter-200 - latin */
    @font-face {
        font-display: swap;
        font-family: "Inter";
        font-style: normal;
        font-weight: 200;
        src: url("../fonts/inter-v18-latin-200.woff2") format("woff2");

        /* inter-300 - latin */
        @font-face {
            font-display: swap;
            font-family: "Inter";
            font-style: normal;
            font-weight: 300;
            src: url("../fonts/inter-v18-latin-300.woff2") format("woff2");
        }

        /* inter-regular - latin */
        @font-face {
            font-display: swap;
            font-family: "Inter";
            font-style: normal;
            font-weight: 400;
            src: url("../fonts/inter-v18-latin-regular.woff2") format("woff2");
        }

        /* inter-500 - latin */
        @font-face {
            font-display: swap;
            font-family: "Inter";
            font-style: normal;
            font-weight: 500;
            src: url("../fonts/inter-v18-latin-500.woff2") format("woff2");
        }

        /* inter-600 - latin */
        @font-face {
            font-display: swap;
            font-family: "Inter";
            font-style: normal;
            font-weight: 600;
            src: url("../fonts/inter-v18-latin-600.woff2") format("woff2");
        }

        /* inter-700 - latin */
        @font-face {
            font-display: swap;
            font-family: "Inter";
            font-style: normal;
            font-weight: 700;
            src: url("../fonts/inter-v18-latin-700.woff2") format("woff2");
        }

        /* inter-800 - latin */
        @font-face {
            font-display: swap;
            font-family: "Inter";
            font-style: normal;
            font-weight: 800;
            src: url("../fonts/inter-v18-latin-800.woff2") format("woff2");
        }

        /* inter-900 - latin */
        @font-face {
            font-display: swap;
            font-family: "Inter";
            font-style: normal;
            font-size: 56px;
            font-weight: 900;
            src: url("../fonts/inter-v18-latin-900.woff2") format("woff2");
        }

        /* Font-sizes */
        --dv_font_size_base: 18px;
        --dv_h1: 56px;
        --dv_h2: 48px;
        --dv_h3: 36px;
        --dv_h4: 28px;
        --dv_h5: 22px;
        --dv_h6: 20px;

        /* Font-weight */
        --dv_fw3: 300;
        --dv_fw4: 400;
        --dv_fw5: 500;
        --dv_fw6: 600;
        --dv_fw7: 700;
        --dv_fw8: 800;
        --dv_fw9: 900;

        /* Layout */
        --dv_container_width: 1440px;
        --dv_padding_side: 0 30px;
    }
}

html {
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    /* box-sizing: border-box; */
}

.hidden {
    display: none;
}

body {
    background-color: var(--dv_bgblue);
    font-family: var(--dv_font_family);
    color: var(--dv_white);
    overflow-x: hidden;
}

.gap_container {
    gap: 50px;
}

/* Utility classes */

.flex {
    display: flex;
}

.flex_col {
    flex-direction: column;
}

.flex_row {
    flex-direction: row;
}

.align_items_fend {
    align-items: flex-end;
}

.align_c_center {
    align-content: center;
}

.align_center {
    align-items: center;
}

.align_base {
    align-items: baseline;
}

.align_end {
    align-items: end;
}

.justify_cont_sb {
    justify-content: space-between;
}

.justify_cont_fe {
    justify-content: flex-end;
}

.justify_cont_center {
    justify-content: center;
}

.gap_10 {
    gap: 10px;
}

.gap_20 {
    gap: 20px;
}

.gap_30 {
    gap: 30px;
}

.gap_40 {
    gap: 40px;
}

.gap_50 {
    gap: 50px;
}

.flex_wrap {
    flex-wrap: wrap;
}



.section_std {
    padding: 100px 0px;
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
}

.dv-container {
    padding: 0 30px 0 30px;
}

.bg_blue {
    background-color: var(--dv_lightblue);
}

.bg_grey {
    background-color: #292835;
}

.t_align {
    text-align: center;
}

/* Typography */

p {
    font-size: 16px;
}

h1 {
    font-size: 55px;
    font-weight: 700;
    opacity: 90%;
    letter-spacing: 0.5px;
    width: 588px;
    line-height: 1;
}

h2 {
    font-size: 48px;
    font-weight: 700;
    color: var(--dv_lightgrey);
    text-transform: uppercase;
    text-align: center;
}

@media screen and (width < 1024px) {
    h2 {
        font-size: 32px;
    }
}

.head_p {
    font-size: 18px;
    font-weight: 600;
    text-align: center;
}

.content {
    font-size: 16px;
    padding: 0 20px;
    color: #d6d6d6;
    font-weight: 400;
    line-height: 1.3;
}


.content_grey {
    margin-bottom: 30px;
    text-align: center;
    width: 100%;
    color: var(--dv_lightgrey);
    font-size: 20px;
    line-height: 1.3;
    font-weight: 300;
}

.subheading {
    font-size: 20px;
    font-weight: 400;
}

.subheading_grey {
    color: #c0c0c0;
}

.content
/* Sections */

.section-heading {
    text-align: center;
}

.section-heading {
    text-align: center;
}

.section-heading .subheading {
    margin: 0 auto;
}

.section-heading h2 {
    margin-bottom: 10px;
}

/* Header */


#menu-toggle {
    position: absolute;
    appearance: none;
    cursor: pointer;
    left: -100%;
    top: -100%;
}

#menu-toggle:checked~.menu {
    opacity: 1;
    visibility: visible;
}

#menu-toggle:checked~.menu nav ul .menu-item {
    opacity: 1;
    transform: translateY(5px);
}

#menu-toggle:checked~.menu-button .menu-icon {
    background: transparent;
}

#menu-toggle:checked~.menu-button .menu-icon:before {
    transform: rotate(-45deg);
    top: 0;
    background: #ffffff;
}

#menu-toggle:checked~.menu-button .menu-icon:after {
    transform: rotate(45deg);
    top: 0;
    background: #ffffff;
}

.menu {
    display: block;
    background: #DD1E4E;
    color: #FFF;
    text-align: center;
    position: absolute;
    z-index: 10;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    margin: auto;
    padding: 20px;
    transition: all 0.44s cubic-bezier(0.17, 0.04, 0.03, 0.94);
    overflow: hidden;
    box-sizing: border-box;
    visibility: hidden;
    opacity: 0;
}

.menu .menu-item {
    opacity: 0;
    transform: translateY(-5px);
    transition: all 0.44s cubic-bezier(0.17, 0.04, 0.03, 0.94);
    font-size: 22px;
    font-weight: 700;
}

.menu .menu-item:nth-child(0) {
    transition-delay: 0s;
}

.menu .menu-item:nth-child(1) {
    transition-delay: 0.05s;
}

.menu .menu-item:nth-child(2) {
    transition-delay: 0.1s;
}

.menu .menu-item:nth-child(3) {
    transition-delay: 0.15s;
}

.menu .menu-item:nth-child(4) {
    transition-delay: 0.2s;
}

.menu .menu-item:nth-child(5) {
    transition-delay: 0.25s;
}

.menu nav ul {
    color: white;
    list-style: none;
    display: flex;
    flex-direction: column;
    padding-top: 100px;
}

.menu nav ul .menu-item {
    margin-bottom: 1.5em;
}

.menu nav ul a {
    text-decoration: none;
    color: white;
}

.menu-button {
    cursor: pointer;
    display: inline-block;
    float: right;
    padding: 28px 20px;
    border-radius: 100%;
    position: relative;
    user-select: none;
    z-index: 300;
}

.menu-icon {
    background: #FFF;
    display: block;
    height: 3px;
    position: relative;
    transition: all 0.2s ease-out;
    -webkit-transition: all 0.15s ease-out;
    width: 30px;
}

.menu-icon:before,
.menu-icon:after {
    background: #FFF;
    content: "";
    display: block;
    height: 100%;
    position: absolute;
    transition: all 0.2s ease-out;
    -webkit-transition: all 0.2s ease-out;
    width: 100%;
}

.menu-icon:before {
    top: 8px;
}

.menu-icon:after {
    top: -8px;
}

.nav_logo {
    width: 200px;
    height: auto;
}

.nav_logo {
    min-width: 268px;
    width: 100%;
    height: auto;
    gap: 0px;
    opacity: 0px;
}

.logo {
    max-width: 268px;
    /* margin: 0 auto; */
    /* padding: 30px 20px; */
}

header {
    background-color: transparent;
    color: var(--dv_darkwhite);
}

.navbar {
    justify-content: space-between;
    /* max-width: 1440px; */
    padding: 0 30px;
    z-index: 11000;
}

.nav_links {
    list-style: none;
    font-size: 18px;
    font-weight: 400;
    gap: 20px;
    align-items: center;
    color: red;
}

a {
    color: var(--dv_darkwhite);
    text-decoration: none;
}

.nav_socials {
    width: 20.94px;
    height: 20.94px;
}

.nav_youtube {
    width: 33.92px;
    height: 23.83px;
}

.button {
    background-color: var(--dv_red);
    color: var(--dv_white);
    text-decoration: none;
    padding: 12px 18px;
    border-radius: 4px;
    border: 2px solid var(--dv_red);
    font-size: 18px;
    font-weight: 400;
    text-align: center;
    transition: all 0.3s ease-in-out;
}

.button:hover {
    background: transparent;
    /* color: var(--dv_red); */
}

.menu-button {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 10;
    position: relative;
}

.close-button {
    position: absolute;
    top: 50px;
    right: 50px;
}


.no_scroll {
    overflow: hidden;
    height: 100vh;
}

.side_menu {
    position: fixed;
    top: 0;
    right: -100%;
    height: 108vh;
    width: 250px;
    background-color: var(--dv_red);
    transition: right 0.3s ease-in-out;
    display: flex;
    /* justify-content: center; */
    padding-top: 120px;
    align-items: center;
    flex-direction: column;
    z-index: 1000;
    overflow-y: auto;
}

.side_menu .button {
    background-color: var(--dv_bgblue);
    color: var(--dv_white);
}

.side_menu_active {
    right: 0;
}

.side_burger {
    position: absolute;
    top: 85px;
    right: 20px;
    display: none;
    z-index: 1100;
}

.side_menu_active .side_burger {
    display: flex;
}

.nav_side_links {
    list-style: none;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 20px;
}

.nav_side_links a {
    /* color: var(--dv_bgblue); */
    text-decoration: none;
    font-size: 18px;
}

.menu-button {
    display: none !important;
}

/* Hero Section */

div#hero.section_std {
    padding-top: 0px;
}

.hero_section {
    text-align: center;
    gap: 20px;
    padding: 0 30px;
    /* max-width: 1440px; */
    /* width: 100%; */
    z-index: 1000;
    justify-content: center;
}

.hero_content {
    max-width: 628px;
    width: 100%;
    gap: 20px;
}

.featured_in_logo {
    padding-top: 20px;
    gap: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}



.featured_in_logo .container-1,
.featured_in_logo .container-2 {
    display: flex;
    gap: 20px;
    justify-content: center;
}

@media screen and (width < 680px) {
    .featured_in_logo {
        flex-wrap: wrap;
    }

    .featured_in_logo a img {
        max-width: 110px;
    }

    .contact_block {
        flex-direction: column;
        width: unset !important;
    }
}

.featured_in_logo a {
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature_swiper {
    overflow: hidden;
    width: 100%;
}

#feature_swiper {
    background-color: transparent;
}

.featured_in_logo a img {
    width: 140px;
    height: auto;
}

.hero_image img {
    width: 100%;
    height: auto;
}

/* Business Section */

.Business_first_p {
    font-size: 18px;
    font-weight: 600;
}

.service_description {
    padding: 20px;
}

.service_description h3 {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 10px;
}



.main-article {
    max-width: 650px;
}




.swiper-container {
    width: 100%;
    height: auto;
}

.main-news {
    text-align: center;
    font-size: 18px;
    background: #292835;
    padding-bottom: 30px;
    flex-direction: column;
    width: 100%;
    height: auto;
    border-radius: 10px;
    /* gap: 20px; */
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #292835;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: auto;
    border-radius: 10px;
    /* gap: 20px; */
}

.service_image img {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    max-height: 450px;
    min-height: 450px;
}

.swiper-slide img
,.main-news img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.swiper-wrapper {
    display: flex;
    width: 100%;
    align-items: stretch;
}

/* Client Section */
.swiper_slide_2 {
    width: 100%;
    height: 290px;
}

.swiper_slide_2 .clients_image {
    width: 180px;
    height: 180px;
}

.clients_image {
    border-radius: 50%;
    overflow: hidden;
}

/* Testimonials Section */

.swiper_slide_3 {
/*    max-width: 509px;*/
    width: 100%;
    /* min-height: 500px; */
    height: auto;
    justify-content: space-between;
    border-radius: 10px;
}

.testimonials_title {
    opacity: 70%;
}

.testimonials_image {
    border-radius: 50%;
    overflow: hidden;
    max-width: 95px;
    width: 100%;
    height: 93px;
    margin: 10px 0;
}

h4.review-name {
    font-weight: 400;
    font-size: 18px;
    margin-bottom: 10px;
}

.review_position {
    display: block;
    font-size: 16px;
    color: #c0c0c0;
    margin-bottom: 15px;
}


.testimonials_bottom {
    padding: 10px 15px;
    line-height: 1.3;
    font-size: 22px;
    font-weight: 400;
}

.testimonials-read-more {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    color: #c0c0c0;
    transition: all 0.2s ease-in-out;
    cursor: pointer;
}

.testimonials-read-more:hover {

    color: #fff;
}

.testimonials-read-more .review_image {
    width: 20px;
    height: 20px;

}



.test_link {
    color: #0067f5;
}

.testimonials_description {
    max-width: 445px;
    width: 100%;
    font-weight: 400;
    font-size: 22px;
    line-height: 32px;
    padding-bottom: 20px;
}

.testimonials_details {
    gap: 5px;
    padding-bottom: 10px;
}

.testimonials_link {
    color: #0067f6;
}

/* Networking Section */


.swiper_slide_4 img {
    border-radius: 50%;
    overflow: hidden;
    width: 133px;
    height: 133px;
}

.network_title {
    color: #fff;
    padding: 0 10px;

}

.network_description {
    opacity: 70%;
}

/* Article section */

.swiper_slide_5 {
    display: flex;
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.swiper_slide_5 img {
    width: 100%;
    height: auto;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.article_description h3 {
    font-size: 20px;
    font-weight: 400;
/*  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;*/
}



.read_more_button {
    background-color: var(--dv_red);
    color: var(--dv_white);
    text-decoration: none;
    width: 100px;
    margin: 0 auto;
    margin-bottom: 25px;
    padding: 6px 16px;
    border-radius: 4px;
    border: 2px solid var(--dv_red);
    font-size: 18px;
    font-weight: 400;
    transition: all 0.3s ease-in-out;
}

.read_more_button:hover {
    background: transparent;
}

/* News Section */



.swiper_wrapper {
    align-items: center;
}

.swiper_slide_6 p {
    font-size: 16px;
    font-weight: 400;
}



.swiper_slide_7 img {
    /* max-width: 460px; */
    height: auto;
    width: 100%;

    border-top-left-radius: 9px;
    border-top-right-radius: 9px;
}

/* Videos Section */

.swiper_slide_8 img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}



iframe {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    width: 100%;
}

.article_description {
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: center;
    margin: 20px 0;
}

.article_description h3 {
    font-size: 18px;
    padding: 0 20px;
}

/* Events Section */

.ticket_button {
    background-color: #292525;
    padding: 10px 15px;
    border-radius: 4px;
    font-size: 16px;
}

/* Contact Section */

.contact_block {
    background-color: var(--dv_darkgrey);
    width: 100%;
    max-width: 600px;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    gap: 20px;
    font-weight: 400;
}







.contact_block .button {
    width: 160px;
}

/* footer */

.footer_socials {
    width: 20.94px;
    height: 20.94px;
}

.footer_youtube {
    width: 33.92px;
    height: 23.83px;
}

.footer_links {
    list-style: none;
    font-size: 18px;
    font-weight: 400;
}

.footer_logo {
    width: 95px;
    height: 93px;
    margin-bottom: 30px;
}

footer span {
    color: var(--dv_darkwhite);
    font-size: 18px;
    font-weight: 400;
}

.footer-text {
    line-height: 1.3;
}

/* Nav resposiveness */



@media (max-width: 1024px) {
    .menu-button {
        display: inline-block !important;
    }

    .nav_links {
        display: none;
    }
}

@media screen and (width < 1100px) {
    .featured_in_logo {
        flex-wrap: wrap;
    }
}

.mobile-news {
    display: none;
}

@media screen and (width < 980px) {
    .mobile-news {
        display: block;
    }

    .desktop-news {
        display: none;
    }
}


/* Hero Section Resposiveness */
@media (max-width: 1024px) {
    .hero_section {
        justify-content: space-around;
    }

    .hero_section h1 {
        font-size: 36px;
        font-weight: 700;
        opacity: 90%;
        letter-spacing: 0.5px;
        width: 100%;
        line-height: 1.2;
    }

    .first_hero_p {
        font-size: 18px;
        font-weight: 400;
        width: 100%;
    }

    .second_hero_p {
        font-size: 14px;
        font-weight: 300;
        width: 100%;
    }


    .featured_in_logo img {
        /* max-width: 104px; */
        width: 100%;
        height: auto;
    }
}

@media (max-width: 530px) {
    .hero_section h1 {
        font-size: 36px;
        font-weight: 700;
        opacity: 90%;
        letter-spacing: 0.5px;
        width: 100%;
        line-height: 1.2;
    }

    h2 {
        font-size: 28px;
    }

    .first_hero_p {
        font-size: 15px;
        font-weight: 200;
        width: 100%;
    }

    .second_hero_p {
        font-size: 12px;
        font-weight: 100;
        width: 100%;
    }
}

@media (max-width: 420px) {
    .hero_section h1 {
        font-size: 28px;
        font-weight: 600;
        opacity: 90%;
        letter-spacing: 0.5px;
        width: 100%;
        line-height: 1;
    }

    .first_hero_p {
        font-size: 14px;
        font-weight: 100;
        width: 100%;
    }

    .second_hero_p {
        font-size: 12px;
        font-weight: 100;
        width: 100%;
    }
}

/* Business Service Section Responsiveness */

@media (max-width: 635px) {
    .business_heading {
        font-size: 20px;
        font-weight: 900;
    }
}

@media (max-width: 500px) {
    .business_heading {
        font-size: 28px;
        font-weight: 900;
    }

    .business_first_p {
        font-size: 14px;
        font-weight: 400;
        width: 100%;
        line-height: 25px;
        text-align: center;
    }

    .business_description {
        font-size: 20px;
    }
}

/* Clients Responsiveness */
@media (max-width: 500px) {
    .clients_heading {
        font-size: 28px;
        font-weight: 900;
    }

    .clients_first_p {
        font-size: 14px;
        font-weight: 400;
        width: 100%;
    }

    .clients_description {
        font-size: 20px;
    }
}

/* Testimonials Section Responsiveness */

@media (max-width: 500px) {
    .testimonials_heading {
        font-size: 28px;
        font-weight: 900;
    }

    .testimonials_first_p {
        font-size: 14px;
        font-weight: 400;
        width: 100%;
        line-height: 25px;
    }

    .testimonials_description {
        font-size: 20px;
    }
}

/* Networking Responsiveness */

@media (max-width: 950px) {
    .network_heading {
        font-size: 36px;
        font-weight: 900;
    }
}

@media (max-width: 630px) {
    .network_heading {
        font-size: 28px;
        font-weight: 900;
    }

    .network_first_p {
        font-size: 14px;
        font-weight: 400;
        width: 100%;
        line-height: 25px;
    }

    .network_description {
        font-size: 20px;
    }
}

@media (max-width: 500px) {
    .network_heading {
        font-size: 28px;
        font-weight: 800;
    }
}

/* Articles Responsiveness */

@media (min_width: 680px) and (max-width: 1800px) {
    #main_news {
        display: none;
    }
}

@media (max-width: 680px) {
    .swiper_slide_6 {
        display: none;
    }
}

@media (max-width: 460px) {
    .article_heading {
        font-size: 28px;
        font-weight: var(--dv_fw7);
    }

    .article_description h3 {
        font-size: 18px;
        font-weight: 500;
        text-align: center;
    }

}

/* News Section Responsiveness */

@media (max-width: 850px) {
    .swiper_slide_6 {
        max-width: 572px;
        width: 100%;
        height: auto;
        border-radius: 10px;
    }

    .swiper_slide_6 img {
        width: 100%;
        height: auto;
    }
}

@media (max-width: 460px) {
    .news_heading {
        font-size: 28px;
        font-weight: 800;
    }

    .news_first_p {
        font-size: 18px;
        font-weight: 600;
    }
}

@media (max-width: 460px) {
    .swiper_slide_6 {
        height: auto;
    }

    .swiper_slide_7 {
        height: auto;
    }

    .videos_heading {
        font-size: 28px;
        font-weight: 800;
    }

    .videos_first_p {
        font-size: 18px;
        font-weight: 600;
    }
}

/* Videos Section */

@media (max-width: 460px) {
    .swiper_slide_8 {
        height: auto;
    }

    .article_description {
        /* min-height: 350px; */
    }
}

@media (max-width: 400px) {
    .swiper_slide_8 {
        height: auto;
    }

    .article_description {
        min-height: 300px;
    }
}

/* Events Section responsiveness */

@media (max-width: 460px) {
    .events_heading {
        font-size: 28px;
        font-weight: 800;
    }

    .events_first_p {
        font-size: 18px;
        font-weight: 600;
    }
}

/* Contact Section */

@media (max-width: 768px) {

    .featured_in_logo .container-1,
    .featured_in_logo .container-2 {
        flex-wrap: wrap;
    }


    .contact_block .button {
        background-color: var(--dv_red);
    }

    .nav_logo {

        min-width: unset;
    }

    .dv-container {
        padding: 0 15px;
    }

    .navbar {
        padding: 0 15px;
    }

    .hero_section {
        padding: 0 15px;
    }
}

@media (max-width: 500px) {

    .featured_in_logo {
        flex-direction: column;
        width: 100%;
    }
/*
    .featured_in_logo .container-1,
    .featured_in_logo .container-2 {
        flex-direction: column;
    }
*/
}

/* Footer responsiveness */
@media (max-width: 1024px) {
    .footer_links {
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .footer div {
        text-align: center;
    }

    .footer_links {
        display: none;
    }

    .footer p {
        font-size: 10px;
        line-height: 1.5;
    }
}


body {
    /* position: relative; */
    width: 100%;
    min-height: 100vh;
}

section.bubbles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -100;
}

#particles {
    background: #000000;
}

#hexagonGrid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

#hexagonGrid .row {
    display: inline-flex;
    margin-top: -32px;
    margin-left: -50px;
}

#hexagonGrid .row:nth-child(even) {
    margin-left: 2px;
}

#hexagonGrid .row .hexagon {
    position: relative;
    width: 100px;
    height: 110px;
    margin: 4px 2px;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

#hexagonGrid .row .hexagon::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000000;
    opacity: 0.95;
    transition: 1s;
}

#hexagonGrid .row .hexagon::after {
    content: "";
    position: absolute;
    top: 4px;
    right: 4px;
    bottom: 4px;
    left: 4px;
    background: #141414;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

#hexagonGrid .row .hexagon:hover::before {
    background: #EB1E1E;
    opacity: 1;
    transition: 0s;
}

#hexagonGrid .row .hexagon:hover::after {
    background: #000000;
}

.news_image,
.article_image {
    overflow: hidden;
    object-position: center;
}

.news_image img,
.article_image img {
    max-height: 300px;
    object-fit: cover;
    min-height: 300px;
    width: 100%;
}

.article_image img {
    min-height: unset;
}

@media screen and (width < 500px) {
    .news_image img,
.article_image img {
    max-height: 200px;
    object-fit: cover;
    min-height: 200px;
    width: 100%;
}
}

.swiper-slide {
    overflow: hidden;
}

.news {
    align-items: center;
}

span.web-dev {
    display: block;
    margin: 10px 0;
}

.bubbles {
    opacity: 60%;
}




.clients_swiper .swiper-slide{

    padding: 20px 0px;
}
.clients_name {
    margin-top: 15px;
}

#menu-toggle {
    position: absolute;
    appearance: none;
    cursor: pointer;
    left: -100%;
    top: -100%;
}

#menu-toggle:checked~.menu {
    opacity: 1;
    visibility: visible;
}

#menu-toggle:checked~.menu nav ul .menu-item {
    opacity: 1;
    transform: translateY(5px);
}

#menu-toggle:checked~.menu-button .menu-icon {
    background: transparent;
}

#menu-toggle:checked~.menu-button .menu-icon:before {
    transform: rotate(-45deg);
    top: 0;
    background: #ffffff;
}

#menu-toggle:checked~.menu-button .menu-icon:after {
    transform: rotate(45deg);
    top: 0;
    background: #ffffff;
}

.menu {
    display: block;
    background: #DD1E4E;
    color: #FFF;
    text-align: center;
    position: absolute;
    z-index: 10;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    margin: auto;
    padding: 20px;
    transition: all 0.44s cubic-bezier(0.17, 0.04, 0.03, 0.94);
    overflow: hidden;
    box-sizing: border-box;
    visibility: hidden;
    opacity: 0;
}

.menu .menu-item {
    opacity: 0;
    transform: translateY(-5px);
    transition: all 0.44s cubic-bezier(0.17, 0.04, 0.03, 0.94);
    font-size: 22px;
    font-weight: 700;
}

.menu .menu-item:nth-child(0) {
    transition-delay: 0s;
}

.menu .menu-item:nth-child(1) {
    transition-delay: 0.05s;
}

.menu .menu-item:nth-child(2) {
    transition-delay: 0.1s;
}

.menu .menu-item:nth-child(3) {
    transition-delay: 0.15s;
}

.menu .menu-item:nth-child(4) {
    transition-delay: 0.2s;
}

.menu .menu-item:nth-child(5) {
    transition-delay: 0.25s;
}

.menu nav ul {
    color: white;
    list-style: none;
    display: flex;
    flex-direction: column;
    padding-top: 100px;
}

.menu nav ul .menu-item {
    margin-bottom: 1.5em;
}

.menu nav ul a {
    text-decoration: none;
    color: white;
}

.menu-button {
    cursor: pointer;
    display: inline-block;
    float: right;
    padding: 28px 20px;
    border-radius: 100%;
    position: relative;
    user-select: none;
    z-index: 300;
}

.menu-icon {
    background: #FFF;
    display: block;
    height: 3px;
    position: relative;
    transition: all 0.2s ease-out;
    -webkit-transition: all 0.15s ease-out;
    width: 30px;
}

.menu-icon:before,
.menu-icon:after {
    background: #FFF;
    content: "";
    display: block;
    height: 100%;
    position: absolute;
    transition: all 0.2s ease-out;
    -webkit-transition: all 0.2s ease-out;
    width: 100%;
}

.menu-icon:before {
    top: 8px;
}

.menu-icon:after {
    top: -8px;
}

@media screen and (width > 1440px) {
    #business,
    #articles,
    #experts-network,
    #videos{
        overflow: visible;
    }
}

.featured_in {
    margin-top: 20px;
}

.network_name {
    font-weight: 400;

}

.hero_section .subheading_grey {
    font-size: 18px;
}

header {
    padding-top: 50px !important;
    padding-bottom: 50px !important;
}

@media screen and (width < 768px)
{
    hero {
        padding-top: 50px !important;
    }
}

.contact_section {

    padding-bottom: 0px;
}

iframe {
    border: none !important;
}

.events_name {
    margin-bottom: 10px;
}



.events_description {
    color: #c0c0c0;
}

.contact_block h4 {
    font-weight: 400;
    line-height: 1.5;
}

#events .network_image {
    margin-top: 10px;
    margin-bottom: 10px;
}

#events .swiper-slide {
    padding-top: 20px;
    padding-bottom: 20px;
}


.clients_swiper_spacing .swiper-slide {
  padding: 20px 0;
}

.relative {
    position: relative;
}

.swiper-button-next, .swiper-button-prev {
    color : #fff;
    top: var(--swiper-navigation-top-offset, 110%);
}

.article_description {
    margin-bottom: 0px;
}

.excerpt {
    max-height: 90px;
    min-height: 90px;
    position: relative;
    overflow: hidden;
}

.article_description .content {
    max-height: 130px;
    overflow: hidden;
}

.excerpt .overlay { 
    position: absolute; 
    bottom: 0; 
    left: 0;
    width: 100%; 
    height: 100%;
    text-align: center; 
    margin: 0; 
    /* "transparent" only works here because == rgba(0,0,0,0) */
    background-image: linear-gradient(to bottom, transparent 10%, #292835 100%);
  }



.excerpt .read-more a {
    position: absolute;
    bottom: 0;
    left: 50%; 
    transform: translateX(-50%); 
    margin-bottom: 25px;
}

.content-wrapper .read_more_button {
    margin-top: 10px;
}

.swiper-scrollbar {
    bottom: var(--swiper-scrollbar-bottom, -40px) !important;
    height: 8px !important;
}

.swiper-scrollbar-drag {
    background: #fff;
}

.swiper-wrapper {
    cursor: grab;
}

/* Header */

#navbar{
    height: auto;
    width: auto;
}

.navbar{
    transition: background-color 0.3s ease;
    padding-left: 30px;
    padding-right: 30px

}

.navbar.scrolled{
    background-color: #131319;
}

.navbarH.remove-padding-top{
    transition: ease-in 0.3s;
    padding-top: 0 !important;
}

.navbar-fixed-top {
    position: sticky;
    position: -webkit-sticky;
    top: 0;
    z-index: 1000;
}

.navbarH{
    padding-top: 30px;
    transition: ease 0.3s;
}
/* @media (max-width:320px){
    .navbarH{
        padding-top:30px !important
    }
} */

.navbar-fixed-top.cbp-af-header-shrink {
	padding: 10px 0;
}


.navbar-wrapper {
    width: 100%;
    justify-content: space-between;
    align-items: center;
    max-width: 1440px;
    margin: 0 auto;
}


.hero_image {
    position: absolute;
    z-index: -10;
    right: -10px;
    bottom: -10px;
    width: 400px;
}

@media screen and (width < 1024px) {
    .hero_image {
        width: 200px;
    }
}

.content-wrapper {
    display: flex;
    flex-direction: column;
}

.content-wrapper h3 {
    min-height: 42px;
    max-height: 42px;
    overflow: hidden;
    margin-bottom: 15px;
}
#news .content-wrapper h3 {
    min-height: 65px;
    max-height: 65px;
}

.excerpt:hover .content{
 max-height: fit-content;
}

.expanded,
.expanded .content {
    max-height: fit-content;
    transition: all 0.3s ease-in-out;
}

.expanded .overlay {
    display: none;
}

#articles .swiper-wrapper {
    max-height: 490px;
}
#experts-network .swiper-wrapper,
#videos .swiper-wrapper {
    max-height: 540px;
}

#news .swiper-wrapper {
    max-height: 600px;
}

.expanded-overflow .content-wrapper {
    position: relative;
    z-index: 100;
    background-color: #292835;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.expanded-overflow ,
.expanded-overflow .article_image,
.expanded-overflow .content-wrapper,
.expanded-overflow  .news_image{
    overflow: visible;
}

.swiper-slide {
    z-index: 100;
}

.swiper-scrollbar {
    z-index: 0 !important;
}


@media screen and (width < 1440px) {

    .article_image img {
        max-height: 260px;
    }
}

@media screen and (width < 550px) {
    .content-wrapper h3 {
        max-height: 65px;
        min-height: 65px;
    }
}