

.dark-blue {
    color: #293764;
}

.light-blue {
    color: #1d77a9;
}

.lime {
    color: #8fc041;
}

.roboto-condensed-large {
    font-family: "Roboto Condensed", serif;
    font-optical-sizing: auto;
    font-weight: 900;
    font-style: normal;
}

.roboto-condensed-mid {
    font-family: "Roboto Condensed", serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
}

.roboto-condensed-small {
    font-family: "Roboto Condensed", serif;
    font-optical-sizing: auto;
    font-weight: 200;
    font-style: normal;
}


.cairo-small {
  font-family: "Cairo", sans-serif;
  font-optical-sizing: auto;
  font-weight: 80;
  font-style: normal;
  font-variation-settings:
    "slnt" 0;
}

#fade-helper{
    display: none;
    visibility: hidden;
    opacity: 0;
    position: fixed;
    margin: 0;
    padding: 0;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: white;
    z-index: 9999;
    transition: opacity 1.0s ease;
}

.pre-header {
    z-index: 2;
    top:0;
    left: 0;
    right: 0;
    position: fixed;
    width: 100%;
    height: 12px;
    background-color: white;
    display: flex;
    justify-content: end;
}

.language-selector {
    font-size: medium; 
    margin-top: 10px;
    text-align: end;
    margin-inline-end: 15px;
    width: 200px;
    cursor: pointer;
}

.language-selector span:hover{
    text-decoration: underline;

}

.selected-language{
    border-bottom: dashed 1px black;
}


.header {
    z-index: 1;
    top: 10px;
    left: 0;
    position: fixed;
    width: 100%;
    height: 80px;
    background-color: white;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
}



.nav {
    display: flex;
    flex-direction: row;
    justify-content: end;
    align-items: center;
    width: 50%;
}

@media (max-width: 900px) {
    .logo {
        background-image: url("https://edgeinfra.s3.eu-central-1.amazonaws.com/assets/logo-hr.png");
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
        width: 280px;
        height: 50px;
    }
    .nav{
        display: none;
        visibility: hidden;
    }
    .language-selector{
        display: none;
        visibility: hidden;
    }
    .nav-hamburger{
        display: block;
        visibility: visible;
    }
}

@media (min-width: 900px) {
    .logo {
        background-image: url("https://edgeinfra.s3.eu-central-1.amazonaws.com/assets/logo-hr.png");
        background-size: contain;
        background-repeat: no-repeat;
        width: 300px;
        height: 65px;
    }
    .nav-hamburger{
        display: none;
        visibility: hidden;
    }
}

.nav a{
    margin-inline: 10px;
    text-decoration: none; 
    color: inherit;
    white-space: nowrap;
    border-bottom: #8fc04100 solid 2px;
    transition: background-color 0.4s, color 0.4s, border-color 0.4s;
}

.nav a:hover {
    border-bottom: #8fc041 solid 2px;
}

.nav-active {
    border-bottom: #8fc041 solid 2px;
}


.nav-hamburger i{
    font-size: x-large;
}

.hamburger-div{
    /* display: none;
    visibility: hidden; */
    position: fixed;
    width: 70%;
    inset-inline-end: 0px;
    top: 0;
    z-index: 1000;
    height: 100%;
    background-color: #293764;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    
}

.hamburger-evil-twin{
    position: fixed;
    width: 30%;
    top: 0;
    height: 100%;
    inset-inline-start: 0px;
    z-index: 1000;
}

.hamburger-div a{
    margin-inline: 10px;
    text-decoration: none; 
    color: inherit;
    white-space: nowrap;
    border-bottom: #8fc04100 solid 2px;
}


.hamburger-language-exit{
    position: absolute;
    top: 20px;
    width: 70%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;

}

