@charset "UTF-8";

*{
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}
html{
  scroll-behavior: smooth;
}
::-moz-selection { /* Code for Firefox */
  background: #3aafa9;
  color: #fff;
}

::selection {
  background: #3aafa9;
  color: #fff;
}
body::-webkit-scrollbar-track{
	-webkit-box-shadow: inset 0 0 4px rgba(128, 128, 128, 0.3);
	background-color: #F5F5F5;
}
body::-webkit-scrollbar{
	width: 12px;
	background-color: #F5F5F5;
}
body::-webkit-scrollbar-thumb{
    background-image: linear-gradient(180deg, #17242a 0%, #17242a 99%);
    box-shadow: inset 2px 2px 5px 0 rgba(#fff, 0.5);
    border: 1px solid #e9e9e9;
}
body{
    width: 100%;
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden !important;
}
a{
    text-decoration: none !important;
}
ul{
    list-style: none;
}
h1{
    font-size: 60px;
    font-weight: 700;
    letter-spacing: -.04em;
    line-height: 70px;
    text-align: center;
}
h2{
    font-size: 60px;
    font-weight: 700;
    letter-spacing: -.04em;
    line-height: 70px;
}
h4{
    margin: 0;
}

p{
    margin: 0;

}

@media only screen and (min-width: 1450px){
    .container {
        max-width: 1410px;
    }
}
:root {
    --main-font-family: "Inter",sans-serif;
    --main-color: #3aafa9;
    --optional-color: #17242a;
    --main-gradient-color: linear-gradient(90deg,rgba(255,65,76,.96),#ff8760);
    --white-color: #fff;
    --black-color: #2e2f46;
    --paragraph-color: #494a60;
    --font-size: 16px;
    --transition: .6s;
}

.default-btn {
    border: none;
    position: relative;
    display: inline-block;
    text-align: center;
    overflow: hidden;
    z-index: 1;
    color: #fff;
    background-color: #3aafa9;
    transition: .6s;
    border-radius: 5px;
    padding: 10px 20px;
    font-weight: 500;
    font-size: 18px;
    margin-bottom: -5px;
 }
 .default-btn span {
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    border-radius: 50%;
    background-color: #17242a;
    transition: width .5s ease-in-out,height .5s ease-in-out;
    transform: translate(-50%,-50%);
    z-index: -1;
    border-radius: 5px
 }
 .default-btn:hover {
    color: #fff;
    transform: translateY(-2px)
 }
 
 .default-btn:hover span {
    width: 225%;
    height: 562.5px
 }
 .default-btn img {
    width: 17px; 
    margin-top: -4px;
 }

 :root {
    --header-height: 3.5rem;
    /*========== Colors ==========*/
    /*Color mode HSL(hue, saturation, lightness)*/
    --first-color: #3aafa9;
    --first-color-lighten: hsl(220, 68%, 97%);
    --title-color: #17242a;
    --text-color: hsl(220, 12%, 45%);
    --body-color: hsl(220, 100%, 99%);
    /*========== Font and typography ==========*/
    /*.5rem = 8px | 1rem = 16px ...*/
    --body-font: "Poppins", sans-serif;
    --normal-font-size: .938rem;
    --small-font-size: .813rem;
    --smaller-font-size: .75rem;
    /*========== Font weight ==========*/
    --font-medium: 500;
    --font-semi-bold: 600;
    /*========== z index ==========*/
    --z-tooltip: 10;
    --z-fixed: 100;
  }
  @media screen and (min-width: 1024px) {
    :root {
      --normal-font-size: 1rem;
      --small-font-size: .875rem;
      --smaller-font-size: .813rem;
    }
  }
  
  /*=============== BASE ===============*/
  * {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
  }

  
  ul {
    list-style: none;
  }
  
  a {
    text-decoration: none;
  }
  
  /*=============== REUSABLE CSS CLASSES ===============*/

  .top-header-area {
    padding-top: 15px;
    padding-bottom: 15px
 }
 
 .top-header-content {
    padding-left: 0;
    list-style-type: none;
    margin-bottom: 0
 }
 
 .top-header-content li {
    display: inline-block;
    position: relative;
    /* padding-left: 22px; */
    font-size: 15px;
    font-weight: 500;
    color: var(--black-color);
    margin-right: 18px;
    -webkit-transition: var(--transition);
    -moz-transition: var(--transition);
    -o-transition: var(--transition);
    transition: var(--transition)
 }
 
 .top-header-content li img {
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translatey(-50%);
    -moz-transform: translatey(-50%);
    -ms-transform: translatey(-50%);
    -o-transform: translatey(-50%);
    transform: translatey(-50%);
    color: var(--black-color);
    width: var(--font-size);
    -webkit-transition: var(--transition);
    -moz-transition: var(--transition);
    -o-transition: var(--transition);
    transition: var(--transition)
 }
 
 .top-header-content li a {
    color: var(--black-color)
 }
 
 .top-header-content li a:hover {
    color: var(--main-color)
 }
 
 .top-header-content li:last-child {
    margin-right: 0
 }
 
 .top-header-optional {
    padding-left: 0;
    margin-bottom: 0;
    text-align: right
 }
 
 .top-header-optional li {
    list-style-type: none;
    display: inline-block
 }
 
 .top-header-optional li a {
    margin-right: 15px
 }
 
 .top-header-optional li a:last-child {
    margin-right: 0
 }
 
 .top-header-optional li a i {
    display: inline-block;
    font-size: 16px;
    font-weight: 500;
    color: #17242a;
    -webkit-transition: var(--transition);
    -moz-transition: var(--transition);
    -o-transition: var(--transition);
    transition: var(--transition)
 }
 
 .top-header-optional li a i:hover {
    color: var(--main-color);
    -webkit-transform: translatey(-2px);
    -moz-transform: translatey(-2px);
    -ms-transform: translatey(-2px);
    -o-transform: translatey(-2px);
    transform: translatey(-2px)
 }
 
 @media only screen and (max-width: 767px) {
    .top-header-area {
        text-align:center;
        padding-top: 12px;
        padding-bottom: 12px
    }
 
    .top-header-optional {
        text-align: center
    }
 
    .top-header-content li {
        padding-left: 20px;
        font-size: 13px;
        margin-right: 10px
    }
 }

  
  /*=============== HEADER ===============*/
  .header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    /* box-shadow: 0 2px 8px hsla(220, 68%, 12%, 0.1); */
    background-color: #fff;
    z-index: var(--z-fixed);
  }
  
  /*=============== NAV ===============*/
  header .nav {
    /* height: var(--header-height); */
    background-color: #fff;
    /* box-shadow: 0 2px 8px hsla(220, 68%, 12%, 0.1); */
    padding: 0 20px;
    border-radius: 5px;
  }
  .nav__data {
    height: 100%;
    /* flex: 1; */
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .nav__logo {
    display: inline-flex;
    align-items: center;
    column-gap: 0.25rem;
    color: var(--title-color);
    font-weight: var(--font-semi-bold);
    transition: color 0.3s;
  }
  .nav__logo i {
    font-size: 1.25rem;
  }
  .nav__logo:hover {
    color: var(--first-color);
  }
  .nav__toggle {
    position: relative;
    width: 32px;
    height: 32px;
  }
  .nav__toggle-menu, .nav__toggle-close {
    font-size: 1.25rem;
    color: var(--title-color);
    position: absolute;
    display: grid;
    place-items: center;
    inset: 0;
    cursor: pointer;
    transition: opacity 0.1s, transform 0.4s;
  }
  .nav__toggle-close {
    opacity: 0;
  }
  @media screen and (max-width: 1118px) {
    .nav__data{
        flex: 1;
    }
    .others-options .option-item{
        display: none;
    }
    .nav__menu {
      background-color: #fff;
      position: absolute;
      left: 0;
      top: 2.5rem;
      width: 100%;
      height: calc(100vh - 3.5rem);
      overflow: auto;
      padding-block: 1.5rem 4rem;
      pointer-events: none;
      opacity: 0;
      transition: top 0.4s, opacity 0.3s;
    }
    .nav__menu::-webkit-scrollbar {
      width: 0.5rem;
    }
    .nav__menu::-webkit-scrollbar-thumb {
      background-color: hsl(220, 12%, 70%);
    }
  }
  .nav__link {
    color: var(--title-color);
    font-weight: var(--font-semi-bold);
    padding: 1.25rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: 0.5s;
  }
  .nav__link:hover {
    background-color: var(--first-color-lighten);
    color: #3aafa9;

  }
  
  /* Show menu */
  .show-menu {
    opacity: 1;
    top: 7.5rem;
    pointer-events: initial;
  }
  
  /* Show icon */
  .show-icon .nav__toggle-menu {
    opacity: 0;
    transform: rotate(90deg);
  }
  
  .show-icon .nav__toggle-close {
    opacity: 1;
    transform: rotate(90deg);
  }
  
  /*=============== DROPDOWN ===============*/
  .dropdown__button {
    cursor: pointer;
  }
  .dropdown__arrow {
    font-size: 1.5rem;
    font-weight: initial;
    transition: transform 0.4s;
  }
  .dropdown__content, .dropdown__group, .dropdown__list {
    display: grid;
  }
  .dropdown__container {
    background-color: var(--first-color-lighten);
    height: 0;
    overflow: hidden;
    transition: height 0.4s;
  }
  .dropdown__content {
    row-gap: 1.75rem;
  }
  .dropdown__group {
    padding-left: 2.5rem;
    row-gap: 0.5rem;
  }
  .dropdown__group:first-child {
    margin-top: 1.25rem;
  }
  .dropdown__group:last-child {
    margin-bottom: 1.25rem;
  }
  .dropdown__icon i {
    font-size: 1.25rem;
    color: var(--first-color);
  }
  .dropdown__title {
    font-size: var(--small-font-size);
    font-weight: var(--font-semi-bold);
    color: var(--title-color);
  }
  .dropdown__list {
    row-gap: 0.25rem;
  }
  .dropdown__link {
    font-size: 15px;
    font-weight: var(--font-medium);
    color: var(--text-color);
    transition: 0.5s;
  }
  .dropdown__link:hover {
    color: #3aafa9;
    padding-left: 5px;
  }
  
  /* Rotate dropdown icon */
  .show-dropdown .dropdown__arrow {
    transform: rotate(180deg);
  }
  
  /*=============== BREAKPOINTS ===============*/
  /* For small devices */
  @media screen and (max-width: 300px) {
    .dropdown__group {
      padding-left: 1.5rem;
    }
  }
  /* For large devices */
  @media screen and (min-width: 1118px) {
    /* Nav */
    .nav {
      height: calc(var(--header-height) + 2rem);
      display: flex;
      justify-content: space-between;
    }
    .nav__toggle {
      display: none;
    }
    .nav__list {
      display: flex;
      column-gap: 2rem;
      height: 100%;
    }
    .nav li {
      display: flex;
    }
    .nav__link {
      padding: 0;
    }
    .nav__link:hover {
      background-color: initial;
    }
    /* Dropdown */
    .dropdown__button {
      column-gap: 0.25rem;
      pointer-events: none;
    }
    .dropdown__container {
      height: max-content;
      position: absolute;
      /* left: 0;
      right: 0; */
      top: 8.5rem;
      background-color: var(--body-color);
      box-shadow: 0 6px 8px hsla(220, 68%, 12%, 0.05);
      pointer-events: none;
      opacity: 0;
      transition: top 0.4s, opacity 0.3s;
      border-radius: 5px;
    }
    .dropdown__content {
      grid-template-columns: repeat(4, max-content);
      /* column-gap: 3rem; */
      max-width: 1120px;
      margin-inline: auto;
    }
    .dropdown__group {
      padding: 2rem 6rem 2rem 1rem;
      align-content: baseline;
      row-gap: 1.25rem;
    }
    .dropdown__group:first-child, .dropdown__group:last-child {
      margin: 0;
    }
    .dropdown__list {
      row-gap: 0.75rem;
    }
    .dropdown__icon {
      width: 60px;
      height: 60px;
      background-color: var(--first-color-lighten);
      border-radius: 50%;
      display: grid;
      place-items: center;
      margin-bottom: 1rem;
    }
    .dropdown__icon i {
      font-size: 2rem;
    }
    .dropdown__title {
      font-size: var(--normal-font-size);
    }
    .dropdown__link {
        font-size: 15px;
    }
    .dropdown__link:hover {
       color: #17242a;
    }
    .dropdown__item {
      cursor: pointer;
    }
    .dropdown__item:hover .dropdown__arrow {
      transform: rotate(180deg);
    }
    .dropdown__item:hover > .dropdown__container {
      top: 8.5rem;
      opacity: 1;
      pointer-events: initial;
      cursor: initial;
    }
  }


/* ---------------- */
#contact{
    padding: 170px 0 50px 0;
}
#contact_info p a,
#contact p a{
    color: #3aafa9;
}

/* ---------------- */
#banner .container .row{
    padding: 190px 0 60px 0;
}

