/*
==============================================
TABLE OF CONTENT
==============================================

00. Imports
01. Sections
02. Helper Classes
	    a) Text Content
	    b) Buttons
      c) Color Control
      d) Lists
      e) Hero
03. Scroll To Top Button
04. Home
      a) Feature Box
      b) Features Section
      c) Testmonial Section
      d) Pricing Section
      e) UserList Section
05. Contact
06. Frequently
07. SecurityFeatures
08. Pricing
09. Blogs
10. Blogs Details
11. Terms

==============================================
[END] TABLE OF CONTENT
==============================================
*/
/*-----------------------------------------
0. Imports
-------------------------------------------*/
@import url("navigation.css");
@import url("footer.css");

/*-----------------------------------------
1. Sections
-------------------------------------------*/
.section-block {
  padding: 90px 0px 90px 0px;
  background-color: #fff;
}

.section-block-grey {
  padding: 90px 0px 90px 0px;
  background-color: #f9f9f9;
}

.section-block-bg {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  padding: 90px 0px 90px 0px;
}

.section-block-radius-right-top {
  padding: 45px 90px;
  background-color: #ebebeb;
  border-radius: 0px 100px 0px 100px;
}

.section-block-radius-left-top {
  padding: 45px 90px;
  border-radius: 100px 0px 100px 0px;
}

@media (max-width: 992px) {
  .section-block-radius-right-top {
    padding: 45px 30px;
    background-color: #ebebeb;
    border-radius: 0px 100px 0px 100px;
  }

  .section-block-radius-left-top {
    padding: 45px 30px;
    border-radius: 100px 0px 100px 0px;
  }
}

.section-block-transparent {
  padding: 90px 0px 90px 0px;
  background: transparent;
}

.section-heading {
  margin-bottom: 10px;
}

.section-heading h2 {
  font-size: 42px;
  font-weight: 500;
  color: #111;
  line-height: 130%;
  margin-bottom: 10px;
}

.section-heading h3 {
  font-size: 35px;
  font-weight: 600;
  color: #111;
  line-height: 130%;
  margin-bottom: 10px;
}

.section-heading h4 {
  font-size: 30px;
  font-weight: 600;
  color: #111;
  line-height: 1.3;
  margin-bottom: 10px;
}

.section-block-radius-heading h4 {
  font-size: 30px;
  font-weight: 600;
}

.section-block-radius-heading h5 {
  font-size: 24px;
  font-weight: 500;
}

.section-block-radius-heading p {
  font-size: 16px;
  font-weight: 400;
  margin-top: 15px;
}

.section-heading p {
  font-size: 15px;
  font-weight: 400;
  color: #777;
  line-height: 160%;
}

.section-heading span {
  font-size: 15px;
  font-weight: 500;
  color: #16a4ee;
  line-height: 200%;
  margin-bottom: 10px;
}

.section-heading-line {
  content: "";
  display: block;
  width: 100px;
  height: 3px;
  background: #16a4ee;
  border-radius: 25%;
  margin: auto;
  margin-top: 15px;
  margin-bottom: 5px;
}

/*-----------------------------------------
2. Helper Classes
-------------------------------------------*/

/*--------------------
a) Text Content
----------------------*/
.text-content p {
  font-size: 14px;
  font-weight: 400;
  color: #777;
  line-height: 190%;
  margin-bottom: 15px;
}

.text-content-big p {
  font-size: 15px;
  font-weight: 400;
  color: #777;
  line-height: 200%;
  margin-bottom: 15px;
}

.text-content-small p {
  font-size: 12px;
  font-weight: 400;
  color: #777;
  line-height: 200%;
  margin-bottom: 15px;
}

.text-uppercase {
  text-transform: uppercase;
}

.text-thin {
  font-weight: 400 !important;
}

.text-semi-bold {
  font-weight: 600 !important;
}

.text-bold {
  font-weight: 700 !important;
}

.text-bold p {
  font-weight: 700 !important;
}

.primary-text-a {
  color: rgb(22, 164, 238) !important;
}

.primary-text-a:hover {
  color: rgba(22, 164, 238, 0.7) !important;
}

