*{
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
:root{
  --main-color: #294865;
  --secondary-color: #828B95;
  --title-color: #294865;
}
@font-face{
  font-family: "cairo";
  src: url(../fonts/Cairo-Regular.ttf);
}

@font-face{
  font-family: "cairo-bold";
  src: url(../fonts/Cairo-Bold.ttf);
}
@font-face{
  font-family: "cairo-medium";
  src: url(../fonts/Cairo-Medium.ttf);
}
body{
  scroll-behavior: smooth;
  font-family: cairo;
}
.container {
    padding-left: 1em;
    padding-right: 1em;
    margin-left: auto;
    margin-right: auto;
  }
  @media(max-width: 767px){
    .container {
      padding-left: .5em;
      padding-right: .5em;

    }
  }
  /* start componants */
  .special-heading {
    text-align: center;
  }
  .special-heading h2{
    font-size: 26px;
  
    font-weight: bold;
    color: var(--title-color);
  }
  @media(min-width: 768px){
    .special-heading h2{
      font-size: 26px;
  
    }
  }
  .special-heading p {
    font-size: 16px;
    color: var(--main-color);
    
  }
  .section-padding {
    padding-top: 70px;
  }
  .grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fill,minmax(350px,1fr));
    gap: 50px;
  }
  @media(max-width: 767px) {
    .grid-2 {
      grid-template-columns: repeat(auto-fill,minmax(300px,1fr));
      gap: 20px;
    }
  }
  .flex-2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  /* end components */
/* Small */
@media (min-width: 768px) {
    .container {
      width: 750px;
    }
  }
  /* Medium */
  @media (min-width: 992px) {
    .container {
      width: 970px;
    }
  }
  /* Large */
  @media (min-width: 1200px) {
    .container {
      width: 1170px;
    }
  }
  /*Start Header*/
.header {
    height: 50px;
    background-color: var(--main-color);
    color: #fff;
    padding: 10px 0;
    font-size: 14px;
  }
  @media (max-width: 767px) {
    .header { 
      display: none;
    }
  }
  .header .location i{
    margin-left: 5px;
  }
