    :root {
    --main-padding: 100px;
    --main-color: #00838f;
    --bg-color:#fff;
    --tex-color:#123;
    }
    body {
    padding: 0;
      margin: 0;
      background-color: #212121e6;
      color:#fff;
    }
    html {
      scroll-behavior: smooth;
    }

    ul {
      padding: 0px;
      margin: 0px;
      /* list-style: none; */
    }
    .container {
      padding-left: 15px;
      padding-right: 15px;
      margin-left: auto;
      margin-right: auto;
    }
    * {
      padding: 0px;
      margin: 0px;
      box-sizing: border-box;
      -webkit-box-sizing: border-box;
      -moz-box-sizing: border-box;
    }
    @media (min-width: 768px) {
      .container {
        width: 750px;
      }
    }
    /* medium screen  */
    @media (min-width: 992px) {
      .container {
        width: 970px;
      }
    }
    /* large screen  */
    @media (min-width: 1200px) {
      .container {
        width: 1170px;
      }
    }
    /* start header  */
    header {
        width: 100%;
        padding: 10px 50px;
        position: fixed;
        top: 0;
        left: 0;
        display: flex;
        justify-content: space-between;
        align-items: center;
        z-index: 2;
        transition: .5s ease-in ease-in-out;
        height: 80px;
    }
    .logo {
      width: 142px;
    }
    .logo img {
        width: 70px;
        height: 70px;
        border-radius: 50%;
        border: 2px solid #363636;
        transition: all 0.3s ease-in-out;
        cursor: pointer;
    }
    .logo img:hover{
    transform: rotate(2deg);
    }
        header.active img {
          border: 2px solid var(--main-color);
    }

    header ul {
      display: flex;
      margin: 0;
      background: #363636;
      padding: 7px 20px;
      border-radius: 20px;
    }

    header ul li {
      margin: 0px 15px;
      font-family: 'Nunito Sans', sans-serif;
    }
    header ul li a.accept {
      border-bottom: 2px solid white;
      position: relative;
    }
    header ul li a.accept::before {
      width: 0 !important;
    }

    header ul li a {
      text-decoration: none;
      display: block;
      color: white;
      font-size: 15px;
      text-transform: capitalize;
      white-space: nowrap;
      transition: background-color 0.15s cubic-bezier(0.08, 0.91, 0.36, 0.98);
      position: relative;
      z-index: 1;
      letter-spacing: 1px;
    }

    header ul li a::before {
      content: "";
      position: absolute;
      width: 0;
      height: 2px;
      z-index: -1;
      top: 109%;
      background-color:white;
      left: 50%;
      transform: translate(-50%, -50%);
      transition: all 0.3s ease;
    }

    header ul li a:hover::before {
      width: 100%;
    }

    header.active {
      background: white;
      box-shadow: 1px 0px 0px white;
    }
    header.active .logo a span {
      color: hsl(0deg 0% 13%) !important;
    }
    header.active ul {
      display: flex;
      margin: 0;
      background: var(--main-color);
      padding: 7px 20px;
      border-radius: 20px;  
    }
    header.active ul li a.accept {
      border-bottom: 2px solid white;
    }
    header.active ul li a {
      color:white !important;
      position: relative;
      font-family: 'Nunito Sans', sans-serif;
    }
    header.active ul li a::before {
      content: "";
      position: absolute;
      width: 0;
      height: 2px;
      z-index: -1;
      top: 109%;
      background-color: white;
      left: 50%;
      transform: translate(-50%, -50%);
      transition: all 0.3s ease;
    }

    header.active ul li a:hover::before {
      width: 100%;
    }

    header.active .bars i {
      color: black;
      border: none;
      font-size: 30px;
    }
    header .bars {
      display: none;
      background-color:white;
      width:50px;
      height:50px;
      border-radius: 50%;
      position: relative;
      border: 1px solid var(--main-color);
    }

    header .bars::after{
      position:absolute;
      content: "";
      width:100%;
      height:100%;
      background-color: white;
      animation: bars 1.5s ease infinite;
      border-radius: 50%;
      z-index: -1;
    }
    header.active .bars::after{
      position:absolute;
      content: "";
      width:100%;
      height:100%;
      background-color: var(--main-color);
      animation: bars1 1.5s ease infinite;
      border-radius: 50%;
      z-index: -1;
    }
    @keyframes bars1 {
      0%{
        opacity: 1;
        transform: scale(1);

      }
      100%{
        opacity: 0;
        transform: scale(1.3);
      }
      
    }
    @keyframes bars {
      0%{
        opacity: 1;
        transform: scale(1);

      }
      100%{
        opacity: 0;
        transform: scale(1.3);
      }
      
    }
    header.active .bars {
      background-color: var(--main-color);
      transition: all 0.4s ease;

    }
    header .bars::before{
        content: "";
        position: absolute;
        border-width: 15px;
        border-style: solid;
        border-color: transparent transparent black transparent;
        right: 20px;
        top: 48px;
        transition: 0.5s ease-in-out;
        display: none;


    }
    header.active .bars::before{
        border-color: transparent transparent var(--main-color) transparent;
    }

    header .bars i {
        font-size: 30px;
        color: black;
        cursor: pointer;
        display: flex;
        margin: 12px;
        position: absolute;
        transition: all 0.4s ease-in-out;
    }
    header .bars.bear::before{
      right:60px;
    }
    header.active .bars i {
    color:white;
    }
    header .mode{
        margin-left: 50px;
        width: 60px;
        height: 60px;
        display: flex;
        border-radius: 50%;
        align-items: center;
        text-align: center;
        justify-content: center;
        padding: 21px;
        position: relative;
        border: 2px solid white;
        flex-direction: column;
        transition: all 0.4s ease-in-out;
        background-color: #363636;
    }
    header.active .mode{
        margin-left: 50px;
        width: 60px;
        height: 60px;
        background: var(--main-color);
        display: flex;
        border-radius: 50%;
        align-items: center;
        text-align: center;
        justify-content: center;
        padding: 21px;
        position: relative;
        border: 2px solid white;
        transition: all 0.4s ease-in-out;

    }
    header .mode i{
        font-size: 28px;
        cursor: pointer;
        transition: all 0.5s ease-in-out;
        color: white;
    }
    header.active .mode i{
        font-size: 28px;
        cursor: pointer;
        color: white;
      }
    .dark{
      background-color: #212121;
      color: white ;
      }
    header .mode .color{
        display: none;
        justify-content: center;
        text-align: center;
        flex-direction: column;
        gap: 4px;
        background-color: #5d778994;
        position: absolute;
        top: 69px;
        width: 50px;
        height: 220px;
        border-radius: 10px !important;
        cursor: pointer;
        transition: all 0.4s ease-in-out;
      }
    header .mode .arrow-up {
        width: 0;
        height: 0;
        border-left: 14px solid transparent;
        border-right: 14px solid transparent;
        border-bottom: 14px solid #5d778994;
        position: fixed;
        top: 55px;
        display: none;
      }
    header .mode:hover .arrow-up,header .mode:hover .color{
      display: flex;
      }

    header .mode .color li.set{
      opacity: 1;
      }
    header .mode .color li{
      opacity: 0.5;
      margin-left: -10px;
      }
    header .mode .color li:first-child{
      width: 30px;
      height: 30px;
      border-radius: 50%;
      background: #00838f;
      } 
      header .mode .color li:nth-child(2){
        width: 30px;
        height: 30px;
        border-radius: 50%;
        background: #e13b72;
      }
      header .mode .color li:nth-child(3){
        width: 30px;
        height: 30px;
        border-radius: 50%;
        background: #006400;
      }
      header .mode .color li:nth-child(4){
        width: 30px;
        height: 30px;
        border-radius: 50%;
        background: #0000ff;
      }
      header .mode .color li:nth-child(5){
        width: 30px;
        height: 30px;
        border-radius: 50%;
        background: #663399;
      }
      header .mode .color li:nth-child(6){
        width: 30px;
        height: 30px;
        border-radius: 50%;
        background: #03A9F4;
      }

    /* start media query for header  */
    @media (max-width: 991px) {
      header .navigation {
        position: absolute;
        top: 75px;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: #0000009e;
        display: flex;
        align-items: center;
        flex-direction: column;
        transition: 0.5s all ease-in-out;
        border-radius: 0px !important;
        }

      header .navigation li {
        margin-top: 24px;
        }
      header .navigation li a {
        font-size: 25px;
        }

      header .bars {
    display: block;
    margin-left: 77px;
        }
        header.active .bars {
            display: block;
            margin-left: 77px;
        }
        header .mode{
        margin-right: -37px;
        margin-left: 14px;
        }
        header.active .mode{
        margin-right: -37px;
        margin-left: 14px;
        }
      }
      
    @media screen and (min-width: 470px) and (max-width:990px) {
      header.active .bars {
        margin-right: -320px !important;
          }
      header .bars {
        margin-right: -292px !important;
          }
      } 

    @media screen and (max-width: 990px) {
      header .logo {
        margin-left: -40px;
        }
      header .bars i {
        margin-right: -40px;
        }
      }
    /* end media query for header  */
    /* end header  */
    /* start landing */
    .landing {
      padding-top: var(--main-padding);
      padding-bottom: var(--main-padding);
      position: relative;
    }
    .landing .container .text {
      display: flex;
      gap: 0px;
      margin-top: 200px;
      transition: 0.8s;
    }
    .landing .container .text img {
        max-width: 100%;
        width: 500px;
        margin-left: 31px;
        margin-right: 24px;
        position: relative;
        animation-name: up-and-down;
        animation-duration: 3s;
        animation-iteration-count: infinite;
        animation-timing-function: linear;
        border-radius: 6px;
        height: 447px !important;

    }

    @keyframes up-and-down {
      0%,
      100% {
        top: 0px;
      }
      50% {
        top: -50px;
      }
    }
    .landing .container .text .con-text h2 {
      position: relative;
      text-transform: capitalize;
      margin-bottom: 15px;
      transition: all 0.9s infinite;
      font-family: 'Libre Baskerville', serif;
    }

    .landing .container .text .con-text h2::after {
      content: "";
      position: absolute;
      width: 34px;
      height: 5px;
      background-color: var(--main-color);
      left: -2px;
      top: -14px;
      border-radius: 4px;
    }

    .landing .container .text .con-text p {
      text-transform: capitalize;
        line-height: 2.2;
      font-size: 17px;
      margin-bottom: 20px;
      font-family: 'Nunito Sans', sans-serif;

    }
    .landing .container .text .con-text .man {
      color:var(--main-color);
    }

    .landing .container .text .con-text span {
      text-transform: capitalize;
      font-family: 'Nunito Sans', sans-serif;

    }
    
   


    /* start media query for section  */
    @media screen and (max-width: 400px) {
      .landing .container .text {
        gap: 10px;
        display: flex;
        flex-direction: column;
      }
      .landing .container .text img {
        margin-left: -9px;
      }
      .landing .container .text .con-text h2 {
        font-size: 35px;
      }

      .landing .container .text .con-text p {
        line-height: 1.5;
        font-weight: normal !important;
        font-size: 15px;
        margin-bottom: 15px;
        font-weight:normal;
      }
    }
    @media screen and (min-width: 401px) and (max-width: 600px) {
      .landing .container .text {
        gap: 10px;
        display: flex;
        flex-direction: column;
      }
      .landing .container .text img {
        margin-left: -9px;
      }
      .landing .container .text .con-text h2 {
        font-size: 35px;
      }

      .landing .container .text .con-text p {
        line-height: 1.5;
        font-weight: normal !important;
        font-size: 15px;
        margin-bottom: 15px;
      }
    }
    @media screen and (min-width: 601px) and (max-width: 900px) {
      .landing .container .text {
        gap: 10px;
        display: flex;
        gap: 20px;
      }
      .landing .container .text .content-image {
        width: 50%;
      }

      .landing .container .text img {
        margin-left: -9px;
        height: 335px;
      }
      .landing .container .text .con-text {
        width: 50%;
      }
      .landing .container .text .con-text h2 {
        font-size: 35px;
      }

      .landing .container .text .con-text p {
        line-height: 1.5;
        font-weight: normal !important;
        font-size: 15px;
        margin-bottom: 15px;
      }
    }
    @media screen and (min-width: 901px) and (max-width: 1500px) {
      .landing .container .text {
        gap: 100px;
        display: flex;
        justify-content: space-between;
      }
      .landing .container .text .content-image {
        width: 50%;
      }

      .landing .container .text img {
        height: 335px;
      }
      .landing .container .text .con-text {
        width: 50%;
      }
      .landing .container .text .con-text h2 {
        font-size: 35px;
      }

      .landing .container .text .con-text p {
        line-height: 1.5;
        font-weight: normal !important;
        font-size: 15px;
        margin-bottom: 15px;
      }
    }

    /* end landing */
    /* start up  */
    #btn1{
        position: fixed;
        right: 10px;
        bottom: 30px;
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
        width: 60px;
        height: 60px;
        border-radius: 50%;
        font-size: 32px;
        color: var(--main-color);
        cursor: pointer;
        transition: all 0.4s ease-in-out;
        border: 2px solid var(--main-color);
        z-index:10;
        animation: bouncing 1.5s infinite;
        display: none;


    }
    @keyframes bouncing {
      0%,
      10%,
      20%,
      50%,
      80%,
      100% {
        transform: translateY(0px);
      }
      40%,
      60% {
        transform: translateY(-15px);
      }
    }
    #btn1:hover{
      color:white;
      background-color: var(--main-color);
    }
    /* end up  */
        /* start video section  */
        .bg-show{
        background-image:url(../image/forvideo.svg);
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover;
        background-attachment: fixed;
        display: flex;
        justify-content: center;
        align-items: center;
        padding:300px 0px;
        }
        .bg-show .link{
            width: 200px;
        height: 200px;
        border-radius: 50%;
        border: 3px solid var(--main-color);
        text-align: center;
        transition: .3s ease-in-out;
        display: flex;
        justify-content: center;
        align-items: center;
        }
      .bg-show .link a{
        text-decoration: none;
        text-transform: uppercase;
        display: flex;
        transition: .2s ease-in-out;
        color: var(--main-color);
        align-items: center;
        font-size: 35px;
      }
      .bg-show .link i{
        font-size: 30px;
        vertical-align: middle;
        margin-left: 10px;
        }
    .bg-show .overlay{
      position: fixed;
      top:40px;
      left:0;
      width: 100%;
      height:100%;
      background-color: rgba(0,0,0,0.1);
      z-index: 111;
      display: none;
    }
    .bg-show .overlay .ico{
      position: absolute;
      top:50%;
      left:50%;
      transform: translate(-50%,-50%);
      transition: 0.3s ease-in-out;
    }
    .bg-show .overlay .ico .fa-x{
    position: absolute;
    top: -5%;
    right: -13px;
    font-size: 30px;
    cursor: pointer;
    border: 2px solid var(--main-color);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: white;
    color: var(--main-color);
    cursor: pointer;
    z-index: 1;
    } 
  .bg-show .ico video{
    max-width: 100%;
    border: 2px solid var(--main-color);  
 }

  .bg-show .overlay .ico{
  animation: video 1s ease-in-out forwards;
  }
  @keyframes video {
  0%{
    opacity:0;
    top:20%;

  }
  100%{
    opacity: 1;
    top:50%;
  }
  
  }

    @media screen and (max-width: 600px) {
    .bg-show .ico video{
    border: 2px solid var(--main-color); 
    }
    .bg-show .overlay .ico .fa-x{
    right: -10px !important;
    font-size: 10px;
      }
    .bg-show .ico .bg-player #play{
      width:50px;
      height: 50px;
      }
    }
  @media (max-width: 600px) {
    .bg-show .ico video{
    border: 2px solid var(--main-color);
    }
    .bg-show .overlay .ico .fa-x{
    right: -10px !important;
    width: 33px;
    height: 33px;
    font-size: 15px;
    }
  }


