@import url(./bootstrap.min.css);
@import url(./select2.min.css);
@import url(./slick.css);
@import url(./aos.css);
@import url(./font.css);
@import url(./icon.css);
@import url(./font-awesome.min.css);
html,
body {
  width: 100%;
  height: 100%;
}
.wrapper {
  overflow: hidden;
}

body {
  font-family: "Lato", sans-serif;
  font-size: 14px;
  color: var(--themetextColor);
  line-height: 1.7;
  font-stretch: normal;
  font-kerning: normal;
  margin: 0;
}
a.start-btn:hover{
color: #fff;
}
:root {
  --themetextColor: #1d1d1d;
  --themebgColor: #e6e6e6;
  --themeheadingColor: #0083ca;
  --themeFooterBgColor: #2e3339;
}

/* Comman Css Start */
ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
a {
  color: var(--themetextColor);
}

a:hover {
  color: var(--themeheadingColor);
}
.padder-30 {
  margin-top: 30px;
}
.container-1920 {
  width: 1250px;
  margin: 0 auto;
  padding-right: 15px;
  padding-left: 15px;
}
img.vert-move {
  -webkit-animation: mover 1s infinite alternate;
  animation: mover 1s infinite alternate;
}
img.vert-move {
  -webkit-animation: mover 1s infinite alternate;
  animation: mover 1s infinite alternate;
}

@-webkit-keyframes mover {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-10px);
  }
}
@keyframes mover {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-10px);
  }
}
.whats-up-btn {
  width: 50px;
  height: 50px;
  background: #25d366;
  position: fixed;
  bottom: 0px;
  right: 30px;
  top: 0;
  margin: auto;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(270deg);
  z-index: 99999;
  transition: all .3s;
  box-shadow: 0 0px 5px rgb(0 0 0 / 20%);
}
.whats-up-btn svg {
  color: #fff;
  font-size: 25px;
}
.whats-up-btn:hover {
  background: #fff;
}
.whats-up-btn:hover svg {
  color: #25d366;
}
/* Comman Css End */

/* Header-Section Start */

.theme-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  border-bottom: 1px solid var(--themebgColor);
  z-index: 1;
  transition: 0.5s linear all;
}

.theme-header.is-sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  box-shadow: 0px 0px 15px 0px rgb(0 0 0 / 15%);
  background: #fff;
  border-bottom: 0;
  padding-top: 5px;
  padding-bottom: 5px;
  animation: menu_sticky 0.5s ease-in-out;
  -webkit-animation: menu_sticky 0.5s ease-in-out;
}

/*================= Sticky Menu ===============*/

@-webkit-keyframes menu_sticky {
  0% {
    margin-top: -120px;
    opacity: 0;
  }
  50% {
    margin-top: -64px;
    opacity: 0;
  }
  100% {
    margin-top: 0;
    opacity: 1;
  }
}

@keyframes menu_sticky {
  0% {
    margin-top: -120px;
    opacity: 0;
  }
  50% {
    margin-top: -64px;
    opacity: 0;
  }
  100% {
    margin-top: 0;
    opacity: 1;
  }
}
.brand-logo {
  height: 50px;
}
.theme-header {
  background-color: #fff;
}
.theme-header .navbar-expand-lg .navbar-collapse {
  justify-content: space-between;
}
.post-link{
  background: #ffc107;
  padding: 5px 10px;
  border-radius: 6px;
  font-weight: 600;
  transition: all .3s;
  border: 1px solid #ffc107;
}
.post-link:hover{
background: transparent;
color: #ffc107 !important;
}
.navbar-expand-lg .navbar-nav.center-nav {
  margin: auto;
  align-items: center;
}

.theme-header .dropdown-toggle::after {
  display: none;
}
.theme-header .navbar-expand-lg .navbar-nav .h-link {
  display: flex;
  align-items: center;
  color: var(--themetextColor);
  font-size: 14px;
}
.theme-header .navbar-expand-lg .navbar-nav li {
  padding: 0px 15px;
}
.theme-header .navbar-expand-lg {
  padding: 20px;
}
.burger {
  position: relative;
  width: 22px;
  height: 14px;
  cursor: pointer;
  display: none;
}
.right-nav{
  align-items: center;
}
.burger:focus {
  outline: 0;
}

