
/* ===== Fonts ===== */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700;800;900&display=swap');

/* ===== Global css ===== */
:root{
    --main-color: #2c9094;
    --color-1: #e91e63 ;
    --color-2: #f5ae10;
    --color-3: #09d69c ;
    --bg-dark: #2b2c2f;
    --main-to-dark-color: var(--main-color);
    --dark-to-main-color: var(--bg-dark);
    --shadow-black-100: 0px 5px 15px rgba(0,0,0,0.1);
    --shadow-black-300: 0px 5px 15px rgba(0,0,0,0.3);
    --black-900: #000000;
    --black-400: #555555;
    --black-100: #f7f7f7;
    --black-000: #ffffff;
    --black-alpha-100: rgba(0,0,0,0.05);

}
body {
  font-family: 'Poppins', sans-serif;
  color: #0c0c0c;
  background-color: #ffffff;
  overflow-x: hidden;
   
}
*{
    margin: 0;
    padding: 0;
    outline: none!important;
}

.logo{

    width:"10%";
    margin-right: 20px;
   
}
ul{
    list-style: none;
}
.layout_padding {
  padding: 90px 0;
}

.layout_padding2 {
  padding: 75px 0;
}

.layout_padding2-top {
  padding-top: 75px;
}

.layout_padding2-bottom {
  padding-bottom: 75px;
}

.layout_padding-top {
  padding-top: 90px;
}

.layout_padding-bottom {
  padding-bottom: 90px;
}

.heading_container {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
     -moz-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.heading_container h2 {
  position: relative;
  text-transform: uppercase;
  font-weight: bold;
  margin-bottom: 0;
}

.heading_container p {
  margin-top: 10px;
  margin-bottom: 0;
}

.heading_container.heading_center {
  -webkit-box-align: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}

a,
a:hover,
a:focus {
  text-decoration: none;
}

a:hover,
a:focus {
  color: initial;
}

.btn,
.btn:focus {
  outline: none !important;
  -webkit-box-shadow: none;
          box-shadow: none;
}

/*header section*/
.hero_area {
  position: relative;
  height: 100vh;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(8, 19, 92, 0.9)), to(rgba(8, 19, 92, 0.9))), url(../images/slider-bg.jpg);
  background-image: -webkit-linear-gradient(left, rgba(8, 19, 92, 0.9), rgba(8, 19, 92, 0.9)), url(../images/slider-bg.jpg);
  background-image: -moz-linear-gradient(left, rgba(8, 19, 92, 0.9), rgba(8, 19, 92, 0.9)), url(../images/slider-bg.jpg);
  background-image: -o-linear-gradient(left, rgba(8, 19, 92, 0.9), rgba(8, 19, 92, 0.9)), url(../images/slider-bg.jpg);
  background-image: linear-gradient(to right, rgba(8, 19, 92, 0.9), rgba(8, 19, 92, 0.9)), url(../images/slider-bg.jpg);
  background-size: cover;
}

.sub_page .hero_area {
  height: auto;
}

.header_section {
  padding: 15px 0;
}

/* ===== Navbar ===== */



.navbar{
    background-color: var(--main-color);
    padding: 20px 0;
}
.navbar > .container{
    padding: 0 15px;
}
.navbar .navbar-brand{
    font-size: 30px;
    color: #ffffff;
    font-weight: 500;
    text-transform: capitalize;
}
.navbar .nav-item{
    margin-left: 40px;
}
.navbar .nav-item .nav-link{
    font-size: 16px;
    color: #ffffff;
    font-weight: 400;
    text-transform: capitalize;
   /* padding: 5px 0;*/
    position: relative;
}
.navbar .nav-item .nav-link::before{
    content: '';
    position: absolute;
    right: 0;
    left: 0;
    bottom: 0;
    height: 1px;
    background-color: #ffffff;
    transition: all 0.5s ease;
    transform: scale(0);
}
.navbar .nav-item .nav-link.active::before,
.navbar .nav-item .nav-link:hover::before{
    transform: scale(1);
}

/* ===== navbar ends ====== */

/* ===== home starts ====== */

