/* This file has been created by me to write the styling of custom elements added in the main website template */
body {
  font-family: 'Roboto', sans-serif;
}

/* CSS for FAQs Section */

#QA {
  margin-bottom: 100px;
}

details {
  color: #FFFFFF;
  width: 100%;
  min-height: 5px;
  max-width: 700px;
  padding: 20px 55px 20px 20px;
  margin: 0 auto;
  position: relative;
  font-size: 22px;
  border: 3px solid #FFFFFF;
  border-radius: 15px;
  box-sizing: border-box;
  transition: all .3s;
}

details+details {
  margin-top: 20px;
}

details[open] {
  min-height: 50px;
  color: #000000;
  background-color: #f6f7f8;
  box-shadow: 2px 2px 20px rgba(0, 0, 0, .2);
}

details p {
  color: #96999d;
  font-weight: 300;
}

summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 500;
  cursor: pointer;
}

summary:focus {
  outline: none;

}

summary:focus::after {
  content: "";
  height: 100%;
  width: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  box-shadow: 0 0 0 3px #4B8EF1;
  border-radius: 20px;
}

summary::-webkit-details-marker {
  display: none
}

.control-icon {
  /* fill: #4B8EF1; */
  fill: #96999d;
  border-radius: 15px;
  background-color: #F4F4F2;
  transition: .3s ease;
  pointer-events: none;
}

.control-icon-close {
  display: none;
}

details[open] .control-icon-close {
  display: initial;
  transition: .3s ease;
}

details[open] .control-icon-expand {
  display: none;
}