#banner .bnr-txt h4{
    font-size: 1.35em;
    letter-spacing: 2px;
    line-height: 25px;
}
#banner .bnr-txt p{
    letter-spacing: 1.5px;
}
/* ---------------- */

@keyframes slides {
    from {
      transform: translateX(0);
    }
    to {
      transform: translateX(-100%);
    }
}
  
.logos {
    overflow: hidden;
    padding: 30px;
    white-space: nowrap;
    position: relative;
}

.logos:before, .logos:after {
    position: absolute;
    top: 0;
    content: '';
    width: 250px;
    height: 100%;
    z-index: 2;
}

.logos:before {
    left: 0;
    background: linear-gradient(to left, rgba(255,255,255,0), rgb(255, 255, 255));
}

.logos:after {
    right: 0;
    background: linear-gradient(to right, rgba(255,255,255,0), rgb(255, 255, 255));
}

.logo_items {
    display: inline-block;
    animation: 10s slides infinite linear;
}

.logos:hover .logo_items {
    animation-play-state: paused;
}

.logo_items img{
    height: 90px;
    padding: 15px 30px;
}

/**/
.flex{
    display: flex;
    justify-content: center;
    align-items: center;
}
#services{
    background-color: #efefef;
    border-radius: 5px;
}
#services .row{
    padding: 50px;
}
#services h1{
    font-size: 62px;
    font-weight: 700;
    letter-spacing: -.04em;
    line-height: 70px;
}
#services .img img{
    width: 100%;
    border-radius: 5px;
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
}
#services h4{
    font-size: 1.35em;
    letter-spacing: 2px;
    line-height: 12px;
}
.tabs{
    /* background-color: #efefef; */
    padding: 20px;
    border-radius: 5px;
    margin-bottom: 15px;
}