.hamburger-logo{
    background-image: url("https://edgeinfra.s3.eu-central-1.amazonaws.com/assets/logo-white.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 150px;
    height: 100px;
    opacity: 0.9;
}

.home-post{
    position: relative;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 600px;
    margin-top: 110px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.video-banner{
    
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 600px;
  object-fit: cover;
  z-index: -1;
}

.home-post-title{
    color: white;
    background-color: hsl(226, 42%, 28%, 0.7);
    /* background-color: hsl(83, 50%, 50%, 0.7); */
    width: fit-content;
    padding: 10px;
    padding-inline: 50px;
}

footer {
    width: 100%;
    height: 200px;
    position: static;
    bottom: 0;
    background-color: #293764;
    color: white;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    margin-top: 100px;
}

.footer-logo {
    width: 25%;
    text-align: center;
}

.footer-logo img{
    width: 80%;
    max-width: 100px;
    opacity: 0.8;
}

.footer-links{
    width: 35%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer-links-column{
    display: flex;
    flex-direction: column;
}

.footer-links-column a{
    font-size: small;
    text-decoration: none; 
    color: inherit;
}

.footer-copyright-section{
    width: 40%;
    text-align: end;
    padding-inline: 20px;
}

button{
    all: unset; 
    background-color: #8fc041; 
    color: white; 
    padding: 10px 20px; 
    border-radius: 5px;
    display: inline-block; 
    text-align: center;
    cursor: pointer;
    width: 100px;
    align-self: flex-end;
}

.button-light {
    background-color: rgba(255, 255, 255, 0); 
    border: 2px #8fc041 solid;
    border-radius: 15px;
    transition: all 0.3s;
}

.button-light:hover{
    background-color: #8fc041; 
    color: black;
    font-weight: normal;
}

.button-light-on-white {
    color: black;
    background-color: rgba(255, 255, 255, 0); 
    border: 2px #8fc041 solid;
    border-radius: 15px;
    transition: all 0.3s;
}

.button-light-on-white:hover{
    background-color: #8fc041; 
    color: white;
    font-weight: normal;
}


.footer-copyright-section p{
    font-size: smaller;
}

.word-from-section{
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    width: 100%;
    max-width: 850px;
    justify-self: center;
}

.word-from-title{
    width: 40%;
}

.word-from-title h2{
    text-align: center;
    padding-bottom: 5px;
    margin-right: 10px;
}

.side-border {
    border-inline-end: #8fc041 solid 3px;
}

.bottom-border {
    border-block-end: #8fc041 solid 3px;
}

@media (min-width: 900px) {
    .adaptive-border {
        border-inline-end: #8fc041 solid 3px;
    }
}
@media (max-width: 900px) {
    .adaptive-border {
        border-block-end: #8fc041 solid 3px;
    }
}


.word{
    width: 60%;
    max-width: 600px;
    margin-inline-start: 20px;
}

.word p{
    align-self: right;
    font-size: large;
}

.clients{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}



.clients-logos{
    width: 100%;
    max-width: 1000px;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    flex-wrap: wrap;
}

.clients-logos img{
    width: 100px;
    height: auto;
    margin: 5px;
}

.lime-underlined{
    text-decoration: underline;
    text-decoration-color: #8fc041; 
    text-decoration-thickness: 3px; 
    text-underline-offset: 10px; 
}

.underlined{
    text-decoration: underline;
    text-decoration-thickness: 2px; 
    text-underline-offset: 10px; 
}

hr{
    margin-block: 30px;
}



.subpage-banner {
    width: 100%;
    max-width: 500px;
    background-color: #293764;
    color: white;
    margin-top: 120px;
    margin-bottom: 10px;
    margin-inline-start: -15px;
    padding-inline-start: 15px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: end;
    height: 100px;
}

.subpage-banner-title {
    margin: 10px;
    margin-inline-end: 60px;
    font-size: xx-large;
}

.about-us-section {
    width: 90%;
    max-width: 800px;
    justify-self: center;
}

.about-us-map {
    width: 100%;
    height: 500px;
    background-image: url("https://edgeinfra.s3.eu-central-1.amazonaws.com/assets/map_blank.jpg");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    transition: all 1s;
    position: relative;
}


.about-us-map-circle-solid {
    position: absolute;
    width: 10px;
    height: 10px;
    background-color: #1d78a9b9; 
    border-radius: 50%;
    animation: pulse 2s infinite;
    cursor: pointer;
}

.about-us-map-circle {
    position: absolute;
    width: 10px;
    height: 10px;
    background-color: #1d78a9b9; 
    border-radius: 50%;
    cursor: pointer;
}

.jordan {
    top: 49%; left: 57%;
}

.iraq {
    top: 48%; left: 59%;
}

.ksa {
    top: 53%; left: 57.7%;
}

.qatar {
    top: 53%; left: 60%;
}

.libya {
    top: 52%; left: 51%;
}

.ethiopia {
    top: 58%; left: 55%;
}

.about-us-map-overlay-div {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: absolute;
    width: 200px;
    top: 10%; left: 10%;  
    padding: 20px;
    background-color: white;
    border: 4px #1d77a9 solid;
    border-radius: 10px;
    color: black;
    z-index: 100;
}
.about-us-map-overlay-div p{
    font-size: medium;
}

.about-us-map-overlay-div-header {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: start;
    gap: 20px;
}

.about-us-map-overlay-div-flag {
    background-size: contain;
    width: 50px; height: 50px;
}


@media (max-width: 900px) {
    .about-us-map {
        background-image: url("https://edgeinfra.s3.eu-central-1.amazonaws.com/assets/map_blank_cropped.jpg");
    }

    .about-us-map-circle {
        width: 20px;
        height: 20px;

    }

    .about-us-map-circle-solid {
        width: 20px;
        height: 20px;
    }


    .jordan {
        top: 38%; left: 55%;
    }

    .iraq {
        top: 37%; left: 62%;
    }

    .ksa {
        top: 43%; left: 60%;
    }

    .qatar {
        top: 44%; left: 66%;
    }

    .libya {
        top: 42%; left: 38%;
    }

    .ethiopia {
        top: 53%; left: 52%;
    }

}


@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }
    100% {
        transform: scale(2.5);
        opacity: 0;
    }
}

.about-us-acronym {
    justify-self: center;
}

.about-vmv {
    width: 100%;
    color: white;
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    margin-block: 80px
}

.about-vmv-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 250px;
    padding: 20px;
    background-color: #293764;
    margin: 10px;
    border-radius: 10px;
    transition: all 0.5s;
}

