/* Header-top */
.header .container {
    max-width: 1320px;
    padding: 0 20px;
    width: 100%;
    margin: 0 auto;
  }
.header-top{
    background-color: #149AFF;
    padding: 9px 0 16px;
    text-align: center;
    display: none;
  }
  .apps-build{
  display:flex;
  justify-content:center;
  gap:40px
  }
  .apps-build li a{
    font-size: 14px;
    color:#fff;
    display: inline-flex;
  align-items: center;
  }
  .apps-build li a:hover{
    text-decoration: underline;
  }
  .apps-build li a::before{
    content: "";
    display:inline-block;
    margin-right: 10px;
  }
  .apps-endeavors:before{
  background:url("../images/apps-endeavors.svg") no-repeat;
  width: 12px;
  height: 12px;
  }
  .apps-email::before{
  background:url("../images/email.svg") no-repeat;
  width: 14px;
  height: 11px;
  }
  /* header top close */
  .header {
    position: fixed;
    top: 0;
    left: 0;
    background: #fff;
    z-index: 15;
    width: 100%;
    transition: 0.5s all;
    border-bottom: 1px solid rgba(37, 50, 67, 0.16);
  }
  .header-row{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 32px 0px;
  }
  .main-logo{
    width:170px;
  }
  .navigation{
    position: absolute;
    background-color: #fff;
    top: 100%;
    left: -100%;
    width: 100%;
    overflow: auto;
    transition: .3s;
    height: calc(100vh - 80px);
    padding-bottom: 50px;
  }
  .navigation.active {
    left: 0;
    display: block;
  }
  .main-menu li{
    border-bottom: 1px solid #e5e5e5;
    position: relative;
  }
  .main-menu li a{
    display: block;
    color:#253243;
    font-size:16px;
    font-weight: 600;
    padding: 17px 20px;
    transition:all 0.4s linear;
  }
  .main-menu li a:hover{
    color:#149AFF;
  }
  .main-menu li.contact{
    padding:12px 0;
    text-align: center;
  }
  .main-menu .contact a{
    padding:15px;
    background-color:#149AFF;
    color:#fff;
    border-radius:50px;
  }
  .main-menu .contact a:hover{
    color:#fff;
    background-color:#0161EA;
  }
  .contact a:after{
    content:"";
    background:url("../images/arrow.svg") no-repeat;
    width: 12px;
    height: 12px;
    margin-left: 9px;
    display: inline-block;
    transition:all 0.4s linear;
  }
  .contact a:hover:after{
  transform:rotate(45deg);
  }
  .hamburger {
    width:30px;
    border: none;
  }
  .hamburger span{
  width: 100%;
  height: 2px;
  margin: 6px 0;
  display: block; 
  background: #000;
  transition: .3s;
  }
  .hamburger.active .line-1 {
    transform: rotate(45deg);
    margin:6px 0 0 6px;
  }
  .hamburger.active .line-2 {
    opacity: 0;
  }
  .hamburger.active .line-3 {
    transform: rotate(-45deg);
    margin:-16px 0 0 6px;
  }
  .drop-menu {
    position:absolute;
    right:10px;
    top:16px;
    width:30px;
    height:30px;
    z-index: 1;
    display:block;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
    transition:.3s linear
  }
  .drop-menu::after {
    content:"";
    border:solid #149AFF;
    border-width:0 2px 2px 0;
    display:inline-block;
    padding:4px;
    transform:rotate(45deg)
  }
  .drop-menu:hover {
    background:#f4f4f4
  }
  .submenu-wrapper {
    background-color: #fff;
    display: none;
  }
  .submenu {
    padding:15px;
    background-color: #E3E3E3;
  }
  .submenu li {
    text-align: left;
    border: none;
    padding: 9px 0;
  }
  .submenu li a {
    color: #000;
    padding:0;
  }
  /* Responsive */
  @media screen and (min-width:1199px){
  
    .hamburger,.drop-menu{
        display: none;
    }
    .header-top{
        display: block;
    }
    .main-logo{
        width:231px;
    }
    .navigation{
        position: static;
        width:calc(100% - 250px);
        height:auto;
        overflow: visible;
        padding: 0;
    }
    .main-menu {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        gap:35px;
      }
      .main-menu li {
        border: none;
        padding: 0;
      }
      .main-menu li:hover > a{
        color:#149AFF;
      }
      .main-menu li a {
        padding: 0;
        font-weight:400;
      }
      .main-menu li.contact{
        padding:0;
        text-align: left;
      }
      .main-menu .contact a{
        padding:10px 15px;
      }
      .submenu-wrapper {
        position: absolute;
        left: 0;
        top: 100%;
        background:none;
        padding-top: 12px;
        width: 220px;
      }
      .tech-submenu-wrapper{
        width: 275px;
      }
      .tech-submenu{
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
      }
      .tech-submenu li{
        width:50%;
      }
      .submenu {
        background-color: #fff;
        box-shadow: 0 0 43px 0 rgba(0, 0, 0, 0.17);
      }
      .submenu li a {
        margin-bottom:20px;
      }
      .submenu li a:hover{
        text-decoration: underline;
      }
      .main-menu li:hover .submenu-wrapper {
        display: block;
      }
  }
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  