/*font family*/
@import url("https://fonts.googleapis.com/css2?family=Arimo:wght@100;200;300;400;500;600;700&display=swap");
/*color*/
/*font size*/
/*padding*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Arimo", sans-serif !important;
  font-size: 18px !important;
  background-color: #fff !important;
}

.heading {
  color: #1B2E59;
  font-size: 40px;
  font-weight: 600;
}

.heading-tagline {
  color: #1B2E59;
}

.product-download-btn {
  color: #fff;
  background-color: #0068ff;
  border-radius: 2rem;
  padding: 1rem 1.5rem;
  text-decoration: none;
  margin-right: 10px;
  display: inline-block;
  text-align: center;
  min-width: 190px;
}

.product-download-btn:hover {
  color: #fff;
  background-color: #267fff;
}

.product-buy-btn {
  color: #fff;
  background-color: #001a40;
  border-radius: 2rem;
  padding: 1rem 1.5rem;
  text-decoration: none;
  margin-right: 10px;
  display: inline-block;
  text-align: center;
  min-width: 190px;
}

.product-buy-btn:hover {
  color: #fff;
  background-color: #113263;
}

/*navbar start*/
header {
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

header .navbar {
  padding-bottom: 0;
  padding-top: 0;
}

header .navbar .navbar-nav .nav-item .nav-link {
  color: #1B2E59;
}

header .navbar .navbar-nav .nav-item .nav-link:hover {
  color: #09C3FF;
}

header .navbar .chat-btn .nav-link {
  color: #fff;
  background-color: #0068ff;
  border-radius: 2rem;
  padding: 10px 2rem;
}

header .navbar .chat-btn .nav-link:hover {
  color: #fff;
  background-color: #09C3FF;
}

/*dropdown start*/
header .navbar .nav-item .nav-link {
  padding-top: 30px;
  padding-bottom: 30px;
  padding-left: 15px;
  padding-right: 15px;
}

header .navbar .dropdown .dropdown-menu {
  top: 100%;
  margin: 0;
  padding: 0;
  background: #ffffff;
  border: 0;
}

header .navbar .dropdown .dropdown-menu li {
  padding: 0.5rem;
  padding-left: 0;
}

header .navbar .dropdown .dropdown-menu .dropdown-item {
  border-left: 3px solid transparent;
}

header .navbar .dropdown .dropdown-menu .dropdown-item:hover {
  border-left: 3px solid #09C3FF;
  color: #09C3FF;
}

@media only screen and (min-width: 992px) and (max-width: 24000px) {
  header .navbar .dropdown .dropdown-menu {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    border-radius: 5px;
    visibility: hidden;
    opacity: 0;
    transition: ease 0.3s;
    transform: scaleY(0);
    display: block;
  }
  .dropdown:hover > .dropdown-menu {
    visibility: visible !important;
    opacity: 1 !important;
    transform: scaleY(100%) !important;
  }
}
/*dropdown end*/
/*megamenu dropdown start*/
header .navbar .mega-dropdown {
  position: inherit;
}

header .navbar .mega-dropdown .dropdown-menu {
  width: 90%;
  left: 5%;
  right: 5%;
  margin: 0;
  padding: 0;
}

header .navbar .mega-dropdown .dropdown-menu ul {
  list-style: none;
}

/*megamenu dropdown end*/
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  header .navbar .nav-item .nav-link {
    padding-left: 5px;
    padding-right: 5px;
  }
}
@media only screen and (min-width: 280px) and (max-width: 991px) {
  header .navbar .nav-item .nav-link {
    padding-top: 5px;
    padding-bottom: 5px;
  }
}
/*navbar end*/
/*index banner start*/
.index-banner {
  padding: 6rem 0;
}

.index-banner .banner-head-top {
  color: #0068ff;
  font-size: 25px;
  position: relative;
}

.index-banner .banner-head-top:after {
  content: "";
  height: 5px;
  width: 5px;
  background-color: #0068ff;
  position: absolute;
  left: 0;
  bottom: 0;
  border-radius: 100%;
  animation: left-right 10s linear infinite both;
}

@keyframes left-right {
  0% {
    left: 0;
  }
  50% {
    left: 50%;
  }
  100% {
    left: 0;
  }
}
.index-banner .banner-head {
  color: #1B2E59;
  font-size: 50px;
  font-weight: 700;
  letter-spacing: 3px;
  padding: 1rem 0;
}

.index-banner .banner-head-tagline {
  color: #1B2E59;
  font-size: 20px;
  padding-bottom: 1rem;
}