.header .container {
  display: flex;
  justify-content: space-between;
  align-content: center;
   }
   .header .container .links a{
  background-color: var(--secondary-color);
  width: 30px;
  display: inline-block;
  height: 30px;
  border-radius: 50%;
  color: #fff;
  text-align: center;
  line-height: 30px;
  transition: 0.5s;
   }
   .header .container .links a:hover {
     background-color: #000;
   }
  /*end Header*/
  /* start nav */
  /*.nav {*/
  /*  height: 105px;*/
  /*  padding: 15px 0;*/
  /*  position: relative;*/
  /*  z-index: 10;*/
  /*  box-shadow: 5px 5px 25px 0 rgba(46,61,73,0.2);*/
  /*}*/
  /*.nav .container {*/
  /*  display: flex;*/
  /*  justify-content: space-between;*/
  /*  align-items: center;*/
    
  /*}*/

  /*.nav .logo img{*/
  /*  width: 90px;*/
  /*  max-width:100%;*/
    /*margin-top: 10px;*/
  /*}*/
  /*.nav .links ul{*/
  /*  display: flex;*/
  /*list-style: none;*/
  /*}*/
  /*.nav .links ul li a {*/
  /*  display: inline-block;*/
  /*  padding: 15px;*/
  /*  text-decoration: none;*/
  /*  color: #777;*/
  /*  font-size: 16px;*/
  /*  font-weight: bold;*/
  /*}*/
  /*.nav .links ul li a:hover {*/
  /*  color: #000;*/
  /*}*/
  /*.nav .links .menu {*/
  /*  display: none;*/
  /*}*/
  /*.toggle-menu{*/
  /*  display: none;*/
  /*}*/
  /*.nav .container .links .toggle-menu:checked ~ ul{*/
  /*  display: flex;*/
  /*}*/
  /*@media (max-width: 767px) {*/

  /*  .nav .container {*/
  /*    display: flex;*/
  /*    justify-content: space-between;*/
  /*    align-items: center;*/
  /*   flex-direction: row-reverse;*/
  /*  }*/
  /*  .nav .links .menu{*/
  /*    display: flex;*/
  /*  }*/
  /*  .nav .links ul{*/
  /*    position: absolute;*/
  /*    flex-direction: column;*/
  /*    width: 250px;*/
  /*    right: 0;*/
  /*    top: 89px;*/
  /*    padding: 0;*/
  /*    font-weight: bold;*/
  /*    background-color: #2294b0;*/
  /*    border-bottom-left-radius: 10px;*/
  /*    border-bottom-right-radius: 10px;*/
  /*    z-index: 999;*/
  /*    display: none;*/
  /*  }*/
  /*  .nav .links ul li a {*/
  /*    display: block;*/
  /*    width: 100%;*/
  /*    color: #fff;*/
  /*  }*/
  /*}*/
  
   nav{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #3E8DA8;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    z-index: 99;
  }
  nav .navbar{
    height: 100%;
    /*max-width: 1250px;*/
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: auto;
    background: #FFF;
    padding: 0 50px;
  }
  .navbar .logo a{
    font-size: 30px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
  }
  .navbar .logo img {
    width: 90px;
    min-width: 90px;
    max-width:100%;
  }
  nav .navbar .nav-links{
    line-height: 70px;
    height: 100%;
  }
  nav .navbar .links{
    display: flex;
    padding:0;
  }
  nav .navbar .links li{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    list-style: none;
    padding: 0 14px;
  }
  nav .navbar .links li a{
    height: 100%;
    text-decoration: none;
    white-space: nowrap;
    color: var(--main-color);
    font-size: 15px;
    font-weight: 500;
  }
  .links li:hover .htmlcss-arrow,
  .links li:hover .omomia-arrow,
  .links li:hover .projprog-arrow,
  .links li:hover .satisfaction-arrow,
  .links li:hover .contactus-arrow,
  .links li:hover .js-arrow{
    transform: rotate(180deg);
    }
  
  nav .navbar .links li .arrow{
    /* background: red; */
    height: 100%;
    width: 22px;
    line-height: 70px;
    text-align: center;
    display: inline-block;
    color: #fff;
    transition: all 0.3s ease;
  }
  nav .navbar .links li .sub-menu{
    position: absolute;
    top: 70px;
    right: 0;
    line-height: 40px;
    background: #294865;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    border-radius: 0 0 4px 4px;
    display: none;
    z-index: 2;
    padding: 0;
  }
  nav .navbar .links li:hover .htmlCss-sub-menu,
  nav .navbar .links li:hover .omomia-sub-menu,
  nav .navbar .links li:hover .projprog-sub-menu,
  nav .navbar .links li:hover .satisfaction-sub-menu,
  nav .navbar .links li:hover .contactus-sub-menu,
  nav .navbar .links li:hover .js-sub-menu{
    display: block;
  }
  .navbar .links li .sub-menu li{
    padding: 0 22px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  .navbar .links li .sub-menu a{
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    width: 100%;
  }
  .navbar .links li .sub-menu .more-arrow{
    line-height: 40px;
  }
  .navbar .links li .htmlCss-more-sub-menu{
    /* line-height: 40px; */
  }
  .navbar .links li .sub-menu .more-sub-menu{
    position: absolute;
    top: 0;
    left: 100%;
    border-radius: 0 4px 4px 4px;
    z-index: 1;
    display: none;
  }
  .links li .sub-menu .more:hover .more-sub-menu{
    display: block;
  }
  .navbar .search-box{
    position: relative;
     height: 40px;
    width: 40px;
  }
  .navbar .search-box i{
    position: absolute;
    height: 100%;
    width: 100%;
    line-height: 40px;
    text-align: center;
    font-size: 22px;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  .navbar .search-box .input-box{
    position: absolute;
    right: calc(100% - 40px);
    top: 80px;
    height: 60px;
    width: 300px;
    background: #3E8DA8;
    border-radius: 6px;
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s ease;
  }
  .navbar.showInput .search-box .input-box{
    top: 65px;
    opacity: 1;
    pointer-events: auto;
    background: #3E8DA8;
  }
  .search-box .input-box::before{
    content: '';
    position: absolute;
    height: 20px;
    width: 20px;
    background: #3E8DA8;
    right: 10px;
    top: -6px;
    transform: rotate(45deg);
  }
  .search-box .input-box input{
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 4px;
    transform: translate(-50%, -50%);
    height: 35px;
    width: 280px;
    outline: none;
    padding: 0 15px;
    font-size: 16px;
    border: none;
  }
  .navbar .nav-links .sidebar-logo{
    display: none;
  }
  .navbar .bx-menu{
    display: none;
  }
  @media (max-width:920px) {
    nav .navbar{
      max-width: 100%;
      padding: 0 25px;
    }
  
    nav .navbar .logo a{
      font-size: 27px;
    }
    nav .navbar .links li{
      padding: 0 10px;
      white-space: nowrap;
      border-bottom: 1px solid #FFF;
    }
    nav .navbar .links li a{
      font-size: 16px;
      color: #FFF;
    }
  }
  @media (max-width:800px){
    nav{
      /* position: relative; */
    }
    .navbar .bx-menu{
      display: block;
    }
    nav .navbar .nav-links{
      position: fixed;
      top: 0;
      left: -100%;
      display: block;
      max-width: 270px;
      width: 100%;
      background:  #294865;
      line-height: 40px;
      padding: 20px;
      box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
      transition: all 0.5s ease;
      z-index: 1000;
      overflow-y: auto;
    }
    .navbar .nav-links .sidebar-logo{
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .sidebar-logo .logo-name{
      font-size: 25px;
      color: #fff;
    }
      .sidebar-logo  i,
      .navbar .bx-menu{
        font-size: 25px;
        color: var(--main-color);
      }
    nav .navbar .links{
      display: block;
      margin-top: 20px;
      padding-right: 0;
    }
    nav .navbar .links li .arrow{
      line-height: 40px;
    }
  nav .navbar .links li{
      display: block;
    }
  nav .navbar .links li .sub-menu{
    position: relative;
    top: 0;
    box-shadow: none;
    display: none;
    padding-right: 0;
  }
  nav .navbar .links li .sub-menu li{
    border-bottom: none;
  
  }
  .navbar .links li .sub-menu .more-sub-menu{
    display: none;
    position: relative;
    left: 0;
  }
  .navbar .links li .sub-menu .more-sub-menu li{
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .links li:hover .htmlcss-arrow,
  .links li:hover .omomia-arrow,
  .links li:hover .projprog-arrow,
  .links li:hover .satisfaction-arrow,
  .links li:hover .contactus-arrow,
  .links li:hover .js-arrow{
    transform: rotate(0deg);
    }
    .navbar .links li .sub-menu .more-sub-menu{
      display: none;
    }
    .navbar .links li .sub-menu .more span{
      /* background: red; */
      display: flex;
      align-items: center;
      /* justify-content: space-between; */
    }
  
    .links li .sub-menu .more:hover .more-sub-menu{
      display: none;
    }
    nav .navbar .links li:hover .htmlCss-sub-menu,
    nav .navbar .links li:hover .omomia-sub-menu,
    nav .navbar .links li:hover .projprog-sub-menu,
    nav .navbar .links li:hover .satisfaction-sub-menu,
    nav .navbar .links li:hover .contactus-sub-menu,
    nav .navbar .links li:hover .js-sub-menu{
      display: none;
    }
  .navbar .nav-links.show1 .links .htmlCss-sub-menu,
  .navbar .nav-links.show4 .links .omomia-sub-menu,
  .navbar .nav-links.show5 .links .projprog-sub-menu,
  .navbar .nav-links.show6 .links .satisfaction-sub-menu,
  .navbar .nav-links.show7 .links .contactus-sub-menu,
    .navbar .nav-links.show3 .links .js-sub-menu,
    .navbar .nav-links.show2 .links .more .more-sub-menu{
        display: block;
      }
      .navbar .nav-links.show1 .links .htmlcss-arrow,
      .navbar .nav-links.show4 .links .omomia-arrow,
      .navbar .nav-links.show5 .links .projprog-arrow,
      .navbar .nav-links.show6 .links .satisfaction-arrow,
      .navbar .nav-links.show7 .links .contactus-arrow,
      .navbar .nav-links.show3 .links .js-arrow{
          transform: rotate(180deg);
  }
      .navbar .nav-links.show2 .links .more-arrow{
        transform: rotate(90deg);
      }
  }
  @media (max-width:370px){
    nav .navbar .nav-links{
    max-width: 100%;
  } 
  }
  .sidebar-logo i.close {
    font-size: 18px;
    color: #FFF;
  }
  .nav-links ul li span {
    display: inline-block;
    color: #FFF;
    margin-left: 5px;
    width: 20px;
    text-align: center;
  }
  .nav-links ul li span i{
      
  }
  /* end nav */
  /* Start landing */
   .landing{
    /* background-image: url(../images/landing.PNG);
    background-position: center;
    background-size: cover;
    position: relative; */
    /*height: calc(100vh - 105px);*/
    max-width: 100%;
    margin-top: 102px;

    /* aspect-ratio: 1/1;
    object-fit: cover; */
  }
  .landing img {
      /* this edit for large screen*/
      width:100%;
    max-width: 100%;
    max-height: 100%;
  }
  @media (max-width: 767px){
    .landing {
      background-size: contain;
      background-repeat: no-repeat;
      /*height: 15vh;*/
    }
  }
  /*  @media (min-width:768px){*/
  /*  .landing {*/
  /*    height: 524px;*/
  /*  }*/
  /*}*/
  /*.landing::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #000;
    top: 0;
    right: 0;
    opacity: .5;
  }
  .landing .title {
    position: absolute;
    top: 30px;
    right: 50%;
    transform: translate(50%,0);
    text-align: center;
    z-index: 3;
  }
  .landing .title h1 {
    font-size: 40px;
    color: #fff;
  }
  .landing .title a{
    display: inline-block;
  background-color: #fff;
  padding: 15px 30px;
  text-align: center;
  text-decoration: none;
  font-size: 20px;
  font-family: cairo-bold;
  color: #328af1;
  border-radius: 10px;
  }
  .landing .title i {
    margin-left: 5px;
  }
  .landing .buttons {
    position: absolute;
    bottom: 10px;
    right: 50%;
    transform: translate(50%,0);
    text-align: center;
    z-index: 3;
  }
  .landing .buttons a{
    display: inline-block;
    background-color: #fff;
    width: 50px;
    height: 50px;
    text-align: center;
    font-size: 30px;
    text-decoration: none;
    border-radius: 50%;
    line-height: 45px;
    color: var(--main-color);
  }
  @media (max-with: 767px){
    .landing {

    }
  } */
  /* end landing */
  /* swiper */
a.more, .show .container .card a.withdraw{
  background-color: var(--title-color);
  display: block;
  width: 30%;
  text-align: center;
  color: white;
  font-size: 1.5em;
  border-radius: 10px;
  padding: 5px 15px;
  text-decoration: none;
  font-weight: bold;
  font-family: arial;
  margin: 30px auto;
  transition: .5s;
  }
  a.more:hover{
    color: var(--title-color);
    background-color: #FFF;
    box-shadow: 5px 5px 25px 0 rgba(46,61,73,0.2);
  }
  .show .container, .show .container .card{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-content: center;
    align-items: center;
  }
  .show .container img{
    width: 300px;
    height: 300px;
    border-radius: 50%;
    box-shadow: 5px 5px 25px 0 rgba(46,61,73,0.2);
  }
  .show .container h3 {
    text-align: center;
    margin-top: 40px;
    font-size: 1.5rem;
    color: var(--title-color);
  }
  .show .container p {
    text-align: center;
  }
  .show .container p.details {
    background: #f2f2f2;
    padding: 10px;
    line-height: 2;
    word-spacing: 4px;
  }
  .swiper {
    width: 600px;
    height: 300px;
  }
  
  /* start about */
  .about .container .content {
    margin-top: 50px;
  }
  .about .container > h3 {
    text-align: center;
    background-color: var(--title-color);
    color: white;
    padding: 10px;
    margin: 30px auto;
  }
  .about .container .content .picture {
    box-shadow: 5px 5px 25px 0 rgba(46,61,73,0.2);
  }
  .about .container .content .picture img {
    max-width: 100%;
  }
  .about .container .content .picture p {
    text-align: justify;
    padding: 19px;
    line-height: 1.8;
  }
  .features {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .features .feat {}
  .features .feat .icon {
    border: 1px solid #ddd;
    padding: 20px;
    border-radius: 15px;
  }
  .features .feat h4 {
    color: var(--title-color);
    font-size: 18px;
  }
  .features .feat p {
    line-height: 1.5;
    color: var(--secondary-color);
    
  }
  .about .video {
    margin-top: 100px;
  }
  .about .text {
    padding: 20px;
    display: flex;
    justify-content: flex-end;
    flex-direction: column;
  }
  .about .text h3{
    color: var(--title-color);
  }
  .about .text p {
    color: var(--secondary-color);
  }
  .about .clip {
    background-image: url(../images/video-intro.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    height: 376px;
    flex: 1;
    border-radius: 15px;
    position: relative;
  }
  .about .clip img {

    max-width: 100%;
  }
  .about .clip a{
    position: absolute;
    top: 50%;
    right: 50%;
    transform: translate(-50%, -50%);
    background-color: #53a0fe;
    padding: 30px;
    color: #fff;
    border-radius: 50%;
    font-size: 30px;
    opacity: .8;
  }
  /* end about */
  /* start projects */
  .projects {
    margin-top: 50px;
  }
  .projects .container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
  }
  .projects .container .card {
    border-radius: 20px;
    text-align: center;
    box-shadow: 5px 5px 25px 0 rgba(46,61,73,0.2);
    padding: 5px;
  }
  .projects .container .card img{
    max-width: 100%;
  }
  .projects .container .card h3 {
    color: var(--title-color);
    font-weight: bold;
  }
  .projects .container .card p {}
  .projects .container .card a {
    display: block;
    width: 100%;
    padding: 10px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2rem;
    line-height: 1;
    transition: 0.5s;
  }
  .projects .container .card a.withdraw {
    color: var(--title-color);
    border: 2px solid var(--title-color)
  }
  .projects .container .card a.view {
    color: #091B2A;
    border: 2px solid #091B2A;
    margin: 10px 0;
  }
  .projects .container .card a.withdraw:hover {
    color: white;
    background-color: var(--title-color);
  }
  .projects .container .card a.view:hover {
    color: white;
    background-color: #091B2A;
    margin: 10px 0;
  }
  /* end projects */
  /* satrt programs */
  .programs .container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 10px;
  }
  .programs .container .card {
    box-shadow: 5px 5px 25px 0 rgba(46,61,73,0.2);
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
    padding: 10px;
    position: relative;
  }
  .programs .container .card::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background-image: url(../images/m-vector.png);
    background-repeat: no-repeat;
    background-size: cover;
    width: 144px;
    height: 100%;
    z-index: -1;
    
  }
  .programs .container .card img {
    width: 88px;
    height: 88px;
    max-width: 100%;
    border-radius: 10px;
  }
  .programs .container .card a{
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    color: #000;
  }
  /* end programs */
  /* Start Services */
  .services {
    padding: 60px 0;
  position: relative;
  }
  .services .container {
    margin-top: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .services .container .card {
    width: 270px;
    padding: 40px;
    border: 1px solid var(--secondary-color);
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    align-items: center;
  }
  
  .services .container .card img {
    height: 50px;
    margin-bottom: 20px;
  }
  .services .container .card h4 {
    margin: 0;
    color: #328af1;
  }
  .services .move {}
  .services .move i{}
  /* End Services */
  /* start statistics */
  .statistics .container {
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px , 1fr));
    gap: 20px;
  }
  .statistics .container .stat img {
    width: 50px;
    height: 50px;
  }
  .statistics .container .col {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .statistics .container .stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 40px;
    border-bottom: 1px solid var(--secondary-color);
  }
  .statistics .container .stat h5 {
    font-size: 16px;
  font-weight: bold;
  }
  .statistics .container .stat span {
    font-size: 30px;
    color: var(--title-color);
    font-weight: bold;
    font-family: 'cairo-bold';
    display: block;
  }
  /* end statistics */
  /* start consulation */
  .consulation .container {
    display: flex;
    justify-content: center;
  }
  .consulation .container .form {
    width: 80%;
    border-radius: 10px;
    padding: 50px;
    margin-top: 50px;
    box-shadow: 5px 5px 25px 0 rgba(46,61,73,0.2);
  }
  @media (max-width: 767px){
    .consulation .container .form {
      width: 90%;
      border-radius: 5px;
      padding: 5px;
      margin-top: 25px;
      box-shadow: 5px 5px 25px 0 rgba(46,61,73,0.2);
    }
  }
  .consulation .container .input-control {
    display: block;
    width: 100%;
    margin-bottom: 15px;
    padding: 5px;
    border-radius: 5px;
    font-size: 14px;
  }
  .consulation .container textarea {
    display: block;
    margin-bottom: 15px;
    padding: 5px;
    border-radius: 5px;
    width: 100%;
    max-width: 100%;
  }

  .faq .links-menu {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 10px;
  }
  .faq .links-menu .dept {
  
  }
  .faq .links-menu .dept span {
    display: block;
    color: var(--main-color);
    font-weight: bold;
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 10px;
  }
  .faq .links-menu a{
    /* text-decoration: none;
      background-color: var(--title-color);
      text-align: center;
      color: white;
      padding: 3px 7px;
      border-radius: 5px;
      display: inline-block;
      font-size: 18;
      font-weight: bold; */
  }

  .faq .links-menu .dept select.my-menu {
    background: var(--title-color);
    padding: 5px 10px;
    border-radius: 10px;
    color: #fff;
    font-weight: bold;
    text-align: center;
    outline: none;
    font-size: 1.2rem;
  }
  
  .consulation .container button {
    border: none;
    display: block;
    width: 100%;
    border-radius: 10px;
    background-color: var(--title-color);
    color: white;
    padding: 10px;
}

  /* end consulation */
  /* start portofolio */
  .portofolio {
    background-color: #f3f3f3;
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .portofolio .container {

  }
  .portofolio .container .content {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 20px;
  }
  .portofolio .container .content .card .image img{
    max-width: 100%;
  }
  .portofolio .container .content .card {
    background-color: #fff;
  }
  .portofolio .container .content .card .text{
    padding: 10px;
  }
  .portofolio .container .content .card .text h3 {

  }
  .portofolio .container .content .card .text p{
    margin-top: 10px;
    color: #444;
  }
  /* end portofolio */

  /* start contact */
.contact .contact-info{
  margin-bottom: 20px;
}

.contact .container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
.contact .contact-info .cont {
  margin-bottom: 15px;
  display: flex;
  justify-content: space-between;
  width: 350px;
}
@media(max-width: 767px) {
  .contact .contact-info .cont {
    width: 300px;
  }
}
.contact .contact-info .cont a {
  text-decoration: none;
  color: black;
}
.contact .social-cotact a{
  background-color: var(--title-color);
  width: 30px;
  display: inline-block;
  height: 30px;
  border-radius: 50%;
  color: #fff;
  text-align: center;
  line-height: 30px;
  transition: 0.5s;
  margin: 0 5px;
   }
  /* end contact */
  /* start faq */
  .faq .container {
    padding: 10px;
    background: #eee;
    border-radius: 10px;
  }

  .faq .hawkama {
    text-align: center;
  }
  .faq .hawkama object {
    height: 550px;
  }
@media(max-width:767px){
  .faq .hawkama object {
    height: 300px;
    width: 100%;
  }
}
  .faq .container .text h1 {
    color: var(--title-color);
  }
  /* end faq */
  /* start footer */
  .footer {
  }
  .footer span {
  }
  /* end footer */
  /* start v2 hawkama */
  .hawkama-view {
    margin-top:105px;
  }
  .hawkama .title {
    margin-top: 50px;
    text-align: center;
    color: var(--title-color);
  }
  .hawkama .container iframe {
    width: 100%;
    margin-top: 102px;
  }
  .hawkama .container .content .card {
   
    border: 2px solid var(--title-color);
    border-radius: 10px;
    
  }
  .hawkama .container .content .card .card-title {
    padding: 5px;
    margin: 0;
    font-size: 17px;
    color: #fff;
    background-color: var(--title-color);
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
  }

  .hawkama .container .content .card .card-body {
    padding: 5px;
    color: var(--title-color);
  }
  .hawkama .container .content .card .card-body ul {
    margin: 0;
    padding: 0;

  }
  .hawkama .container .content .card .card-body ul li {
    list-style: none;
   
  }
.hawkama .container .content .card .card-body ul li a::before {
  content: "\00BB"; 
  margin-left: 5px;
}

  .hawkama .container .content .card .card-body ul li a{
    display: block;
    text-decoration: none;
    color: var(--title-color);
    font-size: 16px;
    font-weight: bold;
    padding: 3px;
    margin-bottom: 5px;
    transition: .5s;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -ms-transition: .5s;
    -o-transition: .5s;
}

  .hawkama .container .content .card .card-body ul li a:hover {
    color: #FFF;
    background-color: var(--title-color);;
    padding-right: 10px;
  }
  /* end v2 hawkama */
  .hawkama-view .container .view {
    height: 550px;
  }
@media(max-width:767px){
  .hawkama-view .container .view {
    height: 300px;
    width: 100%;
  }
}

@keyframes appear  {
  
  from {
    opacity: 0;
    scale: 0.5;
  } to {
    opacity: 1;
    scale: 1;
  }
}



.container .card {
  animation: appear  linear;
  -webkit-animation: appear  linear;
  animation-timeline: view();
  animation-range: entry 30%;
}