.burger span {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 2px;
  transition: all 0.2s, background 0s;
  background: var(--themetextColor);
  -webkit-transition: all 0.2s, background 0s;
  -moz-transition: all 0.2s, background 0s;
  -ms-transition: all 0.2s, background 0s;
  -o-transition: all 0.2s, background 0s;
}

.burger span:nth-child(2) {
  top: 6px;
}

.burger span:last-child {
  top: 12px;
}

.burger.show-x span:first-child {
  transform: rotate(45deg);
}

.burger.show-x span:nth-child(2) {
  opacity: 0;
  visibility: hidden;
}

.burger.show-x span:last-child {
  transform: rotate(-45deg);
}

.burger.show-x span:first-child,
.burger.show-x span:last-child {
  top: 8px;
}
.theme-header .navbar-nav > li > .dropdown-menu {
  display: block;
  opacity: 0;
  transition: ease-out 0.3s;
  transform: translate(0%, -100%);
}

.theme-header .dropdown:hover .dropdown-menu {
 display: block;
}
.theme-header .dropdown:hover .dropdown-menu {
  opacity: 1;
  transform: translate(0%, 0%);
}
.theme-header .dropdown:hover .h-link .material-icons,
.theme-header .dropdown:hover .search-btn .material-icons {
  opacity: 1;
  transform: translate(0%, 0%);
}
.theme-header .navbar-expand-lg .navbar-nav .h-link:hover {
  color: var(--themeheadingColor);
  text-decoration: none;
}

.search-btn {
  font-size: 14px;
  display: flex;
  align-items: center;
  padding: 8px 15px;
  color: var(--themeheadingColor);
  border: 1px solid var(--themeheadingColor);
  border-radius: 6px;
  transition: 0.5s all ease;
}
.product-dropdown .search-btn{
  border: 0px;
  color: var(--themetextColor);
  padding: 0;
}
.product-dropdown:hover .search-btn{
  color: var(--themeheadingColor) !important;
  background: transparent;
}
.search-btn:hover {
  background: var(--themeheadingColor);
  color: #e6e6e6 !important;
  text-decoration: none;
}
.search-btn svg {
  font-size: 16px;
  margin-left: 5px;
  opacity: .8;
}
.theme-header .navbar-expand-lg .navbar-nav.center-nav li:last-child {
  padding-right: 0;
}
.theme-header .dropdown-item:focus,
.theme-header .dropdown-item:hover {
  color: #ffffff;
  text-decoration: none;
  background-color: var(--themeheadingColor);
}
.theme-header .dropdown .dropdown-menu {
  border: 0;
  box-shadow: 0px 0px 15px 0px rgb(0 0 0 / 20%);
}
/* Header-Section end */