.index-banner .index-banner-btn {
  color: #fff;
  background-color: #266FF2;
  font-size: 20px;
  text-decoration: none;
  border-radius: 2rem;
  padding: 1rem 3rem;
}

.index-banner .index-banner-btn:hover {
  background-color: #09C3FF;
  color: #fff;
}

.index-banner .banner-side-img {
  position: relative;
  z-index: 5;
}

.index-banner .banner-side-img img {
  position: absolute;
}

.index-banner .banner-side-img .b1 {
  z-index: 4;
  right: 0;
  top: 0;
  animation: up-down 3s linear infinite both;
}

@keyframes up-down {
  0% {
    top: 0;
  }
  50% {
    top: 20px;
  }
  100% {
    top: 0;
  }
}
.index-banner .banner-side-img .b2 {
  z-index: 3;
  right: 0;
  top: 0;
  animation: zoom-center 3s linear infinite both;
}

@keyframes zoom-center {
  0% {
    top: 0;
  }
  50% {
    top: 20px;
    right: 20px;
  }
  100% {
    top: 0;
  }
}
.index-banner .banner-side-img .b3 {
  z-index: 5;
  right: 0;
  top: 0;
  animation: zoom-center 2s linear infinite both;
}

.index-banner .banner-side-img .b5 {
  z-index: 1;
  left: 0;
  top: auto;
  animation: rotate-center 100s linear infinite both;
}

@keyframes rotate-center {
  0% {
    transform: rotate(180deg);
  }
  50% {
    transform: rotate(380deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
.single-project.style-5 .about-app.style-5 .img-content .img .bubbls {
  position: absolute;
  z-index: 0;
  left: 0;
  top: 0;
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center;
  object-position: center;
  animation: rotate-center 100s linear infinite both;
}

@media only screen and (min-width: 280px) and (max-width: 991px) {
  .index-banner .banner-side-img {
    display: none;
  }
}
/*index banner end*/
/*why choose start*/
.why-choose {
  background-color: #E6EEFB;
  padding: 6rem 0;
}

.why-choose .image-part {
  position: relative;
  animation: up-down 3s linear infinite both;
}

@keyframes up-down {
  0% {
    top: 0;
  }
  50% {
    top: 30px;
  }
  100% {
    top: 0;
  }
}
.why-choose .text-part .head-top {
  color: #266FF2;
  font-weight: 700;
  font-size: 25px;
}

.why-choose .text-part .heading {
  font-size: 50px;
  font-weight: 700;
  padding-bottom: 2rem;
}

.why-choose .text-part .support-head {
  color: #1B2E59;
  font-weight: 700;
  font-size: 20px;
  padding: 15px 0;
  margin: 0;
}

.why-choose .text-part .quality-head {
  color: #1B2E59;
  font-weight: 700;
  font-size: 20px;
  padding: 15px 0;
  margin: 0;
}

@media only screen and (min-width: 280px) and (max-width: 991px) {
  .why-choose .image-part {
    display: none;
  }
}
/*why choose end*/
/*features start*/
.features {
  padding: 6rem 0;
}

.features .features-btn {
  color: #fff;
  background-color: #266FF2;
  font-size: 20px;
  text-decoration: none;
  border-radius: 2rem;
  padding: 1rem 3rem;
}

.features .features-btn:hover {
  background-color: #09C3FF;
  color: #fff;
}

#features {
  padding: 1rem;
}

#features .owl-item {
  margin-right: 0 !important;
}

#features .owl-item .item {
  border-right: 1px solid #E6EEFB;
  border-top: 1px solid #E6EEFB;
  border-bottom: 1px solid #E6EEFB;
  position: relative;
  padding: 50px;
  min-height: 320px;
}

#features .owl-item .item:hover::after {
  width: 100%;
}

#features .owl-item .item::after {
  position: absolute;
  left: 0;
  content: "";
  top: 0;
  width: 100%;
  height: 100%;
  background: #266FF2;
  height: 2px;
  width: 0;
  transition: 0.4s linear;
}

#features .owl-item .item:hover img {
  transform: rotateY(180deg);
}

#features .owl-item .item img {
  width: auto;
  transition: 0.4s;
}

#features .owl-item .item .head {
  color: #1B2E59;
  font-size: 20px;
  font-weight: 700;
  padding: 2rem 0;
  margin: 0;
}

#features .owl-item .item a {
  color: #1B2E59;
  overflow: hidden;
  position: relative;
  display: block;
  text-decoration: none;
  transition: 0.4s;
}