.content {
    height: 100%;
}

.tab-content .tab-pane .col-lg-4 .span{
    letter-spacing: 2px;
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 10px;
    text-align: center;
    text-transform: capitalize;
    height: auto;
}
.tab-pane .col-lg-4{
    /* padding: 15px; */
    text-align: center;
}
.tab-pane .col-lg-4 h1 span{
    font-size: 33px;
}
.tab-pane .col-lg-4 .p-3{
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
    border-radius: 5px;
}
.tab-content .tab-pane .col-lg-4 p img{
    width: 20px;
}
.tab-content .tab-pane .include p{
    margin: 6px;
    text-align: left;
}
@media only screen and (min-width: 1450px){
    #package .container{
        width: 1180px;
    }
}
.nav-bar {
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    padding-bottom: 20px;
    margin: 20px auto 0;
    justify-content: center;
    align-items: center;
}
.nav-bar li{
    justify-content: center;
    align-items: center;
    display: flex;
    text-align: center;
    list-style: none;
    padding: 5px;
    
}
.nav-bar li label{
    display: block;
    padding: 6px 12px;
    color: #17242a;
    border-radius: 5px;
    text-decoration: none;
    text-transform: capitalize;
    transition: all 0.15s ease-in-out;
    border: 1px solid #afafaf;
    cursor: pointer;
}
.nav-bar li.active label{
    color: #fff !important;
    border: 1px solid #17242a;
    background-color: #17242a;
}
.nav-bar img{
    width: 40px;
}
.nav-bar .txt{
    display: none;
    padding-left: 5px;
}
.nav-bar li label.active .txt{
    display: inline-block;
}


