:root {
--main-padding: 100px;
--main-color: #00838f;
--main-transition:all 0.3s ease;
--bg-color:#fff;
--tex-color:#123;
}

body {
 padding: 0;
  margin: 0;
  background-color: #212121e6;
  color:#fff;
  
}
html {
  scroll-behavior: smooth;
}
a {
  text-decoration: none;
  color: black;
}
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: var(--main-transition);
        height: 80px;
}
.logo {
  width: 142px;
}
.logo img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 2px solid var(--main-color);
    transition: var(--main-transition);
    cursor: pointer;
}
.logo img:hover{
    transform: rotate(2deg);
}
header ul {
  display: flex;
  margin: 0;
  background: #00000047;
  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%;
}
.profile a .img{
    width: 25px;
    height: 25px;
    border-radius: 50%;
    transition: all 0.5s ease-in-out;
    position: relative;
}
.profile a .img:hover{
  width: 40px;
  height: 40px;
}
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);

}
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;

  }
   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;

  }
  header .mode i{
      font-size: 28px;
    cursor: pointer;
    transition: all 0.3s 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 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: 58px;
              }
              header.active .bars {
        display: block;
    margin-left: 58px;
              }
              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 home */
.home {
  padding-bottom: var(--main-padding);
  background-image: linear-gradient(rgb(0 0 0 / 80%), rgb(0 0 0 / 15%)), url(../image/back.jpeg);
  min-height: 100vh;
  padding-top: 335px;
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  transition:all 0.7s;
}

.home .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 73px;
  position: absolute;
  top: 182px;
}
.home .container .content {
display: flex;
flex-direction: column;
gap: 10px;
  margin-bottom: 56px;
}
.home .container .details {
  width: 493px;
}
.home .container .content b {
  margin-top: 10px;
  margin-bottom: 10px;
  font-family: 'Libre Baskerville', serif;
}

.home .container .content {
  margin-left: 146px;
  width: 410px;
}
.home .container .content b {
  color: white;
  font-size: 20px;
  font-weight: 700px;
  font-style: normal;
  line-height: 1.4;
  padding-bottom: 20px;
  font-family: 'Libre Baskerville', serif;}

.home .container .content a {
  font-size: 20px;
  text-transform: capitalize;
  width: fit-content;
  padding: 15px 35px;
  display: block;
  transition: 0.3s;
  z-index: 0;
  overflow: hidden;
  position: relative;
  border-radius: 5px;
  border: 2px solid white;
    font-family: 'Libre Baskerville', serif;

}
.home .container .content .kv-ee-button-has-title {
  margin-top: 20px;
}
.home .container .content a::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: var(--main-color);
  z-index: -1;
  top: 0;
  left: -100%;
  transition: all 0.3s linear;
}
.home .container .content a:hover::before {
  left: 0;
}

.home .container .details h1 {
  color: white;
  font-size: 55px;
  font-weight: 700;
  text-transform: capitalize;
  margin-left: 20px;
  transform: translateY(0px);
  font-family: 'Libre Baskerville', serif;

}
.home .container .details h1 span {
  text-transform: none;
}
/* start media query for header  */

/* end media query for header  */
/* start media query for home   */
@media screen and (max-width: 600px) {
  .home .container {
      display: flex;
    flex-direction: column-reverse;
    gap: 30px;
    position: absolute !important;
    top: 113px;
}
  .home .container .content {
    margin-left: 0px;
    width: 100%;
  }

  .home .container .content b {
    line-height: 1.9;
  }
  .home .container .content .kv-ee-button-has-title {
    margin-top: 15px;
  }
  .home .container .content a {
    padding: 10px 26px;
  }

  .home .container .details {
    width: 100%;
  }

  .home .container .details h1 {
    font-size: 50px;
    font-weight: normal;
    margin-left: 0px;
  }
}
@media screen and (min-width: 601px) and (max-width: 900px) {
  .home .container {
    display: flex;
    flex-direction: column-reverse;
    gap: 20px;
  }
  .home .container .content {
    margin-left: 30px;
    width: 100%;
  }

  .home .container .content b {
    line-height: 1.9;
  }
  .home .container .content .kv-ee-button-has-title {
    margin-top: 15px;
  }
  .home .container .content a {
    padding: 10px 26px;
  }

  .home .container .details {
    width: 100%;
  }

  .home .container .details h1 {
    font-size: 50px;
    font-weight: normal;
    margin-left: 13px;
  }
}
@media screen and (min-width: 901px) and (max-width: 1000px) {
  .home .container {
    display: flex;
    gap: 78px;
  }
  .home .container .content {
    margin-left: 30px;
    width: 50%;
  }

  .home .container .content b {
    line-height: 1.4;
  }
  .home .container .content .kv-ee-button-has-title {
    margin-top: 15px;
  }
  .home .container .content a {
    padding: 10px 26px;
  }

  .home .container .details {
    width: 50%;
    margin-left: -62px;
  }

  .home .container .details h1 {
    font-size: 55px;
    font-weight: normal;
    margin-left: 0px;
  }
}
/* end media query for home   */

/* end home  */
#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:2;
    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);
}
/* start road map  */
.road-map{
padding-top: 50px;
    padding-bottom: 50px;
    
}
.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 {
  /* color: white; */
  border: 1px solid ;
  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;
}
.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;


}
@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;
  }
}
.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 !important;

}
.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  */

.footer {
    padding-top: 50px;
    padding-bottom: 30px;
    position: relative;
    background-color: #363636;
    transition: all 0.9s;
}

.footer .container {
  display: flex;
  justify-content: space-between;
  text-align: center;
  align-items: center;
  margin: auto;
  flex-wrap: wrap;
}
.footer .container .box-2{
  margin:15px auto;
}
.footer .container .box-2 p {
  color: white;
  font-size: 20px;
  text-align: center;
}
.footer .container .box-2 p span{
  color: var(--main-color);
  font-size: 25px;
  font-weight: bold;

}

.footer .container .box-1,
.footer .container .box-3


{
  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-3 h2{
      margin-bottom: 1rem;
        font-family: 'Libre Baskerville', serif;
  color: white;
    text-transform: capitalize;
   
}
.footer .container .box-3 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-3 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-3 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-3 li a:hover::before{
    width: 100%;

}
/* end footer  */