#features .owl-item .item a span {
  color: #1B2E59;
  position: absolute;
  left: -100px;
  opacity: 0;
  padding-right: 10px;
  transition: 0.4s;
}

#features .owl-item .item a:hover span {
  color: #1B2E59;
  position: relative;
  left: 0;
  opacity: 1;
  font-weight: 500;
}

#features .owl-item .item a:hover i {
  opacity: 0;
}

#features .owl-nav {
  display: block;
  position: absolute;
  top: 40%;
  width: 100%;
}

#features .owl-nav button {
  font-size: 30px;
  color: #1B2E59;
  transition: 0.4s;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  background: #ffffff;
  border: 1px solid #E6EEFB;
  display: flex;
  align-items: center;
  justify-content: center;
}

#features .owl-nav button:hover {
  color: #fff;
  background: #266FF2;
}

#features .owl-prev {
  position: absolute;
  left: -25px;
}

#features .owl-next {
  position: absolute;
  right: 0;
}

/*features end*/
/*product working start*/
.product-working {
  background-color: #E6EEFB;
  padding: 6rem 0;
}

.product-working .working-process {
  margin-top: 3rem;
}

.product-working .working-process .step .head {
  color: #1B2E59;
  font-weight: 700;
  font-size: 20px;
}

.product-working .working-process .step {
  text-align: center;
  position: relative;
  border-radius: 10px;
  transition: 0.4s;
  padding: 35px 30px;
  min-height: 375px;
}

.product-working .working-process .sec .step.active {
  background: #fff;
}

.product-working .working-process .sec .step.active .icon {
  background: #E6EEFB;
}

.product-working .working-process .step .icon {
  width: 80px;
  height: 80px;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 auto;
  margin-bottom: 25px;
  background: #ffffff;
  transition: 0.4s;
}

.product-working .working-process .step .icon:after {
  position: absolute;
  width: 32px;
  height: 32px;
  color: #1B2E59;
  border-radius: 50%;
  font-size: 14px;
  font-weight: 600;
  font-family: "Archivo", sans-serif;
  right: -15px;
  top: 0;
  background: #ffffff;
  transition: 0.4s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-working .working-process .sec:nth-child(1) .step:after {
  content: "\f141";
  font: normal normal normal 14px/1 FontAwesome;
  position: absolute;
  top: 0;
  right: -15px;
  font-size: 30px;
  color: #266ff2;
}

.product-working .working-process .sec:nth-child(2) .step:after {
  content: "\f141";
  font: normal normal normal 14px/1 FontAwesome;
  position: absolute;
  top: 0;
  right: -15px;
  font-size: 30px;
  color: #266ff2;
}

.product-working .working-process .sec:nth-child(3) .step:after {
  content: "\f141";
  font: normal normal normal 14px/1 FontAwesome;
  position: absolute;
  top: 0;
  right: -15px;
  font-size: 30px;
  color: #266ff2;
}

.product-working .working-process .sec:nth-child(1) .step .icon:after {
  content: "01";
}

.product-working .working-process .sec:nth-child(2) .step .icon:after {
  content: "02";
}

.product-working .working-process .sec:nth-child(3) .step .icon:after {
  content: "03";
}

.product-working .working-process .sec:nth-child(4) .step .icon:after {
  content: "04";
}

.product-working .working-process .sec:nth-child(1) .step.active .icon:after {
  background: #09c3ff;
  color: #fff;
}

.product-working .working-process .sec:nth-child(2) .step.active .icon:after {
  background: #266ff2;
  color: #fff;
}

.product-working .working-process .sec:nth-child(3) .step.active .icon:after {
  background: #fdc330;
  color: #fff;
}

.product-working .working-process .sec:nth-child(4) .step.active .icon:after {
  background: #ff5151;
  color: #fff;
}

/*product working end*/
/*about index start*/
.index-about {
  padding: 6rem 0;
}

.index-about .text-part .head-top {
  color: #266FF2;
  font-weight: 700;
  font-size: 25px;
}

.index-about .text-part .heading {
  font-size: 50px;
  font-weight: 700;
  padding-bottom: 1rem;
}

.index-about .text-part .about-btn {
  display: inline-block;
  color: #fff;
  background-color: #266FF2;
  font-size: 20px;
  text-decoration: none;
  border-radius: 2rem;
  padding: 1rem 3rem;
  margin-top: 1rem;
}

.index-about .image-part {
  position: relative;
  animation: up-down2 3s linear infinite both;
}

@keyframes up-down2 {
  0% {
    top: 0;
  }
  50% {
    top: 30px;
  }
  100% {
    top: 0;
  }
}
.index-about .image-part .blog-part {
  position: absolute;
  display: flex;
  flex-direction: column;
  width: 100%;
  animation: up-downstop 3s linear infinite both;
}

@keyframes up-downstop {
  0% {
    top: 30px;
  }
  50% {
    top: 0;
  }
  100% {
    top: 30px;
  }
}
.index-about .image-part .blog-part .part {
  background: #fff;
  box-shadow: 1px 1px 10px 4px #ddd;
  border-radius: 20px;
  padding: 1rem;
  text-align: left;
  width: 70%;
  margin: 20px 0;
  border-left: 2px solid #266ff2;
}

.index-about .image-part .blog-part .part:nth-child(2) {
  margin-left: auto;
}

.index-about .image-part .blog-part .part .blog-tile {
  font-size: 20px;
  font-weight: 600;
}

.index-about .image-part .blog-part .part a {
  float: right;
  background: #266ff2;
  border-radius: 20px;
  padding: 8px 20px;
  text-decoration: none;
  color: #fff;
}

@media only screen and (min-width: 280px) and (max-width: 991px) {
  .index-about .row.justify-content-center {
    flex-direction: column-reverse;
  }
}
/*about index end*/
/*client logo start*/
#clients-logo1 {
  margin-top: 2rem;
  border-radius: 10px 10px 0 0;
  padding: 1rem;
}