/* MailBox styling starts here */
:root {
  --color-first: #4B8EF1;
  --color-second: #36C0F8;
  --color-third: #0D6EFD;
  --color-forth: #7288A2;
  --block-width: 500px;
  --block-height: 375px;
  --border-width: 0.625rem;
  --border-radius-outer: 8px;
  --border-radius-inner: calc(var(--border-radius-outer) / 2);
  --font-plain: 'IBM Plex Sans', sans-serif;
  --font-special: 'Fredoka One', sans-serif;
  box-sizing: border-box;
  line-height: 1.4;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

.email-Verification {
  font-family: var(--font-plain);
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: -50%;
}

.rainbow {
  width: 100%;
  height: 100%;
  animation: o-rotate-360 linear 10s infinite;
}

.rainbow span {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  transform: translate(-50%, -50%);
}

.rainbow span:after {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 100%;
}

.rainbow span:first-child {
  background: var(--color-first);
}

.rainbow span:first-child:after {
  background: var(--color-second);
}

.rainbow span:last-child {
  background: var(--color-third);
}

.rainbow span:last-child:after {
  background: var(--color-forth);
}

.c-subscribe-box {
  width: var(--block-width);
  height: var(--block-height);
  overflow: hidden;
  position: relative;
  box-shadow: 0 10px 40px -10px rgba(0, 64, 128, 0.2);
  border-radius: var(--border-radius-outer);
}

.c-subscribe-box\_\_wrapper {
  width: calc(100% - var(--border-width));
  height: calc(100% - var(--border-width));
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  padding: 1.2rem 1rem 1.8rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: var(--border-radius-inner);
}

.c-subscribe-box\_\_title {
  font-size: 1.6rem;
  margin: 2rem;
}

.c-subscribe-box\_\_desc {
  font-size: 0.935rem;
  margin: 0.7rem auto 1.8rem;
  max-width: 240px;
}

.c-form--accent input:hover,
.c-form--accent input:active,
.c-form--accent input:focus {
  border-color: var(--color-third);
  box-shadow: 0 0 0 3px hsla(335, 75%, 64%, 0.25);
}

.c-form--accent [type=submit] {
  background: linear-gradient(105deg, rgba(91, 104, 235, 1) 0%, rgba(40, 225, 253, 1) 100%);
  border-color: var(--color-third);
  color: #fff;
  border-radius: 10px;
  margin: 10% auto;
  border: none;
}

@keyframes o-rotate-360 {
  0% {
    transform: rotate(0);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* [type=submit] {
  margin-bottom: 0;
  font-family: var(--font-special);
  font-weight: normal;
  letter-spacing: 0.015em;
  font-size: 1.1rem;
} */

[type=submit]:active {
  transform: scale(0.97);
}

input {
  font-family: inherit;
  color: inherit;
  outline: none;
  font-size: 93%;
  transition: all 300ms ease;
}

h3 {
  margin: 0;
  letter-spacing: -0.015em;
  font-family: var(--font-special);
  font-weight: normal;
  line-height: 1.4;
}

.u-align-center {
  text-align: center;
}

/* styling for facts and figuer animations starts here*/
.facts {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: center;
}

.facts .container .row {
  display: block;
  margin-bottom: 4.5rem;
  position: relative;

}


/* Animation of pointers */
.facts-animation {
  -webkit-font-smoothing: antialiased;
  -moz-font-smoothing: antialiased;
  font-family: 'Days One', sans-serif;
  overflow: hidden;
  padding: 0;
  margin: 100px auto;
  height: 100%;
}

.facts-animation:before {
  position: absolute;
  content: '';
  opacity: 0.8;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
}

.facts-animation a {

  -webkit-transition: all 250ms cubic-bezier(0.230, 1.000, 0.320, 1.000);
  -moz-transition: all 250ms cubic-bezier(0.230, 1.000, 0.320, 1.000);
  -ms-transition: all 250ms cubic-bezier(0.230, 1.000, 0.320, 1.000);
  -o-transition: all 250ms cubic-bezier(0.230, 1.000, 0.320, 1.000);
  transition: all 250ms cubic-bezier(0.230, 1.000, 0.320, 1.000);
  text-decoration: none;
}

.fact-container {
  position: absolute;
  z-index: 3;
  /* width: 75%;
  margin-left: -100px; */
}

.fact-container h1 {

  letter-spacing: -1px;
  text-shadow: -2px -1px 1px #fff, 1px 2px 2px rgba(0, 0, 0, 0.2);
  font-weight: 300;
  font-size: 36px;
  margin: 0;
}

.fact-container h2 {

  text-transform: uppercase;
  text-shadow: -2px -1px 1px #fff, 1px 1px 1px rgba(0, 0, 0, 0.15);
  font-weight: 300;
  font-size: 12px;
  color: rgba(0, 0, 0, 0.7);
  margin: 0;
}



/* List styles */

.facts-animation .list {

  -webkit-transform-style: preserve-3d;
  -moz-transform-stle: preserve-3d;
  -ms-transform-style: preserve-3d;
  -o-transform-style: preserve-3d;
  transform-style: preserve-3d;
  text-transform: uppercase;
  position: absolute;
  margin-left: -140px;
  top: 20%;
}

.facts-animation .list a {

  display: block;
  color: #fff;
}

.facts-animation .list a:hover {
  text-indent: 20px;
}

.facts-animation .list dt, .list dd {
  border-radius: 15px;
  text-indent: 10px;
  line-height: 55px;
  background: #E0FBAC;
  margin: 0;
  height: 55px;
  width: 20rem;
  color: #fff;
}

.facts-animation .list dt {

  /* Since we're hiding elements behind here, we need it in 3d */
  -webkit-transform: translateZ(0.3px);
  -moz-transform: translateZ(0.3px);
  -ms-transform: translateZ(0.3px);
  -o-transform: translateZ(0.3px);
  transform: translateZ(0.3px);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
  font-size: 15px;
}

.facts-animation .list dd {

  border-top: 1px dashed rgba(255, 255, 255, 0.3);
  line-height: 35px;
  font-size: 11px;
  height: 35px;
  margin: 0;
}

/* UI */

.facts-animation .toggle {
  -webkit-transform: translateZ(100px);
  -moz-transform: translateZ(100px);
  -ms-transform: translateZ(100px);
  -o-transform: translateZ(100px);
  transform: translateZ(100px);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
  border-radius: 3px;
  text-transform: uppercase;
  letter-spacing: -1px;
  line-height: 50px;
  margin-left: -4%;
  margin-top: -50px;
  background: rgb(19, 175, 240);
  background: linear-gradient(105deg, rgba(91, 104, 235, 1) 0%, rgba(40, 225, 253, 1) 100%);
  text-align: center;
  font-size: 12px;
  position: absolute;
  z-index: 1;
  height: 50px;
  top: 10%;
  width: 140px;
  color: #fff;
  left: 50%;
}

/* .facts-animation .toggle:hover {
  color: #000000;
  font-weight: bold;
  font-size: large;
  background: #FFFFFF;
} */

/* Individual styles */

.facts-animation .sashimi dt, .sashimi dd, .sashimi a {
  background: #4B8EF1;
}

.facts-animation .nigiri dt, .nigiri dd, .nigiri a {
  background: #4B8EF1;
}

.facts-animation .maki dt, .maki dd, .maki a {
  background: #4B8EF1;
}

.facts-animation .sashimi a:hover {
  background: #F6F7F8;
  color: #222;
}

.facts-animation .nigiri a:hover {
  background: #F6F7F8;
  color: #222;
}

.facts-animation .maki a:hover {
  background: #F6F7F8;
  color: #222;
}

.facts-animation .nigiri {

  -webkit-transform: perspective(1200px) rotateY(40deg) !important;
  -moz-transform: perspective(1200px) rotateY(40deg) !important;
  -ms-transform: perspective(1200px) rotateY(40deg) !important;
  -o-transform: perspective(1200px) rotateY(40deg) !important;
  transform: perspective(1200px) rotateY(40deg) !important;

  -webkit-transform-origin: 110% 25%;
  -moz-transform-origin: 110% 25%;
  -ms-transform-origin: 110% 25%;
  -o-transform-origin: 110% 25%;
  transform-origin: 110% 25%;

  left: 20%;
}

.facts-animation .maki {

  -webkit-transform: perspective(600px) translateZ(1px) !important;
  -moz-transform: perspective(600px) translateZ(1px) !important;
  -ms-transform: perspective(600px) translateZ(1px) !important;
  -o-transform: perspective(600px) translateZ(1px) !important;
  transform: perspective(600px) translateZ(1px) !important;

  left: 51%;
}

.facts-animation .sashimi {

  -webkit-transform: perspective(1200px) rotateY(-40deg) !important;
  -moz-transform: perspective(1200px) rotateY(-40deg) !important;
  -ms-transform: perspective(1200px) rotateY(-40deg) !important;
  -o-transform: perspective(1200px) rotateY(-40deg) !important;
  transform: perspective(1200px) rotateY(-40deg) !important;

  -webkit-transform-origin: -10% 25%;
  -moz-transform-origin: -10% 25%;
  -ms-transform-origin: -10% 25%;
  -o-transform-origin: -10% 25%;
  transform-origin: -10% 25%;

  left: 80%;
}


/* styling for facts and figuer animations ends here*/

/* Styling for Traffic Section starts here */

.traffic {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.traffic .traffic-container {
  margin: 5rem 2rem 1rem 2rem;
  align-items: center;
  text-align: center;
}

#SoloAds {
  text-align: center;
  margin: 25px auto;
  width: 70%;
}

.traffic .solo-container {
  display: flex;
  flex-direction: column;
  margin: 30px;
}

/* Styling for Traffic Section ends here */

/* How solo ads works animation */
@import url(https://fonts.googleapis.com/css?family=Lato:700italic,400,400italic,700);

.solo-process {
  font-family: 'Lato', 'Helvetica Neue', Arial, sans-serif;
  font-size: 14px;
  width: 100%;
  height: 700px;
  margin: 0;
  padding: 0;
}

.solo-process h4 {
  text-align: center;
  margin: 20px 0 0;
}

.solo-process .container {
  width: 90%;
  margin: 0 auto;
  overflow: hidden;
  height: 100%;
}

.clear {
  clear: both;
}

.progress_bar {
  max-width: 820px;
  width: 80%;
  margin: 50px auto 0;
  position: relative;
  height: 50px;
  z-index: 10;
}

.progress_bar hr.all_steps {
  width: 80%;
  height: 7px;
  border: none;
  background: #DDDDDD;
  border-bottom: 1px solid #fff;
  position: absolute;
  bottom: 0px;
  left: 10%;
  z-index: 1;
}

.progress_bar hr.current_steps {
  width: 0%;
  border: 0;
  height: 5px;
  background: rgba(40, 225, 253, 1);
  position: absolute;
  bottom: 2px;
  left: 10%;
  z-index: 3;
}

.progress_bar div.step {
  float: left;
  width: 20%;
  height: 50px;
  text-align: center;
  font-size: 12px;
  color: #ccc;
  position: relative;
  text-shadow: 1px 1px #fff;
  -webkit-transition: all 0.3s ease-in;
  -moz-transition: all 0.3s ease-in;
  -ms-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}

.progress_bar div.step:before {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 20px;
  border: 2px solid transparent;
  background: #4B8EF1;
  bottom: 14px;
  left: 50%;
  margin-left: -6px;
  content: '';
  z-index: 4;
  display: none;
}

.progress_bar div.step:after {
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 20px;
  border: 2px solid #DDDDDD;
  background: #DDDDDD;
  bottom: 12px;
  left: 50%;
  margin-left: -8px;
  content: '';
  z-index: 2;
}

.progress_bar div.step.current {
  color: #222;
}

.progress_bar div.step.current:before {
  display: block;
}

.progress_bar div.step.complete {
  color: #888;
  cursor: pointer;
}

.progress_bar div.step.complete:before {
  display: block;
}

.progress_bar div.step.complete:hover {
  color: #555;
}

#blocks {
  width: 100%;
  position: relative;
  height: 200px;
}

#blocks .block {
  position: absolute;
  width: 100%;
  left: 100%;
  height: 200px;
}

#blocks .block .wrap {
  width: 80%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

#blocks .block .wrap img {
  width: 250px;
  height: 250px;
  background-size: auto;
  border-radius: 15px;
}

/* CSS BUTTON By https://codepen.io/daneden/pen/rcFJE*/
.butt {
  /* Additions */
  cursor: pointer;
  margin-right: 5px;
  /* End Additions */
  font-size: .825em;
  text-decoration: none;
  font-weight: 700;
  padding: .35em 1em;
  background: rgb(19, 175, 240);
  background: linear-gradient(105deg, rgba(91, 104, 235, 1) 0%, rgba(40, 225, 253, 1) 100%);
  border-radius: 3px;
  color: rgba(255, 255, 255);
  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.7);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.2), 0 1px 2px rgba(0, 0, 0, 0.2), inset 0 1px 2px rgba(255, 255, 255, 0.7);
}

