/*  import google fonts */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    font-family: "Open Sans", sans-serif;
}

*, *::before, *::after {
  box-sizing: border-box;
}

 @font-face {
    font-family: 'Ogirema';
    font-style: normal;
    font-weight: normal;
    src: local('Ogirema'), url('../../lib/Fonts/Ogirema.woff') format('woff');
}

html{
    scroll-behavior: smooth;
}

a:focus, a:hover {
  text-decoration: none;
}
.navbarWeb .menu li a{
    color: #1189CE;
}
/* custom scroll bar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
    background: #888;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* all similar content styling codes */
section{
    padding: 100px 0;
}

.max-width{
    max-width: 1300px;
    padding: 0 80px;
    margin: auto;
}
.about, .services, .skills, .teams, .contact, footer{
    font-family: 'Open Sans', sans-serif;
}
.about .about-content,
.services .serv-content,
.skills .skills-content,
.contact .contact-content{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}
section .title{
    position: relative;
    text-align: center;
    font-size: 40px;
    font-weight: 500;
    margin-bottom: 60px;
    padding-bottom: 20px;
    font-family: 'Open Sans', sans-serif;
    color: #1189CE;
}
section .title::before{
    content: "";
    position: absolute;
    bottom: 0px;
    left: 50%;
    width: 180px;
    height: 3px;
    background: #1189CE;
    transform: translateX(-50%);
}
section .title::after{
    position: absolute;
    bottom: -8px;
    left: 50%;
    font-size: 20px;
    color: #0A438E;
    padding: 0 5px;
    background: #fff;
    transform: translateX(-50%);
    color: #0A438E;
}

/* navbar styling */
.navbarWeb{
    position: fixed;
    width: 100%;
    z-index: 999;
    padding: 30px 0;
    font-family: 'Open Sans', sans-serif;
    transition: all 0.3s ease;
}
.navbarWeb.sticky{
    padding: 15px 0;
    background: #FFF;
}
.navbarWeb .max-width{
    display: flex;
    align-items: center;
    justify-content: space-between;
}


.navbarWeb .logo a{
    color: #1189CE;
    font-size: 35px;
    font-weight: 600;
}
.navbarWeb .logo a span{
    color: #1189CE;
    transition: all 0.3s ease;
}

.navbarWeb .max-width .logo a img{
  width: 340px;
}

.navbarWeb .slogan {
    text-align: left;
    font-size: 22px;
    font-weight: bold;
    color: #1189CE;
    text-shadow: 1px 1px #737679;
    right: 160px;
    position: relative;
}

.navbarWeb .logo .subT{
    color: #1189CE;
    font-size: 22px;
    font-weight: bold;
}
.navbarWeb.sticky .logo a span{
    color: #1189CE;
}
.navbarWeb .menu li{
    list-style: none;
    display: inline-block;
}
.navbarWeb .menu li a{
    display: block;
    color: #1189CE;
    font-size: 16px;
    font-weight: 800;
    margin-left: 25px;
    transition: color 0.3s ease;
    text-decoration: none;
}
.navbarWeb .menu li a:hover{
    color: #98D1F2;
}
.navbarWeb.sticky .menu li a:hover{
    color: #3868A8;
}

/* menu btn styling */
.menu-btn{
    color: #1189CE;
    font-size: 40px;
    cursor: pointer;
    display: none;
}
.scroll-up-btn{
    position: fixed;
    height: 45px;
    width: 42px;
    background: #98D1F2;
    right: 30px;
    bottom: 10px;
    text-align: center;
    line-height: 45px;
    color: #ededed;
    z-index: 9999;
    font-size: 30px;
    border-radius: 6px;
    border-bottom-width: 2px;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transition: all 0.5s ease;
}
.scroll-up-btn.show{
    bottom: 30px;
    opacity: 1;
    pointer-events: auto;
}
.scroll-up-btn:hover{
    filter: brightness(80%);
}

/* home section styling */
.home{
    display: flex;
    background: url(../img/BackGround.jpg) no-repeat center;
    height: 100vh;
    color: #1189CE;
    min-height: 500px;
    background-size: cover;
    background-attachment: fixed;
    font-family: 'Open Sans', sans-serif;
}
.home .max-width{
  width: 100%;
  display: flex;
  padding-top: 60px;
}
.home .max-width .rowB{
  margin-right: 0;
}