#clients-logo1 .item {
  padding: 0 10px;
}

#clients-logo1 .item img {
  background: #fff;
  padding: 0.5rem;
  border-radius: 10px;
}

/*client logo end*/
/*trust client start*/
.trust-client {
  padding: 6rem 0;
  background-color: #E6EEFB;
}

.trust-client #owl-testimonial {
  padding-top: 2rem;
}

.trust-client #owl-testimonial .item {
  background: #ffffff;
  padding: 40px;
  border-radius: 10px;
  padding-bottom: 30px;
}

.trust-client #owl-testimonial .item .user-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  margin-bottom: 25px;
  position: relative;
}

.trust-client #owl-testimonial .item .user-icon:after {
  content: "\f10d";
  font: normal normal normal 14px/1 FontAwesome;
  color: #266FF2;
  border: 1px solid #E6EEFB;
  border-radius: 50%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: -15px;
  top: 0;
  width: 28px;
  height: 28px;
  line-height: 100%;
  z-index: 2;
  background: #ffffff;
}

.trust-client #owl-testimonial .item .user-icon i {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  margin-bottom: 25px;
  position: relative;
  font-size: 60px;
  background: radial-gradient(#ffffff, #ededed);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #bfbfbf;
  box-shadow: inset 0 0 0px 1px rgba(160, 160, 160, 0.3490196078);
}

.trust-client #owl-testimonial .item .info {
  font-size: 17px;
  border-left: 1px solid #2063ff;
  padding: 0 15px;
}

.trust-client #owl-testimonial .item .user-details .user-name {
  color: #1B2E59;
  font-size: 20px;
  font-weight: 500;
  margin: 0;
}

.trust-client #owl-testimonial .item .user-details .user-ad {
  font-size: 17px;
}

.trust-client #owl-testimonial .owl-nav {
  display: block;
  width: 100%;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2rem;
}

.trust-client #owl-testimonial .owl-nav button {
  font-size: 30px;
  color: #1B2E59;
  transition: 0.4s;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  background: #ffffff;
  border: 1px solid #E6EEFB;
  display: flex;
  justify-content: center;
}

.trust-client #owl-testimonial .owl-nav button:hover {
  color: #fff;
  background: #266FF2;
}

.trust-client #owl-testimonial .owl-prev {
  margin: 0 10px;
}

.trust-client #owl-testimonial .owl-next {
  margin: 0 10px;
}

/*trust client end*/
/*footer start*/
footer {
  background-color: #1B2E59;
  padding: 6rem 0;
  padding-bottom: 0;
}

footer p {
  color: #E6EEFB;
  margin: 0;
}

footer .f-call {
  padding: 1rem 0;
}

footer .f-call a {
  color: #E6EEFB;
  text-decoration: none;
  padding: 10px 2rem;
}

footer .req-btn {
  display: flex;
  margin-bottom: 2rem;
}

footer .req-btn a {
  background-color: #266FF2;
  color: #fff;
  border-radius: 30px;
  padding: 10px 2rem;
  text-decoration: none;
}

footer .req-btn a:hover {
  background-color: #267fff;
}

footer .f-head {
  color: #E6EEFB;
  font-size: 20px;
}