.butt:hover, .butt.hover {
  background-color: #fff;
}

.butt:active, .butt.active {
  background-color: #d0d3d6;
  background-image: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0));
  box-shadow: inset 0 0 2px rgba(0, 0, 0, 0.2), inset 0 2px 5px rgba(0, 0, 0, 0.2), 0 1px rgba(255, 255, 255, 0.2);
}

/* How solo ads works ends here */


@media (max-width: 1200px) {
  .facts-animation .toggle {
    margin-left: 6%;
  }

  .facts-animation .list {
    margin-left: 0;
  }

  .facts-animation .list dt, .list dd {
    width: 20vw;
  }
}

@media (max-width: 992px) {
  .email-Verification {
    margin: auto;
  }

  .facts-animation .toggle {
    margin-left: 4%;
  }
}

@media (max-width: 767px) {
  .facts-animation .list dt, .list dd {
    width: 21vw;
  }

  .facts-animation .toggle {
    margin-left: -6%;
  }

  /* .fact-container {
    margin-left: -33px;
    width: 90%;
  } */

  .pricing-tables .section-heading p {
    margin-left: 5%;
    margin-right: 5%;
  }

  .copyright-text {
    height: 250px;
  }

  .the-clients .section-heading p {
    margin-left: 5%;
    margin-right: 5%;
  }
}

