html,
body {
  background: silver;
  height: 100%;
  font-family: "Open Sans", sans-serif;
  font-size: 15px;
  line-height: 1.5;
  color: rgba(0, 0, 0, 0.7);
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

* {
  margin: 0;
  padding: 0;
  outline: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

img {
  max-width: 100%;
  vertical-align: top;
}

h1,
h2 {
  font-size: 40px;
  color: black;
  margin-bottom: 10px;
  font-weight: 900;
}

@media only screen and (max-width: 767px) {
  h1,
  h2 {
    font-size: 150%;
  }
}

h3 {
  font-size: 20px;
  color: black;
  margin-bottom: 10px;
  font-weight: 700;
}

@media only screen and (max-width: 767px) {
  h3 {
    font-size: 120%;
  }
}

h4 {
  font-size: 18px;
  color: black;
  margin-bottom: 10px;
  font-weight: 700;
}

@media only screen and (max-width: 767px) {
  h4 {
    font-size: 100%;
  }
}

p {
  font-size: 15px !important;
  line-height: 22px !important;
  color: rgba(0, 0, 0, 0.7);
    /* font-weight: 300 !important; */
   margin-bottom: 10px !important;
}

@media only screen and (max-width: 767px) {
  p {
    font-size: 100%;
  }
}

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

a {
  color: blue;
}

a:hover {
  text-decoration: none;
  color: darkblue;
}

::-webkit-input-placeholder {
  font-size: 15px;
  color: rgba(0, 0, 0, 0.7) !important;
}

:-moz-placeholder {
  font-size: 15px;
  color: rgba(0, 0, 0, 0.7) !important;
}

::-moz-placeholder {
  font-size: 15px;
  color: rgba(0, 0, 0, 0.7) !important;
}

:-ms-input-placeholder {
  font-size: 15px;
  color: rgba(0, 0, 0, 0.7) !important;
}

.container-fluid {
  padding-right: 30px;
  padding-left: 30px;
}

@media only screen and (min-width: 1367px) {
  .container-fluid {
    padding-right: 100px;
    padding-left: 100px;
  }
}

/*buttons Starts*/
.btn {
  font-size: 100%;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  margin: 0 15px;
  padding: 8px 10px 9px;
  font-weight: 400;
  text-transform: uppercase;
}

.btn-blue {
  min-width: 144px;
  background: #186aa4;
  color: rgba(255, 255, 255, 0.9) !important;
  border: none;
}

.btn-blue:hover {
  background: #0746a3;
  cursor: pointer;
}

/*buttons Ends*/
/*Header Starts*/
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1024;
}

@media screen and (max-width: 400px) {
  .header .container-fluid {
    padding-left: 5px;
    padding-right: 5px;
  }
}

@media only screen and (max-width: 1199px) {
  #myHeader {
    background: #183a73;
  }
}

.innerz {
  padding-top: 100px;
}

.innerz #myHeader {
  background: #183a73 !important;
}

.head-wrap {
  padding: 20px 0;
}

.logo img {
  max-width: 200px;
  height: 45px;
}

@media screen and (max-width: 400px) {
  .logo img {
    max-width: 170px;
    height: auto;
  }
}

.phone {
  position: relative;
  z-index: 3;
}

.phone img {
  margin-right: 10px;
}

.phone span {
  color: white;
}