footer .f-list {
  list-style: none;
  padding: 1rem 0;
}

footer .f-list li {
  padding: 7px 0;
}

footer .f-list li a {
  color: #E6EEFB;
  text-decoration: none;
}

footer .f-list li a:hover {
  color: #fff;
  text-decoration: none;
}

footer .social li {
  float: left;
  padding: 0 2rem 0 0;
}

footer .social li a {
  font-size: 25px;
}

footer .copyright {
  color: #E6EEFB;
  overflow: hidden;
  font-size: 17px;
  padding: 3rem 0 2rem 0;
}

footer .copyright p:nth-child(n+1) {
  float: left;
}

footer .copyright p:nth-child(n+2) {
  float: right;
  padding: 0 1rem;
}

footer .copyright p:nth-child(n+3) {
  float: right;
  padding: 0 1rem;
}

footer .copyright a {
  color: #E6EEFB;
  text-decoration: none;
}

footer .copyright a:hover {
  color: #fff;
  text-decoration: none;
}

/*footer end*/
/*go to top start*/
#scroll-to-top-button {
  z-index: 99;
  position: fixed;
  bottom: 100px;
  right: 20px;
  padding: 5px 10px;
  background-color: #1B2E59;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

/*go to top end*/
/*product page start*/
/*breadcrumb start*/
.breadcrumb-part {
  background: #E6EEFB;
  margin: 0;
  padding: 0;
}

.breadcrumb-part .breadcrumb {
  background-color: transparent !important;
  padding-left: 0 !important;
  margin: 0;
}

.breadcrumb-part .breadcrumb ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.breadcrumb-part .breadcrumb ul li {
  float: left;
}

.breadcrumb-part .breadcrumb a {
  color: #000;
  text-decoration: none;
  font-weight: 500;
}

.breadcrumb-part .breadcrumb a:hover {
  color: #000;
  text-decoration: none;
  font-weight: 500;
}

.breadcrumb-part .breadcrumb a:after {
  content: ">>";
  padding: 0 5px;
  color: #000;
  font-family: cursive;
}

/*breadcrumb end*/
/*product banner start*/
.product-page-banner {
  padding: 6rem 0;
  background: linear-gradient(315deg, #f0f2f4, transparent);
}

.product-page-banner .banner-head-top {
  color: #0068ff;
  font-size: 25px;
  margin: 0;
  position: relative;
}

.product-page-banner .heading {
  color: #1B2E59;
  font-size: 50px;
  font-weight: 700;
  letter-spacing: 3px;
  padding: 1rem 0;
}

.product-page-banner .banner-head-tagline {
  color: #1B2E59;
  font-size: 20px;
  padding-bottom: 1rem;
}

.product-page-banner .banner-head-top:after {
  content: "";
  height: 5px;
  width: 5px;
  background-color: #0068ff;
  position: absolute;
  left: 0;
  bottom: 0;
  border-radius: 100%;
  animation: left-right2 10s linear infinite both;
}

@keyframes left-right2 {
  0% {
    left: 0;
  }
  50% {
    left: 30%;
  }
  100% {
    left: 0;
  }
}
.product-page-banner .mac-windows-option .nav-tabs {
  justify-content: left;
  border-bottom: 0;
}

.product-page-banner .mac-windows-option .nav-tabs .nav-item .nav-link {
  background-color: #fff;
  color: #000;
  padding: 10px 3rem;
  border-color: #ddd;
  min-width: 190px;
  text-align: center;
}

.product-page-banner .mac-windows-option .nav-tabs .nav-item .nav-link.active {
  background-color: #0068ff;
  color: #fff;
}

.product-page-banner .mac-windows-option .tab-content {
  padding: 1rem 0;
  border-top: 0;
  background: #fff;
  display: flex;
  justify-content: left;
}

.product-page-banner .mac-windows-option .tab-content > .tab-pane {
  display: none !important;
}

.product-page-banner .mac-windows-option .tab-content .tab-pane.active {
  display: flex !important;
  align-items: center;
}

.product-page-banner .strip {
  position: absolute;
  left: 0;
  bottom: -15px;
  display: flex;
  overflow: hidden;
  align-items: flex-end;
}

.product-page-banner .strip a {
  color: #001a40;
  text-decoration: none;
  font-weight: 500;
  margin-right: 1rem;
  display: flex;
  align-items: center;
}

.product-page-banner .strip a i {
  margin-right: 5px;
}

.product-page-banner .strip a:nth-child(1) i {
  color: #0068ff;
}

.product-page-banner .strip a:nth-child(2) i {
  color: #d80000;
}

.product-page-banner .strip a:nth-child(3) i {
  color: #0099ff;
}

.product-page-banner .strip a:nth-child(4) i {
  color: #0099ff;
}

#banner-screenshots .item {
  position: relative;
  margin: 1px;
  border: 1px solid #ddd;
  border-radius: 20px;
}