.home{
    background-image: url('../assets/images/new branding logo and barcode.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 100vh;
    background-color: var(--main-to-dark-color);
    padding: 150px 0;
    display: flex;
    align-items: center;
   
}
.home h1{
    font-size: 45px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 20px;
}
.home p{
    font-size: 18px;
    line-height: 28px;
    color: #ffffff;
    margin: 0;
    font-weight: 300;
}
.home .home-btn{
    margin-top: 40px;
}

.home .home-btn .video-play-btn{
    margin-left: 30px;
    height: 50px;
    width: 50px;
    padding: 0;
    font-size: 16px;
    animation: pulse_01 2s ease infinite;
}
.home .home-btn .video-play-btn:hover{
    animation: none;
    box-shadow: var(--shadow-black-300);
}
.home .home-btn .video-play-btn i{
    line-height: 50px;
}
.home-img img{
    max-width: 250px;
    width: 100%;
    box-shadow: var(--shadow-black-100);
    animation: bounceTop_01 3s ease infinite;
}
.home-img{
    position: relative;
}
.home-img .circle{
    position: absolute;
    height: 400px;
    width: 400px;
    z-index: 1;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}

.home-img .circle::before{
    content: '';
    position: absolute;
    height: 60px;
    width: 60px;
    top:30px;
    left: 30px;
    background-color: rgba(255,255,255,0.4);
    border-radius: 50%;
    transform-origin: 170px 170px;
    animation: spin_01 6s linear infinite;
}

/* ===== home end ====== */


/* first part page */
#price .price {
  font-size: 15px;
  /*text-align: center;*/
  margin: 0 auto;
  padding: 5px 20px;
  background: white;
}
#price .price-title {
  font-size: 30px;
  color: black;
  /*text-align: center;*/
  /*margin-top: 155px;*/
  margin-bottom: 10px;
  /*padding: 10px 0;*/
  font-weight: 300;
  text-transform: uppercase;
}
#price h1 {
  color: black;
  text-align: center;
  margin-bottom: 10px;
  padding: 5px 0;
  font-weight: 300;
  text-transform: uppercase;
}
#price img {
  width: 50%;
  height:500px;
  background-size: cover;
}
#price ul {
  list-style-type: none;
  font-size: 24px;
  text-align: left;
}

#price .price-item {
  display: flex;
  padding-bottom: 20px;
  flex-direction: row;
  justify-content: space-evenly;
}

.desc{
    margin:25px;
    font-size:20px;
}

.intro{
    font-size:18px;
   
}

/* End  first part page  */

/* ====== Team Section starts ======= 

.team{
    background-color: var(--shadow-black-300);
}
.team-item{
    box-shadow: var(--shadow-black-100);
    border-radius: 10px;
    margin: 15px;
    padding: 15px;
}
.team-item h3{
    font-size: 22px;
    margin: 20px 0;
    color: var(--black-900);
    font-weight: 500;
    text-transform: capitalize;
}
.team-item span{
    display: block;
    font-size: 16px;
    color: var(--black-400);
    font-weight: 300;
}


/* ====== Team Section ends ======= */*/

/* ===== count down starrt ====== */

.counterbg{
/*    background-image:url('../assets/images/new branding logo and barcode.jpg');
    background-size:cover;*/
}

.stat{
   
   padding-top:80px;
   padding-bottom:80px;
   color:white;
   background-attachment:fixed;
   margin-top:209px;
   
}

.stat i{
    font-size:50px;
    
}

.stat-items h2{
    font-weight:bold;
    font-size:42px;
    /*color:darkorange;*/
}

.stat p{
    font-weight:bold;
    letter-spacing:1px;
}


/* ===== count down end ====== */



/* ====== Footer section starts ======= */

.footer{
    background-color: var(--main-color);
    padding: 50px 0;
  
}
.footer-col h3{
    color: var(--black-000);
    font-size: 22px;
    text-transform: capitalize;
    font-weight: 500;
    margin: 0 0 20px;
}
.footer-col p{
    color: var(--black-100);
    font-size: 17px;
    font-weight: 300;
    line-height: 26px;
}
.footer-col ul{
    margin: 0;
}
.footer-col ul li:not(:last-child){
    margin-bottom: 20px;
}
.footer-col ul li a{
    color: var(--black-100);
    font-size: 17px;
    font-weight: 300;
    line-height: 26px;
    text-decoration: none;
    text-transform: capitalize;
}
.footer-col ul li a:hover{
    padding-left: 20px;
    transition: all 0.5s ease;
}
.footer .copyright-text{
    margin-top: 50px;
    border-top: 1px solid var(--black-100);
}
.footer .copyright-text p{
    text-align: center;
    color: var(--black-100);
    font-size: 17px;
    padding-top: 30px;
    font-weight: 300;
    line-height: 26px;
}
/* ====== Footer section ends ======= */

/* ===== toggle theme */
.toggle-theme{
    position: fixed;
    right: 0;
    top:calc(50% - 20px);
    height: 50px;
    width: 50px;
    color: #ffffff;
    text-align: center;
    border-radius: 50%;
    cursor: pointer;
    z-index: 1200;
    font-size: 20px;
    box-shadow: var(--shadow-black-300);
    background-color: var(--dark-to-main-color);
}
.toggle-theme i{
    line-height: 45px;
}




@media only screen and (max-width: 720px) {
    
    #price .price-item {
    flex-direction: column;
    align-items: center;
  }
  
  #price ul {
    padding-inline-start: 0;
  }
  
  #price  .price img{
      width:100%;
      height:80%;
  }
  
 .desc{
    align-items: center;
    margin:5px;
    font-size:16px;
    font-weight:10px
    
}


.intro{
    align-items: center;
    font-size:15px;
    font-weight:10px
}
  
}