/**/

#our_features{
    padding: 50px 8px;
    background-color: #17242a;
    color: #fff;
    
  }
  .owl-carousel button {
      background: #fff !important;
      width: 10px;
      height: 10px;
      border-radius: 2px;
      margin: 0 5px;
      transition: 0.3s;
  }

  .owl-dots {
      text-align: right;
  }
  .owl-dots button.active {
      width: 30px;
  }
  


  /* #our_features h1{
    font-size: 60px;
    font-weight: 700;
    letter-spacing: -.04em;
    line-height: 70px;
  } */
  

  #our_features h4{
    font-size: 1.35em;
    letter-spacing: 2px;
    /* line-height: 12px; */
  }

.bx_1{
    background-image: url(../images/brand.webp);
}
.bx_2{
    background-image: url(../images/website.webp);
}
.bx_3{
    background-image: url(../images/app.png);
}
.bx_4{
    background-image: url(../images/digital.webp);
}
.bx_5{
    background-image: url(../images/content.webp);
}
.bx_6{
    background-image: url(../images/social.png);
}
.bx_7{
    background-image: url(../images/seo.webp);
}
.bxx{
    text-align: left;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 400px;
    border-radius: 5px;
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
    color: #17242a;
}
#owl-carousel .bxx {
    margin: 8px !important;
}
.owl-carousel .bxx div{
    background-color: #ffffffd4;
    position: absolute;
    bottom: 17px;
    padding: 20px;
    border-radius: 22px;
    width: 60%;
    margin-left: 9px;
    border-radius: 5px;
  }
  .owl-carousel .bxx div h3{
    font-weight: 700;
    letter-spacing: -.04em;
  }

  /**/

  .card{
    border: none !important;
  }
  #portfolio{
    padding: 50px 0;
  }
  #portfolio .row{
    margin: 0;
    }
  /* #portfolio h1{
    font-size: 60px;
    font-weight: 700;
    letter-spacing: -.04em;
    line-height: 55px;
    text-align: center;
  } */

  .window {
    border: 2px solid #17242a;
    border-radius: 5px;
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
    cursor: n-resize;
    margin-top: 25px;
}
.window img {
    width: 100%;
    object-fit: cover;
    object-position: top;
    height: 350px;
    transition: 8s all ease;
}
.window img:hover {
    object-position: bottom;
}

