/*!
Animate.css - http://daneden.me/animate
Version - 3.4.0
Licensed under the MIT license - http://opensource.org/licenses/MIT

Copyright (c) 2015 Daniel Eden
*/
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInLeft {
  animation-name: fadeInLeft;
}
@keyframes fadeInLeftBig {
  from {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInLeftBig {
  animation-name: fadeInLeftBig;
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInRight {
  animation-name: fadeInRight;
}
@keyframes fadeInRightBig {
  from {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInRightBig {
  animation-name: fadeInRightBig;
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes fadeInUp2 {
  from {
    opacity: 0;
    transform: translate3d(0, 40%, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInUp {
  animation-name: fadeInUp;
}
@keyframes fadeInUpBig {
  from {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInUpBig {
  animation-name: fadeInUpBig;
}

.features-style1 {
  text-align: start;
  background: var(--color-white);
  padding: 50px 40px 45px;
  border-radius: 10px;
  border: 1px solid var(--e-global-color-primary);
  position: relative;
  z-index: 1;
  overflow: hidden;
  transition: var(--transition);
}
@media (max-width: 1200px) and (min-width: 991px) {
  .features-style1 {
    padding: 50px 35px;
  }
}
@media (max-width: 768px) {
  .features-style1 {
    padding: 50px 20px;
  }
}
.features-style1 .icon {
  margin-bottom: 25px;
  max-width: -moz-max-content;
  max-width: max-content;
}
.features-style1 .icon svg {
  filter: unset;
  transition: var(--transition);
  height: 60px;
  width: 60px;
}
.features-style1 .title {
  color: var(--e-global-color-secondary);
  font-size: 22px;
  font-weight: 700;
  text-transform: capitalize;
  margin-bottom: 12px;
  display: inline-block;
}
.features-style1 .description {
  font-family: var(--e-global-typography-secondary-font-family);
  font-weight: var(--regular);
  color: var(--e-global-color-text);
  margin: 0;
  transition: 0.4s;
}
.features-style1 .button {
  padding: 0;
  border: none;
  background: none;
  color: #4C5671;
  display: inline-block;
  margin-top: 10px;
  font-weight: 500;
}
@media (max-width: 768px) {
  .features-style1 .button {
    display: block;
    max-width: -moz-max-content;
    max-width: max-content;
  }
}
.features-style1 .button svg {
  width: 16px;
}
.features-style1:hover {
  color: var(--color-white);
  background: var(--e-global-color-primary);
}
.features-style1:hover .icon svg path {
  fill: var(--color-white);
}
.features-style1:hover .title {
  color: var(--color-white);
}
.features-style1:hover .description {
  color: var(--color-white);
}
.features-style1:hover .button {
  color: var(--color-white);
  border-color: transparent !important;
}
.features-style1:hover .button svg path {
  fill: var(--color-white);
}
.features-style1:hover::before {
  opacity: 1;
}

.style2 .single__feature {
  height: 100%;
}
.style2 .single__feature--box {
  background: var(--color-white);
  border-radius: 10px;
  position: relative;
  padding: 35px;
  z-index: 2;
  transition: var(--transition);
  border: 1px solid var(--e-global-color-primary);
  height: 100%;
}
.style2 .single__feature--box:hover {
  background: var(--e-global-color-primary);
}
.style2 .single__feature--box:hover .icon {
  background: var(--color-white);
}
.style2 .single__feature--box:hover .title {
  color: var(--color-white);
}
.style2 .single__feature--box:hover .description {
  color: var(--color-white);
}
.style2 .single__feature--box.hover-enabled {
  padding: 40px;
}
.style2 .single__feature--box.hover-enabled::before {
  z-index: 1;
  border-color: #013396;
}
.style2 .single__feature--box.hover-enabled:hover {
  color: var(--color-white);
}
.style2 .single__feature--box.hover-enabled:hover .title {
  color: var(--color-white);
}
.style2 .single__feature--box.hover-enabled:hover .icon img {
  filter: brightness(10);
}
.style2 .single__feature--box.hover-enabled:hover::after {
  opacity: 1;
}
.style2 .single__feature--box.hover-enabled .description {
  margin-bottom: 0;
}
.style2 .single__feature--box .icon {
  height: 80px;
  width: 80px;
  border-radius: 50%;
  background: #FFF4ED;
  display: grid;
  place-items: center;
  margin-bottom: 20px !important;
}
.style2 .single__feature--box .icon svg {
  width: 52px;
}
.style2 .single__feature--box .icon img {
  transition: var(--transition);
}
.style2 .single__feature--box .title {
  font-weight: 700;
  font-size: 20px;
  color: var(--e-global-color-secondary);
  transition: var(--transition);
  margin-bottom: 15px;
}
.style2 .single__feature--box .description {
  margin-bottom: 0px;
  transition: var(--transition);
}

.pricing-wrapper.style3,
.pricing-wrapper.style4 {
  border-radius: 10px;
  border: 1px solid var(--e-global-color-primary);
  padding: 40px 40px 32px;
  background: var(--color-white);
  transition: all 0.4s;
}
@media screen and (max-width: 992px) {
  .pricing-wrapper.style3,
  .pricing-wrapper.style4 {
    padding: 25px;
  }
}
.pricing-wrapper.style3 .logo,
.pricing-wrapper.style4 .logo {
  margin-bottom: 25px;
}
.pricing-wrapper.style3 .logo svg,
.pricing-wrapper.style4 .logo svg {
  width: 110px;
}
.pricing-wrapper.style3 .desc,
.pricing-wrapper.style4 .desc {
  margin-bottom: 15px;
}
.pricing-wrapper.style3 .price-area,
.pricing-wrapper.style4 .price-area {
  margin-bottom: 15px;
  color: var(--e-global-color-secondary);
  font-family: var(--e-global-typography-secondary-font-family);
  display: flex;
  align-items: center;
  gap: 14px;
}
.pricing-wrapper.style3 .price-area .pre,
.pricing-wrapper.style4 .price-area .pre {
  font-size: 16px;
  font-weight: 500;
  line-height: 26px;
  text-decoration: line-through;
}
.pricing-wrapper.style3 .price-area .now,
.pricing-wrapper.style4 .price-area .now {
  font-size: 20px;
  font-weight: 600;
  line-height: 30px;
}
.pricing-wrapper.style3 .button-area,
.pricing-wrapper.style4 .button-area {
  display: flex;
  align-items: center;
  gap: 8px;
}
@media screen and (max-width: 1200px) {
  .pricing-wrapper.style3 .button-area,
  .pricing-wrapper.style4 .button-area {
    flex-wrap: wrap;
  }
}
.pricing-wrapper.style3 .button-area .button,
.pricing-wrapper.style4 .button-area .button {
  border-radius: 2px;
  background: none;
  color: var(--e-global-color-primary);
  padding: 0;
  font-size: 16px;
  font-weight: 500;
}
.pricing-wrapper.style3 .button-area .button svg,
.pricing-wrapper.style4 .button-area .button svg {
  width: 18px;
}
.pricing-wrapper.style3:hover,
.pricing-wrapper.style4:hover {
  color: var(--color-white);
  background: var(--e-global-color-primary);
}
.pricing-wrapper.style3:hover .title,
.pricing-wrapper.style4:hover .title {
  color: var(--color-white);
}
.pricing-wrapper.style3:hover .price-area span,
.pricing-wrapper.style4:hover .price-area span {
  color: var(--color-white);
}
.pricing-wrapper.style3:hover::after,
.pricing-wrapper.style4:hover::after {
  opacity: 1;
}
.pricing-wrapper.style3:hover .button-area .button,
.pricing-wrapper.style4:hover .button-area .button {
  color: var(--color-white);
}
.pricing-wrapper.style3:hover .button-area .button svg path,
.pricing-wrapper.style4:hover .button-area .button svg path {
  fill: var(--color-white);
}
.pricing-wrapper.style3:hover .renew,
.pricing-wrapper.style4:hover .renew {
  color: var(--color-white);
}
.pricing-wrapper.style3.others .tag,
.pricing-wrapper.style4.others .tag {
  background: var(--e-global-color-primary);
  color: var(--color-white);
  line-height: 1;
  padding: 7px 9px;
  border-radius: 4px;
  font-size: 13px;
  max-width: -moz-max-content;
  max-width: max-content;
  position: absolute;
  top: -9px;
  left: 11px;
  z-index: 1;
}
.pricing-wrapper.style3.others .content .title,
.pricing-wrapper.style4.others .content .title {
  font-size: 24px;
  line-height: 1.2;
  font-weight: 500;
  margin-bottom: 20px;
}
.pricing-wrapper.style3.others .content .desc,
.pricing-wrapper.style4.others .content .desc {
  font-size: 14px;
  line-height: 1;
  padding: 10px 12px;
  background: #F6F6F6;
  border-radius: 4px;
  max-width: -moz-max-content;
  max-width: max-content;
  color: var(--e-global-color-secondary);
}
.pricing-wrapper.style3.others .content .price-area .now,
.pricing-wrapper.style4.others .content .price-area .now {
  margin-bottom: 15px;
}
.pricing-wrapper.style3.others .content .price-area .renew,
.pricing-wrapper.style4.others .content .price-area .renew {
  margin: 0;
}
.pricing-wrapper.style3.others .content .price-area .renew span,
.pricing-wrapper.style4.others .content .price-area .renew span {
  margin-left: 5px;
}

.service-five .item {
  background: var(--color-white);
  border-radius: 10px;
  position: relative;
  padding: 40px 23px;
  z-index: 2;
  transition: var(--transition);
  border: 1px solid transparent;
  text-align: center;
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.05);
}
.service-five .item:hover {
  border: 1px solid var(--e-global-color-primary);
  box-shadow: unset;
}
.service-five .item:hover .button {
  background: var(--e-global-color-primary);
  color: var(--color-white);
}
.service-five .item .icon {
  height: 60px;
  display: grid;
  place-items: center;
  margin-bottom: 26px;
  margin-left: auto;
  margin-right: auto;
  max-width: -moz-max-content;
  max-width: max-content;
}
.service-five .item .icon img {
  transition: var(--transition);
}
.service-five .item .title {
  font-weight: 700;
  font-size: 20px;
  color: var(--e-global-color-secondary);
  transition: var(--transition);
  margin: 0;
  margin-bottom: 15px;
  margin-bottom: 10px;
}
.service-five .item .description {
  margin-bottom: 0px;
  transition: var(--transition);
}
.service-five .item .button {
  padding: 11px 25px 10px;
  line-height: 1;
  display: flex;
  align-items: center;
  border-radius: 4px;
  color: var(--e-global-color-primary);
  background: transparent;
  gap: 10px;
  border: 1px solid var(--e-global-color-primary);
  max-width: -moz-max-content;
  max-width: max-content;
  margin: auto;
  margin-top: 35px;
  transition: var(--transition);
  font-weight: 500;
}
.service-five .item .button svg,
.service-five .item .button i {
  width: 16px;
  font-size: 20px;
}/*# sourceMappingURL=style.css.map */