/* Pricing calculator CSS  */
.first-container {
  width: 100%;
  text-align: center;
  margin: 2rem auto;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.first-container h2 {
  text-align: center;
  color: #3B5998;
}

.first-container .first-form-group {
  margin-bottom: 20px;
}

#first-types {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0px auto;
}

#first-types div {
  padding: 0.75rem;
}

.first-container label {
  display: block;
  font-weight: bold;
  margin-bottom: 5px;
}

.first-container select, input[type="text"] {
  width: 100%;
  padding: 8px;
  border: 1px solid #DDDDDD;
  border-radius: 4px;
  box-sizing: border-box;
}

.first-container input[type="radio"] {
  margin-right: 10px;
}

.first-container button {
  background: linear-gradient(105deg, rgba(91, 104, 235, 1) 0%, rgba(40, 225, 253, 1) 100%);
  color: #FFFFFF;
  border: none;
  padding: 10px 20px;
  border-radius: 4px;
  cursor: pointer;
}

button:hover {
  background-color: #0D6EFD;
}

.first-container .first-warning-message {
  color: red;
  font-weight: bold;
}

#first-netTotal {
  font-size: 1.5em;
  font-weight: bold;
}

#first-net {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: auto 5%;
}

#first-coupon {
  display: flex;
  align-items: center;
}