/**/

#ready{
    /* margin: 50px 0; */
    padding: 50px;
    background-color: #3aafa9;
    border-radius: 5px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 20px 25px -5px, rgba(0, 0, 0, 0.04) 0px 10px 10px -5px;
}
#readytostart{
    padding: 30px 8px;
}
#readytostart .option-item{
    padding-top: 10px;
}
/* #ready h1{
    font-size: 45px;
    font-weight: 700;
    letter-spacing: -.04em;
    line-height: 55px;
} */
#ready .default-btn{
    background-color: #17242a;
}

/**/
#package{
    padding: 50px 0;
}
#package .col-lg-4{
    padding-top: 5px;
    padding-bottom: 20px;
}
/* #package h1{
    font-size: 60px;
    font-weight: 700;
    letter-spacing: -.04em;
    line-height: 70px;
    text-align: center;
} */

/**/

#brand{
    padding: 50px 0;
    background-color: #17242a;
    color: #fff;
}
/* #brand h1{
    font-size: 60px;
    font-weight: 700;
    letter-spacing: -.04em;
    line-height: 70px;
    text-align: center;
    color: #fff;
} */
#brand p{
    margin: 2px;
}
#brand .col-lg-4 p img{
    width: 16px;
}
#brand .col-lg-4 h2{
    font-size: 45px;
    font-weight: 700;
    letter-spacing: -.04em;
    line-height: 70px;
    color: #fff;
}
#brand .col-lg-4 h2 del{
    font-size: 30px;
    color: #efefef;
}


