body {
  padding: 0px;
  margin: 0px;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  color: #333333;
  font-weight: 400;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #333;
  font-weight: 600;
}

input,
button,
select {
  font-family: "Montserrat", sans-serif;
}

img {
  max-width: 100%;
  border: 0px;
}

.container {
  max-width: 1350px;
  margin: 0px auto;
  padding-left: 15px;
  padding-right: 15px;
}

.clearfix {
  clear: both;
}

a {
  /* color: #333333; */
  text-decoration: none;
}
a:hover {
  color: #cd2423;
  text-decoration: none;
}

.navbar-wrapper {
  display: flex;
  align-items: center;
  height: 70px;
  justify-content: space-between;
  padding: 0px 10%;
  background: aliceblue;
}

.navbar {
  display: flex;
  align-items: center;
  gap: 35px;
  list-style: none;
  height: 60px;
}
.navbar li {
  height: 40px;
  display: flex;
  align-items: center;
}
.navbar li a {
  text-decoration: none;
  font-size: 16px;
  line-height: 16px;
  font-weight: 400;
  color: #343c5c;
  display: flex;
  align-items: center;
  gap: 5px;
}

.navbar .dropdown {
  position: relative;
  /* opacity: 0; */
}

.navbar .dropdown:hover ul {
  transform: translateY(0px);
  opacity: 1;
  visibility: visible;
}

.dropdown ul {
  /* display: none; */
  /* padding: 20px 0px; */
  position: absolute;
  top: 100%;
  left: 0;
  list-style: none;
  background-color: #fff;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  width: 250px;
  transform: translateY(30px);
  opacity: 0;
  visibility: hidden;
  transition: 0.2s all;
}

.dropdown ul li {
  padding: 12px;
  cursor: pointer;
  transition: 0.3s all;
}

.dropdown ul li:hover {
  background-color: #e8f1ff;
}
.dropdown ul li a {
  font-size: 15px !important;
}

.icon-wrapper {
  width: 200px;
}

.icon-wrapper img {
  width: 100%;
}

.header-btn-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-btn-wrapper a {
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0px 20px;
  font-weight: 500;
  font-size: 16px;
  text-decoration: none;
}

.header-btn-wrapper .login-btn {
  color: #000000;
}

.header-btn-wrapper .free-trail-btn {
  color: #ffffff;
  background-color: #1777f7;
  border-radius: 12px;
  border: 1px solid transparent;
}

 .buy-btn {
  color: #1777f7;
  background-color: transparent;
  border: 1px solid #1777f7;
  border-radius: 12px;
}


/* products */

.navbar .dropdown:hover .products-wrapper {
  transform: translateY(0px);
  opacity: 1;
  visibility: visible;
}

.navbar .dropdown:hover .help-wrapper {
  transform: translateY(0px);
  opacity: 1;
  visibility: visible;
}

.dropdown .products-wrapper {
  /* display: none; */
  /* padding: 20px 0px; */
  position: absolute;
  top: 100%;
  left: -300px; /* start at center of button */

  list-style: none;
  background-color: #fff;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  width: 750px;
  transform: translateY(30px);
  opacity: 0;
  padding: 35px;
  visibility: hidden;
  transition: 0.2s all;
  z-index: 999;
  border-radius: 10px;
}

.dropdown .help-wrapper{
  position: absolute;
  top: 100%;
  left: 0px; /* start at center of button */

  list-style: none;
  background-color: #fff;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  /* width: 750px; */
  transform: translateY(30px);
  opacity: 0;
  /* padding: 10px; */
  visibility: hidden;
  transition: 0.2s all;
  z-index: 999;
  border-radius: 4px;
  width: 200px;
}

.help-wrapper a{
  white-space: nowrap;
padding: 10px 15px;
font-size: 14px;
color: #222;

}

.help-wrapper a:hover{
  background: #f4f4f48d;
}

.products-wrapper .product-header {
  width: 100%;
  padding-bottom: 15px;
  font-size: 20px;
  font-weight: 500;
  color: #222;
  border-bottom: 1px solid #ccc;
  margin-bottom: 20px;
}

.product-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.product-item .product-title {
  font-size: 16px;
  font-weight: 500;
  color: #222222;
  transition: 0.3s all;
  cursor: pointer;
}

.product-item .product-title:hover {
  color: #1777f7 !important;
}

.product-item .product-desc {
  font-size: 14px;
  font-weight: 400;
  color: #666;
}
.product-item-wrapper {
  display: flex;
  align-items: center;
  gap: 3px;
}
.product-icon {
  width: 30px;
  height: 30px;
  border-radius: 5px;
  padding: 5px;
  border: 1px solid #717171;
}
.products-items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.mobile-menu-icon {
  display: none;
}

/* section{padding-top:60px; padding-bottom:60px;} */

.bg-light {
  background: #f5f5f5 !important;
}
.btn-primary {
  background: #0b1248;
  border-color: #0b1248;
}
.btn-primary:hover {
  background: #cd2423;
  border-color: #cd2423;
}

.bg-primary {
  background: #0b1248 !important;
}

.text-primary {
  color: #0b1248 !important;
}
.text-secondary {
  color: #cd2423 !important;
}

.head-menu-logo {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  padding: 40px 0px;
  z-index: 9999;
}

.head-menu-logo-floatable {
  top: 0px;
  left: 0px;
  width: 100%;
  padding: 40px 0px;
  background: #e8f1ff;
}

.scroll-header {
  background: rgba(237, 245, 249, 0.9);
}

.logo {
  float: left;
  width: 230px;
  padding-left: 10px;
  padding-top: 12px;
}

.submit-btn {
  padding-right: 20px;
}
.submit-btn button {
  cursor: pointer;
  display: inline-block;
  border-radius: 5px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  padding: 15px 0px;
  font-weight: bold;
  font-size: 18px;
  text-align: center;
  width: 150px;
}
.submit-btn .free-trail:hover {
  color: #fff;
  background: #3c50e0;
  border: 1px solid #3c50e0;
}

.head-menu-btn {
  float: right;
  text-align: right;
  padding-right: 20px;
}
.head-menu-btn a {
  display: inline-block;
  margin-left: 15px;
  border-radius: 5px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  padding: 15px 0px;
  font-weight: bold;
  font-size: 18px;
  text-align: center;
  /* width: 180px; */
  width: 140px;
}
.head-menu-btn .login {
  color: #fff;
  background: #1e40c8;
}
.head-menu-btn .login:hover {
  color: #1e40c8;
  background: #fff;
}
.head-menu-btn .buy-now {
  color: #1e40c8;
  background: #fff;
}
.head-menu-btn .buy-now:hover {
  color: #fff;
  background: #1e40c8;
}
.head-menu-btn .free-trail {
  color: #fff;
  background: #1e40c8;
}
.head-menu-btn .free-trail:hover {
  color: #1e40c8;
  background: #fff;
}

.main-menu {
  float: left;
  /* width: 55%; */
  /* width: 50%; */
  width: 48%;
  text-align: center;
  font-size: 18px;
  padding-top: 15px;
}
.main-menu ul {
  padding: 0px;
  margin: 0px;
  list-style-type: none;
}
.main-menu i {
  display: inline-block;
  color: #1e40c8;
  padding-left: 10px;
  font-size: 11px;
  position: relative;
  top: -2px;
}
.main-menu ul li {
  display: inline-block;
  padding: 0px 20px;
  margin: 0px;
}
.main-menu ul li.active a {
  color: #1e40c8;
}
.main-menu ul li a {
  color: #1e1e1e;
  display: block;
  padding: 0px;
  margin: 0px;
}
.main-menu .dropdown {
  position: relative;
}
.main-menu .dropdown:hover ul {
  display: block;
  z-index: 10;
}
.main-menu .dropdown ul {
  position: absolute;
  left: 20px;
  width: 200px;
  display: none;
  padding: 0px;
  margin: 0px;
  list-style-type: none;
  background: #fff;
}
.main-menu .dropdown ul li {
  padding: 0px;
  margin: 0px;
  display: block;
  border-bottom: 1px solid #e5e5e5;
}
.main-menu .dropdown ul li a {
  display: block;
  padding: 10px;
  text-align: left;
}
.main-menu .dropdown ul li a:hover {
  background: #1e40c8;
  color: #fff;
}

.main-menu .dropdown:hover .dropbtn {
  color: #1e40c8;
}

.mobile-menu-icon {
  display: none;
}