#first-couponCode {
  border-radius: 8px 0px 0px 8px;
}

#first-coupon button {
  border-radius: 0px 8px 8px 0px;
}

/* Second package pricing calcultor */

.second-container {
  width: 100%;
  text-align: center;
  margin: 2rem auto;
  background-color: #FFFFFF;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.second-container h4 {
  text-align: center;
  color: #3B5998;
}

.second-container .second-form-group {
  margin-bottom: 20px;
}

#second-types {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0px auto;
}

#second-types div {
  padding: 0.75rem;
}

.second-container label {
  display: block;
  font-weight: bold;
  margin-bottom: 5px;
}

.second-container select, input[type="text"] {
  width: 100%;
  padding: 8px;
  border: 1px solid #DDDDDD;
  border-radius: 4px;
  box-sizing: border-box;
}

.second-container input[type="radio"] {
  margin-right: 10px;
}

.second-container button {
  background: linear-gradient(105deg, rgba(91, 104, 235, 1) 0%, rgba(40, 225, 253, 1) 100%);
  color: #FFFFFF;
  border: none;
  padding: 10px 20px;
  border-radius: 4px;
  cursor: pointer;
}

button:hover {
  background-color: #0D6EFD;
}

.second-container .second-warning-message {
  color: red;
  font-weight: bold;
}

#second-netTotal {
  font-size: 1.5em;
  font-weight: bold;
}

#second-net {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: auto 5%;
}

#second-coupon {
  display: flex;
  align-items: center;
}

#second-couponCode {
  border-radius: 8px 0px 0px 8px;
}

#second-coupon button {
  border-radius: 0px 8px 8px 0px;
}

.third-container {
  width: 100%;
  text-align: center;
  margin: 50px auto;
  background-color: #FFFFFF;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.third-container h2 {
  text-align: center;
  color: #3B5998;
}

.third-container .third-form-group {
  margin-bottom: 20px;
}

#third-types {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0px auto;
}

#third-types div {
  padding: 0.75rem;
}

.third-container label {
  display: block;
  font-weight: bold;
  margin-bottom: 5px;
}

.third-container select, input[type="text"] {
  width: 100%;
  padding: 8px;
  border: 1px solid #DDDDDD;
  border-radius: 4px;
  box-sizing: border-box;
}

.third-container input[type="radio"] {
  margin-right: 10px;
}

.third-container button {
  background: linear-gradient(105deg, rgba(91, 104, 235, 1) 0%, rgba(40, 225, 253, 1) 100%);
  color: #FFFFFF;
  border: none;
  padding: 10px 20px;
  border-radius: 4px;
  cursor: pointer;
}

.third-container button:hover {
  background: #0D6EFD;
}

.third-container .third-warning-message {
  color: red;
  font-weight: bold;
}

#third-netTotal {
  font-size: 1.5em;
  font-weight: bold;
}

#third-net {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: auto 5%;
}

#third-coupon {
  display: flex;
  align-items: center;
}

#third-couponCode {
  border-radius: 8px 0px 0px 8px;
}

#third-coupon button {
  border-radius: 0px 8px 8px 0px;
}

/* what it includes first section start here */
.first-card {
  border: 1px solid #DDDDDD;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
  margin-bottom: 2rem;
}