/* Banner Section Css Start */
.img-contain .s-btn-div {
  display: flex;
}
.img-contain .s-btn-div .start-btn {
  margin-bottom: -23px;
  z-index: 5;
}
.banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  object-position: bottom;
}
.img-div .banner-img {
  object-fit: contain;
  object-position: bottom;
}
.row-img {
  width: 100%;
  height: 140px;
  overflow: hidden;
  margin-bottom: 20px;
}
.row-img img {
  height: 100%;
  margin: auto;
}
.img-contain {
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
}
.bg-black {
  background-color: rgb(0, 0, 0, 0.7);
  height: 60vh;
  position: relative;
}
.row-text {
  text-align: center;
}
.row-text h2 {
  color: #fff;
  font-size: 18px;
  font-weight: 900;
  margin-bottom: 10px;
}
.row-text p {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
}
.banner-text {
  text-align: center;
  margin-bottom: 50px;
}
.banner-text h1 {
  font-size: 30px;
  color: #ffffff;
  font-weight: bold;
  margin-bottom: 8px;
}
.banner-text p {
  font-size: 42px;
  color: #ffffff;
  font-weight: 500;
}
.slide-img {
  position: relative;
  height: 100vh;
}
.banner-section .slick-arrow {
  position: absolute;
  z-index: 5;
  top: 10%;
  font-size: 0;
  width: 80px;
  height: 80px;
  border: 0px;
  background-color: transparent;
  cursor: pointer;
  outline: 0;
  transition: all 0.5s;
}
.banner-section .slick-prev {
  left: -100px;
  opacity: 0.5;
}
.banner-section:hover .slick-prev {
  left: 0px;
}
.banner-section:hover .slick-next {
  right: 0px;
}
.banner-section .slick-next:hover {
  opacity: 1;
}
.banner-section .slick-prev:hover {
  opacity: 1;
}
.banner-section .slick-next {
  right: -100px;
  opacity: 0.5;
}
.banner-section .slick-prev::after {
  content: "";
  position: absolute;
  background: url(../images/prev.svg);
  width: 40px;
  height: 40px;
  background-size: cover;
  background-repeat: no-repeat;
  top: 0;
  margin: auto;
  bottom: 0;
  left: 0;
  right: 0;
}
.banner-section .slick-next::after {
  content: "";
  position: absolute;
  background: url(../images/next.svg);
  width: 40px;
  height: 40px;
  background-size: cover;
  background-repeat: no-repeat;
  top: 0;
  margin: auto;
  bottom: 0;
  left: 0;
  right: 0;
}
.banner-section .slick-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  bottom: 50px;
  right: 0;
  left: 0;
  cursor: pointer;
}
.banner-section .slick-dots li {
  margin: 0px 10px;
  width: 30px;
  height: 3px;
  background: var(--themeheadingColor);
  display: flex;
  align-items: center;
  justify-content: center;
}
.banner-section .slick-dots li.slick-active button {
  display: none;
}
.banner-section .slick-dots li button {
  font-size: 0px;
  border: 0;
  background-color: transparent;
  outline: 0;
}

.overlay::after {
  content: " ";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  background: rgb(0, 0, 0, 0.5);
}

.heading {
  margin-bottom: 30px;
  display: flex;
    align-items: center;
}
.heading h1 {
  font-size: 28px;
  font-weight: bold;
  color: var(--themetextColor);
  margin: 0;

}
.mobile-heading h1{
display: none;
 }
 .institute-list li {
  font-size: 20px;
  font-weight: 500;
  color: var(--themetextColor);
  margin: 20px 0px;
  position: relative;
  display: flex;
  align-items: center;
}
 .list-img{
   height: 35px;
   margin-right: 15px;
 }