/**/
/* #testimonial h1{
    font-size: 60px;
    font-weight: 700;
    letter-spacing: -.04em;
    line-height: 70px;
    text-align: center;
} */

#testimonial{
    padding: 50px 0;
}
#testimonial img{
    width: 30%;
}
#testimonial .div{
    padding-bottom: 30px;
}
#testimonial p{
    text-align: center;
}
#testimonial h5{
    font-weight: bold;
    text-align: center;
}
#testimonial .p-3{
    background-color: #fafafa;
    border-radius: 5px;
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
}
#testimonial .bg_color{
    background-color: #3aafa9;
    color: #fff;
}

#testimonial .owl-carousel button {
    background: #17242a !important;
    width: 10px;
    height: 10px;
    border-radius: 2px;
    margin: 0 5px;
    transition: 0.3s;
}
#testimonial .owl-dots {
    text-align: center;
}
#testimonial  .owl-dots button.active {
    width: 30px;
}
@media only screen and (min-width: 1450px){
    #testimonial .container{
        width: 1180px;
    }
}

/**/

footer{
    background-color: #17242a;
    padding: 50px 8px;
    color: #fff;
}
footer ul{
    padding: 0;
}
footer li{
    list-style: none;
    
}
footer a{
    text-decoration: none;
    color: #fff;
    transition: 0.3s ease;
}
footer a:hover{
    color: #3aafa9;
}
footer .bottom_footer{
    background-color: #f4f8fc;
    padding: 20px 0;
    border-radius: 5px;
    color: #000;
    margin-top: 50px;
}
footer .bottom_footer p{
    padding: 0;
    margin: 0;
}
footer p{
    margin: 0;
}
footer img{
    margin-bottom: 10px;
}
footer h3{
    padding: 25px 0;
    font-weight: bold;
}


/* Contact Page */

/* #contact h1{
    font-size: 60px;
    font-weight: 700;
    letter-spacing: -.04em;
    line-height: 70px;
    text-align: center;
} */
#form{
    padding: 50px 8px 15px 8px;
}
#form .container{
    background-color: #f1f1f1;
    border-radius: 5px;
    padding: 50px;
}
/* #form h1{
    font-size: 60px;
    font-weight: 700;
    letter-spacing: -.04em;
    line-height: 55px;
} */
/* #form .contact_txt{
    padding: 0 20px;
} */
form .col{
    padding-bottom: 10px;
}
#form .form-control {
    border: 5px !important;
}
#contact_info{
    padding: 0 8px 50px 8px;
}
#contact_info .container{
    background-color: #f1f1f1;
    border-radius: 5px;
    padding: 50px;
    /* font-size: 20px; */
    box-shadow: rgba(0, 0, 0, 0.1) 0px 20px 25px -5px, rgba(0, 0, 0, 0.04) 0px 10px 10px -5px;
}
#contact_info .container p{
    margin: 0;
}
#contact_info .container i{
    font-size: 30px;
    padding-bottom: 15px;
    background: -webkit-linear-gradient(#8bd3cf, #3aafa9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
#contact .col-lg-4{
    padding: 30px 0;
}

/* About Page */

#mission h1,
#vission h1,
#values h1{
    font-size: 60px;
    font-weight: 700;
    letter-spacing: -.04em;
    line-height: 70px;
}
#vission{
    background-image: url(../images/vission1.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
#mission,
#vission,
#values{
    padding: 100px 50px;
}
#mission,
#vission{
    color: #fff;
}
#mission{
    background-color: #3aafa9;
}

/* Logo Page */