#banner-screenshots .item img {
  border-radius: 20px;
  border: 1px solid #ddd;
  transform: scale(1.01);
}

#banner-screenshots .item img:after {
  content: "";
  height: 100%;
  width: 100%;
  background-color: #fff;
}

#banner-screenshots .item p {
  position: absolute;
  bottom: 0;
  left: 0;
  background: linear-gradient(90deg, #001a40, rgba(0, 26, 64, 0.768627451));
  color: #fff;
  width: 100%;
  margin: 0;
  padding: 1rem;
  border-radius: 0 0 20px 20px;
  transform: scale(1.01);
}

#banner-screenshots .item p span {
  background: #fff;
  color: #001a40;
  padding: 7px;
  box-shadow: 0 0 0 2px #ddd;
  margin-right: 10px;
  font-weight: 700;
}

#banner-screenshots .owl-dots {
  display: flex;
  min-height: 100px;
  align-items: center;
  justify-content: center;
  margin-top: 1rem;
}

#banner-screenshots .owl-dots .owl-dot {
  display: flex;
  align-items: center;
  min-width: 120px;
  margin: 5px;
}

#banner-screenshots .owl-dots .owl-dot span {
  background-repeat: no-repeat !important;
  background-size: 100% 100% !important;
  height: 100px;
  width: 120px;
  position: absolute;
  box-shadow: rgba(0, 26, 64, 0.3098039216) 2px 2px 2px 0px;
  border: 1px solid rgba(0, 26, 64, 0.3);
  border-radius: 10px;
  transform: scale(0.9);
  cursor: zoom-in;
  transition: ease 0.5s;
}

#banner-screenshots .owl-dots .owl-dot.active span {
  box-shadow: #001a40 0px 2px 0px 0px;
  border: 1px solid #001a40;
  transform: scale(1);
}

#banner-screenshots .owl-dots .owl-dot:hover span {
  box-shadow: #001a40 0px 2px 0px 0px;
  border: 1px solid #001a40;
  transform: scale(1);
}

@media only screen and (min-width: 280px) and (max-width: 991px) {
  .product-page-banner .strip {
    position: relative;
    padding: 15px 0;
    bottom: 0;
  }
  .product-page-banner .mac-windows-option .nav-tabs .nav-item .nav-link {
    min-width: auto;
  }
  .product-page-banner .mac-windows-option .tab-content .tab-pane.active {
    display: inline-block !important;
  }
  .product-page-banner .mac-windows-option .tab-content .tab-pane.active span.h2 {
    width: 100%;
    display: inline-block;
    text-align: center;
    padding: 1rem 0;
  }
}
@media only screen and (min-width: 280px) and (max-width: 551px) {
  .product-page-banner .heading {
    font-size: 40px;
    letter-spacing: 0;
  }
  .product-page-banner .mac-windows-option .nav-tabs {
    justify-content: center;
    border-bottom: 1px solid #ddd;
  }
  .product-page-banner .mac-windows-option .nav-tabs .nav-item .nav-link {
    padding: 10px 1rem;
  }
  .product-page-banner .mac-windows-option .tab-content .tab-pane.active a {
    width: 100%;
    display: inline-block;
    text-align: center;
    margin: 1rem 0;
  }
  .product-page-banner .strip {
    display: inline-block;
    border: 1px solid #ddd;
    width: 100%;
    padding: 15px 15px;
  }
  #banner-screenshots .item p {
    display: flex;
    align-items: center;
  }
  #banner-screenshots .owl-dots .owl-dot {
    min-width: 60px;
  }
  #banner-screenshots .owl-dots .owl-dot span {
    height: 50px;
    width: 60px;
  }
}
/*product banner end*/
/*sticky strip start*/
#topbar {
  position: sticky;
  top: 0;
  z-index: 6;
  width: 100%;
  background-image: linear-gradient(to right, #FBFBFB, #FBFBFB);
  border-bottom: 1px solid rgba(41, 171, 226, 0.1882352941);
}

#topbar .strip {
  display: flex;
  align-items: center;
  justify-content: center;
}

#topbar .strip a {
  color: #001a40;
  text-decoration: none;
  font-weight: 500;
  margin-right: 1rem;
  display: flex;
  align-items: center;
}