.first-card-header {
  background-color: #4B8EF1;
  color: #FFFFFF;
  padding: 15px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.first-card-header i {
  margin: auto 10px;
}

.first-card-body {
  background-color: #FFFFFF;
  padding: 0;
  display: none;
}

.first-feature-icon {
  color: #28E1FD;
  margin-right: 10px;
}

.list-group-item {
  border: none;
  padding: 10px 20px;
  border-bottom: 1px dashed #DDDDDD;
}

.first-toggle-icon {
  transition: transform 0.3s ease;
}

.first-card-header.collapsed .first-toggle-icon {
  transform: rotate(180deg);
}

/* What it includes in second pricing section starts here  */
.second-card {
  border: 1px solid #DDDDDD;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.second-card-header {
  background-color: #4B8EF1;
  color: #FFFFFF;
  padding: 15px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.second-card-header i {
  margin: auto 10px;
}

.second-card-body {
  background-color: #FFFFFF;
  padding: 0;
  display: none;
}

.second-feature-icon {
  color: #28E1FD;
  margin-right: 10px;
}

.list-group-item {
  border: none;
  padding: 10px 20px;
  border-bottom: 1px dashed #DDDDDD;
}

.second-toggle-icon {
  transition: transform 0.3s ease;
}

.second-card-header.collapsed .second-toggle-icon {
  transform: rotate(180deg);
}

/* What it includes section third */
.third-card {
  border: 1px solid #DDDDDD;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.third-card-header {
  background-color: #4B8EF1;
  color: #FFFFFF;
  padding: 15px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.third-card-header i {
  margin: auto 10px;
}

.third-card-body {
  background-color: #FFFFFF;
  padding: 0;
  display: none;
}

.third-feature-icon {
  color: #28E1FD;
  margin-right: 10px;
}

.list-group-item {
  border: none;
  padding: 10px 20px;
  border-bottom: 1px dashed #DDDDDD;
}

.third-toggle-icon {
  transition: transform 0.3s ease;
}

.third-card-header.collapsed .third-toggle-icon {
  transform: rotate(180deg);
}

.card-title {
  color: #FFFFFF;
  margin: 0px;
}

#buyplanInfo .first-container {
  box-shadow: inherit;
  text-align: inherit;
  margin: inherit;
}

#buyplanInfo .pricing-item-regular {
  padding: inherit;
  text-align: inherit;
}

.button:hover, a.button:hover, button:hover, [type=submit]:hover, [type=reset]:hover, [type=button]:hover {
  border: none;
  background: linear-gradient(105deg, rgba(91, 104, 235, 1) 0%, rgba(40, 225, 253, 1) 100%);
  color: #ffffff;
  text-decoration: none;
}

#emailtypes {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

#emailtypes .d-flx {
  width: auto;
  display: flex;
  align-items: baseline;
  padding: 0rem 2rem 0rem 0rem;
}

#ifChooseThenShow {
  display: none;
}

.btn {
  border: none;
}

.popupBody form label {
  display: inline-block;
  margin: 0;
  margin-bottom: .5rem;
}

.facts-animation .nigiri {
  left: 23%;
}

/* email section css start here  */

.verified_result .record_msg {
  background: #e3e3e3b8;
  padding: 10px 0px;
}

.verified_result .valid-email-text {
  color: #4b8ef1;
}

.verified_result .checker-details-section {
  padding: 10px 0px;
}

.verified_result .checker-details-section .uppercase-heading {
  font-weight: bold;
  display: block;
  text-transform: capitalize;
  font-size: 14px;
}

.verified_result .checker-details-section .verifyresult-text {
  font-size: 14px;
  color: #b4b4b4;
}
.accordion-button,.accordion-button:hover{
  background: #e3e3e3b8!important;
  border: none!important;
  color: #414548!important;
}
#checkDomainResult{
  width: 100%;
}
.checker-details-list.row .col-12 {
  padding: 8px 16px;
}

#loader {
  width: 18px;
}

/* end of the email css  here  */

#one_time_plan, #daily_plan {
  display: flex;
}

#one_time_plan .plan_wrapper {
  background: #edf8f9;
}

.offer_msg_wrap_plan {
  position: absolute;
  top: 15px;
  left: 0;
  right: 0;
  margin: auto;
  display: inline-block;
}

.offer_msg_wrap_plan .offer_msg_plan {
  display: inline-block;
  padding: 4px 10px;
  font-size: 14px;
  background: #fece01;
  color: #000;
  font-weight: 600;
}

.plan_wrapper .heading32 {
  padding-bottom: 5px;
}

.heading32 {
  font-size: 32px;
  color: #007c8b;
  line-height: 38px;
  font-weight: 700;
}

.green_text {
  color: #007c8b;
}

.plan_wrapper .heading18 {
  color: #f37b2a;
  margin: 20px 0 13px;
}

.weight600, b {
  font-weight: 600;
}

.plan_wrapper .volume_heading {
  background: #007c8b;
  color: #fff;
  height: 42px;
  line-height: 42px;
  margin-top: 25px;
}

#one_time_plan .plan_wrapper .plans_bg {
  background: #f8fcfd;
  border-bottom: 3px solid #007c8b;
}

.plan_wrapper .plans_bg {
  padding: 30px 0 30px;
  position: relative;
}


.plan_wrapper .plans_bg .custom_col_wrap {
  float: left;
  width: 20%;
}

.plan_wrapper .plans_bg .custom_col_wrap .com_col.active_plan {
  background: #007c8b;
  color: #fff;
}