/*--------------------
b) Buttons
----------------------*/
.primary-button,
.dark-button,
.light-button,
.primary-border-button {
  background: #16a4ee;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  border-radius: 6px;
  padding: 10px 18px 10px 18px;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.primary-button:hover,
.light-button:hover {
  background: #111;
  color: #fff;
}

.primary-button-bordered {
  background: transparent;
  color: #16a4ee;
  border: 2px solid #16a4ee;
  font-size: 14px;
  font-weight: 500;
  border-radius: 6px;
  padding: 10px 18px 10px 18px;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.primary-button-bordered:hover,
.dark-button:hover,
.primary-border-button:hover {
  background: #16a4ee;
  color: #fff;
}

.dark-button {
  background-color: #111;
}

.light-button {
  background: #ffffff;
  color: #16a4ee;
}

.primary-border-button {
  border: 1px solid #16a4ee;
  background: transparent;
  color: #16a4ee;
}

/*--------------------
c) Color Control
----------------------*/
.primary-color {
  color: #16a4ee;
}

.primary-bg {
  background-color: #16a4ee;
}

.text-black {
  color: #000000;
}

/*--------------------
d) Lists
----------------------*/
.primary-list {
  padding-left: 0px;
}

.primary-list li {
  list-style-type: none;
  color: #222;
  font-size: 15px;
  font-weight: 500;
  margin-top: 15px;
}

.primary-list li i {
  color: #16a4ee;
  padding-right: 10px;
}

.dark-list {
  padding-left: 0px;
}

.dark-list li {
  list-style-type: none;
  color: #222;
  font-size: 14px;
  font-weight: 500;
  margin-top: 15px;
}

.dark-list li i {
  color: #222;
  padding-right: 10px;
}

.white-list {
  padding-left: 0px;
}

.white-list li {
  list-style-type: none;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  margin-top: 15px;
}

.white-list li i {
  color: #16a4ee;
  padding-right: 15px;
}

/*--------------------
e) Hero 
----------------------*/

.rev_section_wrapper {
  background: #16a4ee;
}

.revolution_section_wrapper {
  position: relative;
  width: 100%;
  height: auto;
  margin-top: auto;
  margin-bottom: auto;
  background: #16a4ee;
  padding: 60px 0px;
  z-index: 1;
}

.revolution_section_wrapper:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: url(../img/home/wave_group.png) no-repeat center center;
  background-size: cover;
  width: 100%;
  height: 100%;
  opacity: 0.5;
  z-index: -1;
}

.revolution_section_wrapper:after {
  content: "";
  position: absolute;
  bottom: 0;
  background: url(../img/home/mask-filler-wave.png) no-repeat center center;
  background-size: cover;
  width: 100%;
  height: 50px;
  z-index: -1;
}

.hero-title,
.hero-sub-title {
  font-size: 55px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 44px;
}

@media (max-width: 1440px) {
  .hero-title {
    font-size: 50px !important;
  }

  .hero-sub-title {
    font-size: 22px !important;
  }
}

@media (max-width: 1200px) {
  .hero-title {
    font-size: 47px !important;
  }

  .hero-sub-title {
    font-size: 20px !important;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 36px !important;
    margin-bottom: 24px !important;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 30px !important;
  }

  .hero-sub-title {
    font-size: 16px !important;
  }
}

.hero-sub-title {
  font-size: 24px;
  line-height: 29.05px;
  margin-bottom: 0px;
}

/*-----------------------------------------
3. Scroll To Top Button
-------------------------------------------*/

.scroll-to-top {
  font-size: 20px;
  padding: 6px;
  text-align: center;
  color: #fff;
  text-decoration: none;
  position: fixed;
  bottom: 80px;
  right: 10px;
  display: none;
  border-radius: 50%;
  background: #333;
  width: 40px;
  height: 40px;
  z-index: 9999;
  outline: none;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}

.scroll-to-top i {
  color: #fff;
}

.scroll-to-top:hover {
  color: #111;
  background: #fff;
}

.scroll-to-top:hover i {
  color: #111;
}

.scroll-to-top:visited {
  color: #111;
  text-decoration: none;
}

/*-----------------------------------------
4. Home
-------------------------------------------*/

/*--------------------
a) Feature Box
----------------------*/

.feature-box {
  position: relative;
  max-width: 200px;
  height: 150px;
  background: #fff;
  margin: 50px auto;
  box-shadow: 2px 2px 20px 0px rgba(50, 50, 50, 0.21);
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  border-radius: 50% 50% 100% 100%;
  text-align: center;
}

.feature-box h4 {
  color: #111;
  font-size: 18px;
  font-weight: 500;
  margin: 15px 0px;
}

.feature-box-before {
  content: "";
  position: absolute;
  width: 100px;
  height: 100px;
  background: #ffffff;
  border-radius: 50%;
  top: 0%;
  left: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0px 0px 4.5977px rgba(0, 0, 0, 0.15);
}

/*--------------------
b) Features Section
----------------------*/

.feature-box-2 {
  border: 2px solid #16a4ee;
  border-radius: 50px;
  padding: 8px 15px 8px 8px;
  gap: 20px;
}

.feature-box-2 h4 {
  color: #111;
  font-size: 18px;
  font-weight: 500;
}

.feature-box-2 p {
  color: rgb(69, 69, 69);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}

.feature-box-2 .icon-box {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background-color: #f9f9f9;
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.25);
}