#topbar .strip a i {
  margin-right: 5px;
}

#topbar .strip a:nth-child(1) i {
  color: #0068ff;
}

#topbar .strip a:nth-child(2) i {
  color: #d80000;
}

#topbar .strip a:nth-child(3) i {
  color: #0099ff;
}

#topbar .strip a:nth-child(4) i {
  color: #0099ff;
}

#topbar .strip a:nth-child(5) {
  color: #fff;
  background-color: #0068ff;
  border-radius: 2rem;
  padding: 5px 20px;
  margin: 5px 0;
  text-decoration: none;
  margin-right: 10px;
  display: inline-block;
  text-align: center;
}

#topbar .strip a:nth-child(6) {
  color: #fff;
  background-color: #001a40;
  border-radius: 2rem;
  padding: 5px 20px;
  margin: 5px 0;
  text-decoration: none;
  margin-right: 10px;
  display: inline-block;
  text-align: center;
}

@media only screen and (min-width: 280px) and (max-width: 991px) {
  #topbar {
    display: none !important;
  }
}
/*sticky strip end*/
/*product features benefits start*/
.product-features-benefits {
  background-color: #E6EEFB;
  padding: 6rem 0;
}

.product-features-benefits .text-part .heading {
  position: relative;
  padding-bottom: 10px;
  margin-bottom: 1rem;
}

.product-features-benefits .list {
  list-style: none;
}

.product-features-benefits .list li {
  position: relative;
  line-height: 2.3rem;
}

.product-features-benefits .list li:before {
  content: "";
  height: 5px;
  width: 5px;
  border: 3px solid #0068ff;
  background-color: transparent;
  padding: 4px;
  border-radius: 50%;
  position: absolute;
  left: -1.6rem;
  top: 11px;
}

.product-features-benefits .part {
  background: #ffffff;
  box-shadow: 0 2px 0px 0px rgba(0, 104, 255, 0.2901960784);
  border: 1px solid rgba(0, 104, 255, 0.2);
  border-radius: 1rem;
  padding: 2rem;
  margin: 2rem 0;
}

.product-features-benefits .part:nth-child(1) p {
  font-style: italic;
}

.product-features-benefits .part:hover {
  box-shadow: 0 2px 0px 0px #0068ff;
}

/*product features benefits end*/
/*product features start*/
.product-features {
  padding: 6rem 0;
}

.product-features .part {
  box-shadow: rgba(0, 104, 255, 0.2901960784) 0px 2px 0px 0px;
  border: 1px solid rgba(0, 104, 255, 0.2);
  border-radius: 1rem;
  padding: 2rem;
  margin: 1rem 0;
}

.product-features .part:hover {
  box-shadow: #0068ff 0px 2px 0px 0px;
}

.product-features .part img {
  margin-bottom: 1rem;
  transition: ease 0.5s;
}

.product-features .part:hover img {
  transform: rotateY(360deg);
}

/*product features end*/
/*comparison table start*/
.comparison-table {
  background-color: #E6EEFB;
  padding: 6rem 0;
}

.comparison-table .table-responsive {
  padding-top: 1rem;
}

.comparison-table .table-head {
  background-color: #266FF2;
  color: #fff;
  border-color: #ddd;
}

.comparison-table table {
  background-color: #fff;
  box-shadow: 0 2px 0px 0px rgba(0, 104, 255, 0.2901960784);
  border: 1px solid rgba(0, 104, 255, 0.2);
}

.comparison-table table .table-head tr th {
  vertical-align: baseline;
}

.comparison-table table tr th {
  padding: 1rem 2rem;
}

.comparison-table table tr td {
  padding: 1rem 2rem;
}

.comparison-table table tbody tr:nth-last-child(1) td a {
  margin-top: 1rem;
}

/*comparison table end*/
/*specifications top start*/
.specifications-top {
  background: linear-gradient(rgba(27, 46, 89, 0.9098039216), rgba(27, 46, 89, 0.9490196078)), url(../img/bg1.webp);
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 6rem 0;
}

.specifications-top .top-part {
  color: #fff;
  text-align: center;
}

.specifications-top .top-part .heading {
  color: #fff;
}

/*specifications top end*/
/*specifications start*/
.specifications {
  padding: 6rem 0;
}

.specifications .part {
  border-radius: 1rem;
  padding: 2rem;
  margin: 2rem 0;
}

.specifications .part {
  box-shadow: 0 2px 0px 0px rgba(0, 104, 255, 0.2901960784);
  border: 1px solid rgba(0, 104, 255, 0.2);
  background: #e9f2ff;
  transition: ease 0.5s;
}

