@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500&display=swap');

@font-face {
    font-family: boxicons;
    font-weight: 400;
    font-style: normal;
    src: url(../fonts/boxicons.eot);
    src: url(../fonts/boxicons.eot) format('embedded-opentype'), url(../fonts/boxicons.woff2) format('woff2'), url(../fonts/boxicons.woff) format('woff'), url(../fonts/boxicons.ttf) format('truetype'), url(../fonts/boxicons.svg?#boxicons) format('svg')
}

@font-face {technology_prg
    font-family: 'Cairo';
    src: url('fonts/Cairo-Bold.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Cairo';
    src: url('fonts/Cairo-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

:root {
    --primary-color: #674796;
    --secondry-color: #B61A82;
    --white-color: #ffffff;
    --black-color: #402053;
}

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

body {
    font-size: 2.125rem;
    font-family: 'Cairo', sans-serif;
}

ul {
    list-style: none;
}

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

img {
    max-width: 100%;
}

h1 {
    color: var(--white-color);
    font-weight: 500;
    font-size: 6rem;
    font-family: 'Cairo', sans-serif;
    line-height: 130%;
    width: 60%;
    padding-right: 3.75rem;
}

h2 {
    color: var(--black-color);
    font-size: 3.75rem;
}

h2 i {
    position: relative;
    top: 10px;
}

h3 {
    font-size: 6.25rem;
    color: var(--white-color);
}

.bx {
    font-family: boxicons !important;
    font-weight: 400;
    font-style: normal;
    font-variant: normal;
    line-height: 1;
    text-rendering: auto;
    display: inline-block;
    text-transform: none;
    speak: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

#wrapper {
    position: relative;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    width: 100%;
    height: auto;
    margin: 0 auto;
    transition: all 0.35s ease;
    padding-top: 40px;
}

.header.on-scroll {
    background: var(--white-color);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
        0 2px 4px -1px rgba(0, 0, 0, 0.06);
    padding-top: 16px;
}

.header.on-scroll .burger-line {
    background-color: var(--black-color);
}

.burger.is-active .burger-line {
    background-color: var(--white-color);
}

.header.on-scroll .is-active .menu-link {
    color: var(--white-color);
}

.navbar {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    column-gap: 1.25rem;
    width: 100%;
    margin: 0 auto;
    padding: 0 3.75rem;
    height: 6.375rem;
}

.menu {
    position: fixed;
    top: -100%;
    left: 0;
    width: 100%;
    height: auto;
    padding: 4rem 0 3rem;
    overflow: hidden;
    background-color: var(--primary-color);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
        0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease-in-out;
}

.menu.is-active {
    top: 0;
    width: 100%;
    height: auto;
}

.menu-inner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    row-gap: 1.25rem;
}

.menu-link {
    font-family: inherit;
    font-size: 1.375rem;
    font-weight: 700;
    line-height: 1.5;
    color: var(--white-color);
    transition: all 0.3s ease;
    font-family: 'Cairo', sans-serif;
}

.menu-link:hover {
    color: var(--secondry-color);
}

.header.on-scroll .menu-link {
    color: var(--black-color);
}

.header.on-scroll .menu-link:hover {
    color: var(--secondry-color);
}


@media only screen and (min-width: 48rem) {
    .menu {
        position: relative;
        top: -9px;
        width: auto;
        height: auto;
        padding: 0rem;
        margin-right: auto;
        background: none;
        box-shadow: none;
    }

    .menu-inner {
        display: flex;
        flex-direction: row;
        column-gap: 2.5rem;
        margin: 0 auto;
    }

    .menu-link {
        text-transform: capitalize;
    }

}

.burger {
    position: relative;
    display: block;
    cursor: pointer;
    user-select: none;
    order: -1;
    z-index: 10;
    width: 1.6rem;
    height: 1.15rem;
    border: none;
    outline: none;
    background: none;
    visibility: visible;
    transform: rotate(0deg);
    transition: 0.35s ease;
}

@media only screen and (min-width: 48rem) {
    .burger {
        display: none;
        visibility: hidden;
    }
}

.burger-line {
    position: absolute;
    display: block;
    left: 0;
    width: 100%;
    height: 1.75px;
    border: none;
    outline: none;
    opacity: 1;
    transform: rotate(0deg);
    background-color: var(--white-color);
    transition: 0.25s ease-in-out;
}

.burger-line:nth-child(1) {
    top: 0px;
}

.burger-line:nth-child(2) {
    top: 0.5rem;
    width: 70%;
}

.burger-line:nth-child(3) {
    top: 1rem;
}

.burger.is-active .burger-line:nth-child(1) {
    top: 0.5rem;
    transform: rotate(135deg);
}

.burger.is-active .burger-line:nth-child(2) {
    opacity: 0;
    visibility: hidden;
}

.burger.is-active .burger-line:nth-child(3) {
    top: 0.5rem;
    transform: rotate(-135deg);
}

.banner {
    background: url(../images/hero-pic.png) no-repeat center top;
    height: 100vh;
    background-size: cover;
}

.banner-column {
    position: relative;
    display: grid;
    align-items: center;
    row-gap: 3rem;
}

@media only screen and (min-width: 48rem) {
    .banner-column {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        justify-content: center;
    }
}

@media only screen and (min-width: 64rem) {
    .banner-column {
        grid-template-columns: 1fr max-content;
    }
}

.banner-image {
    display: block;
    max-width: 18rem;
    height: auto;
    margin-top: 2rem;
    object-fit: cover;
    justify-self: center;
}

@media only screen and (min-width: 48rem) {
    .banner-image {
        order: 1;
        max-width: 20rem;
        height: auto;
    }
}

@media only screen and (min-width: 64rem) {
    .banner-image {
        max-width: 25rem;
        height: auto;
        margin-right: 5rem;
    }
}

.banner-inner {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    row-gap: 1.75rem;
    position: absolute;
    top: 32vh;
    width: 100%;
}

.banner-links {
    position: absolute;
    top: 36vh;
    left: 3.75rem;
    display: grid;
    justify-items: center;
    row-gap: 0.5rem;
}

@media only screen and (min-width: 64rem) {
    .banner-links {
        opacity: 1;
        visibility: visible;
    }
}

.banner-links>* {
    font-size: 2rem;
    line-height: 1.25;
    color: var(--white-color);
}

.syotimer {
    text-align: center;
    margin: 30px auto 0;
    padding: 0 0 10px;
}

.syotimer-cell {
    display: inline-block;
    margin: 0 1.5rem;
    width: 200px;
    background: rgba(208, 89, 157, .2);
    border-width: 1px;
    border-style: solid;
    border-image: linear-gradient(to bottom, #B61A82, #674796) 1;
    padding: 15px 0;
}

.syotimer-cell__value {
    font-size: 5rem;
    color: var(--white-color);
    height: 81px;
    line-height: 81px;
    margin: 0 0 5px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
}

.syotimer-cell__unit {
    color: var(--white-color);
    font-weight: 500;
    font-family: 'Cairo', sans-serif;
    font-size: 1.5rem;
}

.technology {
    padding: 5.375rem 0 4.75rem 0;
}

.technology_row {
    display: flex;
}

.technology_shape {
    width: 30%;
    text-align: left;
}

.technology_info {
    width: 70%;
    padding-right: 3.75rem;
}

.primary_text_color {
    color: var(--primary-color);
}

.technology_prg {
    font-size: 17px;
    padding: 50px 0 0 0;
    font-weight: 600;
    font-family: 'Cairo', sans-serif;
    text-align: justify;
}

.gradient_bg {
    background: url(../images/gradient-bg.png) no-repeat center top;
    background-size: cover;
    text-align: center;
    padding: 3.75rem 0 2.5rem 0;
}

.gradient_bg h3 {
    max-width: 400px;
    margin: 0 auto;
    line-height: 130%;
}

.agenda {
    padding: 5rem 0;
    display: flex;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
}

.lb-v-dummy {
    width: 100%;
    display: block;
    height: 1px;
}

.lb-h-dummy {
    height: 100%;
    display: block;
    width: 1px;
}

.lb-clear {
    clear: both;
}

.lb-wrap {
    z-index: 0;
    overflow: auto;
    position: relative;
    box-sizing: content-box;
}

.lb-v-scrollbar {
    z-index: 1;
    position: absolute;
    left: 2px;
    top: 2px;
    width: 12px;
    height: 100%;
    background: #F5F5F5;
    border-radius: 12px;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
}

.lb-h-scrollbar {
    z-index: 1;
    position: absolute;
    bottom: 2px;
    left: 2px;
    width: 100%;
    height: 7px;
    background: #F5F5F5;
    border-radius: 7px;
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
}

.lb-v-scrollbar-slider {
    position: absolute;
    width: 12px;
    height: 50px;
    left: 0;
    top: 0;
    background-image: linear-gradient(#B61A82, #674796);
    border-radius: 12px;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
}

.lb-h-scrollbar-slider {
    position: absolute;
    height: 7px;
    width: 50px;
    left: 0;
    top: 0;
    background: #000;
    border-radius: 12px;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
}

.lb-v-scrollbar {
    background: #F5F5F5;
}

.box {
    color: #222;
    background: white;
    padding: 6px 40px 0 40px;
    width: 100%;
    height: 600px;
    overflow: auto;
    float: left;
}

.ahenda_hd {
    text-align: center;
}

.agenda_loop {
    box-shadow: 4px 0px 4px rgba(0, 0, 0, 0.25), 0px 4px 4px rgba(0, 0, 0, 0.25);
    margin: 0 0 12px 0;
    padding: 2rem 7.25rem;
    display: flex;
    justify-content: space-between;
}

.agenda_loop span {
    background: var(--secondry-color);
    color: var(--white-color);
    font-size: 2.5rem;
    line-height: 200%;
    padding: 5px 32px 0 32px;
    border-radius: 100px;
    white-space: nowrap;
}

.agenda_loop p {
    font-size: 30px;
    font-weight: bold;
    color: var(--black-color);
}

.client_logo {
    width: 100%;
    background: #473170;
    display: flex;
    padding: 2.375rem 0;
}

.white_text {
    color: var(--white-color);
}

.client_logo_row {
    width: 100%;
}

.client_logo_row h2 {
    padding-right: 3.75rem;
}

.logo_slider_wrap {
    width: 100%;
}

.logo_btn_row {
    text-align: center;
}

.logo_btn_row a {
    background: var(--secondry-color);
    color: var(--white-color);
    font-size: 2rem;
    padding: 10px 80px 12px 80px;
    border-radius: 60px;
}

.logo_slider_outer {
    position: relative;
    padding: 5rem 0;
}

.owl-carousel, .owl-carousel .owl-item {
    -webkit-tap-highlight-color: transparent;
    position: relative
}

.owl-carousel {
    display: none;
    width: 100%;
    z-index: 1
}

.owl-carousel .owl-stage {
    position: relative;
    -ms-touch-action: pan-Y;
    touch-action: manipulation;
    -moz-backface-visibility: hidden
}

.owl-carousel .owl-stage:after {
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0
}

.owl-carousel .owl-stage-outer {
    position: relative;
    overflow: hidden;
    -webkit-transform: translate3d(0, 0, 0)
}

.owl-carousel .owl-item, .owl-carousel .owl-wrapper {
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0)
}

.owl-carousel .owl-item {
    min-height: 1px;
    float: left;
    -webkit-backface-visibility: hidden;
    -webkit-touch-callout: none
}

.owl-carousel .owl-item img {
    display: block;
    width: 100%
}

.owl-carousel .owl-dots.disabled, .owl-carousel .owl-nav.disabled {
    display: none
}

.no-js .owl-carousel, .owl-carousel.owl-loaded {
    display: block
}

.owl-carousel .owl-dot, .owl-carousel .owl-nav .owl-next, .owl-carousel .owl-nav .owl-prev {
    cursor: pointer;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.owl-carousel .owl-nav button.owl-next, .owl-carousel .owl-nav button.owl-prev, .owl-carousel button.owl-dot {
    background: 0 0;
    color: inherit;
    border: none;
    padding: 0 !important;
    font: inherit
}

.owl-carousel.owl-loading {
    opacity: 0;
    display: block
}

.owl-carousel.owl-hidden {
    opacity: 0
}

.owl-carousel.owl-refresh .owl-item {
    visibility: hidden
}

.owl-carousel.owl-drag .owl-item {
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.owl-carousel.owl-grab {
    cursor: move;
    cursor: grab
}

.owl-carousel.owl-rtl {
    direction: rtl
}

.owl-carousel.owl-rtl .owl-item {
    float: right
}

.owl-carousel .animated {
    animation-duration: 1s;
    animation-fill-mode: both
}

.owl-carousel .owl-animated-in {
    z-index: 0
}

.owl-carousel .owl-animated-out {
    z-index: 1
}

.owl-carousel .fadeOut {
    animation-name: fadeOut
}

@keyframes fadeOut {
    0% {
        opacity: 1
    }

    100% {
        opacity: 0
    }
}

.owl-height {
    transition: height .5s ease-in-out
}

.owl-carousel .owl-item .owl-lazy {
    opacity: 0;
    transition: opacity .4s ease
}

.owl-carousel .owl-item .owl-lazy:not([src]), .owl-carousel .owl-item .owl-lazy[src^=""] {
    max-height: 0
}

.owl-carousel .owl-item img.owl-lazy {
    transform-style: preserve-3d
}

.owl-carousel .owl-video-wrapper {
    position: relative;
    height: 100%;
    background: #000
}

.owl-theme .owl-dots, .owl-theme .owl-nav {
    text-align: center;
    -webkit-tap-highlight-color: transparent
}

.owl-theme .owl-nav {
    margin-top: 10px
}

.owl-theme .owl-nav [class*=owl-] {
    color: #FFF;
    font-size: 14px;
    margin: 5px;
    padding: 4px 7px;
    background: #D6D6D6;
    display: inline-block;
    cursor: pointer;
    border-radius: 3px
}

.owl-theme .owl-nav [class*=owl-]:hover {
    background: #869791;
    color: #FFF;
    text-decoration: none
}

.owl-theme .owl-nav .disabled {
    opacity: .5;
    cursor: default
}

.owl-theme .owl-nav.disabled+.owl-dots {
    margin-top: 10px
}

.owl-theme .owl-dots .owl-dot {
    display: inline-block;
    zoom: 1
}

.owl-theme .owl-dots .owl-dot span {
    width: 10px;
    height: 10px;
    margin: 5px 7px;
    background: rgba(255, 255, 255, .4);
    display: block;
    -webkit-backface-visibility: visible;
    transition: opacity .2s ease;
    border-radius: 30px
}

.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
    background: #B61A82;
}

.diamond_slider .owl-carousel.owl-rtl .owl-item .item {
    padding: 0 30px;
}

.logo_slider_outer.golden_slider {
    padding: 5rem 6rem;
}

.golden_slider .owl-carousel.owl-rtl .owl-item .item {
    padding: 0 40px;
}

.logo_slider_outer.alfuji_slider {
    padding: 5rem 12rem;
}

.alfuji_slider .owl-carousel.owl-rtl .owl-item .item {
    padding: 0 40px;
}

.logo_slider_outer.albronzi_slider {
    padding: 5rem 12rem;
}

.albronzi_slider .owl-carousel.owl-rtl .owl-item .item {
    padding: 0 40px;
}

.contact_wrap {
    padding: 5rem 0;
}

.contact_outer {
    width: 100%;
    display: flex;
    align-items: center;
}

.location_map {
    width: 60%;
    padding-left: 2.5rem;
}

.contact_details {
    width: 40%;
}

.secondry_text_color {
    color: var(--secondry-color);
}

.contact_list {
    padding: 2.5rem 0 0 0;
}

.contact_list li {
    color: #9B9797;
    font-size: 1.75rem;
    padding: 1.125rem 0;
}

.contact_list li span {
    position: relative;
    top: -3px;
    right: 8px;
}

footer {
    background: #5E3C84;
    padding: 2.5rem 3.75rem 1.875rem 3.75rem;
}

.footer_wrap {
    display: flex;
}

.footer_left_col {
    width: 60%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.footer_right_col {
    width: 40%;
}

.copyright {
    padding-left: 1.25rem;
}

.copyright p {
    color: var(--white-color);
    font-size: 1.75rem;
    text-align: left;
}

@media screen and (max-width: 1500px) {
    h1 {
        font-size: 4.625rem;
    }

    .evn_tag img {
        width: 450px;
    }

    .logo img {
        width: 80px;
    }

    h2 {
        font-size: 3.375rem;
    }

    .technology_prg {
        font-size: 2.25rem;
    }

    h3 {
        font-size: 5.625rem;
    }

    .container {
        max-width: 100%;
        padding: 0 1.5rem;
    }

    .agenda_loop span {
        font-size: 1.75rem;
    }

    .agenda_loop p {
        font-size: 1.75rem;
    }

    .footer_right_col img {
        width: 300px;
    }

    .copyright p {
        font-size: 1.5rem;
    }

    .footer_left_col img {
        width: 100px;
    }

    .contact_list li {
        font-size: 1.5rem;
    }

    .logo_slider_wrap {
        padding: 0 6rem;
    }

    .gradient_bg h3 img {
        max-width: 300px;
    }

}

@media screen and (max-width: 1265px) {

    .agenda_loop span {
        font-size: 1.5rem;
    }

    .evn_tag img {
        width: 370px;
    }

    .logo img {
        width: 64px;
    }

    .menu-link {
        font-size: 1.25rem;
    }

    h1 {
        font-size: 4rem;
    }

    h2 {
        font-size: 3.125rem;
    }

    .technology_prg {
        font-size: 2rem;
    }

    h3 {
        font-size: 5rem;
    }

    .footer_right_col img {
        width: 250px;
    }

    .footer_left_col img {
        width: 70px;
    }

    .copyright p {
        font-size: 1.25rem;
    }

    .contact_list li {
        font-size: 1.25rem;
    }

    .gradient_bg h3 img {
        max-width: 240px;
    }

}

@media screen and (max-width: 1165px) {
    .logo_slider_wrap {
        padding: 0 2.5rem;
    }

    .logo_slider_outer.albronzi_slider {
        padding: 5rem 10rem;
    }

    .logo_slider_outer.alfuji_slider {
        padding: 5rem 10rem;
    }

    .logo_slider_outer.golden_slider {
        padding: 5rem 4.375rem;
    }
}

@media screen and (max-width: 1104px) {
    .evn_tag img {
        width: 300px;
    }

    .logo img {
        width: 54px;
    }

    .navbar {
        padding: 0 1.875rem;
    }

    .banner-links {
        left: 1.875rem;
    }

    h1 {
        padding-right: 1.875rem;
    }

    .technology_info {
        padding-right: 1.875rem;
    }

    .container {
        padding: 0 1.875rem;
    }

    .client_logo_row h2 {
        padding-right: 1.875rem;
    }

    .logo_slider_wrap {
        padding: 0 1.875rem;
    }

    footer {
        padding: 2.5rem 1.875rem 1.875rem 1.875rem;
    }

    .logo_slider_outer.albronzi_slider {
        padding: 5rem 8.75rem;
    }

    .logo_slider_outer.alfuji_slider {
        padding: 5rem 8.75rem;
    }

    .logo_slider_outer.golden_slider {
        padding: 5rem 3.75rem;
    }

    .syotimer-cell__value {
        font-size: 3.75rem;
    }

    .syotimer-cell {
        width: 170px;
        margin: 0 1.125rem;
    }
}

@media screen and (max-width: 1024px) {
    h1 {
        font-size: 3.375rem;
    }

    h2 {
        font-size: 2.5rem;
    }

    .technology_prg {
        font-size: 1.75rem;
    }

    h3 {
        font-size: 4.375rem;
    }

    .agenda_loop p {
        font-size: 1.5rem;
    }

    .agenda_loop span {
        font-size: 1.375rem;
    }

    .agenda_loop {
        padding: 2rem 5rem;
        width: 100%;
    }

    .logo_btn_row a {
        font-size: 1.75rem;
    }
}

@media screen and (max-width: 999px) {
    .contact_outer {
        flex-direction: column;
    }

    .location_map {
        width: 100%;
        padding-left: 0;
    }

    .contact_details {
        width: 100%;
    }

    .footer_wrap {
        flex-direction: column;
    }

    .footer_right_col {
        width: 100%;
        text-align: left;
        order: 2;
        margin-top: 30px;
        text-align: center;
    }

    .footer_left_col {
        width: 100%;
        order: 1;
    }

    .agenda_loop {
        padding: 2rem 2.5rem;
    }
}

@media screen and (max-width: 960px) {
    .menu-inner {
        column-gap: 1.5rem;
    }
}

@media screen and (max-width: 905px) {
    .evn_tag img {
        width: 250px;
    }

    .logo img {
        width: 50px;
    }
}

@media screen and (max-width: 856px) {
    .logo_slider_outer.albronzi_slider {
        padding: 5rem 6.25rem;
    }

    .logo_slider_outer.alfuji_slider {
        padding: 5rem 6.25rem;
    }

    .syotimer-cell__value {
        font-size: 2.5rem;
        height: 61px;
        line-height: 61px;
    }

    .syotimer-cell__unit {
        font-size: 1.375rem;
    }

    .syotimer-cell {
        width: 150px;
        margin: 0 0.75rem;
    }

    .gradient_bg h3 img {
        max-width: 200px;
    }
}

@media screen and (max-width: 848px) {
    .evn_tag img {
        width: 220px;
    }

    .logo img {
        width: 46px;
    }
}

@media screen and (max-width: 818px) {
    .menu-link {
        font-size: 1.125rem;
    }

    .logo_slider_outer.albronzi_slider {
        padding: 5rem 5rem;
    }

    .logo_slider_outer.alfuji_slider {
        padding: 5rem 5rem;
    }

    .logo_slider_outer.golden_slider {
        padding: 5rem 2.5rem;
    }

    .navbar {
        padding: 0 1.25rem;
    }

    .banner-links {
        left: 1.25rem;
    }

    h1 {
        padding-right: 1.25rem;
    }

    .technology_info {
        padding-right: 1.25rem;
    }

    .container {
        padding: 0 1.25rem;
    }

    .client_logo_row h2 {
        padding-right: 1.25rem;
    }

    footer {
        padding: 1.625rem 1.25rem 1.625rem 1.25rem;
    }

    .footer_right_col img {
        width: 200px;
    }

    .footer_left_col img {
        width: 50px;
    }

    .copyright p {
        font-size: 1.125rem;
    }
}

@media screen and (max-width: 767px) {
    .navbar {
        height: 3.375rem;
    }

    h1 {
        width: 90%;
    }

    .logo_slider_outer.albronzi_slider {
        padding: 5rem 2.5rem;
    }

    .logo_slider_outer.alfuji_slider {
        padding: 5rem 2.5rem;
    }

    .logo_slider_outer.golden_slider {
        padding: 5rem 1.25rem;
    }

    .syotimer-cell {
        width: 120px;
        margin: 0 0.625rem;
    }

}

@media screen and (max-width: 650px) {
    .box {
        width: 100% !important;
    }

    .lb-wrap {
        width: 86% !important;
        padding: 6px 20px 0px 60px !important;
    }

    .agenda_loop {
        flex-direction: column;
    }

    .container {
        width: 100%;
    }

    .agenda_loop span {
        width: fit-content;
    }

    .technology_shape {
        display: none;
    }

    .technology_info {
        padding-right: 1.25rem;
        padding-left: 1.25rem;
        width: 100%;
    }

    .syotimer-cell__value {
        font-size: 1.375rem;
        height: 21px;
        line-height: 21px;
    }

    .syotimer-cell {
        width: 100px;
        margin: 0 0.5rem;
    }

    .syotimer-cell__unit {
        font-size: 1.25rem;
    }

}

@media screen and (max-width: 518px) {
    .syotimer-cell__value {
        font-size: 1.25rem;
        height: 21px;
        line-height: 21px;
    }

    .syotimer-cell {
        width: 90px;
        margin: 0 0.375rem;
    }

    .gradient_bg h3 img {
        max-width: 180px;
    }

}

@media screen and (max-width: 433px) {
    .logo_slider_outer.albronzi_slider {
        padding: 5rem 1.25rem;
    }

    h1 {
        font-size: 3.125rem;
    }

    .banner-links {
        left: 0.625rem;
    }

    .syotimer-cell {
        width: 70px;
        margin: 0 0.25rem;
    }

    .syotimer-cell__value {
        font-size: 1rem;
        height: 11px;
        line-height: 11px;
    }
}

@media screen and (max-width: 394px) {
    .logo_slider_outer.albronzi_slider {
        padding: 5rem 0.625rem;
    }

    h1 {
        font-size: 2.75rem;
    }

    .gradient_bg h3 img {
        max-width: 160px;
    }

    .banner-links {
        top: 26vh;
    }
}


.bxl-instagram:before {
    content: "\e942";
}

.bxl-linkedin-square:before {
    content: "\e94e";
}

.bxl-facebook-circle:before {
    content: "\e930";
}

.bxl-twitter:before {
    content: "\e982";
}

.bx-chevron-left:before {
    content: "\ea4d";
}

.bxs-envelope:before {
    content: "\ed9f";
}

.bxs-been-here:before {
    content: "\ecc7";
}

.bx-mobile:before {
    content: "\eb8f";
}