#logo .col-lg-4 .p-3{
    border-radius: 5px;
}
/* #logo_desc h1{
    font-size: 50px;
    font-weight: 700;
    letter-spacing: -.04em;
    line-height: 50px;
} */
.logo_desc p{
    letter-spacing: 1px;
}
#logo_desc{
    padding: 30px;
}
#logo_desc img{
    border-radius: 5px;
}
/* #logo h1{
    font-size: 60px;
    font-weight: 700;
    letter-spacing: -.04em;
    line-height: 70px;
} */
#logo{
    background-color: #17242a;
    color: #fff;
    padding: 50px 0;
}
#logo .img-hover-zoom{
    border: 1ps solid #3aafa9;
}
#logo img{
    border-radius: 5px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 20px 25px -5px, rgba(0, 0, 0, 0.04) 0px 10px 10px -5px;
}
#logo .col-lg-3{
    padding: 5px;
}

/* App Development Page */
#owl-carousel2 img{
    border-radius: 5px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 20px 25px -5px, rgba(0, 0, 0, 0.04) 0px 10px 10px -5px;
}

/**/
.social_media img{
    border-radius: 5px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 20px 25px -5px, rgba(0, 0, 0, 0.04) 0px 10px 10px -5px;
}
.social_media .col-lg-4{
    padding: 0;
}

/**/
.seo .container{
    background-color: #17242a;
    border-radius: 5px;
    padding: 50px;
    color: #fff;
}
.seo .p-3{
    color: #fff;
}
/* .seo h3{
    font-size: 35px;
    font-weight: 700;
    letter-spacing: -.04em;
    line-height: 50px;
} */


/* More Settings */

@media only screen and (max-width: 991px){
    #brand .brand_img img{
        display: none;
    }
    #navbar .others-options a{
        display: none;
    }
    .mobile_app .flex div{
        padding: 10px;
    }
    h2{
        padding: 10px 0;
    }
}

@media only screen and (max-width: 768px){
    h1{
        font-size: 45px;
        line-height: 50px;
    }
    h2{
        font-size: 45px;
        line-height: 50px;
    }
    .window{
        margin-top: 15px;
    }
    #package .col-lg-4{
        padding-bottom: 10px;
    }
    .bxx {
        height: 300px;
    }
    .logos:before, .logos:after {
        width: 150px;
    }
    .seo .container {
        padding: 50px 20px;
    }
    .seo .p-3 {
        padding: 12px 0 !important;
    }
}
@media only screen and (max-width: 575px){
    /* #logo_desc img {
        display: none;
    } */
    #form .container,
    #contact_info .container,
    #ready{
        padding: 25px;
    }
    h1{
        font-size: 40px;
        line-height: 40px;
    }
    h2{
        font-size: 40px;
        line-height: 40px;
    }
    .window img {
        height: 300px;
    }
    #mission, #vission, #values {
        padding: 50px 20px;
    }
    .bxx {
        height: 270px;
    }
    .owl-carousel .bxx div {
        padding: 10px;
        width: 75%;
    }
    /* .owl-stage,
    .owl-item{
        margin: 0;
    } */
    .logos:before, .logos:after {
        width: 100px;
    }
    /* #banner .container .row {
        padding: 100px 0 20px 0;
    } */
    #banner .bnr-txt h4 {
        line-height: 25px;
    }
    #banner .btn-bnr a span{
        margin-bottom: 0;
    }
    #banner .bnr-txt h2{
        padding: 10px 0;
    }
    #banner .bnr-txt h2 {
        line-height: 45px;
    }
    .top-header-optional {
        display: none;
    }
    #logo_desc {
        padding: 35px 0;
    }
}

/* .top-header-area .row, */
footer .row,
#package .row,
#brand .row,
#banner .row,
#logo_desc .row,
#our_features .row,
#logo .row{
    margin: 0 ;
}
.img-hover-zoom{
    height: auto;
    overflow: hidden;
    border: 1px solid #6d6d6d;
    border-radius: 8px;
}
.img-hover-zoom img {
    transition: transform .6s ease;
  }
  .img-hover-zoom:hover img {
    transform: scale(1.2);
  }

  /**/


  .tab-pane .p_content{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    height: 350px;
    overflow-y: auto;
  }
  .tab-pane .p_content::-webkit-scrollbar-track{
      -webkit-box-shadow: inset 0 0 4px rgba(128, 128, 128, 0.3);
      border-radius: 5px;
      background-color: #F5F5F5;
  }
  .tab-pane .p_content::-webkit-scrollbar{
      width: 6px;
      background-color: #F5F5F5;
  }
  .tab-pane .p_content::-webkit-scrollbar-thumb{
      border-radius: 5px;
      -webkit-box-shadow: inset 0 0 6px rgba(165, 165, 165, 0.3);
      background-color: rgba(172, 172, 172, 0.589);
  }
  
  /**/
  
  #privacy-policy p span,