.mobile-menu {
  padding: 15px;
  width: 100%;
  transition: 0.3s all;
  transform: translateX(-100%);
  background: #fff;
  position: absolute;
  height: 100vh;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.active-menu {
  transform: translateX(0);
}

.mobile-navbar {
  display: flex;
  flex-direction: column;
  list-style: none;
  gap: 25px;
  padding: 10px;
  margin-top: 20px;
  align-items: center;
}

.mobile-navbar li a {
  color: #222222;
}

.mobile-dropdown ul {
  /* padding-left: 20px; */
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 10px;
}

.header-main {
  background: #e8f1ff;
  width: 100%;
  position: relative;
  min-height: 805px;
  padding: 0px 0px 150px 0px;
}
.macbook {
  float: right;
  width: 50%;
  position: absolute;
  right: 0px;
  top: 0px;
}
.header-content {
  float: left;
  width: 51%;
  padding-top: 240px;
}
.header-content h1 {
  font-weight: 600;
  color: #091841;
  font-size: 60px;
  padding: 0px;
  margin: 0px;
}
.header-content p {
  color: #1e1e1e;
  font-size: 18px;
  padding: 0px;
  margin: 20px 0px 20px 0px;
}

.header-content .btn {
  border-radius: 5px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  background: #1e40c8;
  display: inline-block;
  font-size: 18px;
  display: inline-block;
  text-align: center;
  color: #fff;
  font-weight: bold;
  background: #1e40c8;
  width: 250px;
  padding: 15px 0px;
  border: 2px solid #1e40c8;
  margin-top: 20px;
}
.header-content .btn:hover {
  background: #11b3e7;
  color: #fff;
  border: 2px solid #11b3e7;
}

.welcome-main {
  padding: 185px 10px 220px 10px;
}
.welcome-left {
  float: left;
  width: 47%;
  position: relative;
}
.welcome-left img {
  position: relative;
  z-index: 9;
  border-radius: 10px;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
}
.welcome-left:after {
  position: absolute;
  left: -30px;
  bottom: -30px;
  content: "";
  width: 0;
  height: 0;
  border-bottom: 125px solid #11b3e7;
  border-right: 125px solid transparent;
}

.welcome-right {
  float: right;
  width: 50%;
  position: relative;
}
.welcome-right h6 {
  color: #11b3e7;
  padding: 0px;
  margin: 0px;
  font-weight: bold;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.welcome-right h2 {
  color: #091841;
  padding: 10px 0px 20px 0px;
  margin: 0px;
  font-weight: 600;
  font-size: 60px;
}
.welcome-right .btn {
  border-radius: 5px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  background: #fdb400;
  display: inline-block;
  font-size: 18px;
  display: inline-block;
  text-align: center;
  color: #1e40c8;
  font-weight: bold;
  background: #fff;
  width: 185px;
  padding: 15px 0px;
  border: 2px solid #1e40c8;
  margin-top: 20px;
}
.welcome-right .btn:hover {
  background: #1e40c8;
  color: #fff;
  border: 2px solid #1e40c8;
}

.solution-main {
  background: #082156;
  padding: 160px 10px 200px 10px;
}
.solution-titles {
  padding-bottom: 110px;
}
.solution-titles h2 {
  color: #fff;
  padding: 0px 0px 20px 0px;
  margin: 0px;
  font-weight: 600;
  font-size: 60px;
  float: left;
  width: 26%;
}
.solution-titles p {
  color: #fff;
  padding: 0px 0px 20px 0px;
  margin: 0px;
  font-size: 30px;
  float: right;
  width: 71%;
}
.solution-left {
  float: left;
  width: 48%;
}
.solution-right {
  float: right;
  width: 48%;
  position: relative;
}
.solution-left-boxes {
  float: left;
  width: 44%;
  margin: 0px 30px 60px 0px;
}
.solution-left-icon {
  padding-bottom: 20px;
}
.solution-left-boxes h4 {
  padding: 0px 0px 30px 0px;
  margin: 0px;
  font-size: 24px;
  font-weight: 600;
  color: #fff;
}
.solution-left-boxes p {
  font-size: 18px;
  color: #749ad8;
  padding: 0px;
  margin: 0px;
}

.solution-right-box {
  border-radius: 10px;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  position: relative;
  z-index: 9;
  -webkit-box-shadow: 0px 3px 18px 0px rgba(0, 0, 0, 0.13);
  -moz-box-shadow: 0px 3px 18px 0px rgba(0, 0, 0, 0.13);
  box-shadow: 0px 3px 18px 0px rgba(0, 0, 0, 0.13);
  background: #fff;
  padding: 0px 0px 30px 30px;
}

.solution-icon-boxes {
  width: 45%;
  border-radius: 5px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  margin: 0px 20px 20px 0px;
  padding: 30px 0px 30px 0px;
  text-align: center;
  float: left;
}

.solution-icon-boxes h5 {
  padding: 0px;
  margin: 0px;
  font-size: 16px;
  color: #1d1c58;
  font-weight: normal;
}
.solution-icon-icon {
  padding-bottom: 12px;
}

.solution-icon-create {
  background: #fff1f2;
}
.solution-icon-sign {
  background: #f0f5fc;
}
.solution-icon-analyze {
  background: #fff6e3;
}
.solution-icon-send {
  background: #f4feff;
}

.solution-logo {
  padding: 50px 30px 50px 0px;
  text-align: center;
}

.solution-right:before {
  content: "";
  position: absolute;
}

.solution-right:before {
  content: "";
  width: 256px;
  height: 256px;
  background: #ffbcbd;
  border-radius: 0 0 250px 0;
  -moz-border-radius: 0 0 250px 0;
  -webkit-border-radius: 0 0 250px 0;
  position: absolute;
  left: -80px;
  bottom: -80px;
  transform: rotate(90deg);
}

.solution-right:after {
  content: "";
  width: 382px;
  height: 565px;
  background: url("../images/solution-shape.png") no-repeat top center;
  position: absolute;
  top: -70px;
  right: -94px;
}

.works-main {
  padding: 190px 10px 200px 10px;
}
.works-main h6 {
  color: #11b3e7;
  padding: 0px;
  margin: 0px;
  font-weight: bold;
  font-size: 16px;
  letter-spacing: 2px;
}
.works-main h2 {
  color: #091841;
  padding: 10px 0px 20px 0px;
  margin: 0px;
  font-weight: 600;
  font-size: 60px;
}
.works-main p {
  color: #1e1e1e;
  padding: 0px 0px 20px 0px;
  margin: 0px;
  font-size: 18px;
  line-height: 24px;
}
.works-left {
  float: left;
  width: 40%;
}
.works-left .btn {
  border-radius: 5px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  background: #fdb400;
  display: inline-block;
  font-size: 18px;
  display: inline-block;
  text-align: center;
  color: #1e40c8;
  font-weight: bold;
  background: #fff;
  width: 185px;
  padding: 15px 0px;
  border: 2px solid #1e40c8;
  margin-top: 20px;
}
.works-left .btn:hover {
  background: #1e40c8;
  color: #fff;
  border: 2px solid #1e40c8;
}
.works-right {
  float: right;
  width: 48%;
  position: relative;
}
.works-right img {
  border-radius: 10px;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  position: relative;
  z-index: 9;
}
.works-video-icon {
  position: absolute;
  top: 40%;
  left: 0px;
  text-align: center;
  width: 100%;
}

.works-right:after {
  content: "";
  width: 166px;
  height: 166px;
  background: #ffbcbd;
  border-radius: 0 0 166px 0;
  -moz-border-radius: 0 0 166px 0;
  -webkit-border-radius: 0 0 166px 0;
  position: absolute;
  right: -84px;
  bottom: -84px;
}

.testimonial-main {
  background: #e8f1ff;
  padding: 130px 10px;
}
.testimonial-main h6 {
  color: #11b3e7;
  padding: 0px;
  margin: 0px;
  font-weight: bold;
  font-size: 16px;
  text-align: center;
  letter-spacing: 2px;
}
.testimonial-main h2 {
  color: #091841;
  padding: 10px 0px 70px 0px;
  margin: 0px;
  font-weight: 600;
  font-size: 60px;
  text-align: center;
}
.testimonial-content {
  position: relative;
}
.testimonial-main .owl-dots {
  text-align: center;
  padding-top: 70px;
}
.testimonial-main .owl-dots button {
  background: #fdb400 !important;
  border: 2px solid #d3deef !important;
  width: 8px;
  height: 8px;
  display: inline-block;
  margin: 0px 5px;
  border-radius: 10px;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
}
.testimonial-main .owl-dots button.active {
  background: #1e40c8 !important;
  border-color: #1e40c8 !important;
}
.testimonial-main .owl-nav {
  position: absolute;
  top: 40%;
  width: 100%;
  left: 0px;
}
.testimonial-main .owl-nav button {
  border: 0px;
  cursor: pointer;
  color: #d1dced !important;
  font-size: 40px !important;
  outline: none;
}
.testimonial-main .owl-nav button:hover,
.testimonial-main .owl-nav button.active {
  color: #1e40c8 !important;
}
.testimonial-main .owl-nav button.owl-prev {
  float: left;
  position: relative;
  left: -80px;
  background: none;
}
.testimonial-main .owl-nav button.owl-next {
  float: right;
  position: relative;
  right: -80px;
  background: none;
}
.testimonial-box {
  background: #fff;
  border-radius: 10px;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  padding: 90px 40px 50px 40px;
  -webkit-box-shadow: 2px 2px 18px 0px rgba(52, 161, 252, 0.13);
  -moz-box-shadow: 2px 2px 18px 0px rgba(52, 161, 252, 0.13);
  box-shadow: 2px 2px 18px 0px rgba(52, 161, 252, 0.13);
  position: relative;
  margin-top: 22px;
}
.testimonial-descp {
  font-style: italic;
  font-size: 18px;
  color: #1e1e1e;
  line-height: 24px;
  padding-bottom: 50px;
}
.testimonial-rating {
  color: #ffc107;
  padding-bottom: 15px;
}
.testimonial-name {
  font-size: 16px;
  font-weight: 600;
  color: #232323;
  padding-bottom: 10px;
}
.testimonial-designation {
  font-size: 16px;
  color: #909090;
}
.testimonial-quote {
  position: absolute;
  top: -22px;
  left: 38px;
}

.testimonial-content:after {
  position: absolute;
  bottom: 0%;
  left: -113px;
  height: 146px;
  width: 291px;
  border-radius: 0px 0px 150px 150px;
  background-color: #fdb400;
  content: "";
}

.faq-main {
  padding: 130px 10px 100px;
  max-width: 880px;
  margin: 0px auto;
}
.faq-main h6 {
  color: #11b3e7;
  padding: 0px;
  margin: 0px;
  font-weight: bold;
  font-size: 16px;
  text-align: center;
  letter-spacing: 2px;
}
.faq-main h2 {
  color: #091841;
  padding: 10px 0px 70px 0px;
  margin: 0px;
  font-weight: 600;
  font-size: 60px;
  text-align: center;
}
.faq-content {
  margin-bottom: 25px;
  border-radius: 10px;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  border: 2px solid #e4f2ff;
}
.faq-title {
  padding-top: 5px;
  display: inline-block;
  padding-right: 25px;
}
.faq-main .accordion {
  cursor: pointer;
  width: 100%;
  text-align: left;
  border: none;
  outline: none;
  transition: 0.4s;
  background: none;
  padding: 17px 30px;
  font-weight: 600;
  font-size: 18px;
  color: #091841;
  position: relative;
}

.faq-main .panel {
  padding: 0px 30px 0px 30px;
  background-color: white;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
  font-size: 18px;
  color: #091841;
  line-height: 24px;
  margin: 0px;
  background: none;
}
.faq-main .panel p {
  padding: 0px 0px 30px 0px;
  margin: 0px;
}
.faq-main .accordion:after {
  content: "\02795";
  font-size: 13px;
  color: #11b3e7 !important;
  float: right;
  margin-left: 5px;
  border-radius: 100%;
  -moz-border-radius: 100%;
  -webkit-border-radius: 100%;
  border: 2px solid #11b3e7;
  width: 32px;
  height: 32px;
  cursor: pointer;
  text-align: center;
  line-height: 32px;
  position: absolute;
  right: 15px;
  top: 13px;
}
.faq-main .active:after {
  content: "\2796";
  color: #11b3e7 !important;
}
.pricing-main {
  /* padding: 170px 10px 80px 10px; */
  padding: 120px 10px 80px 10px;
  margin: 0px auto;
  background: #e8f1ff;
}
.pricing-main h6 {
  color: #1e1e1e;
  padding: 0px 0px 20px 0px;
  margin: 0px;
  font-weight: 400;
  font-size: 20px;
  text-align: center;
}
.pricing-main h2 {
  color: #091841;
  padding: 0px 0px 10px 0px;
  margin: 0px;
  font-weight: 600;
  font-size: 48px;
  text-align: center;
}
.pricing-cont-main {
  /* padding: 80px 0px 0px; */
  padding: 10px 0px 0px;
}
.pricing-main .tabs-nav {
  padding: 0px;
  /* margin: 0px 0px 100px 0px; */
  margin: 0px 0px 30px 0px;
  list-style-type: none;
  text-align: center;
  border: 2px solid #1e40c8;
  border-radius: 10px;
  display: inline-block;
}
.pricing-main .tabs-nav li {
  display: inline-block;
  font-size: 18px;
  color: #091841;
  padding: 0px;
  margin: 0px;
}
.pricing-main .tabs-nav li a {
  display: block;
  padding: 17px 30px;
}
.pricing-main .tabs-nav li a:hover,
.pricing-main .tabs-nav li.tab-active a {
  background: #1e40c8;
  color: #fff;
}
.pricing-tabbox {
  text-align: center;
}
.pricing-main .tab-box ul {
  padding: 0px;
  margin: 0px;
  list-style-type: none;
}
.pricing-main .tab-box ul li {
  width: 17%;
  display: inline-block;
  margin: 0px 20px 20px 0px;
  border-radius: 10px;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  background: #fff;
  -webkit-box-shadow: 0px 3px 18px 0px rgba(52, 161, 252, 0.13);
  -moz-box-shadow: 0px 3px 18px 0px rgba(52, 161, 252, 0.13);
  box-shadow: 0px 3px 18px 0px rgba(52, 161, 252, 0.13);
  /* padding: 52px 42px 20px 42px; */
  padding: 22px 42px 20px 42px;
  vertical-align: top;
  min-height: 700px;
  position: relative;
}
.pricing-main .tab-box ul li:last-child {
  margin-right: 0px;
}
.pricing-main .tab-box ul li:hover,
.pricing-main .tab-box ul li.active {
  border: 2px solid #11b3e7;
  /* padding: 50px 40px 18px 40px; */
  padding: 20px 40px 18px 40px;
}
.price-recomended {
  position: absolute;
  top: -40px;
  left: 0px;
  width: 100%;
  display: block !important;
}
.price-recomended h5 {
  background: #fdb400;
  text-align: center;
  color: #091841;
  font-size: 18px;
  padding: 8px 0px;
  margin: 0px 40px;
  -moz-border-radius-topleft: 10px;
  -webkit-border-top-left-radius: 10px;
  border-top-left-radius: 10px;
  -moz-border-radius-topright: 10px;
  -webkit-border-top-right-radius: 10px;
  border-top-right-radius: 10px;
  text-transform: uppercase;
}

.pricing-main .tab-box h3 {
  /* padding: 0px 0px 20px 0px; */
  padding: 0px 0px 5px 0px;
  margin: 0px;
  font-weight: 700;
  /* font-size: 36px; */
  font-size: 28px;
  color: #091841;
  text-align: center;
}
.pricing-main .tab-box h4 {
  padding: 0px 0px 0px 0px;
  margin: 0px;
  font-weight: 700;
  /* font-size: 48px; */
  font-size: 30px;
  color: #11b3e7;
  text-align: center;
}
.pricing-main .tab-box h4 sup {
  font-weight: 400;
  position: relative;
  top: 5px;
}
.pricing-main .tab-box h6 {
  padding: 0px;
  margin: 0px;
  font-weight: 400;
  font-size: 16px;
  color: #a5a5a5;
  text-align: center;
}
.pricing-main .buy-now {
  margin-top: 10px;
  display: block;
  border-radius: 5px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  background: #1e40c8;
  color: #fff;
  font-size: 18px;
  padding: 17px 0px;
  text-align: center;
}
.pricing-main .buy-now:hover {
  background: #11b3e7;
}
.pricing-main .pricing-list {
  /* padding: 50px 0px 20px 0px; */
  padding: 20px 0px 20px 0px;
  display: block !important;
}
.pricing-main .pricing-list ul {
  padding: 0px !important;
  margin: 0px !important;
  display: block !important;
}
.pricing-main .pricing-list ul li {
  padding: 0px 0px 20px 40px !important;
  margin: 0px !important;
  color: #1e1e1e;
  /* font-size: 18px; */
  font-size: 17px;
  background: url("../images/pricing-checklist.png") no-repeat top left #fff !important;
  width: auto;
  display: block !important;
  box-shadow: unset !important;
  -moz-box-shadow: unset !important;
  -webkit-box-shadow: unset !important;
  border: 0px !important;
  min-height: inherit !important;
}

.terms-pg-main {
  position: relative;
  padding: 60px 10px 150px 10px;
}
.terms-pg-main:after {
  background: #e8f1ff;
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  min-height: 0px;
}

.order-pg-main {
  position: relative;
  padding: 60px 10px 150px 10px;
}
.order-pg-main:after {
  background: #e8f1ff;
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  min-height: 170px;
}
.order-container {
  max-width: 1100px;
  padding: 0px 10px;
  margin: 0px auto;
  position: relative;
  z-index: 9;
}
.order-summary {
  margin-bottom: 65px;
  border-radius: 10px;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  padding: 45px 70px;
  -webkit-box-shadow: 0px 3px 16px 0px rgba(52, 161, 252, 0.13);
  -moz-box-shadow: 0px 3px 16px 0px rgba(52, 161, 252, 0.13);
  box-shadow: 0px 3px 16px 0px rgba(52, 161, 252, 0.13);
  background: #fff;
}

.order-summary h3 {
  text-align: center;
  padding: 0px 0px 10px 0px;
  margin: 0px;
  font-size: 24px;
  color: #1d1c58;
  font-weight: bold;
}
.order-summary h6 {
  text-align: center;
  padding: 0px 0px 40px 0px;
  margin: 0px;
  font-size: 18px;
  color: #1e1e1e;
  font-weight: 600;
}
.order-sum-cont {
  padding-bottom: 50px;
}
.order-sum-cont a {
  color: #11b3e7;
  text-decoration: none;
}
.order-sum-cont a:hover {
  text-decoration: underline;
}

.order-sum-left {
  float: left;
  width: 50%;
  font-size: 18px;
  color: #1e1e1e;
}
.order-sum-right {
  float: right;
  width: 50%;
  font-size: 18px;
  color: #1e1e1e;
  text-align: right;
}
.no-padding {
  padding: 0px !important;
}
.order-stepbox {
  border-radius: 10px;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  border: 2px solid #e4f2ff;
  margin-bottom: 35px;
  background: white;
}
.order-stepbox-title {
  padding: 14px 10px 14px 30px;
}
.order-stepbox-title-no {
  float: left;
  margin-right: 25px;
  width: 40px;
}
.order-stepbox-title-no span {
  width: 38px;
  height: 38px;
  border: 1px solid #55c2eb;
  border-radius: 50%;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  text-align: center;
  line-height: 38px;
  color: #4abeea;
  display: block;
  font-size: 18px;
  font-weight: bold;
}
.order-stepbox-title h2 {
  font-weight: bold;
  font-size: 18px;
  color: #091841;
  float: left;
  padding: 10px 0px 0px 0px;
  margin: 0px;
}
.order-stepbox-title-no.active span {
  background: #4abeea;
  color: #fff;
}

.order-stepbox1 {
  border-radius: 10px;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  border: 2px solid #e4f2ff;
  margin-bottom: 35px;
}
.order-stepbox1-title {
  padding: 14px 10px 14px 30px;
}
.order-stepbox1-title-no {
  float: left;
  margin-right: 25px;
  width: 40px;
}
.order-stepbox1-title-no span {
  width: 38px;
  height: 38px;
  border: 1px solid #55c2eb;
  border-radius: 50%;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  text-align: center;
  line-height: 38px;
  color: #4abeea;
  display: block;
  font-size: 18px;
  font-weight: bold;
}
.order-stepbox1-title h2 {
  font-weight: bold;
  font-size: 18px;
  color: #091841;
  float: left;
  padding: 10px 0px 0px 0px;
  margin: 0px;
}
.order-stepbox1-title-no.active span {
  background: #4abeea;
  color: #fff;
}

.order-step1-contbox {
  padding: 30px;
}
.order-cta {
  max-width: 330px;
}
.order-cta button {
  border-radius: 5px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  width: 100%;
  background: #1e40c8;
  height: 58px;
  text-align: center;
  border: 0px;
  outline: none;
  color: #fff;
  font-weight: bold;
  font-size: 18px;
  text-transform: uppercase;
  cursor: pointer;
}
.order-cta button:hover {
  background: #4abeea;
}
.order-step1-field {
  margin-bottom: 25px;
  position: relative;
}
.order-step1-field label {
  display: block;
  font-size: 16px;
  color: #4a4d50;
  padding: 0px 0px 15px 0px;
  margin: 0px;
}
.order-step1-field label span {
  color: #ff0000;
}
.order-step1-field input,
.order-step1-field select {
  border: 1px solid #e0e0e0;
  border-radius: 5px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  width: 100%;
  box-sizing: border-box;
  padding: 0px 10px;
  height: 56px;
  color: #7e7e7e;
  font-size: 16px;
  position: relative;
}
.order-step1-field select {
  padding-right: 40px;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
  background: url("../images/select-arrow.jpg") no-repeat center right #fff;
}
.order-field-left {
  float: left;
  width: 48%;
}
.order-field-right {
  float: right;
  width: 48%;
}

.order-step2-contbox {
}
.order-tabnav {
  text-align: center;
}
.order-tabnav ul {
  padding: 0px;
  margin: 0px;
  list-style-type: none;
  border-bottom: 2px solid #e4f2ff;
  text-align: center;
}
.order-tabnav ul li {
  display: inline-block;
  padding: 0px;
  margin: 0px 20px;
}
.order-tabnav ul li a {
  display: block;
  color: #091841;
  padding: 0px 7px 16px 7px;
  font-size: 16px;
  position: relative;
}
.order-tabnav ul li a:hover {
  color: #32b9e9;
}
.order-tabnav ul li.tab-active a {
  font-weight: bold;
  color: #32b9e9;
}
.order-tabnav ul li.tab-active a:after {
  bottom: -2px;
  left: 0px;
  height: 3px;
  background: #11b3e7;
  content: "";
  width: 100%;
  position: absolute;
}
.order-step2-contbox .tabs-stage {
  padding: 70px 30px 20px 30px;
}

.order-step2-contbox .tabs-stage ul {
  padding: 0px;
  margin: 0px;
  list-style-type: none;
}
.order-step2-contbox .tabs-stage ul li {
  border-radius: 5px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border: 1px solid #e4f2ff;
  margin: 0px 20px 20px 0px;
  padding: 30px 20px 25px 20px;
  display: inline-block;
  width: 19%;
  position: relative;
}
.order-step2-contbox .tabs-stage ul li:last-child {
  margin-right: 0px;
}
.order-step2-cta {
  margin: 0px 0px 30px 30px;
}
.order-step2-contbox .tabs-stage h3 {
  padding: 0px 0px 10px;
  margin: 0px;
  font-weight: bold;
  color: #091841;
  font-size: 24px;
  text-align: center;
}
.order-step2-contbox .tabs-stage h4 {
  padding: 0px 0px 10px;
  margin: 0px;
  font-weight: bold;
  color: #11b3e7;
  font-size: 36px;
  text-align: center;
}
.order-step2-contbox .tabs-stage h4 sup {
  font-weight: 400;
}
.order-step2-contbox .tabs-stage h6 {
  padding: 0px 0px 20px;
  margin: 0px;
  font-weight: 400;
  color: #a5a5a5;
  font-size: 22px;
  text-align: center;
}
.order-step2-contbox .buy-now {
  text-align: center;
  cursor: pointer;
  outline: none;
  font-size: 18px;
  color: #1d1c58;
  border-radius: 5px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  font-weight: bold;
  border: 1px solid #1e40c8;
  width: 100%;
  display: block;
  padding: 17px 0px;
}
.order-step2-contbox .buy-now:hover,
.order-step2-contbox .tabs-stage ul li.active .buy-now {
  background: #1e40c8;
  color: #fff;
}

.order-step2-contbox .price-recomended {
  position: absolute;
  top: -32px;
  left: 0px;
  width: 100%;
  display: block !important;
}
.order-step2-contbox .price-recomended h5 {
  background: #fdb400;
  text-align: center;
  color: #091841;
  font-size: 12px;
  padding: 8px 0px;
  margin: 0px 40px;
  -moz-border-radius-topleft: 10px;
  -webkit-border-top-left-radius: 10px;
  border-top-left-radius: 10px;
  -moz-border-radius-topright: 10px;
  -webkit-border-top-right-radius: 10px;
  border-top-right-radius: 10px;
  text-transform: uppercase;
}

.order-step3-contbox {
  padding: 30px;
}

.order-step3-contbox .disclaimer {
  padding-top: 15px;
  font-size: 16px;
  color: #8e8e8e;
  margin-right: 10px;
}
.order-step3-contbox .disclaimer a {
  color: #11b3e7;
  text-decoration: none;
}
.order-step3-contbox .disclaimer a:hover {
  text-decoration: underline;
}
.order-step3-contbox h3 {
  font-size: 18px;
  color: #1e1e1e;
  font-weight: bold;
  padding-top: 40px;
}
.order-step3-contbox .card-number {
  float: left;
  width: 60%;
}
.order-step3-contbox .cards-img {
  float: left;
  margin-left: 25px;
  padding-top: 35px;
}
.order-step3-contbox .select-month {
  float: left;
  width: 35%;
  margin-right: 25px;
}
.order-step3-contbox .select-year {
  float: left;
  width: 30%;
}
.order-step3-contbox .cvv {
  float: right;
  width: 30%;
  position: relative;
}
.order-step3-contbox .help-icon {
  width: 14px;
  height: 14px;
  position: absolute;
  right: 10px;
  top: 19px;
}
.secure-info {
  font-size: 18px;
  color: #1e1e1e;
  margin-bottom: 25px;
}
.secure-info i {
  font-size: 22px;
  color: #505050;
  display: inline-block;
  margin-right: 10px;
}
.custom-radio {
  margin-bottom: 25px;
}
.custom-radio p {
  display: inline-block;
  vertical-align: top;
  margin-right: 50px;
}
.custom-radio img {
  position: relative;
  top: -5px;
}

.custom-radio label {
  font-size: 18px;
  color: #1e1e1e;
  font-weight: bold;
}

.custom-radio [type="radio"]:checked,
.custom-radio [type="radio"]:not(:checked) {
  position: absolute;
  left: -9999px;
}
.custom-radio [type="radio"]:checked + label,
.custom-radio [type="radio"]:not(:checked) + label {
  position: relative;
  padding-left: 35px;
  cursor: pointer;
  line-height: 20px;
  display: inline-block;
  ccolor: #1e1e1e;
}
.custom-radio [type="radio"]:checked + label:before,
.custom-radio [type="radio"]:not(:checked) + label:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 18px;
  height: 18px;
  border: 1px solid #e4f2ff;
  border-radius: 100%;
  background: #fff;
}
.custom-radio [type="radio"]:checked + label:after,
.custom-radio [type="radio"]:not(:checked) + label:after {
  content: "";
  width: 12px;
  height: 12px;
  background: #4abeea;
  position: absolute;
  top: 4px;
  left: 4px;
  border-radius: 100%;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.custom-radio [type="radio"]:not(:checked) + label:after {
  opacity: 0;
  -webkit-transform: scale(0);
  transform: scale(0);
}
.custom-radio [type="radio"]:checked + label:after {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}

.call-to-action {
  margin-bottom: -105px;
  position: relative;
}
.call-to-action-content {
  background: #1e40c8;
  border-radius: 10px;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  padding: 50px;
}
.call-left-box {
  float: left;
  width: 50%;
}
.call-left-box h3 {
  font-weight: bold;
  font-size: 24px;
  padding: 0px 0px 20px;
  margin: 0px;
  color: #fff;
}
.call-left-box p {
  font-size: 18px;
  color: #fff;
  line-height: 24px;
  padding: 0px;
  margin: 0px;
}
.call-right-box {
  float: right;
  padding-top: 15px;
}
.call-right-box .btn {
  border-radius: 5px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  background: #fdb400;
  display: inline-block;
  font-size: 24px;
  display: inline-block;
  text-align: center;
  color: #fff;
  font-weight: bold;
  background: #fdb400;
  width: 240px;
  padding: 20px 0px;
}
.call-right-box .btn:hover {
  background: #092a60;
}

.terms-footer {
  background: #fff;
  padding: 14px 0px 14px 0px;
  font-size: 12px;
  color: #989898;
}
.terms-footer a {
  color: #989898;
}
.terms-footer a:hover {
  color: #11b3e7;
}
.terms-copyright {
  float: left;
  width: 30%;
}
.terms-footer-menu {
  text-align: center;
  float: left;
  width: 40%;
}
.terms-footer-menu ul {
  padding: 0px;
  margin: 0px;
  list-style-type: none;
}
.terms-footer-menu ul li {
  padding: 0px 2px;
  margin: 0px;
  display: inline-block;
  vertical-align: top;
}
.terms-footer-menu ul li a {
  color: #989898;
}
.terms-footer-menu ul li a:hover {
  color: #11b3e7;
}
.terms-footer-country {
  position: relative;
  float: right;
  width: 200px;
}

.terms-footer-country .btn {
  cursor: pointer;
  border: 0px;
  background: url("../../assets/images/country-button-arrow.jpg") no-repeat
    right center #fff;
  outline: none;
  color: #989898;
  font-weight: 400;
  height: inherit;
  font-size: 12px;
}
.terms-footer-country .dropdown-menu a {
  display: block;
  cursor: pointer;
  padding: 5px 0px;
}
.terms-footer-country .dropdown-menu {
  position: absolute;
  bottom: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  float: left;
  min-width: 160px;
  padding: 10px;
  margin: 0px;
  font-size: 14px;
  text-align: left;
  list-style: none;
  background-color: #fff;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  border: 1px solid #ccc;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
}

.terms-footer-country .open > .dropdown-menu {
  display: block;
}

.main-footer {
  background: #092a60;
  padding: 220px 0px 0px 0px;
  color: #fff;
}
.footer-top {
  padding-bottom: 30px;
}
.footer-top h3 {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  padding: 0px 0px 25px 0px;
  margin: 0px;
}
.footer-top-col {
  float: left;
  width: 25%;
  margin-bottom: 30px;
}
.footer-logo {
  padding-bottom: 45px;
}
.footer-menu {
}
.footer-menu ul {
  padding: 0px;
  margin: 0px;
  list-style-type: none;
}
.footer-menu ul li {
  padding: 0px 0px 24px 0px;
  display: block;
}
.footer-menu ul li a {
  display: block;
  color: #fff;
}
.footer-menu ul li a:hover {
  color: #11b3e7;
}
.footer-social {
  padding-top: 20px;
}
.footer-social a {
  border-radius: 100%;
  -moz-border-radius: 100%;
  -webkit-border-radius: 100%;
  background: #fff;
  color: #092a60;
  margin-right: 10px;
  display: inline-block;
  width: 30px;
  height: 30px;
  text-align: center;
  line-height: 30px;
  font-size: 20px;
}
.footer-social a:hover {
  background: #11b3e7;
}

.footer-copyright {
  padding-bottom: 30px;
}
.footer-name {
  padding-bottom: 30px;
  float: left;
  padding-top: 11px;
  font-size: 16px;
  color: #fff;
}
.footer-translate {
  float: right;
  width: 215px;
}
.footer-translate select {
  background: none;
  border: 1px solid #fff;
  border-radius: 5px;
  width: 100%;
  color: #fff;
  height: 40px;
  padding-left: 5px;
  padding-right: 5px;
}

.footer-translate option {
  color: black;
}

.footer-links {
  float: right;
  padding-bottom: 30px;
  padding-top: 11px;
  font-size: 16px;
}

.footer-links a {
  color: white;
}

.footer-links a:hover {
  color: #fdb400;
}

@media screen and (max-width: 1390px) {
  .main-menu {
    width: 44%;
  }
  .main-menu ul li {
    padding: 0px 14px;
  }
  .solution-main,
  .works-main,
  .testimonial-main,
  .header-main {
    overflow: hidden;
  }
}

@media screen and (max-width: 1200px) {
  .pricing-main .tab-box ul li {
    width: 22%;
  }
}

@media screen and (max-width: 1130px) {
  .main-menu {
    width: 44%;
  }
  .main-menu ul li {
    padding: 0px 7px;
  }
}

@media screen and (max-width: 1050px) {
  .order-pg-main {
    padding-top: 50px;
  }
  .terms-pg-main {
    padding-top: 50px;
  }
  .main-menu .navbar {
    display: none;
  }
  .mobile-menu {
    display: block;
    margin-right: 20px;
    padding: 10px;
    z-index: 999;
  }
  .main-menu .navbar.open {
    display: block;
    position: absolute;
    right: 0px;
    width: 100%;
    background: #fff;
    padding: 10px 0px;
  }
  .main-menu ul li {
    display: block;
  }
  .main-menu ul li a {
    padding: 10px;
    text-align: center;
  }
  .main-menu .mobile-menu i {
    font-size: 20px;
  }
  .main-menu {
    width: 100%;
    position: absolute;
    right: 0px;
    top: 20px;
    text-align: right;
    z-index: 99;
  }

  .head-menu-btn {
    float: none;
    width: auto;
    padding: 0px;
    margin: 0px;
    text-align: center;
  }

  .head-menu-logo {
    position: relative;
    background: rgba(237, 245, 249, 1) !important;
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .head-menu-logo-floatable {
    position: relative;
    background: rgba(237, 245, 249, 1) !important;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .logo {
    float: none;
    padding-bottom: 20px;
  }

  .head-menu-btn a {
    /* margin: 0px 10px; */
    margin: 5px;
  }

  .main-menu .dropdown ul {
    position: relative;
    text-align: center;
    width: auto;
    left: 0px;
  }
  .main-menu .dropdown ul li a {
    text-align: center;
  }
}
@media screen and (max-width: 1000px) {
  .order-summary {
    padding: 30px;
  }
  .order-step2-contbox .tabs-stage ul li {
    width: 25%;
  }
  .macbook {
    float: none;
    width: auto;
    position: relative;
    text-align: right;
  }
  .header-content {
    float: none;
    width: auto;
    padding: 0px 0px 50px 0px;
    text-align: center;
  }
  .header-content h1 {
    font-size: 45px;
  }
  .welcome-main {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .welcome-left {
    float: none;
    width: auto;
    max-width: 570px;
    margin: 0px auto;
  }
  .welcome-right {
    float: none;
    width: auto;
    padding-top: 60px;
    text-align: center;
  }
  .welcome-right h2 {
    font-size: 35px;
  }

  .solution-main {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .solution-titles {
    padding-bottom: 50px;
  }
  .solution-titles h2 {
    float: none;
    width: auto;
    font-size: 35px;
    text-align: center;
  }
  .solution-titles p {
    float: none;
    width: auto;
    font-size: 20px;
    text-align: center;
  }
  .solution-left {
    float: none;
    width: auto;
  }
  .solution-right {
    float: none;
    width: auto;
  }
  .solution-right:after {
    top: -50px;
  }

  .works-main {
    padding-top: 60px;
    padding-bottom: 90px;
  }
  .works-left {
    float: none;
    width: auto;
    margin-bottom: 50px;
    text-align: center;
  }
  .works-right {
    float: none;
    width: auto;
    text-align: right;
    max-width: 570px;
    margin: 0px auto;
  }
  .works-main h2 {
    font-size: 35px;
  }
  .testimonial-main h2 {
    font-size: 35px;
  }
  .testimonial-main {
    padding-top: 60px;
    padding-bottom: 90px;
  }

  .faq-main {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .faq-main h2 {
    font-size: 35px;
  }
  .call-to-action-content {
    padding: 30px;
  }
  .call-left-box {
    float: none;
    padding-bottom: 15px;
    text-align: center;
    width: auto;
  }
  .call-right-box {
    float: none;
    width: auto;
    text-align: center;
  }
  .footer-top-col {
    width: 45%;
  }

  .pricing-main {
    padding-top: 50px;
  }
  .pricing-main h2 {
    font-size: 35px;
  }
  .pricing-cont-main {
    padding-top: 20px;
  }
  .pricing-main .tab-box ul li {
    width: auto;
    margin-right: 0px !important;
    margin-bottom: 80px;
    display: block;
    min-height: inherit;
  }
}

@media screen and (max-width: 800px) {
  .add-browse-icon {
    display: none;
  }
  .order-step2-contbox .tabs-stage ul li {
    width: auto;
    display: block;
    margin-right: 0px !important;
    margin-bottom: 50px !important;
  }
  .order-pg-main {
    padding-bottom: 50px !important;
  }
  .terms-pg-main {
    padding-bottom: 50px !important;
  }
}

@media screen and (max-width: 650px) {
  .order-field-left,
  .order-field-right,
  .order-step3-contbox .card-number {
    float: none;
    width: auto !important;
  }
  .order-step3-contbox .select-month,
  .order-step3-contbox .select-year,
  .order-step3-contbox .cvv {
    float: none;
    width: 100%;
    margin: 0px 0px 15px 0px;
  }

  .order-tabnav ul li {
    margin: 0px 2px;
  }
  .order-step3-contbox .cards-img {
    padding-top: 10px;
    padding-bottom: 30px;
    float: none;
    margin: 0px;
  }
  .solution-left-boxes {
    float: none;
    width: auto;
    text-align: center;
    margin-right: 0px;
  }
  .solution-icon-boxes {
    float: none;
    width: auto;
    margin-right: 0px;
  }
  .solution-logo {
    padding-left: 0px;
    padding-right: 0px;
  }
  .solution-right-box {
    padding: 0px 30px 30px 30px;
  }
  .footer-top-col {
    width: auto;
    float: none;
  }
  .footer-name {
    float: none;
    width: auto;
    text-align: center;
  }
  .footer-translate {
    float: none;
    margin: 0px auto;
  }
  .footer-copyright {
    border-top: 1px solid #0f3e8c;
    padding-top: 30px;
  }
  .main-footer {
    padding-top: 150px;
  }
}

@media screen and (max-width: 550px) {
  .head-menu-btn a {
    /* width: 115px; */
    margin-top: 5px;
  }
}
@media screen and (max-width: 500px) {
  .pricing-main .tabs-nav li {
    display: block;
  }
}
@media screen and (max-width: 460px) {
  .logo {
    width: 180px;
  }
  .logo-floatable {
    width: 180px;
  }
}

@media screen and (max-width: 400px) {
  .head-menu-btn a {
    font-size: 15px;
    padding: 10px 0px;
    /* width: 90px; */
  }
}

@media (max-width: 768px) {
  .wrapper {
    padding: 0px 5%;
  }
  .hero-section {
    grid-template-columns: 1fr;
    margin-top: 40px;
    gap: 15px;
  }

  .header-text {
    font-size: 24px !important;
    margin-top: 15px;
  }

  .hero-text-wrapper .sub-header-text {
    width: 100%;
    margin-bottom: 10px;
  }

  .artical-container {
    margin-top: 60px;
  }
  .artical-wrapper {
    grid-template-columns: 1fr;
  }
  .artical-img-card {
    height: 170px;
  }
  .artical-box .sub-header-text {
    margin-bottom: 15px;
  }
  .artical-text-wrapper .header-text {
    font-size: 20px !important;
  }

  .testimonial-wrapper {
    padding: 40px 5%;
  }
  .testimonial-text {
    font-size: 15px;
  }
  .footer-widget {
    flex-direction: column;
  }
  .main-footer {
    padding: 50px 5% 40px;
  }
  .hero-img-card {
    height: 230px;
  }
  .hero-text-wrapper {
    padding-top: 15px;
  }

  .navbar {
    display: none !important;
  }

  .login-btn {
    display: none !important;
  }

  .navbar-wrapper {
    padding: 0px 5%;
  }

  .free-trail-btn {
    /* padding: 10px 20px !important; */
    font-size: 13px !important;
    border-radius: 5px !important;
  }

  .mobile-menu-icon {
    display: block;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
    border: 1px solid #f4f4f4;
    /* box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px; */
  }

  .mobile-close-icon {
    display: block;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
    border: 1px solid #f4f4f4;
    /* box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px; */
  }

  .icon-wrapper {
    display: none !important;
  }
}

.notifyjs-wrapper {
  z-index: 11111111;
  position: absolute;
  display: inline-block;
  height: 0;
  width: 0;
}

.tool_tips_plans {
  background-color: rgb(151, 151, 151) !important;
  font-size: 16px !important;
  font-weight: bold;
}

.tool-tips-icon {
  color: #11b3e7;
  position: absolute;
  right: -13px;
  top: -13px;
  padding: 5px 10px;
  font-weight: lighter;
  font-size: 1.4em;
  background: rgb(255, 255, 255);
  border-radius: 20px;
  border: 1px solid rgb(170, 170, 170);
  touch-action: none;
  user-select: none;
  cursor: pointer;
  -webkit-user-drag: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.restrict_container .elementbox {
  -webkit-transform: translate3d(0, 0, 0);
  -webkit-backface-visibility: hidden;
  -webkit-perspective: 1000;
}

/* Articles Stylesheet start  */

.articlebootstrapdiv {
  max-width: 1200px;
  margin: 0 auto;
}
.articlep {
  line-height: 1.5;
  font-size: 16px;
  color: #000 !important;
  font-weight: 300 !important;
}
/* Digital Signature */
.digitalsignature_banner {
  background-image: url(./../images/digital-signature-landing.jpg);
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
}
.digitalsignature_banner h1 {
  color: #fff;
  font-size: 50px;
  margin-top: 0 !important;
}
.digitalsignature_technique {
  display: flex;
  justify-content: space-evenly;
}
.digitalsignature_insidetechnique {
  text-align: center;
  padding: 30px;
  border-radius: 30px;
  box-shadow: 0 3px 20px 0px rgb(0 0 0 / 20%);
  min-height: 470px;
  margin: 0 10px;
  flex: 3.33;
}
.digitalsignature_insidetechnique i {
  color: #6ec1e4;
  font-size: 53px;
  margin-bottom: 20px;
}
.digitalsignature_insidetechnique p {
  color: #000;
  line-height: 1.6;
  font-size: 16px;
}
.digitalsignature_example {
  background-color: #f6f9fe;
  margin-top: 50px;
  margin-bottom: 50px;
  padding: 50px 0px 50px 0px;
}
.digitalsignature_exampleparent {
  display: flex;
  justify-content: space-around;
}
.digitalsignature_examplechild {
  flex: 0.5;
  margin: 0 10px;
}
.digitalsignature_examplechild i {
  color: #6ec1e3;
  font-size: 25px;
  margin-right: 15px;
  flex: 0.05;
}
.digitalsignature_examplechild p {
  color: #000000;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5em;
  flex: 0.95;
  margin-top: 0 !important;
}
.digitalsignature_othersignature {
  padding: 15px !important;
  border: 2px solid lightblue !important;
  border-radius: 25px !important;
  border-top-left-radius: 0 !important;
  margin-bottom: 20px;
}
.digitalsignature_othersignature i {
  flex: 0.1;
  color: #6ec1e3;
  font-size: 40px;
  margin-right: 15px;
}
.digitalsignature_othersignature h4 {
  color: #6ec1e3;
  margin-top: 0 !important;
}
.digitalsignature_othersignature p {
  font-size: 16px;
  line-height: 1.5;
  color: #000;
}
.digitalsignature_othersignature li {
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 10px;
}

/* Electronic Signature */
.electronicsignature_banner {
  background-image: url(./../images/business2.jpg);
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
}
.electronicsignature_banner div {
  display: flex;
  padding-top: 90px;
  padding-left: 20px;
  height: 100%;
  justify-content: center;
}
.electronicsignature_banner h1 {
  color: #fff;
  font-size: 50px;
  margin-top: 0 !important;
  text-align: center;
}
.electronicsignature_mainbody {
  text-align: center;
  padding: 30px;
  margin-top: -550px;
  z-index: 999;
  position: relative;
  background: #fff;
  border-radius: 10px;
}
.electronicsignature_bodydiv {
  display: flex;
}
.electronicsignature_bodydivchild {
  flex: 0.25;
  margin: 0 10px;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 1px 6px rgb(0 0 0 / 12%), 0 1px 4px rgb(0 0 0 / 12%);
  text-align: center;
}
.electronicsignature_bodydivchild i {
  color: #e74c3c;
  font-size: 41px;
}
.electronicsignature_bodydivchild h4 {
  font-size: 20px;
  font-weight: 500;
  color: #000;
}
.electronicsignature_useabove {
  display: flex;
  margin: 40px 0;
}
.electronicsignature_useaboveparent {
  flex: 0.5;
  margin: 0 10px;
}
.electronicsignature_useaboveparent i {
  color: #e74c3c;
  font-size: 41px;
  margin-right: 15px;
  flex: 0.05;
}
.electronicsignature_useaboveparent p {
  color: #000000;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5em;
  flex: 0.95;
  margin-top: 0 !important;
  text-align: left;
}
.electronicsignature_usecontainer {
  border-radius: 10px;
  background-color: #f6f6f6;
  padding: 50px 0;
}
.electronicsignature_usecontainerchild {
  display: flex;
  border-radius: 10px;
  background-color: #fff;
  padding: 20px;
  border: 1px solid #e74c3c;
  margin-bottom: 30px;
}
.electronicsignature_usecontainerchild i {
  color: #e74c3c;
  font-size: 41px;
}
.electronicsignature_usecontainerchild p {
  margin-top: 0 !important;
  font-size: 16px;
  line-height: 1.5;
  color: #e74c3c;
  font-weight: bold;
}
.electronicsignature_howcontainer {
  display: flex;
  border-radius: 10px;
  padding: 20px;
  border: 1px solid #e74c3c;
  margin-bottom: 30px;
}
.electronicsignature_howcontainer i {
  color: #e74c3c;
  font-size: 41px;
}
.electronicsignature_howcontainer p {
  margin-top: 0 !important;
  font-size: 16px;
  line-height: 1.5;
  color: #e74c3c;
  font-weight: bold;
}
/* esignature stylesheet */
.esignature_banner {
  background-image: url(./../images/shape-landing.jpg);
  background-repeat: no-repeat;
}
.esignature_mainbody {
  display: flex;
}
.esignature_mainbodyregister {
  background-color: #47b2d5;
  color: #ffffff;
  margin-left: 20px;
  padding: 20px 20px 20px 20px;
  border-radius: 10px;
  height: 750px;
}
.esignature_mainbodychild i {
  color: #6ec1e4;
  font-size: 23px;
  flex: 0.05;
  margin-right: 15px;
}
.esignature_mainbodychild p {
  line-height: 1.5;
  font-size: 16px;
  flex: 0.95;
  margin-top: 0 !important;
}
.esignature_benefit {
  padding: 15px !important;
  border: 2px solid lightblue !important;
  border-radius: 25px !important;
  border-top-left-radius: 0 !important;
  margin-bottom: 20px;
}
.esignature_benefit h4 {
  color: #6ec1e3;
  margin-top: 0 !important;
}
.esignature_benefit i {
  flex: 0.1;
  color: #6ec1e3;
  font-size: 23px;
  margin-right: 15px;
}

@media screen and (max-width: 1200px) {
  .articlebootstrapdiv {
    margin-left: 20px;
    margin-right: 20px;
  }
}
@media screen and (max-width: 1000px) {
  .esignature_mainbody {
    flex-direction: column;
  }
}

@media screen and (max-width: 768px) {
  .digitalsignature_technique {
    flex-direction: column;
  }
  .digitalsignature_insidetechnique {
    flex: 1;
    margin-top: 10px;
  }
  .digitalsignature_exampleparent {
    flex-direction: column;
  }
  .digitalsignature_examplechild {
    flex: 1;
    margin-top: 10px;
  }
  .digitalsignature_banner h1 {
    font-size: 30px;
  }
  .electronicsignature_bodydiv,
  .electronicsignature_useabove,
  .esignature_mainbodyparent {
    flex-direction: column;
  }
  .electronicsignature_bodydivchild,
  .electronicsignature_useaboveparent,
  .esignature_mainbodychild {
    flex: 1 !important;
    margin-top: 10px;
  }
  .electronicsignature_mobilepadding {
    padding: 0 10px !important;
  }
  .electronicsignature_mainbody {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}
/* Articles Stylesheet end */

/* start latest home page css */

.works-right:after {
  right: 0px !important;
}
.testimonial-main .owl-nav button.owl-next {
  right: 0px !important;
}
.testimonial-main .owl-nav button.owl-prev {
  left: 0px !important;
}
img {
  border: 0px;
  max-width: 100%;
}

.clearfix {
  clear: both;
}

.container {
  max-width: 1350px;
  margin: 0px auto;
  padding-left: 15px;
  padding-right: 15px;
}

.other-esignature {
  padding: 130px 0px;
  background: #072257;
}
.other-esignature .small-container {
  max-width: 880px;
  margin: 0px auto;
}
.other-esignature h2 {
  color: #fff;
  padding: 0px 0px 30px 0px;
  margin: 0px;
  font-weight: 600;
  font-size: 48px;
  text-align: center;
}

.other-esignature h6 {
  color: #fff;
  padding: 0px 0px 30px 0px;
  margin: 0px;
  font-weight: 400;
  font-size: 18px;
  text-align: center;
  line-height: 1.8;
}

.other-esignature-left {
  float: left;
  width: 45%;
  padding-top: 66px;
}
.other-esignature-right {
  float: right;
  width: 45%;
}
.other-esignature-left .tabs-nav {
  padding: 0px;
  margin: 0px;
  list-style-type: none;
}
.other-esignature-left .tabs-nav li {
  display: inline-block;
  margin: 0px 15px 10px 0px;
}

.other-esignature-left .tabs-nav li a {
  color: #fff;
  display: block;
  text-decoration: none;
  padding: 15px 26px;
  border-radius: 10px;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  border: 2px solid #11b3e7;
  font-size: 16px;
  font-weight: 500;
}
.other-esignature-left .tabs-nav li.tab-active a {
  background: #11b3e7;
}
.tabs-stage {
  color: #fff;
  font-size: 18px;
  line-height: 1.5;
  margin-top: 30px;
}
.click-to-sign-icon {
  width: 40px;
  height: 40px;
  background: url(../images/click-to-sign-icon.png) no-repeat top left;
  display: block;
  margin: 0px auto 10px auto;
}
.other-esignature-left .tabs-nav li.tab-active .click-to-sign-icon {
  background: url(../images/click-to-sign-icon.png) no-repeat top right;
}
.blockchain-icon {
  width: 40px;
  height: 40px;
  background: url(../images/blockchain-icon.png) no-repeat top left;
  display: block;
  margin: 0px auto 10px auto;
}
.other-esignature-left .tabs-nav li.tab-active .blockchain-icon {
  background: url(../images/blockchain-icon.png) no-repeat top right;
}
.biometric-icon {
  width: 40px;
  height: 40px;
  background: url(../images/biometric-icon.png) no-repeat top left;
  display: block;
  margin: 0px auto 10px auto;
}
.other-esignature-left .tabs-nav li.tab-active .biometric-icon {
  background: url(../images/biometric-icon.png) no-repeat top right;
}

.welcome-new-main {
  padding: 130px 0px 130px 0px;
}

.welcome-new-left {
  float: left;
  width: 45%;
  position: relative;
}

.welcome-new-right {
  float: right;
  width: 50%;
  position: relative;
}

.welcome-new-right h6 {
  color: #11b3e7;
  padding: 0px;
  margin: 0px;
  font-weight: bold;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.welcome-new-right h2 {
  color: #091841;
  padding: 10px 0px 20px 0px;
  margin: 0px;
  font-weight: 600;
  font-size: 48px;
}

.welcome-new-right .btn {
  border-radius: 5px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  background: #fdb400;
  display: inline-block;
  font-size: 18px;
  display: inline-block;
  text-align: center;
  color: #1e40c8;
  font-weight: bold;
  background: #fff;
  width: 185px;
  padding: 15px 0px;
  border: 2px solid #1e40c8;
  margin-top: 20px;
  text-decoration: none;
}

.welcome-new-right .btn:hover {
  background: #1e40c8;
  color: #fff;
  border: 2px solid #1e40c8;
}

.welcome-new-right p {
  font-size: 18px;
  color: #1e1e1e;
  line-height: 1.5;
  padding: 0px;
  margin: 0px;
}

.new-how-work {
  padding: 130px 0px 130px 0px;
}
.new-how-work-left {
  float: left;
  width: 50%;
}
.new-how-work-right {
  float: right;
  width: 45%;
}
.new-how-work-left h6 {
  color: #11b3e7;
  padding: 0px;
  margin: 0px;
  font-weight: bold;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.new-how-work-left h2 {
  color: #091841;
  padding: 10px 0px 20px 0px;
  margin: 0px;
  font-weight: 600;
  font-size: 48px;
}

.why-electronic-main {
  padding: 0px 0px 130px 0px;
}

.why-electronic-main h6 {
  color: #11b3e7;
  padding: 0px;
  margin: 0px;
  font-weight: bold;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-align: center;
}

.why-electronic-main h2 {
  color: #091841;
  padding: 10px 0px 50px 0px;
  margin: 0px;
  font-weight: 600;
  font-size: 48px;
  text-align: center;
}

.why-electronic-cont-box {
  padding: 20px;
  border: 1px solid #e4f2ff;
  display: inline-block;
  width: 20%;
  vertical-align: top;
  margin: 0px 20px 20px 0px;
  border-radius: 10px;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  min-height: 370px;
}

.why-electronic-cont-box:last-child {
  width: 45%;
  margin: 0px 0px 20px 0px;
}

.why-electronic-cont-img {
  margin-bottom: 15px;
}
.why-electronic-cont-box h4 {
  font-size: 18px;
  color: #091841;
  font-weight: 600;
  padding: 0px 0px 15px 0px;
  margin: 0px;
}
.why-electronic-cont-desp {
  font-size: 16px;
  padding: 0px;
  margin: 0px;
  line-height: 1.5;
  color: #1e1e1e;
}

.why-electronic-cont-box .btn {
  border-radius: 5px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;

  display: inline-block;
  font-size: 18px;
  display: inline-block;
  text-align: center;

  font-weight: bold;
  background: #fff;
  width: 250px;
  padding: 15px 0px;

  margin-top: 20px;
  text-decoration: none;

  background: #1e40c8;
  color: #fff;
  border: 2px solid #1e40c8;
}

.why-electronic-cont-box .btn:hover {
  border: 2px solid #1e40c8;
  color: #1e40c8;
  background: #fdb400;
}

.main-footer {
  background: #092a60;
  padding: 220px 0px 0px 0px;
  color: #fff;
}

.footer-widget {
  padding: 0px 0px 20px;
  font-size: 16px;
}

.footer-widget-col {
  /* width: 23%; */
  width: 17%;
  float: left;
  margin: 0px 20px 30px 0px;
}

.footer-logo {
  margin-bottom: 30px;
}

.footer-widget ul {
  padding: 0px;
  margin: 0px;
  list-style-type: none;
}
.footer-widget h4 {
  padding: 0px 0px 25px 0px;
  margin: 0px;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
}
.footer-widget ul li {
  padding: 0px 0px 15px;
  margin: 0px;
  display: block;
}
.footer-widget ul li a {
  display: block;
  color: #fff;
  text-decoration: none;
}
.footer-widget ul li a:hover {
  color: #11b3e7;
}
.footer-social-links {
  padding-top: 15px;
}
.footer-social-links a {
  display: inline-block;
  margin: 0px 10px 10px 0px;
  color: #092a60;
  width: 33px;
  height: 33px;
  background: #fff;
  border-radius: 50%;
  text-align: center;
  line-height: 33px;
  font-size: 20px;
}
.footer-social-links a:hover {
  background: #11b3e7;
  color: #fff;
}

@media screen and (max-width: 1000px) {
  .welcome-new-main {
    padding: 60px 0px 60px 0px;
  }

  .welcome-new-left {
    float: none;
    width: auto;
    max-width: 570px;
    margin: 0px auto;
  }

  .welcome-new-right {
    float: none;
    width: auto;
    padding-top: 60px;
    text-align: center;
  }
  .welcome-new-right h2,
  .other-esignature h2,
  .new-how-work-left h2,
  .why-electronic-main h2 {
    font-size: 40px;
  }

  .other-esignature {
    padding: 60px 0px 60px 0px;
  }
  .other-esignature-left {
    float: none;
    width: auto;
    padding-top: 0px;
  }
  .other-esignature-right {
    float: none;
    width: auto;
    text-align: center;
    margin-top: 50px;
  }
  .tabs-stage {
    text-align: center;
  }

  .new-how-work {
    padding: 60px 0px 60px 0px;
  }
  .new-how-work-left {
    float: none;
    width: auto;
    text-align: center;
  }
  .new-how-work-right {
    float: none;
    width: auto;
    text-align: center;
  }

  .why-electronic-cont-box,
  .why-electronic-cont-box:last-child {
    width: 40%;
  }

  .footer-widget-col {
    width: 40%;
  }

  .why-electronic-main {
    padding-bottom: 60px;
  }

  .main-footer {
    padding-top: 150px;
  }
}

@media screen and (max-width: 650px) {
  .other-esignature-left .tabs-nav li {
    display: block;
    text-align: center;
    margin-right: 0px;
  }
  .why-electronic-cont-box,
  .why-electronic-cont-box:last-child {
    width: auto;
    margin: 0px 0px 20px 0px;
  }
  .footer-widget-col {
    width: auto;
    float: none;
    margin-right: 0px;
  }
}

.new-how-work-left .accordion {
  cursor: pointer;
  width: 100%;
  text-align: left;
  border: none;
  outline: none;
  transition: 0.4s;
  background: none;
  padding: 17px 30px;
  font-weight: 600;
  font-size: 18px;
  color: #091841;
  position: relative;
}

.new-how-work-left .accordion:after {
  content: "\02795";
  font-size: 13px;
  color: #11b3e7 !important;
  float: right;
  margin-left: 5px;
  border-radius: 100%;
  -moz-border-radius: 100%;
  -webkit-border-radius: 100%;
  border: 2px solid #11b3e7;
  width: 32px;
  height: 32px;
  cursor: pointer;
  text-align: center;
  line-height: 32px;
  position: absolute;
  right: 15px;
  top: 13px;
}

.new-how-work-left .active:after {
  content: "\2796";
  color: #11b3e7 !important;
}

.new-how-work-left .panel {
  padding: 0px 30px 0px 30px;
  background-color: white;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
  font-size: 18px;
  color: #091841;
  line-height: 24px;
  margin: 0px;
  background: none;
}
.new-how-work-left .panel p {
  padding: 0px 0px 30px 0px;
  margin: 0px;
}

/* end latest home page css */

.wrapper {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 340px;
  min-height: 150px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
}
.dropdown:hover .wrapper {
  display: flex;
}

.flag-style {
  font-size: 20px;
  padding-right: 5px;
  margin-right: 5px;
}

@media (max-width: 1024px) {
  #web-language {
    display: none;
  }
  #mbl-language {
    display: block !important;
  }
}

@media (min-width: 1024px) {
  #mbl-language {
    display: none !important;
  }
}

.entry-header {
  text-align: center;
  margin-bottom: 30px;
}

.entry-header h1 {
  color: #505e67;
  font-size: 30px;
  font-family: "Montserrat", sans-serif;
  padding: 0px !important;
  margin: 0px !important;
  font-weight: 700;
}

.entry-body {
  text-align: center;
}

.entry-body-left {
  text-align: left;
}

.entry-body-left h1 {
  color: #505e67;
  font-size: 24px;
  font-family: "Montserrat", sans-serif;
  padding: 0px !important;
  margin: 0px !important;
  text-align: left !important;
  font-weight: 700;
}

.entry-body-left p {
  color: #505e67;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.8;
}

.entry-body-left table {
  border-collapse: collapse;
  width: 100%;
}

.entry-body-left table tr td {
  border: 1px solid #dddddd;
  text-align: left;
  padding: 14px;
  font-weight: 500;
}

.entry-body p {
  color: #505e67;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.8;
}

.video-tag {
  display: flex;
  justify-content: center;
}

.image-tag {
  display: flex;
  justify-content: center;
}

.video-tag .elementor-video {
  max-width: 1140px;
}

@media (max-width: 1024px) {
  .video-tag .elementor-video {
    max-width: 994px;
  }
}

@media (max-width: 1140px) {
  .video-tag .elementor-video {
    max-width: 1110px;
  }
}

@media (max-width: 1060px) {
  .video-tag .elementor-video {
    max-width: 1030px;
  }
}

@media (max-width: 1000px) {
  .video-tag .elementor-video {
    max-width: 970px;
  }
}

@media (max-width: 900px) {
  .video-tag .elementor-video {
    max-width: 860px;
  }
}

@media (max-width: 860px) {
  .video-tag .elementor-video {
    max-width: 830px;
  }
}

@media (max-width: 800px) {
  .video-tag .elementor-video {
    max-width: 770px;
  }
}

@media (max-width: 760px) {
  .video-tag .elementor-video {
    max-width: 730px;
  }
}

@media (max-width: 700px) {
  .video-tag .elementor-video {
    max-width: 670px;
  }
}

@media screen and (max-width: 650px) {
  .video-tag .elementor-video {
    max-width: 620px;
  }
}

@media screen and (max-width: 550px) {
  .video-tag .elementor-video {
    max-width: 520px;
  }
}
@media screen and (max-width: 500px) {
  .video-tag .elementor-video {
    max-width: 470px;
  }
}
@media screen and (max-width: 460px) {
  .video-tag .elementor-video {
    max-width: 430px;
  }
}

@media screen and (max-width: 400px) {
  .video-tag .elementor-video {
    max-width: 370px;
  }
}

@media screen and (max-width: 360px) {
  .video-tag .elementor-video {
    max-width: 330px;
  }
}

@media screen and (max-width: 300px) {
  .video-tag .elementor-video {
    max-width: 270px;
  }
}

/* artciles index page */

h1 {
  font-size: 24px;
  font-weight: 400;
  text-align: center;
}

img {
  height: auto;
  max-width: 100%;
  vertical-align: middle;
}

.btn {
  color: #ffffff;
  padding: 0.8rem;
  font-size: 14px;
  text-transform: none;
  border-radius: 2rem;
  font-size: 16px;
  font-weight: 700;
  display: block;
  width: 100%;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: #1591e1;
}

.btn:hover {
  background-color: black !important;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
  margin-left: 3%;
}

.cards_item {
  display: flex;
  padding: 1rem;
}

@media (min-width: 40rem) {
  .cards_item {
    width: 45%;
  }
}

@media (min-width: 56rem) {
  .cards_item {
    width: 30%;
  }
}

.card {
  background-color: white;
  border-radius: 0.25rem;
  box-shadow: 0 20px 40px -14px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.card:hover {
  /* transform: scale(1.1);  */
}

.card_content {
  padding: 1rem;
  background: white;
}

.card_title {
  color: #505e67;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: capitalize;
  margin: 0px;
}

.card_text {
  color: #505e67;
  font-size: 0.875rem;
  line-height: 1.5;
  margin-bottom: 1.25rem;
  font-weight: 400;
}
.made_by {
  font-weight: 400;
  font-size: 13px;
  margin-top: 35px;
  text-align: center;
}

.gsc-search-button-v2 {
  width: 100% !important;
}

.gsc-search-button {
  width: 10% !important;
}

/* Default styles for the article-search-box */
.article-search-box {
  width: 20%;
  float: right;
}

/* Media query for tablet devices (e.g., devices with max-width 768px) */
@media (max-width: 768px) {
  .article-search-box {
    width: 100%;
    float: none;
  }
}

/* Media query for mobile devices (e.g., devices with max-width 480px) */
@media (max-width: 480px) {
  .article-search-box {
    width: 100%;
    float: none;
  }
}

.video-container {
  max-width: 100%; /* Adjust the maximum width as needed */
  margin: 0 auto; /* Center the video horizontally */
  overflow: hidden; /* Hide any video content that overflows the container */
}

.video-container video {
  width: 100%; /* Make the video fill the container */
  height: auto; /* Maintain the video's aspect ratio */
}