.plan_wrapper .plans_bg .custom_col_wrap .com_col {
  display: inline-block;
  font-weight: 600;
  width: 65px;
  height: 55px;
  background: #fff;
  text-align: center;
  line-height: 55px;
  margin: 15px;
  box-shadow: 0 0 5px 2px rgba(0, 0, 0, .1);
  cursor: pointer;
}

.plan_wrapper .or_block {
  display: inline-block;
  font-size: 14px;
  color: #000000;
  line-height: 18px;
  font-weight: 700;
  position: relative;
  margin: 20px 0 35px;
  text-transform: uppercase;
}

.plan_wrapper .or_block:before {
  position: absolute;
  left: -40px;
  top: 0;
  bottom: 0;
  z-index: 1;
  width: 35px;
  height: 1px;
  content: "";
  border-bottom: 1px solid #000;
  margin: auto;
}

.plan_wrapper .or_block:after {
  position: absolute;
  top: 0;
  bottom: 0;
  right: -40px;
  z-index: 1;
  width: 35px;
  height: 1px;
  content: "";
  border-bottom: 1px solid #000;
  margin: auto;
}

.green_text {
  color: #007c8b;
}

.weight600, b {
  font-weight: 600;
}

.custom_input_box {
  padding-top: 10px;
}

.custom_input_box .form-control {
  height: 42px;
  border-radius: 0;
  box-shadow: 0 0 5px 2px rgba(0, 0, 0, .1);
}

#one_time_talk_to_us, #subscr_talk_to_us {
  font-size: 14px;
  font-weight: 600;
  padding-top: 3px;
}

.none {
  display: none;
}

#one_time_plan .plan_wrapper .plans_bg:after {
  border-color: #007c8b rgba(0, 0, 0, 0) rgba(0, 0, 0, 0) rgba(0, 0, 0, 0);
}

.plan_wrapper .plans_bg:after {
  position: absolute;
  left: 0;
  bottom: -19px;
  right: 0;
  width: 0;
  height: 0;
  content: "";
  margin: auto;
  border-style: solid;
  border-width: 19px 16.5px 0 16.5px;
}

.plan_wrapper .volume_cost {
  padding: 0 15px;
}

.plan_wrapper .total_cost {
  padding-bottom: 15px;
  border-bottom: 1px solid #f37b2a;
  margin: 45px 0 10px;
}

.text22 {
  font-size: 22px;
}

.text30 {
  font-size: 30px;
}

.weight700 {
  font-weight: 700;
}

.text18_block {
  font-size: 18px;
  color: #000000;
  line-height: 24px;
}

.plan_wrapper .orange_btn {
  font-weight: 600;
  padding: 10px 30px 10px;
  margin: 20px 0 0;
  border-radius: 10px;
  margin: 10% auto;
}

.orange_btn {
  display: inline-block;
  color: #ffffff;
  line-height: 24px;
  font-weight: 700;
  background: linear-gradient(105deg, rgba(91, 104, 235, 1) 0%, rgba(40, 225, 253, 1) 100%);
  padding: 13px 15px;
  margin-bottom: 9px;
  transition: all .2s ease-in-out;
  border: none;
}

.disc_link {
  font-size: 13px;
  display: inline-block;
  margin-top: 5px;
  color: #cc0000;
  font-weight: 500;
}

#daily_plan .plan_wrapper {
  background: #edf3f9;
}

.plan_wrapper {
  padding: 45px 0;
}

#daily_plan .plan_wrapper .heading32 {
  color: #00588b;
}

.plan_wrapper .heading32 {
  padding-bottom: 5px;
}

.heading32 {
  font-size: 32px;
  color: #007c8b;
  line-height: 38px;
  font-weight: 700;
}

.blue_text {
  color: #00588b;
}

.plan_wrapper .heading18 {
  color: #f37b2a;
  margin: 20px 0 13px;
}

.heading18 {
  font-size: 18px;
  color: #000000;
  line-height: 24px;
  font-weight: 700;
  margin: 0;
}

#daily_plan .plan_wrapper .volume_heading {
  background: #00588b;
  color: #fff;
}

.plan_wrapper .volume_heading {
  background: #007c8b;
  color: #fff;
  height: 42px;
  line-height: 42px;
  margin-top: 25px;
}

#daily_plan .plan_wrapper .plans_bg {
  background: #f8fafd;
  border-bottom: 3px solid #00588b;
}