/* end section video  */
    /* start road map  */
    .road-map{
        padding-top: 50px;
        padding-bottom: 50px;
    }
    .road-map.sbn{
        padding-top: 50px;
        padding-bottom: 50px;
        background:none !important;
    }
    .road-map .container .cont-map{
        position: relative;

    }
    .road-map .container .cont-map::after{
          content: "";
          position: absolute;
          width: 2px;
          height: 100%;
          background-color: var(--main-color);
          left: 50%;
          top: 3px;
    }
    .road-map .container .cont-map .right,
    .road-map .container .cont-map .left
    {
          background: #ddd;
          width: calc(50% - 28px);
          padding: 10px 20px;
          position: relative;
          border-radius: 10px;
    }
    .road-map .container .cont-map h2{
          padding: 10px 0;
          text-transform: capitalize;
          color:var(--main-color);
          font-size: 22px;
          font-family: 'Libre Baskerville', serif;
    }
    .road-map .container .cont-map p{
          line-height: 1.6;
          font-size: 17px;
          text-transform: capitalize;
          align-items: center;
          font-family: 'Nunito Sans', sans-serif;
          color:black;
    }
    .road-map .container .cont-map .left::after{
          content: "";
          position: absolute;
          width: 20px;
          height: 20px;
          border-radius: 50%;
          background: #ddd;
          top: 20px;
          left: -41px;
          transform: translatex(3px);
          z-index: 1;
          border: 2px solid var(--main-color);
      }
    .road-map .container .cont-map .left::before{
          position: absolute;
          content: "";
          border-width: 18px;
          border-style: solid;
          border-color: transparent #ddd transparent transparent;
          top: 14px;
          left: -32px;
    }
    @media screen and (max-width: 400px)  {
      .road-map .container .cont-map p{
          font-size: 16px;
          font-weight: normal;
      }
      .road-map .container .cont-map h2{
          font-size: 16px;
          font-weight: normal;
      }
      .road-map .container .cont-map .right,
      .road-map .container .cont-map .left
    {
          background-color: #ddd;
          padding: 10px 5px;
          position: relative;
          border-radius: 10px;
    }

    }
      .road-map .container .cont-map .right::after{
          content: "";
          position: absolute;
          width: 20px;
          height: 20px;
          border-radius: 50%;
          background-color: #ddd;
          top: 30px;
          right: -41px;
          transform: translatex(-1px);
          z-index: 1;
          border: 2px solid var(--main-color);
      }
      .road-map .container .cont-map .right::before{
          position: absolute;
          content: "";
          border-width: 18px;
          border-style: solid;
          border-color: transparent transparent transparent #ddd;
          top: 22px;
          right: -35px;
    }
      .road-map .container .cont-map .right{
          float:left;
    }
      .road-map .container .cont-map .left{
          float: right;
    } 
      .clear{
          clear: both;
    }
      .container .heading{
          color: var(--main-color);
          margin: 10px 5px;
          text-transform: capitalize;
          font-family: 'Libre Baskerville', serif;
    }
      .container .data-step {
          font-size: 18px;
          padding-bottom: 10px;
          text-transform: capitalize;
          margin-bottom: 4px;
          display: block;
          font-family: sans-serif;
    }

    /* end road map  */
    /* start application  */
      .app{
          padding-top: 50px;
          padding-bottom: 50px;
    }
      .app .container{
          display: flex;
          justify-content: space-between;
          gap: 100px;
          text-align: center;
          flex-wrap: wrap;
          padding-top: 46px;
    }
      .app .container .img-app img{
          width: 400px;
          border-radius: 10px;
          max-width: 100%;
    }
      .app .container .about-app{
          width: 400px;
          display: flex;
          justify-content: center;
          align-items: center;
          flex-direction: column;
          text-align: center;
    }

      .app .container .about-app .gog{
          font-size: 20px;
          text-transform: capitalize;
          width: fit-content;
          padding: 5px 10px;
          display: flex;
          transition: 0.3s all ease;
          z-index: 0;
          overflow: hidden;
          position: relative;
          border-radius: 5px;
          border: 1px solid ;
          margin-top: 15px;
          font-family: 'Libre Baskerville', serif;
          gap: 14px;
          text-decoration: none;
          color: var( --tex-color);
    }
      .app .container .about-app .gog:hover{
            background-color: var(--main-color);
            color: white;
          }

      .app .container .about-app a i{
          display: flex;
          justify-content: center;
          align-items: center;
          font-size: 40px;
    }
      .app .container .about-app p {
          text-transform: capitalize;
          line-height: 1.3;
          font-family: sans-serif;
          font-size: 14px;
    }
      .app .container .about-app p span{
          font-size: 18px;
          font-weight: bold;
    }

    @media screen and (max-width: 400px) {
      .app .container  {
          margin-left:30px;
      
      }
      .app .container img {
          width: 300px !important;
          margin-left:-30px !important;
      }
    }
    @media screen and (min-width: 401px) and (max-width: 600px) {
      .app .container  {
          margin-left:59px ;
      
      }
    }
    @media screen and (min-width: 601px) and (max-width: 900px) {
      .app .container  {
          margin-left:59px ;
      
      }
    }
    @media screen and (min-width: 901px) and (max-width: 1500px) {
      .landing .container .text {
          gap: 100px;
          display: flex;
          justify-content: space-between;
      }
      .landing .container .text .content-image {
          width: 50%;
      }

      .landing .container .text img {
          height: 335px;
      }
      .landing .container .text .con-text {
          width: 50%;
      }
      .landing .container .text .con-text h2 {
          font-size: 35px;
      }

      .landing .container .text .con-text p {
          line-height: 1.5;
          font-weight: normal !important;
          font-size: 15px;
          margin-bottom: 15px;
      }
    }
    /* end application  */

    /* start contact us  */
      .contact{
          padding-bottom: 100px;
    }
      .contact .container form{
          padding-top:50px;
          overflow: hidden;
          max-width:600px;
          margin: auto;
    }
      .contact .container form .left{
          float: left;
          width: 48%;
    }
      .contact .container form .right{
          float: right;
          width: 48%;
    }
      .contact .container form input:not([type="submit"]){
          margin-bottom: 20px;
          display: block;
          padding: 4px 10px;
          width: 100%;
          height: 40px;
          border: 1px solid #ccc;
          background-color: rgba(218, 218, 218, 0.19);
    }
      .contact .container form textarea{
          display: block;
          width: 100%;
          height: 161px;
          padding: 10px;
          margin-bottom: 20px;
          border: 1px solid #ccc;
          background-color: rgba(218, 218, 218, 0.19);
      }
    .contact .container form input[type="submit"]{
          background-color: var(--main-color);
          color:white;
          padding:6px 10px;
          cursor: pointer;
          border-color: transparent;
          width: 100%;
          text-transform: capitalize;
          border-radius: 19px;
          height:40px;
          transition: all 0.3s ease-in-out;
          opacity: 0.8;
          font-size: 18px;

      }
    .contact .container form input[type="submit"]:hover{
            background-color:var(--main-color);
            letter-spacing: 1px;
            opacity: 1;
      }

      .contact .container form textarea:focus{
            outline-color: var(--main-color);
      }
      .contact .container form textarea:focus::-webkit-input-placeholder{
          opacity: 0;
          transition: 0.3s;
      }
      .contact .container form input:not([type="submit"]){
          outline-color:  var(--main-color);
      }
    /* end contact us  */
    /* start about us  */
      .about-us{
          padding-bottom: 40px;
          background-image:url("../image/pexels-john-lee-6766628.jpg");
          background-size:cover ;
          background-repeat: no-repeat;
          background-attachment: fixed;
      }
      .main-title {
          position: relative;
          width: fit-content;
          margin: 30px auto;
          left: 10px;
          border: 1px solid ;
          border-radius: 5px;
          padding: 10px 20px;
          z-index: 1;
          transition: 0.3s;
          cursor: pointer;
      }
      .main-title::before {
          content: "";
          position: absolute;
          width: 12px;
          height: 12px;
          background-color: var(--main-color);
          left: -30px;
          top: 50%;
          border-radius: 50%;
          transform: translateY(-50%);
      }
      .main-title::after {
          content: "";
          position: absolute;
          width: 12px;
          height: 12px;
          background-color: var(--main-color);
          right: -30px;
          top: 50%;
          border-radius: 50%;
          transform: translateY(-50%);
      }
      .main-title:hover {
          border: 1px solid white;
          transition-delay: 0.5s;
      }
      .main-title:hover::before {
          z-index: -1;
          animation: left-move 0.5s linear forwards;
      }
      .main-title:hover::after {
      z-index: -1;

          animation: right-move 0.5s linear forwards;
      }
      .main-title h1 {
          font-size: 30px;
          font-weight: bold;
          text-transform: capitalize;
          font-family: "Libre Baskerville", serif;
      }
    
      .about-us .main-title h1 {
          font-size: 30px;
          font-weight: bold;
          text-transform: capitalize;
          font-family: "Libre Baskerville", serif;
          color:black;
      }
      .about-us .main-title {
          border:1px solid var(--main-color);
      }
      .about-us .main-title:hover {
          color: white;
          border: 1px solid white;
          transition-delay: 0.5s;
      } 
    

    @keyframes left-move {
      50% {
          left: 0;
          z-index: -1;
          width: 12px;
          height: 12px;
      }
      100% {
          left: 0;
          width: 100%;
          height: 100%;
          border-radius: 0%;
          border: 0;
          z-index: -1;
      }
    }
    @keyframes right-move {
      50% {
          right: 0;
          z-index: -1;
          width: 12px;
          height: 12px;
      }
      100% {
          right: 0;
          width: 100%;
          height: 100%;
          border-radius: 0%;
          z-index: -2;
      }
    }

      .about-us .container{
          display: flex;
          justify-content: center;
          align-items: center;
          gap: 10px;
          position: relative;
    }
      .about-us > h2{
          color:var(--main-color);
          text-transform: capitalize;
          display: block;
          justify-content: center;
          align-items: center;
          padding: 20px 50px;
          font-size: 30px;
          letter-spacing: 1px;
          font-family: "Libre Baskerville", serif;
    }
      .about-us .container .box{
          transition: all 0.3s ease-in-out;
          border: 1px solid var(--main-color);
          border-radius: 15px;
          position: relative;
          z-index: 1;
          overflow: hidden;
    }
      .about-us .container .box p{
          justify-content: center;
          display: flex;
          font-size: 18px;
          color: black;
          margin-left: 5px;
          font-family: 'Nunito Sans', sans-serif;
    }

      .about-us .container .box::before{
          content: "";
          position: absolute;
          height:0;
          width: 100%;
          top:0;
          left:0;
          background-color: var(--main-color);
          z-index: -1;
          transition: all 0.5s ease-in-out;
          border-radius: 0% 0% 50% 50%;
    }
      .about-us .container .box:hover p{
          color:white;
    }
      .about-us .container .box:hover::before{
          height:200%;
    }
      .about-us .container .box:hover .box-date h3{
          color:white;
    }
      .about-us .container .box:hover .box-date p{
          color:white;
    }
    .about-us .container .box:hover .box-date .icon-about a i{
          color:white;
    }
      .about-us .container .box:hover .data-pers p{
          color:white;
    }
      .about-us .container .box .box-date{
          text-align: center;
          padding:5px 15px;
          height:150px;
          margin-top:-6px;
    }
      .about-us .container .box .box-date h3{
          text-transform: capitalize;
          font-family: "Libre Baskerville", serif;
          color: black;

    }
      .about-us .container .box .box-date p{
          text-transform: capitalize;
          font-family: 'Nunito Sans', sans-serif;

    }
      .about-us .container .box .box-date .icon-about{
          display: flex;
          justify-content: center;
          gap: 14px;
    }
      .about-us .container .box .box-date .icon-about a i{
          margin-top: 10px;
          font-size: 26px;
          transition: all 0.4s ease-in-out;
          color:var(--main-color);
    }
      .about-us .container .box .box-date .icon-about a i:hover{
          color: blue;
          transform: translateY(0.5rem);

    }
      .about-us .container .box .img{
          padding: 5px 0px;
    }

      .about-us .container .box .img img{
          transition: all 0.3s ease-in-out;
          width: 100px;
          height: 100px;
          display: flex;
          justify-content: center;
          align-items: center;
          text-align: center;
          margin: 0px auto;
          border-radius: 50%;
          border: 3px solid var(--main-color);
          max-width: 100%;
          cursor: pointer;

    }
      .about-us .container .box:hover img{
          transform: rotate(1deg);
          border: 3px solid white;

    }
      .overlay{
          background-color: rgb(0, 0, 0, 0.5);
          position: fixed;
          width: 100%;
          height:100%;
          z-index: 5;
          top:0;
          left:0;
    }
      .pop{
          position: fixed;
          background-color: white;
          top:50%;
          left:50%;
          transform: translate(-50%,-50%);
          padding: 10px 15px;
          z-index: 101;
          border: 2px solid #ccc;
    }
      .imgo{
          max-width: 100%;
          max-height: 100%;
          width: 500px;
          height: 400px;
    }

      .span{
          position: absolute;
          right: -11px;
          top: -10px;
          width: 40px;
          height: 40px;
          background-color: var(--main-color);
          color: white;
          border:3px solid white;
          padding: 2px 3px;
          border-radius: 50%;
          font-family: sans-serif;
          cursor: pointer;
          display: flex;
          justify-content: center;
          align-items: center;
          font-size: 20px;
          font-weight: bold;
          font-family: Arial , Tahoma;
    }
    /* end about us  */
    /* start footer  */
      .footer {
          padding-top: 50px;
          padding-bottom: 30px;
          position: relative;
          background-color: #363636;
          transition: all 0.9s;
          max-height: 500px;
    }
      .footer .container {
          display: flex;
          justify-content: space-between;
          text-align: center;
          align-items: center;
          margin: auto;
          flex-wrap: wrap;
    }
      .footer .container .box-1,
      .footer .container .box-2
    {
          display: flex;
          flex-direction: column;
          width:calc(970px / 3);
          flex-wrap: wrap;
          gap:10px;
    }
      .footer .container .box-1{
          margin-bottom: 15px;
    }
      .footer .container .box-1 img{
          width: 70px;
          height: 70px;
          border-radius: 50%;
          border: 2px solid var(--main-color);
          transition: all 0.3s ease-in-out;
          cursor: pointer;
          display: flex;
          justify-content: center;
          align-items: center;
          margin-bottom: 1.2rem !important;
          margin: auto;
          margin-top: -6px !important;
    }
      .footer .container .box-1 img:hover{
          transform: rotate(2deg);
    }
      .footer .container .box-1 p{
          text-transform: capitalize;
          color: white;
          font-family:sans-serif;
          line-height: 1.8;
    }

      .footer .container .box-2 h2{
          margin-bottom: 1rem;
          font-family: 'Libre Baskerville', serif;
          color: white;
          text-transform: capitalize;
      
    }
      .footer .container .box-2 li{
          margin: 10px 0px;
          font-family: 'Nunito Sans', sans-serif;
          font-weight: var(--kv-ee-body-font-weight, normal);
          font-style: var(--kv-ee-body-font-style, normal);
    }
      .footer .container .box-2 li a{
          text-decoration: none;
          display: block;
          color: white;
          font-size: 15px;
          text-transform: capitalize;
          white-space: nowrap;
          transition: background-color 0.15s cubic-bezier(0.08, 0.91, 0.36, 0.98);
          position: relative;
          z-index: 1;
          letter-spacing: 1px;
          font-family: 'Nunito Sans', sans-serif;
    }
      .footer .container .box-2 li a::before{
          position: absolute;
          content: "";
          width: 0%;
          background: white;
          height: 2px;
          top: 115%;
          transform: translate(-50%, -50%);
          left: 50%;
          transition: all 0.2s ease-in-out;
    }
      .footer .container .box-2 li a:hover::before{
          width: 100%;
    }
    /* end footer  */

