@import url('https://fonts.googleapis.com/css?family=Comfortaa&display=swap');

* {
    font-family: 'Comfortaa', cursive!important;
}
 

body {
  background-color: #121212;
  color: #fff;
}

.fas {
    font-family:'Font Awesome 5 Free'!important;
}
.navbar {
  background-color: #000;
}

.navbar-brand {
  font-weight: bold;
  font-size: 1.5rem;
}

.teamPhoto .img-fluid {
    max-width: 350px;
    height: auto;
    width: 100%;
}

.llogo {
    width: -webkit-fill-available;
    max-width: 400px;
}

/* Main page */

.hero {
  background: url('/img/hero.jpg') center/cover no-repeat;
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero h1 {
    text-shadow: 0 0 10px black;
}

.heroVideo {
  position: relative;
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden; /* Ensures the video doesn't overflow */
}

.video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensures the video covers the entire hero section */
  z-index: -1; /* Places the video behind the content */
}

.heroVideo h1 {
  text-shadow: 0 0 10px black;
}

@media only screen and (max-width: 767px) {
    .hero2 {
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        background: url(/img/earth-above.jpg) center no-repeat;
        background-repeat: no-repeat;
        /*background-attachment: fixed;*/
        /*background-position: 0px -190px;*/
        height: 35vh;
    }
    
    .hero2 h1 {
        font-size: 1.4rem;
        font-weight: bold;
        text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
    }
}

@media only screen and (min-width: 768px) {
    .hero2 {
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        background: url(/img/earth-above.jpg) center / cover no-repeat;
        background-repeat: no-repeat;
        background-attachment: fixed;
        height: 80vh;
        background-position: 50% -10%;
    }
    
    .hero2 h1 {
        text-shadow: 0 0 10px black;
        font-size: 2.5rem;
    }
}


/*.hero2 {*/
/*  background: url('/img/vision.png') center/cover no-repeat;*/
/*  background-repeat: no-repeat;*/
/*  background-attachment: fixed;*/
/*  background-position: 0% 0%;*/
/*    height: 35vh;*/
/*}*/
    
img.img-fluid.mb-3 {
    border-radius: 5px;
    max-width: 270px;
}

/*.about-section img.img-fluid.mb-3 {*/
/*    max-width: 270px;*/
/*    background: black;*/
/*    height: 200px;*/
/*    margin-left: auto;*/
/*    margin-right: auto;*/
/*}*/

.about-section img.img-fluid.mb-3 {
    max-width: 370px;
    background: black;
    height: 200px;
    margin-left: auto;
    margin-right: auto;
}

img.img-fluid {
    border-radius: 5px;
}

.hero h1 {
  font-size: 2.5rem;
}

.services {
  padding: 100px 0;
  background: linear-gradient(0deg, rgba(18,18,18,1) 80%, rgba(0,0,0,1) 100%);
}

.services h2 {
  margin-bottom: 30px;
}

.case-card {
    background: #1c1c1c;
    border: none;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    margin-bottom: 20px;
}

.case-card:hover {
    box-shadow: 0 0 16px black;
}

.service-card {
    background: #1c1c1c;
    border: none;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    margin-bottom: 20px;
    max-width: 400px;
    justify-content: center;
    display: flex;
    flex-direction: column;
    align-content: center;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
}

.service-card:hover {
    box-shadow: 0 0 16px black;
}

.clients {
    padding: 100px 0;
    display: flex;
    align-content: center;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    flex-direction: column;
}

.client-logo {
    /*background: #1c1c1c;*/
    background: #b1b1b1;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    margin: auto;
    max-width: 300px;
    margin-bottom: 10px;
}

.cta {
  background-color: #1c1c1c;
  text-align: center;
  padding: 50px 20px;
  margin-top: 0px;
  border-radius: 8px;
}

.btn-primary {
    background-color: #0056b3;
    border-color: #0056b3;
}

.btn-primary:hover {
    background-color: #004494;
    border-color: #004494;
}

.btn:focus-visible {
    background-color: #004494;
    border-color: #004494;
    outline: 0;
    box-shadow: var(--bs-btn-focus-box-shadow);
}

a {
    color: rgb(255 255 255);
    text-decoration: none;
}
a:hover {
    color: rgb(223 246 255);
    text-decoration: none;
}


/* Services Page */
.service-section {
  padding: 50px 0;
}