.home .max-width .content-left{
  width: 50%;
  display: flex;
}
.home .max-width .content-left .rowB{
  margin-right: 0;
}

.home .max-width .content-right{
  width: 50%;
}
.home .max-width .content-right .rowB{
  margin-right: 0;
}

.home .home-content .text-1{
    font-size: 27px;
}


.home .home-content .text-2{
    font-size: 115px;
    font-weight: 600;
    margin-left: -3px;
    color: #000000;
    font-family: 'Ogirema';

}

.home .home-content .text-3 h4{
    font-size: 24px;
    margin: 10px 0;
    color: #000000;
    top: -40px !important;
    position: relative;
}


.home .home-content a{
    display: inline-block;
    background: #1189CE;
    color: #FFF;
    font-size: 25px;
    padding: 12px 36px;
    margin-top: 20px;
    font-weight: 400;
    border-radius: 6px;
    border: 2px solid #1189CE;
    transition: all 0.3s ease;
}
.home .home-content a:hover{
    color: #1189CE;
    background: #FFF;
}

.btnClose{
    background: #84D2FF !important;
    color: white !important;
}

.rounded-pill{
     background: #84D2FF !important;
}

.list-group-item{
    font-size: 14px !important;

}

/*==================== SERVICE CARD ====================*/

.tiles-main,
.tiles-wrap-layer1,
.tiles-wrap-layer2,
.tiles-inner,
.tiles {
  pointer-events: visible;
}

.honeycomb {
  display: flex;
  flex-wrap: wrap;
  margin: 10px auto;
  position: relative;
  top: -60px;

}

.tiles {
  position: relative;
  width: calc(100% / 4);
  perspective: 1000px;
}
.tiles:not(:last-child) {
  margin-right: -2%;
}
.tiles:hover .tiles-inner {
  transform: rotateY(180deg);
}

.tiles-inner {
  height: 100%;
  position: absolute;
  text-align: center;
  top: 0;
  transition: transform 0.6s cubic-bezier(0.35, 0.1, 0.6, 1.51);
  transform-style: preserve-3d;
  width: 100%;
}

.tiles-border {
  margin: 0 auto;
}
.tiles-border:before, .tiles-border:after {
  content: "";
  display: block;
  left: 0;
  pointer-events: none;
  position: absolute;
  top: 0;
}
.tiles-border:before {
  transform: rotate(60deg) translate(18%, -18%);
}
.tiles-border:after {
  transform: rotate(-60deg) translate(18%, 18%);
}
.tiles-border, .tiles-border:before, .tiles-border:after {
  border-bottom: 2px solid #1189CE;
  border-top: 2px solid #1189CE;
  cursor: pointer;
  display: block;
  padding-bottom: 100%;
  width: 58%;
  pointer-events: auto;
}