#privacy-policy h2,
#refund-policy p span,
#refund-policy h2,
#terms-conditions p span,
#terms-conditions h2{
  font-weight: bold;
}
#privacy-policy .span_color,
#terms-conditions .span_color,
#refund-policy .span_color{
  color: #3aafa9;
  font-weight: bold;
}
#privacy-policy .underline,
#terms-conditions .underline,
#refund-policy .underline{
  background-color: #3aafa9;
  height: 4px;
  width: 20%;
  margin: 10px 0;
  margin-top: -5px;
  border-radius: 20px;
}

/* Addition Css*/

#form .container{
    background: transparent;
}
#form input,
#form textarea,
#form select{
    background-color: #def2f1;
}
#form label{
    margin-bottom: 0;
}

@media screen and (min-width: 1450px){
    #form .tab-content {
        padding: 0 ;
    }
    #form .container{
        width: 80%;
    }
}
#form .tab-content .tab-pane{
    background-color: #3aafa9;
    border-radius: 10px;
    color: #17242a;
}
#form .tab-content .tab-pane hr{
    background-color: #17242a;
}
#form .tab-content .tab-pane .col-12{
    padding: 40px 20px;
}
#form .offer-txt{
    font-size: 18px;
    font-weight: bold;
}

/*Countdown style*/
#the-24h-countdown {
    margin-top: 15px;
    font-family: 'Poppins', sans-serif;
    text-align: center;
    font-size: 2.5rem;
    width:350px;
}
#the-24h-countdown span {
    background:#def2f1;
    border: 1px solid #3aafa9;
    color:#17242a; 
    width:70px;
    display:inline-block;
    height:70px;
    float:left;
    line-height:70px;
    margin-right:30px;
    border-radius:10px;
}
#the-24h-countdown .min:before, #the-24h-countdown .seg:before {
    content:':';
    color:#17242a;
    margin-left:-33px;
    margin-right:26px;
}



.shake-button {
    animation-name: shake;
    animation-duration: 4s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in;
}
@keyframes shake {
    0% {left: 0}
    1% {left: -3px}
    2% {left: 5px}
    3% {left: -8px}
    4% {left: 8px}
    5% {left: -5px}
    6% {left: 3px}
    7% {left: 0}
}
.btn-11 {
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
    box-shadow:inset 2px 2px 2px 0px rgba(255,255,255,.5), 7px 7px 20px 0px rgba(0,0,0,.1), 4px 4px 5px 0px rgba(0,0,0,.1);
    outline: none;
}
.btn-11:before {
    position: absolute;
    content: '';
    display: inline-block;
    top: -180px;
    left: 0;
    width: 30px;
    height: 100%;
    background-color: #fff;
    animation: shiny-btn1 3s ease-in-out infinite;
}
.btn-11:active{
    box-shadow:  4px 4px 6px 0 rgba(255,255,255,.3), -4px -4px 6px 0 rgba(116, 125, 136, .2), inset -4px -4px 6px 0 rgba(255,255,255,.2), inset 4px 4px 6px 0 rgba(0, 0, 0, .2);
}
@-webkit-keyframes shiny-btn1 {
    0% { -webkit-transform: scale(0) rotate(45deg); opacity: 0; }
    80% { -webkit-transform: scale(0) rotate(45deg); opacity: 0.5; }
    81% { -webkit-transform: scale(4) rotate(45deg); opacity: 1; }
    100% { -webkit-transform: scale(50) rotate(45deg); opacity: 0; }
}

/* videos */

video{
    width: 100%;
    border-radius: 5px;
}
#testimonial .div {
    padding: 0;
}
  