.feature_icon_box_wrapper {
  gap: 20px;
}

.feature_icon_box_wrapp {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 2px solid #16a4ee;
}

.feature-flex-content h4 a {
  color: #111;
  font-size: 21px;
  font-weight: 400;
}

.feature-flex-content p {
  color: #777;
  font-size: 14px;
  font-weight: 400;
  margin-top: 5px;
}

@media (max-width: 575px) {
  .feature-box-2 {
    padding: 15px;
  }
}

/*--------------------
c) Testmonial Section
----------------------*/

.testmonial-box-2 {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.45);
  padding: 25px;
  margin: 15px 0px;
}

.testmonial-box-2 h4 {
  font-size: 19px;
  font-weight: 500;
  margin-bottom: 0px;
}

.testmonial-box-2 p {
  font-size: 15px;
  color: #111;
  font-style: italic;
  line-height: 1.6;
  margin-top: 8px;
  margin-bottom: 0px;
}

/*--------------------
d) Pricing Section
----------------------*/

.pricing-card {
  background-color: #d9f2ff;
  border-radius: 10px;
  overflow: hidden;
  height: 100%;
  position: relative;
  transition: transform 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.pricing-header {
  background-color: #afe4ff;
  padding: 15px;
  text-align: center;
  font-weight: bold;
  position: relative;
}

.pricing-body {
  padding: 30px 20px;
  text-align: center;
}

.price {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 30px;
}

.feature-divider {
  height: 1px;
  background-color: #000000;
  margin: 15px 0;
}

.feature {
  margin: 15px 0;
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .pricing-card {
    margin-bottom: 30px;
  }
}

/*--------------------
e) UserList Section
----------------------*/

.user-list-body h2 {
  color: #16a4ee;
  font-size: 40px;
  font-weight: 600;
  white-space: nowrap;
}

.user-list-body p {
  color: #000000;
  font-size: 16px;
  font-weight: 600;
}

@media (max-width: 992px) {
  .user-list-body h2 {
    font-size: 30px;
  }

  .user-list-body p {
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .user-list-body h2 {
    font-size: 24px;
  }
}

/*-----------------------------------------
5. Contact
-------------------------------------------*/

.contact-info-section {
  background: #f3f3f3;
  box-shadow: 0px 0px 6px 0px #0000002e;
  border-radius: 20px;
}

.contact-info-section h4 {
  color: #000;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 10px;
}

.contact-info-section p {
  color: #000;
  font-size: 15px;
  font-weight: 400;
}

.contact-info-section .icon-section {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #ffffff;
  color: #fff;
  box-shadow: 0px 0px 4px 0px #00000040;
}

.contact-inquiry {
  background: #f3f3f3;
  border-radius: 25px;
  padding: 50px;
  z-index: 1;
}

.contact-inquiry:after {
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  position: absolute;
  background: url(../img/contact/inquiry-wave.png) no-repeat center center;
  background-size: cover;
  opacity: 0.5;
  z-index: -1;
}

.contact-form-box p {
  font-size: 16px;
  color: #777;
}

@media (min-width: 768px) {
  .w-md-50 {
    width: 50% !important;
  }
}

/*-----------------------------------------
6. Frequently
-------------------------------------------*/

.faq-accordions .accordion .accordion-item {
  border: 0px;
  border-radius: 10px !important;
  background-color: #f9f9f9 !important;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2) !important;
}

.faq-accordions .accordion-item button {
  padding: 1.25rem;
  background-color: #f9f9f9 !important;
}

.faq-accordions .accordion-icon i {
  font-weight: 700;
  transform: rotate(-90deg);
  transition: all 0.4s ease;
}

.faq-accordions .accordion-button:not(.collapsed) .accordion-icon i {
  transform: rotate(0deg);
  transition: all 0.4s ease;
}

.faq-accordions .accordion-button:not(.collapsed) {
  color: #16a4ee;
  box-shadow: unset !important;
  border-bottom: 1px solid rgba(0, 0, 0, 0.4);
}

.faq-accordions .accordion-item button:after {
  display: none;
}

.faq-accordions .accordion-icon {
  width: 30px;
  height: 30px;
  border-radius: 6px;
  background-color: #16a4ee;
  color: #ffffff !important;
}

.faq-accordions .accordion-body {
  background: #f9f9f9;
}

/*-----------------------------------------
7. SecurityFeatures
-------------------------------------------*/

.testmonials-carousel-main {
  max-width: 800px;
  margin: 0 auto;
}

@media (min-width: 992px) {
  .testmonials-carousel {
    --r: 0px;
    --s: 40px;
    --x: 120px;
    --y: 80px;

    aspect-ratio: 3;
    border-radius: var(--r);

    --_m: /calc(2 * var(--r)) calc(2 * var(--r)) radial-gradient(#000 70%, #0000 72%);
    --_g: conic-gradient(from 90deg at calc(100% - var(--r)) calc(100% - var(--r)), #0000 25%, #000 0);
    --_d: (var(--s) + var(--r));

    -webkit-mask: calc(100% - var(--_d) - var(--x)) 100% var(--_m), 100% calc(100% - var(--_d) - var(--y)) var(--_m),
      radial-gradient(var(--s) at 100% 100%, #0000 99%, #000 calc(100% + 1px)) calc(-1 * var(--r) - var(--x)) calc(-1 * var(--r) - var(--y)),
      var(--_g) calc(-1 * var(--_d) - var(--x)) 0, var(--_g) 0 calc(-1 * var(--_d) - var(--y));

    -webkit-mask-repeat: no-repeat;
  }

  .testmonials-carousel-main:after {
    content: "";
    position: absolute;
    width: 125px;
    height: 125px;
    right: 0;
    bottom: -10%;
    border-radius: 50%;
    background-color: #f9f9f9;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  }
  .testmonials-carousel-main .owl-nav .owl-prev,
  .testmonials-carousel-main .owl-nav .owl-next {
    bottom: 5% !important;
  }
}

.testmonials-carousel {
  width: 100%;
  margin: 0 auto;
  background: #f9f9f9;
  padding: 50px 50px 25px 50px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.testmonials-carousel .testmonial-single p {
  color: #000;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.9;
}

.testmonials-carousel .testmonial-single h5 {
  color: #000;
  font-size: 22px;
  font-weight: 500;
  margin-top: 20px;
}

.testmonials-carousel-main:before {
  content: "\f10d";
  font-family: "FontAwesome";
  font-size: 50px;
  color: #16a4ee;
  position: absolute;
  top: -12%;
  z-index: 1;
  left: 0;
}

.testmonials-carousel-main .owl-nav .owl-prev,
.testmonials-carousel-main .owl-nav .owl-next {
  bottom: unset;
  right: 8%;
  z-index: 4;
  position: absolute;
  background: #16a4ee;
  width: 30px;
  height: 30px;
  border-radius: 12px;
}

.testmonials-carousel-main .owl-nav .owl-next {
  right: 3%;
}

/*-----------------------------------------
8. Pricing
-------------------------------------------*/

.pricing_box {
  position: relative;
  background: #f3f3f3;
  padding: 44px;
  z-index: 1;
}

.pricing_box:after {
  content: "";
  background: url(../img/pricing/bottom_wave.png) no-repeat center center;
  background-size: cover;
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  opacity: 0.7;
  z-index: -1;
}

.pricing_box_top {
  background: #16a4ee;
  padding: 12px 0px;
  position: absolute;
  width: 120px;
  height: 120px;
  color: #ffffff;
  border-radius: 50%;
  top: -8%;
  right: 0;
  z-index: 1;
}
.pricing_box_top h4 {
  font-size: 16px;
}

.pricing_box_price {
  background: #ffffff;
  padding: 30px 15px;
  border-radius: 12px;
  transform: translateY(-50%);
  box-shadow: 0px 0px 4.63px 0px rgba(0, 0, 0, 0.25);
  clip-path: polygon(100% 0, 100% 70%, 50% 100%, 0% 70%, 0 0);
}

@media (min-width: 992px) {
}

.pricing_box_price h3 {
  color: #000000;
  font-size: 36px;
  font-weight: 500;
}

.pricing_box_price h5 {
  color: #111111;
  font-size: 14px;
  font-weight: 600;
  margin-top: 15px;
  letter-spacing: 1px;
}

.pricing_box_prod ul li {
  color: #000000;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  border-bottom: 1px solid #777;
  padding: 14px 0px 14px 14px;
}

.pricing_box_prod ul li:last-child {
  border-bottom: none;
}

@media (min-width: 992px) {
  .pricing_box_premium {
    transform: scale(1.1);
    z-index: 999;
    -webkit-box-shadow: 0px 0px 38px -12px rgba(122, 122, 122, 0.79);
    -moz-box-shadow: 0px 0px 38px -12px rgba(122, 122, 122, 0.79);
    box-shadow: 0px 0px 38px -12px rgba(122, 122, 122, 0.79);
  }

  .pricing_box_premium {
    background: #ffffff !important;
  }

  .pricing_box_premium .pricing_box_price {
    background: #f3f3f3;
  }
}

.pricing_box_price h3 sub {
  color: #333;
  font-size: 25px;
  font-weight: 500;
  letter-spacing: 1px;
}

@media (min-width: 992px) {
  .mt-lg-150 {
    margin-top: 150px !important;
  }
}

.section-pricing-footer ul li {
  font-size: 16px;
  font-weight: 400;
  color: #000;
  line-height: 1.8;
}

/*-----------------------------------------
8. Blogs
-------------------------------------------*/

.blogs_box {
  color: #000000;
  border-width: 1px;
  border-radius: 0.5rem;
  transition: transform 0.5s ease;
}

.blogs_box:hover {
  transform: translateY(-5px);
}

.blogs-heading h5 {
  font-size: 1.5rem;
  line-height: 2rem;
  font-weight: 600;
  color: #000000;
}

.blogs_content_box p,
.blogs_footer_box {
  font-size: 14px;
  font-weight: 500;
  color: #747474;
}

.blogs_content_box h5 {
  font-size: 1.125rem;
  line-height: 1.75rem;
  font-weight: 500;
}

.blogs_box:hover {
  color: #000000 !important;
}

.line-clamp-1 {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blogs_footer_box a {
  color: #16a4ee;
}

.blogs_footer_box a:hover {
  opacity: 0.7;
}

.blogs-hr {
  opacity: 1;
  background: black;
}

.space-y-4 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(1rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(1rem * var(--tw-space-y-reverse));
}

/*-----------------------------------------
10. Blogs Details
-------------------------------------------*/

.blogs_details_main_box .container {
  max-width: 900px;
  margin: 0 auto;
}

.blogs_details_box h2 {
  font-size: 1.875rem;
  line-height: 2.25rem;
  font-weight: 600;
}

@media (max-width: 768px) {
  .blogs_details_box h2 {
    font-size: 1.25rem;
    line-height: 1.75rem;
  }

  .blogs_details_content_box h4 {
    font-size: 18px !important;
  }
}

.blogs_details_content_box h4 {
  font-size: 20px !important;
  font-weight: 600;
}

.blogs_details_header_box p,
.blogs_details_content_box p {
  font-size: 14px;
  color: #777;
  font-weight: 400;
}

.space-y-2 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(0.5rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(0.5rem * var(--tw-space-y-reverse));
}

.social-icon .social-icon-img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
}

/*-----------------------------------------
11. Terms
-------------------------------------------*/

.terms_section .container {
  max-width: 1200px;
}

.terms_heading h4 {
  position: relative;
  font-size: 30px;
  font-weight: 600;
  color: #000;
  line-height: 160%;
  margin-bottom: 10px;
}

.terms_content {
  padding: 25px 0px;
}

.terms_content p {
  font-size: 15px;
  color: #777;
  line-height: 1.7;
  margin-top: 10px;
}

.terms_content h5 {
  color: #000;
  font-size: 18px;
  font-weight: 500;
}

.space-y-6 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(1.5rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(1.5rem * var(--tw-space-y-reverse));
}