.tiles-wrap {
  overflow: hidden;
  position: absolute;
  top: 1px;
  transform: rotate(120deg);
  visibility: hidden;
}
.tiles-wrap.-front, .tiles-wrap.-back {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
.tiles-wrap.-back {
  transform: rotateY(180deg);
}
.tiles-wrap.-back .tiles-main {
  transform: rotate(120deg);
}

.tiles-wrap-layer1 {
  height: 100%;
  overflow: hidden;
  transform: rotate(-60deg);
  visibility: hidden;
  width: 100%;
}

.tiles-wrap-layer2 {
  height: 100%;
  overflow: hidden;
  position: relative;
  transform: rotate(-60deg);
  visibility: visible;
  width: 100%;
}

.tiles-main {
  background-size: cover;
  background-position: center center;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  transition: background 0.5s ease;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tiles-main--inner {
  padding: 20px 20px;
}

.tiles-main--inner i{
  color: #1189CE;
  text-shadow: 0 0 4px rgba(70, 160, 181, 0.93);
  text-align: center;
  font-size: 2.8rem;
}

.tiles-main--inner img{
  width: 50px !important;
  filter: invert(41%) sepia(80%) saturate(819%) hue-rotate(165deg) brightness(92%) contrast(92%);
  text-shadow: 0 0 4px rgba(70, 160, 181, 0.93);
  text-align: center;
}


.tiles-main--inner p{
  color: #1189CE;
  text-shadow: 0 0 4px rgba(70, 160, 181, 0.93);
  text-align: center;
  font-size: 14px;
  top: 10px;
  position: relative;
}

.tiles-main--innerB {
  padding: 20px 30px;
}

.tiles-main--innerB i{
  color: #84D2FF;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.93);
  text-align: center;
  font-size: 2.8rem;
}

.tiles-main--innerB img{
  width: 50px !important;
  filter: invert(78%) sepia(91%) saturate(3137%) hue-rotate(171deg) brightness(101%) contrast(100%);
  text-shadow: 0 0 4px rgba(70, 160, 181, 0.93);
  text-align: center;
}

.tiles-main--innerB p{
  color: #84D2FF;
  text-shadow: 0 0 1px rgba(0, 0, 0, 0.93);
  text-align: center;
  font-size: 12px;
  top: 10px;
  position: relative;
}


/*--------------------------------*/

.about .max-width{
  padding-top: 40px;
}
/* about section styling */
.about .title::after{
    content: "GLB";
    font-size: 20px;
}
.about .about-content .left{
    width: 45%;
}
.about .about-content .left img{
    height: 400px;
    width: 400px;
    object-fit: cover;
    border-radius: 6px;
}
.about .about-content .right{
    width: 55%;
}
.about .about-content .right .text{
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 10px;
}
.about .about-content .right .text span{
    color: #1189CE;
}
.about .about-content .right p{
    text-align: justify;
}
.about .about-content .right a{
    display: inline-block;
    background: #1189CE;
    color: #fff;
    font-size: 20px;
    font-weight: 500;
    padding: 5px 15px;
    margin-top: 20px;
    border-radius: 6px;
    border: 2px solid #1189CE;
    transition: all 0.3s ease;
    text-decoration: none;
}
.about .about-content .right a:hover{
    color: #1189CE;
    background: #FFF;
}



.contact .max-width{
    padding-top: 40px;
}

/* contact section styling */
.contact .title::after{
    content: "GLB";
    font-size: 20px;
}
.contact .contact-content .column .left{
    width: calc(50% - 30px);
}

.contact .contact-content .column .right{
    width: calc(50% - 80px);
}

.contact .contact-content .right {
    text-align: center;
}

.contact .contact-content .text{
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.contact .contact-content .left {
    text-align: justify;
}



.contact .contact-content .left p{
    text-align: justify;
}
.contact .contact-content .left .icons{
    margin: 10px 0;
}
.contact .contact-content .rowB{
    display: flex;
    height: 65px;
    align-items: center;
}
.contact .contact-content .rowB .info{
    margin-left: 30px;
}

.contact .contact-content .rowB .iconDiv{
    width: 45px !important;
    text-align: center !important;
    padding: 15px;
}

.contact .contact-content .rowB i{
    font-size: 25px;
    color: #98D1F2;
}
.contact .contact-content .info .head{
    font-weight: 500;
    color: #1189CE;
}
.contact .contact-content .info .sub-title a{
    color: #1189CE !important;
    text-decoration: none;
}
.contact .right form .fields{
    display: flex;
}
.contact .right form .field,
.contact .right form .fields .field{
    height: 45px;
    width: 100%;
    margin-bottom: 15px;
}
.contact .right form .textarea{
    height: 80px;
    width: 100%;
}
.contact .right form .name{
    margin-right: 10px;
}
.contact .right form .field input,
.contact .right form .textarea textarea{
    height: 100%;
    width: 100%;
    border: 1px solid lightgrey;
    border-radius: 6px;
    outline: none;
    padding: 0 15px;
    font-size: 17px;
    font-family: 'Open Sans', sans-serif;
    transition: all 0.3s ease;
}
.contact .right form .field input:focus,
.contact .right form .textarea textarea:focus{
    border-color: #b3b3b3;
}
.contact .right form .textarea textarea{
  padding-top: 10px;
  resize: none;
}
.contact .right form .button-area{
  display: flex;
  align-items: center;
}
.right form .button-area button{
  color: #fff;
  display: block;
  width: 160px!important;
  height: 45px;
  outline: none;
  font-size: 18px;
  font-weight: 500;
  border-radius: 6px;
  cursor: pointer;
  flex-wrap: nowrap;
  background: #2A2929;
  border: 2px solid #2A2929;
  transition: all 0.3s ease;
}


.right form .button-area button:hover{
  color: #2A2929;
  background: none;
}

iframe {
    border-radius: 6px;
    border: 2px solid #1189CE !important;
}

/* footer section styling */
footer{
    background: #111;
    padding: 15px 23px;
    color: #fff;
    text-align: center;
}
footer span a{
    color: #2A2929;
    text-decoration: none;
}
footer span a:hover{
    text-decoration: underline;
}


/* responsive media query start */
@media (max-width: 1104px) {
    .about .about-content .left img{
        height: 350px;
        width: 350px;
    }
}

@media (max-width: 991px) {
    .max-width{
        padding: 0 50px;
    }
}
@media (max-width: 947px){
    .menu-btn{
        display: block;
        z-index: 999;
    }
    .menu-btn:hover{
        color: #1189CE;
    }

    .menu-btn i.active:before{
        content: "\f00d";
        color: #FFF;
    }
    .navbarWeb .menu{
        position: fixed;
        height: 100vh;
        width: 100%;
        left: -100%;
        top: 0;
        background: #111;
        text-align: center;
        padding-top: 80px;
        transition: all 0.3s ease;
    }
    .navbarWeb .menu.active{
        left: 0;
    }
    .navbarWeb .menu li{
        display: block;
    }
    .navbarWeb .menu li a{
        display: inline-block;
        margin: 20px 0;
        font-size: 25px;
        color: #FFF;
    }

    .home{
        height: 50vh; 
    }

    .home .home-content .text-2{
        font-size: 60px;
    }
    .home .home-content .text-3{
        font-size: 35px;
    }
    .home .home-content a{
        font-size: 23px;
        padding: 10px 30px;
    }
    .max-width{
        max-width: 930px;
    }
    .about .about-content .column{
        width: 100%;
    }
    .about .about-content .left{
        display: flex;
        justify-content: center;
        margin: 0 auto 60px;
    }
    .about .about-content .right{
        flex: 100%;
    }
    .services .serv-content .card{
        width: calc(50% - 10px);
        margin-bottom: 20px;
    }
    .contact .contact-content .column{
        width: 100%;
        margin-bottom: 35px;
    }

    
}

@media (min-width: 691px) and (max-width: 900px) {
    .home{
        height: 60vh;
    }

    .home .home-content .text-2 {
        font-size: 90px;
    }

    .home .home-content .text-3 h4 {
        font-size: 19px;
    }

    .tiles-main--inner i{
        font-size: 23px;
    }

    .tiles-main--inner p{
        font-size: 9px;
    }

    .tiles-main--inner img{
        width: 35px !important;
    }

   /* .tiles-main--innerB i{
        display: none;
    }*/

    .tiles-main--innerB p{
        display: none;
    }

  /*  .tiles-main--innerB img{
        display: none;
    }*/

     .tiles {
      position: relative;
      width: calc(100% / 4);
      perspective: 1000px;
    }

    .home .max-width {
      padding-top: 10px;
  }

}

@media (max-width: 690px) {

    
    .home{
        height: 70vh;    
    }

    .home .home-content .text-2{
        font-size: 50px;
    }
    .home .home-content .text-3{
        font-size: 15px;
    }

    .home .home-content .text-3 span{
        font-size: 15px;
    }

    .home .content-right .wrapper .carousel .carousel__item .card i{
        font-size: 50px;
    }

    .home .content-right .wrapper .carousel .carousel__item .card .text{
        font-size: 20px;
    }

    .home .content-right .wrapper .carousel .carousel__item .card p{
        font-size: 12px !important;
    }

    .max-width{
        padding: 0 23px;
    }
    .home .home-content .text-2{
        font-size: 60px;
    }
    .home .home-content .text-3{
        font-size: 32px;
    }
    .home .home-content a{
        font-size: 15px;
    }
    .about .about-content .right a{
        font-size: 15px;
    }
    .services .serv-content .card{
        width: 100%;
    }

    .about .about-content .left img {
        height: 285px;
        width: 255px;
    }
}

@media (min-width: 500px) and (max-width: 700px) {

    .home{
        height: 100vh;    
    }

    .home .home-content .text-2{
        font-size: 50px;
    }
    .home .home-content .text-3{
        font-size: 15px;
    }

    .home .home-content .text-3 span{
        font-size: 15px;
    }

    .home .content-right .wrapper .carousel .carousel__item .card i{
        font-size: 50px;
    }

    .home .content-right .wrapper .carousel .carousel__item .card .text{
        font-size: 20px;
    }

    .home .content-right .wrapper .carousel .carousel__item .card p{
        font-size: 12px !important;
    }

    .about .about-content .left img {
        height: 285px;
        width: 255px;
    }

    .about .about-content .right .text,

    .contact .right form .fields{
        flex-direction: column;
    }
    .contact .right form .name,
    .contact .right form .email{
        margin: 0;
    }
    .right form .error-box{
       width: 150px;
    }
    .scroll-up-btn{
        right: 15px;
        bottom: 30px;
        height: 35px;
        width: 30px;
        font-size: 15px;
        line-height: 30px;
    }

    footer span{
        font-size: 12px;
    }

    iframe {
        width: 85%;
    }
}


@media (min-width: 400px) and (max-width: 499px) {


    .navbarWeb .max-width .logo a img {
      width: 225px;
    }

    .home{
        height: 100vh;   
    }

    .max-width {
        padding: 0 23px;
    }

    .navbarWeb .max-width{
        padding: 0px 24px;
    }

    .navbarWeb .slogan {
        font-size: 15px;
        right: 135px;
        min-width: 165px;
        top: 10px;
    }

    .menu-btn {
        position: relative;
        right:70px;
    }

    section .title{
        font-size: 30px;
    }

    section .title::before {
        width: 150px;
    }

    .home .max-width {
        padding-top: 0px;
    } 

    .home .home-content .text-2 {
        font-size: 60px;
        top: 100px;
        position: relative;
    }

    .home .home-content .text-3 h4 {
        top: 75px !important;
        font-size: 12px;
    }

    #imgIcon {
      width: 33px !important;
      filter: invert(41%) sepia(80%) saturate(819%) hue-rotate(165deg) brightness(92%) contrast(92%);
    }


    .tiles-main--inner i{
        font-size: 23px;
    }

    .tiles-main--inner p{
        font-size: 10px;
    }

    .tiles-main--inner img{
        width: 35px !important;
    }

   /* .tiles-main--innerB i{
        display: none;
    }*/

    .tiles-main--innerB p{
        display: none;
    }
/*
    .tiles-main--innerB img{
        display: none;
    }*/


    .tiles {
      position: relative;
      width: calc(100% / 2);
      perspective: 1000px;
    }

    .scroll-up-btn {
        right: 20px;    
    }

    iframe {
        width: 85%;
    }
}

@media (min-width: 200px) and (max-width: 399px) {

    .navbarWeb .max-width .logo a img {
      width: 225px;
    }
    

    .home{
        height: 100vh;   
    }

    .max-width {
        padding: 0 23px;
    }

    .navbarWeb .max-width{
        padding: 0px 24px;
    }

    .navbarWeb .slogan {
        font-size: 13px;
        right: 125px;
        min-width: 165px;
        top: 10px;
    }

    .menu-btn {
        position: relative;
        right: 105px;
    }

    section .title{
        font-size: 30px;
    }

    section .title::before {
        width: 150px;
    }

    .home .max-width {
        padding-top: 0px;
    } 

    .home .home-content .text-2 {
        font-size: 50px;
        top: 100px;
        position: relative;
    }

    .home .home-content .text-3 h4 {
        top: 80px !important;
        font-size: 11px;
    }

    .tiles-main--inner i{
        font-size: 18px;
    }

    .tiles-main--inner img{
        width: 32px !important;
    }

    .tiles-main--inner p{
        font-size: 9px;
    }
/*
    .tiles-main--innerB i{
        display: none;
    }*/

  /*  .tiles-main--innerB img{
        display: none;
    }
*/
    .tiles-main--innerB p{
       display: none;

    }


    .tiles {
      position: relative;
      width: calc(100% / 2);
      perspective: 1000px;
    }

    .scroll-up-btn {
        right: 20px;    
    }

    iframe {
        width: 85%;
    }
}