.img-div {
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.form-card span {
  display: flex;
  justify-content: center;
  font-size: 18px;
  color: var(--themetextColor);
}
.form-card span a {
  color: var(--themeheadingColor);
}

.next-btn-div {
  display: flex;
  align-items: center;
  justify-content: end;
  margin-top: 20px;
}
.next-btn-div a {
  display: flex;
  align-items: center;
  color: #fff;
  background: var(--themeheadingColor);
  font-size: 17px;
  font-weight: 500;
  padding: 10px 25px;
  border-radius: 100px;
}
.next-btn-div a span {
  color: #fff;
  margin-left: 7px;
}
.right-img-info .start-btn{
  margin-top: 0px;
}
/* Banner Section Css End */

/* Product Section Css Start */
.product-section {
  margin-top: 70px;
}
.inner-product-info {
  width: 100%;
  background-color: #f3fafe;
  margin-top: -65px;
  padding: 40px 0px;
}
.product-text .heading h1 {
  font-size: 30px;
  font-weight: 900;
  color: var(--themetextColor);
  margin-bottom: 10px;
}
.product-text p {
  font-weight: 500;
  color: #343434;
  font-size: 22px;
  margin-bottom: 0px;
}
.product-section .product-card {
  background-color: transparent;
  border: 0;
  display: flex;
  flex-direction: row;
  align-items: start;
}
.product-section .card-contain {
  text-align: center;
}
.product-info h4 {
  font-size: 24px;
  font-weight: bold;
  color: var(--themetextColor);
}
.product-info {
  margin-top: 35px;
}
.product-info p {
  font-size: 17px;
  color: var(--themetextColor);
}

.poduct-row {
  position: relative;
  margin-top: 50px;
  margin-bottom: 20px;
}
.inner-skew img {
  transition: all 0.5s;
}
.inner-skew:hover img {
  transform: scale(1.1);
}
.br-btn {
  display: flex;
  align-items: center;
  border: 1px solid var(--themeheadingColor);
  color: var(--themeheadingColor);
  padding: 10px 20px;
  font-size: 18px;
  border-radius: 100px;
  box-shadow: 0px 0px 15px 0px rgb(0 0 0 / 10%);
}
.br-btn:hover {
  background: var(--themeheadingColor);
  color: var(--themebgColor);
  transition: all 0.3s;
  -webkit-animation: mover 0.3s infinite alternate;
  animation: mover 0.3s infinite alternate;
}
.btn-div {
  display: flex;
  align-items: center;
  justify-content: center;
}
.btn-div a{
  display: flex;
  align-items: center;
}
.btn-div a svg{
  margin-left: 6px;
}
.br-btn .material-icons {
  font-size: 20px;
  margin-left: 5px;
}

.line-text span {
  font-size: 20px;
  font-weight: bold;
  color: #fff;
}
.line-text {
  margin-bottom: 100px;
}
.block-div {
  display: flex;
  align-items: center;
}
.img-list {
  display: flex;
  height: 60vh;
}

.line span {
  color: #f39702;
  font-size: 19px;
  opacity: .7;
  font-weight: bold;
}
.line {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.time-div .time {
  font-size: 24px;
  font-weight: bold;
  color: var(--themeheadingColor);
}
.time-div {
  margin-top: 45px;
}

/* Product Section Css End */

/* Product Information Section Css Start */
.inner-skew.email::after,
.inner-skew.support::after,
.inner-skew.bussiness::after,
.inner-skew.free::after{
  content: '';
  position: absolute;
  background: url(../images/email.png);
  width: 100px;
  height: 100%;
  right: 0px;
  left: -50px;
  background-size: contain;
  background-repeat: no-repeat;
  bottom: -72px;
  transform: rotate(45deg);
  transition: all .3s;
  z-index: 2;
}
.inner-skew.support::after{
  background: url(../images/support.png);
  background-size: contain;
  background-repeat: no-repeat;
}
.inner-skew.bussiness::after{
  background: url(../images/bussines.png);
  background-size: contain;
  background-repeat: no-repeat;
}
.inner-skew.free::after{
  background: url(../images/free.png);
  background-size: contain;
  background-repeat: no-repeat;
}
.a-box {
  display: inline-block;
  text-align: left;
  transition: all .3s;
  -webkit-transition: all .3s;
  -moz-transition: all .3s;
  -ms-transition: all .3s;
  -o-transition: all .3s;
}
.a-box:hover .inner-skew.email::after,
.a-box:hover .inner-skew.support::after,
.a-box:hover .inner-skew.bussiness::after,
.a-box:hover .inner-skew.free::after{
  left: -30px;
  bottom: -50px;
}
.a-box:hover .box-div{
  box-shadow: 0px 0px 50px 0px rgb(0 0 0 / 10%);
}
.a-box:hover .inner-skew{
  box-shadow: 0px 0px 50px 0px rgb(0 0 0 / 10%);
}

.a-box:hover .br-btn{
  border: 1px solid var(--themeheadingColor);
  transition: all .5s;
}
.img-container {
  overflow: hidden;
  display: inline-block;
}

.img-container img {
  width: 100%;
  height: 100%;
  position: relative;
}
.inner-skew::before{
  content: '';
position: absolute;
width: 100%;
height: 100%;
background: rgb(0,0,0);
background: linear-gradient(191deg, rgba(0,0,0,0.4009978991596639) 27%, rgba(255,255,255,.3) 60%);
top: 0;
z-index: 1;
}
.img-inner{
  display: flex;
  align-items: center;
  justify-content: center;
}
.inner-skew {
  display: inline-block;
  border-radius: 20px;
  overflow: hidden;
  background: #c8c2c2;
  width: 90%;
  position: relative;
}
.box-div {
  background: #fff;
  box-shadow: 0px 0px 15px 0px rgb(0 0 0 / 10%);
  height: 325px;
  border-radius: 20px;
  margin: -120px 0px 0px 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.text-container {
  line-height: 19px;
  font-size: 14px;
  margin-top: 114px;
  padding: 0px 15px 0px 15px;
}

.text-container h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--themetextColor);
  margin-bottom: 10px;
}
.text-container p {
  margin: 0;
  font-size: 15px;
  color: var(--themetextColor);
  line-height: 24px;
  font-weight: 500;
}
.padder-30 {
  margin-top: 30px;
}
.box-div .br-btn {
  font-size: 16px;
  font-weight: 500;
  color: var(--themeheadingColor);
  margin-top: 20px;
  border: 0;
  box-shadow: none;
}
.box-div .br-btn:hover{
    background: transparent;
    border: 1px solid var(--themeheadingColor);
    color: var(--themeheadingColor);
    animation:none ;
    -webkit-animation:none ;
}

.information-section {
  margin-top: 70px;
}
/* Product Information Section Css End */

/* Product List Section Css Start */
.start-btn {
  background: #1fac4b;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  margin: auto;
  position: relative;
  padding: 10px 25px;
  border-radius: 100px;
  display: flex;
}
.start-btn:hover {
  animation: mover 0.3s infinite alternate;
  -webkit-animation: mover 0.3s infinite alternate;
}
.btn.start-btn .badge {
  position: absolute;
  right: -50px;
  top: -18px;
}
.btn.start-btn .badge::after {
  position: absolute;
  content: "";
  border: 10px solid transparent;
  border-top-color: #f39702;
  bottom: -5px;
  left: -1px;
  transform: rotate(133deg);
}
.start-btn .badge-yellow {
  background-color: #f39702;
  color: #fff;
  font-size: 16px;
  padding: 8px 20px;
}
.s-btn-div {
  margin-top: 30px;
}
.heading .s-btn-div {
  margin-top: 0px;
  margin-left: 50px;
}
.product-heading h1 {
  font-size: 28px;
  font-weight: 500;
  color: var(--themetextColor);
  margin-bottom: 30px;
}
.product-heading h1 span{
  font-weight: 900;
}
.product-listing li {
  font-size: 18px;
  font-weight: 500;
  margin: 22px 0px;
  position: relative;
  padding-left: 35px;
  color: #666666;
}
.product-listing li::after {
  content: "";
  position: absolute;
  color: var(--themetextColor);
  width: 20px;
  height: 20px;
  border-radius: 100px;
  background: #d8d8d8;
  left: 0;
  top: 10px;
  bottom: 0;
}
.product-info p {
  font-size: 18px;
  font-weight: 500;
  color: #666666;
}
.product-list-section {
  margin: 70px 0px;
}
.mobile-div img{
display: flex;
margin: auto;
}
/* Product List Section Css End */

/* Footer Section Css Start */
.footer-section {
  border-top: 5px solid #1fac4b;
}
.top-footer {
  background-color: var(--themeFooterBgColor);
  padding: 30px 15px;
}
.col4{
  max-width: 16%;
}
.inner-footer {
  display: flex;
  justify-content: space-between;
}
.footer-large-text {
  color: #757575;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}
.footer-list li a {
  color: #eeeded;
  font-size: 16px;
  transition: 0.2s;
  -webkit-transition: 0.2s;
  -moz-transition: 0.2s;
  -ms-transition: 0.2s;
  -o-transition: 0.2s;
}
.device-img li a img {
  margin: 5px 0 0;
}
.bottom-footer {
  padding-bottom: 15px;
  font-size: 18px;
  font-weight: 600;
  color:#FFF;
  background: var(--themeFooterBgColor);
}
.bottom-footer  span{
  font-size: 18px;;
}
.footer-list li:hover a {
  color: var(--themeheadingColor);
}

.footer-list li a svg{
  margin-right: 6px;
  }
.footer-list li {
  display: flex;
  align-items: center;
}
.footer-list li .material-icons {
  color: white;
}
.footer-list .social-link {
  display: flex;
  align-items: center;
}
.social-link li a.twitter {
  margin: 0px 10px;
}
.social-link li a:hover svg {
  color: white;
}
.social-link li a {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  border-radius: 50%;
}
.social-link li a svg {
  margin-right: 0;
}
.social-link li a svg {
  color: var(--themetextColor);
  font-size: 15px;
}
.social-link li a:hover.facebook {
  background: #3b5998;
}
.social-link li a:hover.twitter {
  background: #00aced;
}
.social-link li a:hover.youtube {
  background: #bb0000;
}
/* Footer Section Css End */

/* Responsive Css Start */
@media screen and (max-width: 1100px) {
  .mobile-heading h1{
    display: block;
    font-size: 22px;
    font-weight: bold;
    color: var(--themetextColor);
    }
    .mobile-heading{
    text-align: center;
    margin-bottom: 20px;
    }
    
    .heading{
      display: none;
    }
  .theme-header .navbar-expand-lg .navbar-nav.center-nav {
    flex-direction: column;
  }
  .theme-header .navbar-expand-lg .navbar-nav li {
    padding: 10px 0px;
}

  .theme-header .burger {
    display: block;
  }
  .burger.show-x .bar:first-of-type {
    transform: translate(-50%, 50%) rotate(225deg);
  }
  .burger.show-x .bar:last-of-type {
    transform: translate(-50%, -150%) rotate(-225deg);
  }
  .theme-header .navbar-collapse {
    background-color: #fff;
    box-shadow: 0 3px 5px rgb(0 0 0 / 10%);
    flex-direction: column;
    text-align: center;
    position: fixed;
    top: 80px;
    right: 0;
    transform: translateX(-120%);
    width: 100%;
    transition: transform 0.3s ease-in;
    z-index: 100;
    height: 100%;
    border-top: solid 1px #ddd;
  }
  .theme-header .navbar-collapse.show {
    transform: translateX(0);
    padding-top: 30px;
  }
  .inner-skew.email::after, .inner-skew.support::after, .inner-skew.bussiness::after, .inner-skew.free::after {
    left: -50px;
    bottom: -100px;
  }
}
@media screen and (min-width: 200px) and (max-width: 767px) {
  .mobile-heading .s-btn-div{
    display: block !important;

  }
  .whats-up-btn {
    top: inherit;
    bottom: 0px;
    right: 10px;
    bottom: 105px;
}
  .slide-img {
    height: 110vh;
  }
  .banner-section:hover .slick-next {
    right: 0px;
  }
  .banner-section .slick-next {
    right: 0px;
  }
  .banner-section:hover .slick-prev {
    left: 0px;
  }
  .banner-section .slick-prev {
    left: 0px;
  }
  .banner-section .slick-next::after {
    width: 25px;
    height: 25px;
  }
  .banner-section .slick-prev::after {
    width: 25px;
    height: 25px;
  }
  .brand-logo {
    height: 40px;
  }

  .footer-list {
    margin-bottom: 20px;
  }
  .footer-list:last-child {
    margin-bottom: 0;
  }
  .footer-large-text {
    font-size: 24px;
    margin-bottom: 5px;
  }
  .bottom-footer {
    text-align: center;
  }
  .container-1920 {
    width: 100%;
  }
 
  .theme-header .navbar-nav > li > .dropdown-menu.show {
    display: block;
  }
  .theme-header .navbar-nav > li > .dropdown-menu {
    display: none;
  }

  .navbar-nav.right-nav {
    align-items: center;
  }

  .theme-header .navbar-expand-lg .navbar-nav .h-link {
    justify-content: center;
  }
  .top-footer {
    background-color: var(--themeFooterBgColor);
    padding: 30px;
  }
  .inner-footer .col{
    flex-basis: auto;
      flex-grow: 0;
    max-width: inherit;
    margin: 10px 0px;
  }
  .line::after,
  .time-div {
    display: none;
  }
  .a-box {
    margin-top: 30px;
  }
 
  .padder-30 {
    margin-top: 0px;
  }
  .porduct-list-section {
    height: 100vh;
  }
  .inner-product li {
    color: white;
    font-size: 14px;
  }
  .list-img {
    height: 25px;
  }
  .product-list-info {
    width: 100%;
  }
  .product-list-info .heading h1 {
    font-size: 22px;
  }
  .product-list-info p {
    color: white;
    font-size: 13px;
  }
  .img-div {
    height: 43vh;
  }

  .next-btn-div a {
    font-size: 16px;
    padding: 7px 20px;
  }
  .banner-section .slick-dots li {
    border: 2px solid var(--themeheadingColor);
  }
  .banner-section .slick-dots li.slick-active button {
    background: var(--themeheadingColor);
  }
  .banner-section .slick-dots {
    bottom: 20px;
  }
  .img-list {
    display: flex;
    height: 85vh;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
  .line {
    display: none;
  }
  .row-img {
    height: 75px;
    display: flex;	
  }
  .banner-text h1 {
    font-size: 20px;
  }
  .banner-text p {
    font-size: 24px;
    margin: 0;
  }
  .row-text p {
    font-size: 14px;
  }
  .block-div {
    width: 100%;
  }
  .block-div:first-child{
    margin-top: 25px;
  }
  .bg-black {
    height: 92vh;
  }
  .banner-text {
    margin-bottom: 0;
  }
  .secound-slide{
    height: 100%;
  }
  .s-btn-div {
    margin-top: 15px;
  }
  .start-btn {
    font-size: 15px;
    font-weight: 500;
    position: relative;
    padding: 5px 20px;
    display: inline;
  }
  .start-btn .badge-yellow {
    font-size: 15px;
    padding: 4px 15px;
  }
  .btn.start-btn .badge {
    right: -40px;
    top: -15px;
  }
  .img-contain .s-btn-div .start-btn {
    margin-bottom: -15px;
  }
  .heading h1 {
    font-size: 18px;
    text-align: center;
  }
  .heading {
    margin-bottom: 15px;
    margin-top: 15px;
  }
  .institute-list li {
    font-size: 14px;
    margin: 3px 0px;
    padding-left: 20px;
  }
  .institute-list li::after {
    top: 7px;
    margin: 0;
    width: 10px;
    height: 10px;
  }
  .institute-list {
    padding: 15px;
  }
  .right-img-info .s-btn-div {
    display: flex;
  }
  .heading .s-btn-div {
      margin-right: 50px;
      margin-left: 0px;
  }
  .right-img-info .start-btn {
        display: flex;
}


  .mobile-div img {
    width: 100%;
  }
  .product-listing li {
    font-size: 15px;
    margin: 10px 0px;
    padding-left: 30px;
  }
  .product-listing li::after {
    width: 15px;
    height: 15px;
    top: 7px;
  }
  .product-info p {
    font-size: 15px;
  }
  .product-info .s-btn-div {
    display: flex;
  }
  .a-box:hover .inner-skew.email::after, .a-box:hover .inner-skew.support::after, 
  .a-box:hover .inner-skew.bussiness::after, .a-box:hover .inner-skew.free::after{
    bottom: -85px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1080px) {
  .mobile-heading .s-btn-div{
    display: block !important;
  }
  .whats-up-btn {
    top: inherit;
    bottom: 0px;
    right: 10px;
    bottom: 105px;
}
  .inner-footer .col{
    flex-basis: auto;
      flex-grow: 0;
    max-width: inherit;
    margin: 10px 0px;
  }
  .img-list {
    display: flex;
    height: 85vh;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
  .line {
    display: none;
  }
  .row-img {
    height: 110px;
  }
  .row-text h2 {
    font-size: 24px;
  }
  .banner-text h1 {
    font-size: 30px;
  }
  .banner-text p {
    font-size: 20px;
    margin: 0;
  }
  .row-text p {
    font-size: 20px;
  }
  .block-div {
    width: 100%;
    justify-content: center;
  }
  .bg-black {
    height: 84vh;
  }
  .banner-text {
    margin-bottom: 30px;
  }
  .s-btn-div {
    margin-top: 10px;
    display: flex;
  }
  .start-btn {
    font-size: 20px;
    font-weight: 500;
    position: relative;
    padding: 8px 25px;
  }
  .start-btn .badge-yellow {
    font-size: 18px;
    padding: 7px 20px;
  }
  .btn.start-btn .badge {
    right: -50px;
    top: -30px;
  }
  .img-contain .s-btn-div .start-btn {
    margin-bottom: -15px;
  }
  .heading {
    padding: 0px 20px;
    margin-top: 30px;
  }
  .institute-list {
    padding: 20px;
  }
  .institute-list li {
    font-size: 22px;
  }
  .institute-list li::after {
    top: 12px;
    margin: 0;
  }
  .mobile-div {
    width: 100%;
    display: flex;
    justify-content: center;
  }
  .product-listing li {
    font-size: 20px;
  }
  .product-info .s-btn-div {
    margin-top: 50px;
  }
  .product-heading h1 {
    text-align: center;
  }
  .img-div {
    height: 50vh;
  }
  .form-heading h1 {
    font-size: 18px;
  }
  .input-div {
    margin-top: 20px;
  }
  .banner-section:hover .slick-next {
    right: 0px;
  }
  .banner-section .slick-next {
    right: 0px;
  }
  .banner-section:hover .slick-prev {
    left: 0px;
  }
  .banner-section .slick-prev {
    left: 0px;
  }
  .banner-section .slick-next::after {
    width: 25px;
    height: 25px;
  }
  .banner-section .slick-prev::after {
    width: 25px;
    height: 25px;
  }
  .banner-section .slick-dots li {
    border: 2px solid var(--themeheadingColor);
  }
  .banner-section .slick-dots li.slick-active button {
    background: var(--themeheadingColor);
  }
  .banner-section .slick-dots {
    bottom: 20px;
  }
  .line::after,
  .time-div {
    display: none;
  }
  .poduct-row {
    justify-content: center;
  }
  .inner-product-info {
    margin-top: -40px;
  }
  .container-1920 {
    width: 100%;
  }
  .a-box {
    margin-top: 30px;
  }
  .padder-30 {
    margin-top: 0px;
  }
  .theme-header .navbar-nav > li > .dropdown-menu.show {
    display: block;
  }
  .theme-header .navbar-nav > li > .dropdown-menu {
    display: none;
  }
  .theme-header .navbar-expand-lg .navbar-nav li {
    padding: 10px 20px;
  }
  .navbar-nav.right-nav {
    align-items: center;
  }

  .theme-header .navbar-expand-lg .navbar-nav .h-link {
    justify-content: center;
  }
  .top-footer {
    background-color: var(--themeFooterBgColor);
    padding: 30px;
  }

  .theme-header .navbar-collapse {
    top: 90px;
  }
  .theme-header .navbar-expand-lg .navbar-nav .h-link {
    font-size: 20px;
  }
  .theme-header .navbar-expand-lg .navbar-nav .h-link .material-icons,
  .search-btn .material-icons {
    font-size: 30px;
  }
  .theme-header .dropdown-item {
    font-size: 20px;
  }
  .search-btn {
    font-size: 20px;
  }
}

@media screen and (min-width: 1061px) and (max-width: 1370px) {
  
  .container-1920 {
    width: 100%;
    padding: 0px 30px;
  }
  .theme-header .navbar-expand-lg {
    padding-left: 0px;
    padding-right: 0px;
  }
  .product-listing li,
  .product-info p{
  font-size: 14px;
  margin: 15px 0px;
  line-height: 22px;
  }
  .product-heading h1 {
    font-size: 24px;
    margin-bottom: 20px;
  }
  .start-btn {
    font-size: 15px;
  }
  .heading .s-btn-div {
    margin-left: 25px;
  }
  .heading h1 {
    font-size: 23px;
  }
  .institute-list li {
    font-size: 17px;
    line-height: 22px;
    margin: 25px 0px;
  }
  .list-img {
    height: 30px;
  }
  .banner-text p {
    font-size: 40px;
  }
  .img-div .banner-img {
    object-position: center;
  }
  .row-text p {
    font-size: 15px;
    
  }
  .right-img-info{
    max-width: 40%;
  }
  .inner-footer {
    margin-left: 40px;
  }
  .footer-list li a {
    font-size: 13px;
  }
  .footer-large-text {
    font-size: 18px;
    margin-bottom: 5px;
  }
  .bottom-footer span {
    font-size: 16px;
  }
}

/* Responsive Css Start */


.mobile-heading .s-btn-div{
  display: none;
}