.about-vmv-column:hover {
    transform: scale(1.1);
}



.about-vmv-icon {
    width: 60px;
    height: 60px;
    background-size: contain;
}

.solutions-main-div{
    width: 100%;
    max-width: 1500px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    justify-self: center;
    flex-wrap: wrap;
}

.solutions-text{
    width: 400px;
    margin-inline: 20px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 100px;
    text-align: justify;
}

.solutions-main-listings{
    width: 700px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 100px;
}


.solution{
    width: 100%;
    height: 150px;
    transition: all 0.5s;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: start;
    margin-block-end: 50px;
    position: relative;
    cursor: pointer;
    border-radius: 10px;
}

@media (max-width: 900px) {
    .solution{
        width: 100%;
        align-items: start;
    }
}

@media (min-width: 900px) {
    .solution:hover{
        scale: 1.05;
    }
}


.solution-selected{
    height: 400px !important;
    scale: 1.0 !important;
}

.alt{
    justify-content: end;
}

.solution-title{
    background-color: #293764c0;
    width: 75%;
    height: 150px;
    color: white;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
}


.solution-details{
    background-color: #1d77a9;
    padding: 10px;
    color: white;
    position: absolute;
    inset-inline-end: 0px;
    bottom: 30px;
    width: 75%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    visibility: hidden;
}

.smaller-button{
    width: 60px;
}

.sp-dt-alt{
    inset-inline-start: 0px;
}

.red-border {
    border: 2px solid red;
}