.specifications .part:hover {
  box-shadow: 0 2px 0px 0px #0068ff;
}

.specifications .part .head {
  font-size: 25px;
  font-weight: 700;
  position: relative;
  color: #1b2e59;
}

.specifications .part .head:after {
  content: "";
  height: 2px;
  width: 20%;
  background-color: #0068ff;
  position: absolute;
  left: 0;
  bottom: 0;
  transition: ease 0.5s;
}

.specifications .part1:hover .head:after {
  width: 31%;
}

.specifications .part2:hover .head:after {
  width: 80%;
}

.specifications .accordion .accordion-item {
  margin-bottom: 1rem;
  border-top: 1px solid #ddd;
  border-radius: 5px;
}

.specifications .accordion .accordion-item .accordion-header .accordion-button {
  background-color: #e9f2ff;
  border: 1px solid rgba(0, 104, 255, 0.2);
  border-bottom: 1px solid transparent;
  color: #1b2e59;
  font-weight: 600;
  font-size: 18px;
  box-shadow: none;
  border-left: 2px solid #0068ff;
}

.specifications .accordion .accordion-item .accordion-header .accordion-button.collapsed {
  background-color: #e9f2ff;
  border: 1px solid rgba(0, 104, 255, 0.2);
  color: #1b2e59;
  font-weight: 600;
  font-size: 18px;
  border-left: 2px solid #0068ff;
}

.specifications .accordion .accordion-item .accordion-body {
  border: 1px solid rgba(0, 104, 255, 0.2);
  border-top: 1px solid transparent;
  border-left: 2px solid #0068ff;
}

/*specifications end*/
/*trust client start*/
.trust-client .client-testimonial {
  padding-top: 2rem;
}

.trust-client .client-testimonial .part {
  background: #ffffff;
  box-shadow: 0 2px 0px 0px rgba(0, 104, 255, 0.2901960784);
  border: 1px solid rgba(0, 104, 255, 0.2);
  padding: 1rem;
  border-radius: 10px;
  margin-bottom: 1rem;
  transition: ease 0.5s;
}

.trust-client .client-testimonial .part:hover {
  box-shadow: 0 2px 0px 0px #0068ff;
}

.trust-client .client-testimonial .part .info p {
  margin-bottom: 5px;
}

.trust-client .client-testimonial .part .user-details .user-name {
  color: #1B2E59;
  font-size: 20px;
  font-weight: 500;
  margin: 0;
}

/*trust client end*/
/*product faq start*/
.product-faq {
  padding: 6rem 0;
}

.product-faq .accordion .accordion-item {
  margin-bottom: 1rem;
  border-top: 1px solid #ddd;
  border-radius: 5px;
}

.product-faq .accordion .accordion-item .accordion-header .accordion-button {
  background-color: #e9f2ff;
  border: 1px solid rgba(0, 104, 255, 0.2);
  border-bottom: 1px solid transparent;
  color: #1b2e59;
  font-weight: 600;
  font-size: 18px;
  box-shadow: none;
  border-left: 2px solid #0068ff;
}

.product-faq .accordion .accordion-item .accordion-header .accordion-button.collapsed {
  background-color: #e9f2ff;
  border: 1px solid rgba(0, 104, 255, 0.2);
  color: #1b2e59;
  font-weight: 600;
  font-size: 18px;
  border-left: 2px solid #0068ff;
}

.product-faq .accordion .accordion-item .accordion-body {
  border: 1px solid rgba(0, 104, 255, 0.2);
  border-top: 1px solid transparent;
  border-left: 2px solid #0068ff;
}

/*product faq end*/
/*screenshotsModal popup start*/
#popup-screenshots .owl-nav {
  display: block;
  width: 100%;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
}

#popup-screenshots .owl-nav button {
  font-size: 30px;
  color: #1B2E59;
  transition: 0.4s;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  background: #ffffff;
  border: 1px solid #E6EEFB;
  display: flex;
  justify-content: center;
}

#popup-screenshots .owl-nav button:hover {
  color: #fff;
  background: #266FF2;
}

#popup-screenshots .owl-prev {
  margin: 0 10px;
}

#popup-screenshots .owl-next {
  margin: 0 10px;
}
.breadcrumb ul li span{
    font-size: 16px;
    padding: 3px;
    display: inline-block;
    font-weight: 600;
}
/*screenshotsModal popup end*/
/*product page end*//*# sourceMappingURL=style.css.map */