.plan_wrapper .plans_bg {
  padding: 30px 0 30px;
  position: relative;

}

.plan_wrapper .plans_bg .min_fix_height {
  margin: auto;
}

.plan_wrapper .plans_bg .min_fix_height .valign_middle {
  top: 0;
  bottom: 0;
  margin: auto;
}

.plan_wrapper .plans_bg .custom_col_wrap {
  float: left;
  width: 20%;
}

#daily_plan .plan_wrapper .plans_bg .com_col.active_plan {
  background: #00588b;
  color: #fff;
}

.plan_wrapper .plans_bg .custom_col_wrap .com_col.active_plan {
  background: #007c8b;
  color: #fff;
}

.plan_wrapper .plans_bg .custom_col_wrap .com_col {
  display: inline-block;
  font-weight: 600;
  width: 65px;
  height: 55px;
  background: #fff;
  text-align: center;
  line-height: 55px;
  margin: 15px;
  box-shadow: 0 0 5px 2px rgba(0, 0, 0, .1);
  cursor: pointer;
}

.plan_wrapper .or_block {
  display: inline-block;
  font-size: 14px;
  color: #000000;
  line-height: 18px;
  font-weight: 700;
  position: relative;
  margin: 20px 0 35px;
  text-transform: uppercase;
}

.plan_wrapper .or_block:before {
  position: absolute;
  left: -40px;
  top: 0;
  bottom: 0;
  z-index: 1;
  width: 35px;
  height: 1px;
  content: "";
  border-bottom: 1px solid #000;
  margin: auto;
}

.plan_wrapper .or_block:after {
  position: absolute;
  top: 0;
  bottom: 0;
  right: -40px;
  z-index: 1;
  width: 35px;
  height: 1px;
  content: "";
  border-bottom: 1px solid #000;
  margin: auto;
}

.blue_text {
  color: #00588b;
}

.weight600, b {
  font-weight: 600;
}

#daily_plan .plan_wrapper .plans_bg:after {
  border-color: #00588b rgba(0, 0, 0, 0) rgba(0, 0, 0, 0) rgba(0, 0, 0, 0);
}

.plan_wrapper .plans_bg:after {
  position: absolute;
  left: 0;
  bottom: -19px;
  right: 0;
  width: 0;
  height: 0;
  content: "";
  margin: auto;
  border-style: solid;
  border-width: 19px 16.5px 0 16.5px;
}

#daily_plan .pricing-item-regular, #one_time_plan .pricing-item-pro {
  padding: 0px;
}

.plan_features {
  font-size: 14px;
  text-align: left;
  margin: 37px 0 20px;
}

.plan_features li {
  margin-bottom: 8px;
  position: relative;
  text-align: left;
  padding-left: 15px;
}

.plan_features li:after {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 6px;
  height: 6px;
  content: "";
  margin: auto;
  background: #007c8b;
  border-radius: 50%;
}

.pricing-hide {
  display: none;
  opacity: 0;
  transform: translateX(-50px);
  position: absolute;
  list-style: none;
  transition: 1s all cubic-bezier(0.075, 0.82, 0.165, 1);
}

.pricing-show {
  display: block;
  transition-delay: 0.3s;
  position: relative;
  z-index: 2;
  opacity: 1;
  transform: translateX(0px);
}


.swiper-container {
  width: 90%;
  max-width: 1000px;
}

.swiper-slide {
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  padding: 20px;
  margin: 8px;
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.video-wrapper {
  position: relative;
  width: 100%;
  cursor: pointer;
}

.testimonial-video {
  width: 100%;
  border-radius: 8px;
  display: block;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: 0.3s;
  z-index: 2;
}

.play-button::before {
  content: '▶';
  font-size: 24px;
  color: white;
  font-weight: bold;
}

.pause-button::before {
  content: '❚❚';
  font-size: 22px;
  color: white;
}

.client-info {
  display: flex;
  margin-top: 15px;
  gap: 15px;
}

.client-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #ddd;
}

.client-text {
  text-align: left;
  width: 80%;
}

.client-name {
  font-size: 15px;
  font-weight: bold;
  margin: 0;
  line-height: 1.4em;
  color: #000;
}

.client-review {
  font-size: 15px;
  line-height: 1.4em;
  color: #000;
  margin-top: 5px;
}
#verificationAccordion .accordion-body{
  max-height: 150px; overflow: auto;
}