.service-section h2 {
  margin-bottom: 30px;
  font-size: 2rem;
  font-weight: bold;
}

.service-point {
  margin-bottom: 20px;
  background: #1c1c1c;
  border-radius: 8px;
  padding: 20px;
}

.service-point h5 {
  font-weight: bold;
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.service-point p {
  margin-bottom: 0;
}

.photoClick {
    width: 39%;
    border-radius:10px;
    padding:5px;
}

.photoClick:hover {
    width: 40%;
}

/*.teamPhoto {*/
/*    border-radius:10px;*/
/*    padding:5px;*/
/*    margin-bottom:20px;*/
/*}*/

.teamPhoto {
    border-radius: 10px !important;
    padding: 10px;
    margin-bottom: 20px;
    /*box-shadow: 0 0 20px 0px #0000006b;*/
    box-shadow: -9px 0px 6px 0px #0000006b;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
}

.team {
    background-color: #1c1c1c;
    text-align: center;
    padding: 100px 20px;
    /*margin-top: 30px;*/
    border-radius: 8px;
}

/* About Us */
.about-section {
    padding: 110px 20px;
}

.about-section h2 {
    color: #007bff;
    margin-bottom: 30px;
}

.about-section p {
    line-height: 1.8;
}

.our-vision {
    background: url('/img/earth-max-3.png') center/cover no-repeat;
    /*background: url('https://blogs.microsoft.com/wp-content/uploads/prod/2020/10/HERO-ART-microsoft_azure_1920x1000_nologo.jpg') center/cover no-repeat;*/
    color: #fff;
    text-align: center;
    padding: 100px 20px;
      background-repeat: no-repeat;
      background-attachment: fixed;
      background-position: 50% 0%;
}

.our-vision h2 {
    font-size: 2.5rem;
    font-weight: bold;
    text-shadow: 2px 2px 15px rgba(0, 0, 0, 0.8);
}

/*.our-vision p {*/
/*    max-width: 800px;*/
/*    margin: 20px auto;*/
/*    line-height: 1.8;*/
/*    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.7);*/
/*}*/

.our-vision p {
    max-width: fit-content;
    margin: 20px auto;
    line-height: 1.8;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.7);
    background: #1c1c1c8f;
    /* box-shadow: inset 0px 0 9px 0px black; */
    padding: 10px;
    border-radius: 10px;
}

/* Cases */
.section-title {
    color: #fff;
    font-weight: bold;
    text-align: center;
    margin: 0px;
}

.content-section {
    padding: 100px 0px;
}

.content-section p {
    line-height: 1.8;
    text-align: justify;
}

.content-section h5 {
    font-weight: bold;
    color: #fff;
    margin-top: 20px;
}

.icon-box {
    text-align: center;
    padding: 20px;
    border-radius: 8px;
    background-color: #282828;
    margin: 20px 0;
}

.icon-box i {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 10px;
}

.results {
    background-color: #333;
    padding: 110px 20px;
    text-align: center;
}

.results h2 {
    margin-bottom: 20px;
}
        
.caseImg {
    max-width: 400px;
    border-radius: 20px;
    width: -webkit-fill-available;
}

.caseImgInList {
    max-width: 200px;
    border-radius: 10px;
    width: -webkit-fill-available;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    margin-left: auto;
    margin-right: auto;
    margin-top: 20px;
    margin-bottom: 20px;
}

.results p {
    text-align: justify;
}

.caseImageInList {
    width: 200px;
    height: auto;
    margin-left: auto;
    margin-right: 30px;
    border-radius: 20px !important;
}

@media only screen and (min-width: 768px) {
    .container-fluid p {
        /*padding-left: 70px;*/
        /*padding-right: 70px;*/
    }
}

.btn-primary {
    border-color: #ffffff;
    color: #ffffff;
    background: none;
    border-radius: 0px;
    margin-top: 0px!important;
}

.btn-primary:hover {
    border-color: #ffffff;
    color: #000000!important;
    background: #ffffff;
    border-radius:0px;
}

/* network */
.network-section {
    color: white;
    text-align: center;
    min-height: 70vh;
    margin: auto;
    display: flex;
    flex-direction: row;
    align-content: center;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    padding: 20px;
}

span.caseLabel {
    background-color: #3c577a9e;
    border-radius: 20px;
    padding-left: 14px;
    padding-right: 14px;
    padding-top: 3px;
    padding-bottom: 3px;
}