@media only screen and (min-width: 1200px) {
  .phone {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

@media only screen and (max-width: 1199px) {
  .phone {
    display: none !important;
  }
}

.login-box {
  background: white;
  width: 76px;
  height: 80px;
  font-size: 16px;
  color: black;
  font-weight: 600 !important;
  text-transform: uppercase;
  margin-top: -20px;
  padding: 25px 20px 10px;
}

.login-box p {
  font-weight: 600 !important;
}

.login-box img {
  width: 24px;
}

.navbar .nav-link {
  padding: 0 10px !important;
  color: white;
  text-transform: uppercase;
}

.navbar .nav-link:hover {
  color: #35eaa4;
}

@media only screen and (max-width: 1199px) {
  .navbar .nav-link {
    padding: 15px 30px !important;
  }
}

.navbar-toggler {
  position: absolute;
  right: 115px;
  top: 27px;
}

.navigation .navbar {
  position: static;
}

.navigation .dropdown {
  position: static;
}

.navigation .dropdown-menu {
  top: 97px;
  left: 0;
  right: 0;
  padding: 50px;
}

.navigation .dropdown-menu a {
  color: rgba(0, 0, 0, 0.8);
}

@media only screen and (max-width: 1199px) {
  .media-nav {
    background: #264b89;
    position: absolute;
    top: 98px;
    left: 0;
    right: 0;
  }
}

/*ham animate starts*/
.ham-animate {
  position: relative;
  width: 24px;
  height: 24px;
  transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -webkit-transform: rotate(0deg);
  transition: all 0.15s ease-in-out;
  -webkit-transition: all 0.15s ease-in-out;
  -moz-transition: all 0.15s ease-in-out;
  -ie-transition: all 0.15s ease-in-out;
  -o-transition: all 0.15s ease-in-out;
  cursor: pointer;
}

@media only screen and (max-width: 991px) {
  .ham-animate {
    margin-right: -10px;
  }
}

.ham-animate span {
  background: white;
  display: block;
  position: absolute;
  height: 5px;
  width: 50%;
  opacity: 1;
  transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -webkit-transform: rotate(0deg);
  transition: all 0.15s ease-in-out;
  -webkit-transition: all 0.15s ease-in-out;
  -moz-transition: all 0.15s ease-in-out;
  -ie-transition: all 0.15s ease-in-out;
  -o-transition: all 0.15s ease-in-out;
}

.ham-animate span:nth-child(even) {
  left: 50%;
}

.ham-animate span:nth-child(odd) {
  left: 0px;
}

.ham-animate span:nth-child(1),
.ham-animate span:nth-child(2) {
  top: 0px;
}

.ham-animate span:nth-child(3),
.ham-animate span:nth-child(4) {
  top: 9px;
}

.ham-animate span:nth-child(5),
.ham-animate span:nth-child(6) {
  top: 18px;
}

.ham-animate.open span {
  width: 55%;
}

.ham-animate.open span:nth-child(1),
.ham-animate.open span:nth-child(6) {
  transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}

.ham-animate.open span:nth-child(2),
.ham-animate.open span:nth-child(5) {
  transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}

.ham-animate.open span:nth-child(1) {
  left: 2px;
  top: 6px;
}

.ham-animate.open span:nth-child(2) {
  left: calc(50% - 2px);
  top: 6px;
}

.ham-animate.open span:nth-child(3) {
  left: -50%;
  opacity: 0;
}

.ham-animate.open span:nth-child(4) {
  left: 100%;
  opacity: 0;
}

.ham-animate.open span:nth-child(5) {
  left: 2px;
  top: 14px;
}

.ham-animate.open span:nth-child(6) {
  left: calc(50% - 2px);
  top: 14px;
}

/*ham animate ends*/
/*Header Ends*/
/*Banner Starts*/
.banner {
  background: -webkit-gradient(linear, left top, right top, from(#0746a3), to(#34c1f7));
  background: linear-gradient(to right, #0746a3, #34c1f7);
  background: -o-linear-gradient(to right, #0746a3, #34c1f7);
  min-height: 940px;
  height: 100%;
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.banner:before {
  content: "";
}

@media only screen and (min-width: 1200px) {
  .banner:before {
    background: url("../images/curve-red-right.png") no-repeat 100% 0;
    background-size: 45%;
    position: absolute;
    right: 0;
    top: 0;
    left: 0;
    bottom: 0;
    z-index: -999999;
  }
}

.banner:after {
  content: "";
  background: url("../images/mount.png") no-repeat 50% 100%;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.banner h1 {
  color: white;
  text-transform: uppercase;
  margin-top: 90px;
}

.banner h1 span {
  color: #35eaa4;
}
.banner h2 {
  color: white;
  text-transform: uppercase;
  margin-top: 90px;
}

.banner h2 span {
  color: #35eaa4;
}

.banner p {
  font-size: 18px;
  color: white;
}

@media screen and (max-width: 767px) {
  .banner {
    min-height: 200px;
  }
}

/*Banner Ends*/
/*Content Starts*/
.content {
  background: white;
}

.custom-row {
  margin-left: -25px;
  margin-right: -25px;
}

@media screen and (min-width: 1200px) and (max-width: 1500px) {
  .custom-row {
    margin-left: -15px;
    margin-right: -15px;
  }
}

.custom-gutter {
  padding-left: 10px;
  padding-right: 10px;
}

.web {
  background: white;
  min-height: 700px;
  padding: 100px 0;
}

@media screen and (min-width: 1200px) {
  .web {
    background: white url("../images/bg-curve.png") no-repeat 50% 100%;
  }
}

@media only screen and (max-width: 1199px) {
  .web {
    padding: 40px 0 20px;
  }
}

.title-big {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 70px;
  text-align: center;
}

.title-big.dark h1, .title-big.dark h2 {
  color: white;
}

.title-big.dark p {
  color: white;
}

.title-big h1, .title-big h2 {
  display: inline-block;
  position: relative;
}

.title-big h1:before, .title-big h1:after, .title-big h2:before, .title-big h2:after {
  content: "";
  position: absolute;
  top: 53%;
  left: -70px;
  width: 42px;
  height: 8px;
  background: black;
  transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
}

@media only screen and (max-width: 991px) {
 .title-big h1:before, .title-big h1:after, .title-big h2:before, .title-big h2:after {
    display: none;
  }
}

.title-big h1:after, .title-big h2:after {
  left: auto;
  right: -70px;
}

.title-big h1 span, .title-big h2 span {
  color: #eb4d3f;
}

.title-big p {
  font-size: 18px;
  line-height: 22px;
}

@media only screen and (max-width: 991px) {
  .title-big {
    margin-bottom: 30px;
  }
}

.jar-wrap {
  margin-bottom: 50px;
}

@media only screen and (max-width: 767px) {
  .jar-wrap {
    margin-bottom: 30px;
  }
}

.ihahs_jar {
  background: -webkit-gradient(linear, left top, left bottom, from(#F4F4F4), to(white));
  background: linear-gradient(to bottom, #F4F4F4, white);
  background: -o-linear-gradient(to bottom, #F4F4F4, white);
  height: 100%;
  padding: 60px 20px 50px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  text-align: center;
  border-radius: 80px;
  -webkit-border-radius: 80px;
  -moz-border-radius: 80px;
  position: relative;
  z-index: 1;
  box-shadow: 0 10px 10px 1px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 10px 10px 1px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 10px 10px 1px rgba(0, 0, 0, 0.1);
}

.ihahs_jar p {
  margin-bottom: 30px;
}

.ihahs_jar .only {
  margin-bottom: 5px;
}

.ihahs_jar .price {
  color: #eb4d3f;
  margin-bottom: 20px;
}

@media screen and (min-width: 1200px) and (max-width: 1500px) {
  .ihahs_jar {
    padding: 60px 10px 50px;
  }
}

@media only screen and (max-width: 576px) {
  .ihahs_jar {
    padding: 50px 10px 40px;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
  }
}

.circle-box {
  background: white;
  width: 96px;
  height: 96px;
  line-height: 96px;
  margin: 0 auto 35px;
  border: 3px solid rgba(0, 0, 0, 0.3);
  position: relative;
  border-radius: 60px;
  -webkit-border-radius: 60px;
  -moz-border-radius: 60px;
  box-shadow: 0 10px 10px 1px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 10px 10px 1px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 10px 10px 1px rgba(0, 0, 0, 0.1);
}

.circle-box:before {
  content: "afdadf";
  position: absolute;
  background: -webkit-gradient(linear, left top, left bottom, from(#c1d0da), to(transparent));
  background: linear-gradient(to bottom, #c1d0da, transparent);
  background: -o-linear-gradient(to bottom, #c1d0da, transparent);
  width: 114px;
  height: 114px;
  z-index: -1;
  left: 50%;
  top: -13px;
  transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
}

.circle-box img {
  margin-top: -10px;
  max-width: 100%;
  vertical-align: middle;
}

.domain {
  background: url("../images/gradient-left.png") repeat-y 0 0, #186aa4 url("../images/gradient-right.png") repeat-y 100% 100%;
  padding: 70px 0 80px;
}

.domain h3 {
  font-size: 30px;
  color: white;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 25px;
}

@media only screen and (max-width: 767px) {
  .domain {
    padding: 40px 0 50px;
  }
}

.domain-box-shadow {
  background: rgba(0, 0, 0, 0.3);
  max-width: 850px;
  margin: 0 auto;
  padding: 0 50px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
}

@media only screen and (max-width: 767px) {
  .domain-box-shadow {
    padding: 0;
  }
}

.domain-box {
  background: white;
  max-width: 100%;
  margin: 0 auto;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  overflow: hidden;
}

.search-box {
  overflow: hidden;
}

.search-box .search {
  float: left;
  width: calc(100% - 150px);
  padding: 25px 30px;
  border: 0;
}

@media only screen and (max-width: 767px) {
  .search-box .search {
    width: calc(100% - 60px);
    padding: 25px 17px;
  }
}

.search-box .search-submit {
  float: left;
  background: rgba(47, 164, 24, 0.9) url("../images/search-icon.png") no-repeat 50% 50%;
  width: 150px;
  padding: 25px 30px;
  border: 0;
  text-indent: -999999px;
}

.search-box .search-submit:hover {
  background: #2fa418 url("../images/search-icon.png") no-repeat 50% 50%;
}

@media only screen and (max-width: 767px) {
  .search-box .search-submit {
    width: 60px;
  }
}

.search-box:after {
  content: "";
  display: block;
  clear: both;
}

.domain-choose {
  background: #082b43;
}

.domain-choose li {
  width: 20%;
  float: left;
  border-left: 1px solid #214156;
  border-right: 1px solid #07273c;
}

.domain-choose li:first-child {
  border-left: 0;
}

.domain-choose li:last-child {
  border-right: 0;
}

.domain-choose a {
  display: block;
  background: #082b43;
  padding: 20px 0;
  text-align: center;
  color: white;
  font-size: 16px;
  font-weight: 700;
}

.domain-choose a:hover {
  background: #07273c;
}

.domain-choose:after {
  content: "";
  display: block;
  clear: both;
}

.services {
  padding: 100px 0;
}

.service-list .i-box {
  margin-bottom: 50px;
}

.icon {
  position: relative;
  text-align: center;
  -ms-flex-basis: 48px;
  -ms-flex-preferred-size: 48px;
      flex-basis: 48px;
  -ms-flex-shrink: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.icon img {
  margin-top: 5px;
}

.icon:after {
  content: "";
  background: #eb4d3f;
  width: 32px;
  height: 3px;
  position: absolute;
  left: 50%;
  bottom: 25px;
  transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
}

@media only screen and (max-width: 991px) {
  .icon:after {
    bottom: -20px;
  }
}

@media only screen and (max-width: 991px) {
  .icon {
    margin-bottom: 30px;
  }
}

.icon-text {
  margin: 0 20px 10px;
}

@media only screen and (max-width: 767px) {
  .icon-text {
    margin: 0 0 10px 20px;
    text-align: center;
  }
}

/*Expert Starts*/
.expert {
  background: url("../images/bg-pat.png") 63% 0;
  padding: 100px 0 200px;
}

@media only screen and (max-width: 1199px) {
  .expert {
    padding: 50px 0;
  }
}

.box .box-wrap {
  min-height: 250px;
}

.box .box-wrap:nth-child(1) {
  background: rgba(0, 0, 0, 0.1);
}

.box .box-wrap:nth-child(3) {
  background: rgba(0, 0, 0, 0.2);
}

.box .box-wrap:nth-child(4) {
  background: rgba(0, 0, 0, 0.1);
}

@media only screen and (max-width: 1199px) {
  .box .box-wrap {
    min-height: auto;
  }
}

.box .popout {
  position: relative;
}

.box .popout .popbox {
  background: white;
  width: 20vw !important;
  max-width: 255px;
  height: 100%;
  min-height: 250px;
  position: absolute;
  left: 50%;
  right: 0;
  top: 100px;
  z-index: 1;
  transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
}

.box .popout .popbox .lava h3 {
  color: black;
}

.box .popout .popbox .lava p {
  color: rgba(0, 0, 0, 0.9);
}

@media only screen and (max-width: 1199px) {
  .box .popout .popbox {
    position: static;
    left: 0;
    right: 0;
    width: 100% !important;
    max-width: 100% !important;
    height: 100%;
    min-height: auto;
    transform: translateX(0);
    -ms-transform: translateX(0);
    -webkit-transform: translateX(0);
  }
}

@media only screen and (max-width: 1199px) {
  .box .popout {
    -webkit-box-flex: 0 !important;
        -ms-flex: 0 0 50% !important;
            flex: 0 0 50% !important;
    max-width: 50% !important;
  }
}

@media only screen and (max-width: 991px) {
  .box .popout {
    -webkit-box-flex: 0 !important;
        -ms-flex: 0 0 100% !important;
            flex: 0 0 100% !important;
    max-width: 100% !important;
  }
}

.box .lava {
  width: 70%;
  height: 100%;
  padding: 50px 30px 30px;
  text-align: center;
}

.box .lava .lava-img {
  margin-bottom: 30px;
}

.box .lava h3 {
  color: #eb4d3f;
}

.box .lava p {
  color: rgba(255, 255, 255, 0.9);
}

.box .lava.lava-full {
  width: 100%;
}

@media only screen and (max-width: 1199px) {
  .box .lava {
    width: 100%;
  }
}

/*Expert Ends*/
/*Plans Starts*/
.plans {
  background: #e4e4e4;
  overflow: hidden;
}

.plans .container {
  background: rgba(255, 255, 255, 0.7);
  position: relative;
  min-height: 500px;
  padding-top: 100px;
  padding-bottom: 100px;
}

.plans .container:before, .plans .container:after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
}

.plans .container:before {
  background: url("../images/wall-left.png") no-repeat 100% 50%;
  left: -100%;
}

@media only screen and (max-width: 991px) {
  .plans .container:before {
    display: none;
  }
}

.plans .container:after {
  background: url("../images/wall-right.png") no-repeat 0 50%;
  right: -100%;
}

@media only screen and (max-width: 991px) {
  .plans .container:after {
    display: none;
  }
}

@media only screen and (max-width: 1199px) {
  .plans .container {
    max-width: 100%;
    padding-top: 30px;
    padding-bottom: 0;
  }
}

.plans .plans-box {
  padding: 0 70px;
  margin-top: 120px;
}

.plans .plans-box .row > div {
  margin-bottom: 50px;
}

@media only screen and (max-width: 1199px) {
  .plans .plans-box {
    padding: 0 30px;
    margin-top: 30px;
  }
}

/*Plans Ends*/
/*Testimonials Starts*/
.testimonials {
  background: #b9c5d9 url("../images/stars-bg.png") no-repeat 50% 0;
  padding: 100px 0 150px;
}

@media only screen and (max-width: 991px) {
  .testimonials {
    padding: 30px 0 30px;
  }
}

.testmonials-wrap {
  margin-top: 100px;
}

.testmonials-wrap:after {
  content: "";
  display: block;
  clear: both;
}

@media only screen and (max-width: 1199px) {
  .testmonials-wrap {
    margin-top: 0;
  }
}

.review-box {
  width: 50%;
  min-height: 248px;
  float: left;
  padding: 30px;
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  box-shadow: 0 15px 20px 1px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0 15px 20px 1px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 15px 20px 1px rgba(0, 0, 0, 0.2);
}

.review-box:nth-child(1) {
  background: #fff;
  position: relative;
  z-index: 1;
}

.review-box:nth-child(2) {
  background: #fdecea;
  margin-top: -25px;
  position: relative;
  z-index: 2;
}

@media only screen and (max-width: 1199px) {
  .review-box:nth-child(2) {
    margin-top: 0;
  }
}

.review-box:nth-child(3) {
  background: #e6ecf6;
  display: block;
  position: relative;
  z-index: 3;
  margin-top: -25px;
  margin-right: auto;
  margin-left: 50%;
  transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
}

@media only screen and (max-width: 1199px) {
  .review-box:nth-child(3) {
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
    transform: translateX(0);
    -ms-transform: translateX(0);
    -webkit-transform: translateX(0);
  }
}

.review-box img {
  width: 72px;
  height: 72px;
  float: left;
}

@media only screen and (max-width: 767px) {
  .review-box img {
    float: none;
    margin: 0 auto;
    display: block;
  }
}

.review-box .text-box {
  width: calc(100% - 72px);
  padding: 15px 0 0 15px;
  overflow: hidden;
}

.review-box .text-box h4 {
  color: #186aa4;
}

.review-box .text-box p {
  margin-bottom: 15px;
}

@media only screen and (max-width: 767px) {
  .review-box .text-box {
    width: 100%;
    padding: 15px;
  }
}

.review-box:after {
  content: "";
  display: block;
  clear: both;
}

.review-box .stars .fa {
  color: #eaa835;
}

@media screen and (min-width: 1200px) and (max-width: 1500px) {
  .review-box {
    min-height: 260px !important;
  }
}

@media only screen and (max-width: 1199px) {
  .review-box {
    width: 100%;
  }
}

@media only screen and (max-width: 767px) {
  .review-box {
    padding: 30px 15px;
  }
}

/*Testimonials Ends*/
/*Content Ends*/
/*Footer Starts*/
footer {
  background: #1c55a8 url("../images/curve-red-left.png") no-repeat 0 100%;
  background-size: 48%;
  position: relative;
  z-index: 2;
  overflow: hidden;
}

footer:before {
  content: "";
  background: url("../images/footer-top-bg.png") no-repeat 50% 100%;
  width: 100%;
  height: 209px;
  position: absolute;
  left: 0;
  right: 0;
  top: -209px;
  z-index: -1;
}

@media only screen and (max-width: 1199px) {
  footer {
    background: #1c55a8;
  }
}

/*Sub Footer Starts*/
.sub-footer {
  padding: 100px 0;
}

@media only screen and (max-width: 991px) {
  .sub-footer {
    padding: 30px 0 0;
  }
}

.sub-footer .email {
  border: 1px solid rgba(255, 255, 255, 0.3);
  margin-bottom: 15px;
  padding: 6px;
  overflow: hidden;
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
}

.sub-footer .email input {
  background: transparent;
  width: calc(100% - 80px);
  border: none;
  color: rgba(255, 255, 255, 0.9);
  margin: 10px 0 0 20px;
}

.sub-footer .email ::-webkit-input-placeholder {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7) !important;
}

.sub-footer .email :-moz-placeholder {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7) !important;
}

.sub-footer .email ::-moz-placeholder {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7) !important;
}

.sub-footer .email :-ms-input-placeholder {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7) !important;
}

.sub-footer .email button {
  background: rgba(47, 164, 24, 0.9);
  width: 46px;
  height: 46px;
  border: none;
  text-align: center;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
}

.sub-footer .email button .fa {
  font-size: 18px;
  color: white;
}

.sub-footer p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 30px;
}

@media only screen and (max-width: 767px) {
  .sub-footer p {
    margin-bottom: 10px;
  }
}

@media only screen and (max-width: 767px) {
  .sub-footer {
    padding: 50px 0 0;
  }
}

.sub-footer-left {
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  height: 100%;
}

@media only screen and (max-width: 991px) {
  .sub-footer-left {
    border-right: none;
  }
}

.title-footer {
  margin-bottom: 70px;
  margin-right: 20px;
}

.title-footer h2 {
  color: white;
}

.title-footer h2 span {
  color: #eb4d3f;
}

.title-footer p {
  color: rgba(255, 255, 255, 0.7);
}

@media only screen and (max-width: 991px) {
  .title-footer {
    margin-bottom: 30px;
  }
}

.footer-listing h3 {
  color: white;
  margin-bottom: 50px;
}

@media only screen and (max-width: 991px) {
  .footer-listing h3 {
    margin-bottom: 10px;
  }
}

.footer-listing ul a {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 300;
  display: block;
  margin-bottom: 10px;
}

@media only screen and (max-width: 767px) {
  .footer-listing ul a {
    margin-bottom: 5px;
  }
}

@media only screen and (max-width: 767px) {
  .footer-listing ul {
    margin-bottom: 30px;
  }
}

@media only screen and (max-width: 767px) {
  .footer-listing {
    margin-bottom: 10px;
  }
}

.any-question .icon-email {
  width: 60px;
  float: left;
  margin: 7px 20px 10px 0;
}

.any-question .any-content {
  float: left;
}

.any-question:after {
  content: "";
  display: block;
  clear: both;
}

.any-question h3 {
  color: #eac235;
  margin-bottom: 0;
}

.any-question p {
  color: rgba(255, 255, 255, 0.7);
}

.main-footer {
  padding: 10px 0 40px;
}

.main-footer p {
  color: rgba(255, 255, 255, 0.7);
}

.main-footer .social {
  margin-bottom: 20px;
  padding-top: 20px;
}

.main-footer .social h3 {
  color: white;
  margin-bottom: 20px;
}

.main-footer .social-media li {
  display: inline-block;
  border-radius: 25px;
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
}

.main-footer .social-media li:hover {
  background: black !important;
}

@media only screen and (max-width: 991px) {
  .main-footer .social-media li {
    margin-bottom: 5px;
  }
}

.main-footer .social-media a {
  font-size: 13px;
  color: white;
  text-transform: uppercase;
  font-weight: 700;
  padding: 5px 15px;
  display: block;
}

.main-footer .social-media .facebook {
  background: #345bbc;
}

.main-footer .social-media .twitter {
  background: #2eacff;
}

.main-footer .social-media .youtube {
  background: #cc181e;
}

@media only screen and (max-width: 991px) {
  .main-footer .social-media {
    margin-bottom: 30px;
  }
}

.main-footer .cards-payment {
  float: left;
}

.main-footer .cards-payment li {
  display: inline-block;
  margin-right: 2px;
}

@media only screen and (max-width: 767px) {
  .main-footer .cards-payment li {
    margin-bottom: 5px;
  }
}

.main-footer .cards-payment img {
  max-width: 50px;
  filter: grayscale(0);
  -webkit-filter: grayscale(0);
}

.main-footer .cards-payment a {
  display: block;
}

.main-footer .cards-payment a:hover img {
  filter: grayscale(50%);
  -webkit-filter: grayscale(50%);
}

.main-footer .cards-payment h3 {
  color: #eac235;
  margin-bottom: 20px;
}

@media screen and (min-width: 1366px) and (max-width: 1720px) {
  .main-footer .cards-payment {
    float: right;
  }
}

@media screen and (min-width: 1200px) and (max-width: 1365px) {
  .main-footer .cards-payment {
    float: right;
  }
}

@media only screen and (max-width: 991px) {
  .main-footer .cards-payment {
    float: none;
    margin-bottom: 30px;
  }
}

.main-footer .copy-rights {
  margin-top: 62px;
}

@media only screen and (max-width: 991px) {
  .main-footer .copy-rights {
    margin-top: 30px;
  }
}

@media only screen and (max-width: 767px) {
  .main-footer {
    margin: 0;
  }
}

/*Sub Footer Ends*/
/*Zoom starts*/
.zoom-1 {
  position: absolute;
  width: 8%;
  height: auto;
  bottom: 70px;
  left: 38%;
  -webkit-animation: scale 20s linear infinite;
          animation: scale 20s linear infinite;
}

.zoom-2 {
  position: absolute;
  width: 5%;
  height: auto;
  bottom: 194px;
  right: 25%;
  -webkit-animation: scale 10s linear infinite;
          animation: scale 10s linear infinite;
}

.zoom-3 {
  position: absolute;
  width: 9%;
  height: auto;
  bottom: -9%;
  right: -4%;
  -webkit-animation: scale 20s linear infinite;
          animation: scale 20s linear infinite;
}

@-webkit-keyframes scale {
  50% {
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
  }
}

@keyframes scale {
  50% {
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
  }
}

/*Zoom Ends*/
/*Footer Ends*/
/*Extra Starts*/
.scroll-top {
  background: rgba(0, 0, 0, 0.8) url("../images/up.png") no-repeat 50% 50%;
  width: 50px;
  height: 50px;
  position: fixed;
  bottom: 15px;
  right: 15px;
  z-index: 9;
  cursor: pointer;
  transition: all 0.15s ease-in-out;
  -webkit-transition: all 0.15s ease-in-out;
  -moz-transition: all 0.15s ease-in-out;
  -ie-transition: all 0.15s ease-in-out;
  -o-transition: all 0.15s ease-in-out;
}

.scroll-top:hover {
  background: black url("../images/up.png") no-repeat 50% 40%;
}

/*Extra Ends*/
.reviews {
  background: url("../images/gradient-left.png") repeat-y 0 0, #186aa4 url("../images/gradient-right.png") repeat-y 100% 100%;
  padding: 30px 0 10px;
}

.reviews h3 {
  font-size: 25px;
  color: white;
  font-weight: 300 !important;
  text-align: center;
  margin-bottom: 25px;
}
@media only screen and (max-width: 767px) {
  .reviews {
    padding: 30px 0 10px;
  }
}
 
 .icon2 svg, .icon2 img {
height: 1em;
width: 1em;
fill: currentColor;
top: .125em;
position: relative;
}


.icon2, .tld {
display: inline-flex;
align-self: center;
font-size: 1em;
}
.text-green {
color: #4eb246;
}

.app-wordpress {
color: #0073AA;
}
.app-joomla {
color: #f44321;
}
.app-drupal {
color: #0678be;
}
.app-magento {
color: #f46f25;
}
.app-modx {
color: #74c048;
}
.app-whmcs {
color: #4dac02;
}

.icon2-4x {
font-size: 4em;
}

.bg-grey{
  background-color: #bec8cf;
}

.btn2{
    display: inline-block;
    font-weight: 400 !important;
    color: #212529 !important;
    text-align: center;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-color: transparent;
    border: .5px solid transparent;
    padding: .375rem .75rem;
    font-size: 1rem !important;
    line-height: 1.5;
    border-radius: .25rem;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

.btn2-link{
    color: #007bff;
    text-decoration: none;
}

.btn2:not(:disabled):not(.disabled) {
    cursor: pointer;
}

.reviews i {
  color: #eaa835 !important;
}


.ihahs_jar_inner {
  background: -webkit-gradient(linear, left top, left bottom, from(#F4F4F4), to(white));
  background: linear-gradient(to bottom, #F4F4F4, white);
  background: -o-linear-gradient(to bottom, #F4F4F4, white);
  height: 100%;
  padding: 60px 20px 50px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  text-align: center;
  border-radius: 5px !important;
  -webkit-border-radius: 80px;
  -moz-border-radius: 80px;
  position: relative;
  z-index: 1;
  box-shadow: 0 10px 10px 1px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 10px 10px 1px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 10px 10px 1px rgba(0, 0, 0, 0.1);
}

.ihahs_jar_inner p {
  margin-bottom: 30px;
}

.ihahs_jar_inner .only {
  margin-bottom: 5px;
}

.ihahs_jar_inner .price {
  color: #eb4d3f;
  margin-bottom: 20px;
}


  .ihahs_jar_inner {
    padding: 60px 10px 50px;
  }


@media only screen and (max-width: 576px) {
  .ihahs_jar_inner {
    padding: 50px 10px 40px;
    border-radius: 5px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
  }
}


.custom-gutter-cloud {
padding-left: 35px;
padding-right: 35px;
}






/* close new table */
#plans{
  background-color: #fff;
  /*padding: 100px 0;*/
}

.table-pricing{
    background-image: linear-gradient(to right, #183a73, #2e75f3);
}

a.btn-custom{
    color: #fff;
    border-radius: 3px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    padding: 10px 20px;
    min-width: 120px;
    outline: 0;
    font-weight: bold;
    text-decoration: none;
    text-transform: none;
    font-size: 14px;
    background-image: linear-gradient(to right, #4a8edf, #4a8edf);
}


.table {
  display: table;
  margin-bottom: 0;
}
.table [class*="col-"] {
  float: none;
  display: table-cell;
  vertical-align: top;
  padding:0;
  height:100%;
}
.table-custom-1{
  position:absolute;
  height:100%;
}
.table .table {
  background: none;
}

.table-pricing{
  font-size:18px;
  border-radius:10px;
  border:none;
  
}
.table-pricing thead{
  color:#ffffff;
  font-size:18px;
}
.table-pricing thead tr th{ 
  padding:20px 0 20px 0;
  border: 0;
}
.table-pricing tbody tr{
  width:100%;
  background:#f2f2f2;
  border-top:solid 8px #ffffff; 
}
.table-pricing tbody tr:hover{
  background:#e2e2e2;
}
.table-pricing tbody tr td,
.table-pricing tbody tr th{
  border:none;  
  padding:20px 0 20px 0;
}
.table-pricing tbody tr th .lbl,
.table-pricing tbody tr td .lbl{
  display:none;
}

.text-middle, .table [class*="col-"].text-middle {
  vertical-align: middle;
}

.typed,.typed-strings{display:inline-block;}
.typed-strings p{position:absolute;}
.typed-cursor{
opacity: 1;
-webkit-animation: blink 0.7s infinite;
-moz-animation: blink 0.7s infinite;
animation: blink 0.7s infinite;
}
@keyframes blink{
0% { opacity:1; }
50% { opacity:0; }
100% { opacity:1; }
}
@-webkit-keyframes blink{
0% { opacity:1; }
50% { opacity:0; }
100% { opacity:1; }
}
@-moz-keyframes blink{
0% { opacity:1; }
50% { opacity:0; }
100% { opacity:1; }
}



/*# sourceMappingURL=all.css.map */