/*-----------------------------------------------------------------------
  Fonts
-----------------------------------------------------------------------*/

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');

/*-----------------------------------------------------------------------
  Variables
-----------------------------------------------------------------------*/


:root {
    --font-primary:  "Outfit", sans-serif;
    --white: #ffffff;
    --black: #000000;
    --gray-color: #5A5A5A;
    --navy-Deep: #041C42;
    --teal-shade: #189B9B;
    --navy-blue: #2B38C8;
    --green-color: #88B13A;
    --orange-color: #E86003;
    --cool-gray: #CFD5DF;
    --wc-form-border-color: #cfd5df !important;
    --transition: 0.25s ease all;
  }
  .admin-bar header {
    margin-top: 32px;
  }
  .contact-form-to-any-api .block-setting-padding {
    padding-top: var(--block-padding-top) !important;
    padding-bottom: var(--block-padding-bottom) !important;
  }

  .contact-form-to-any-api .black{
    color: var(--black);
  }

  .contact-form-to-any-api .white{
    color: var(--white);
  }

  .contact-form-to-any-api .black-bg{
    background-color: var(--black);
  }

  .contact-form-to-any-api .navy-deep{
    background-color: var(--navy-Deep);
  }
  button, a {
    cursor: pointer;
}

  

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

html{
    scroll-behavior: smooth;
} 

body.contact-form-to-any-api, .editor-styles-wrapper {
    background-color: var(--white);
    color: var(--gray-color);
    font-family:  var(--font-primary);
    font-size: 18px;
    line-height: 26px;
    margin: 0;
}


/* heading css */

.contact-form-to-any-api h1,.contact-form-to-any-api h2,.contact-form-to-any-api h3,.contact-form-to-any-api h4,.contact-form-to-any-api h5,.contact-form-to-any-api h6{
 color: var(--navy-Deep);
 font-weight: 400;
}
.contact-form-to-any-api h1 strong,
.contact-form-to-any-api h2 strong,
.contact-form-to-any-api h3 strong,
.contact-form-to-any-api h4 strong,
.contact-form-to-any-api h5 strong,
.contact-form-to-any-api h6 strong
{
    font-weight: 600;
}
.contact-form-to-any-api h1:not(:last-child),
.contact-form-to-any-api h2:not(:last-child),
.contact-form-to-any-api h3:not(:last-child),
.contact-form-to-any-api h4:not(:last-child),
.contact-form-to-any-api h5:not(:last-child),
.contact-form-to-any-api h6:not(:last-child),
.contact-form-to-any-api ul:not(:last-child),
.contact-form-to-any-api ol:not(:last-child),
.contact-form-to-any-api p:not(:last-child),
.contact-form-to-any-api img:not(:last-child),
.contact-form-to-any-api table:not(:last-child),
.contact-form-to-any-api code:not(:last-child),
.contact-form-to-any-api blockquote:not(:last-child) {
    margin: 0 0 20px;
}

.contact-form-to-any-api h1{
    font-size: 72px;
    line-height: 91px;
    letter-spacing: 0.01em;
    margin: 0;
}
.contact-form-to-any-api h2{
    font-size: 62px;
    line-height: 78px;
    letter-spacing: 0.01em;
}

.contact-form-to-any-api h2 strong{
    font-weight: 600;
}

.contact-form-to-any-api h3{
    font-size: 55px;
    line-height: 69px;
    letter-spacing: -0.03em;
}
.contact-form-to-any-api h4{
    font-size: 32px;
    line-height: 48px;
    letter-spacing: 0.02em; 
}
.contact-form-to-any-api h5{
    font-size: 22px;
    line-height: 28px;
    letter-spacing: 0.01em; 
}
.contact-form-to-any-api h6{
    font-size: 16px;
    line-height: 22px;
    letter-spacing: 0.01em; 
}

/*.contact-form-to-any-api p{
  font-size: 18px;
  /* line-height: 23px; */
  /* letter-spacing: 0.01em; */
  /* color: var(--gray-color); */
  /*font-weight: 400;
}*/

.contact-form-to-any-api .container{
    max-width: 1260px;
    padding: 0px 20px;
    margin: auto;
}


.contact-form-to-any-api ul,.contact-form-to-any-api ol {
  display: inline-block;
  width: 100%;
}

.contact-form-to-any-api  a {
  color: var(--black);
  text-underline-offset: 3px !important;
  text-decoration-thickness: 0.5px !important;
  transition: 0.3s;
}

.contact-form-to-any-api img {
    max-width:100%;
    height: auto;
    display: block;
    
}
/* Flex Layout */

.contact-form-to-any-api .flex-layout,
.contact-form-to-any-api .flex-align-start,
.contact-form-to-any-api .flex-align-center,
.contact-form-to-any-api .flex-align-end,
.contact-form-to-any-api .flex-justify-start,
.contact-form-to-any-api .flex-justify-center,
.contact-form-to-any-api .flex-justify-end,
.contact-form-to-any-api .flex-justify-between {
  display: flex;
  flex-wrap: wrap;
}

.contact-form-to-any-api .flex-align-start {
  align-items: flex-start;
}

.contact-form-to-any-api .flex-align-center {
  align-items: center;
}

.contact-form-to-any-api .flex-align-end {
  align-items: flex-end;
}

.contact-form-to-any-api .flex-justify-start {
  justify-content: flex-start;
}

.contact-form-to-any-api .flex-justify-center {
  justify-content: center;
}

.contact-form-to-any-api .flex-justify-end {
  justify-content: flex-end;
}

.contact-form-to-any-api .flex-justify-between {
  justify-content: space-between;
}

.contact-form-to-any-api .flex-row-reverse {
  flex-direction: row-reverse;
}

.contact-form-to-any-api .flex-column-reverse {
  flex-direction: column-reverse;
}

.contact-form-to-any-api .flex-nowrap {
  flex-wrap: nowrap;
}

.contact-form-to-any-api .flex-gap {
  gap: 15px;
}

.contact-form-to-any-api .section-padding{
    padding: 65px 0px;
}

/* Alignment */

.contact-form-to-any-api .text-left {
  text-align: left;
}
  
.contact-form-to-any-api .text-center {
  text-align: center;
}
  
.contact-form-to-any-api .text-right {
  text-align: right;
}

/* button css */
.woocommerce button.woocommerce-Button.button, .woocommerce [type="submit"].woocommerce-button,
.contact-form-to-any-api .button, .contact-form-to-any-api .primary-btn, .contact-form-to-any-api  button {
    background-color: var(--teal-shade);
    padding: 14px 22px;
    color: var(--white);
    font-size: 18px; line-height: 23px;
    letter-spacing: 0.05em; 
    font-weight: 600;
    text-decoration: none;
    border-radius: 5px;
    text-transform: capitalize;
    position: relative;
    overflow: hidden;
}

.contact-form-to-any-api .button span,.contact-form-to-any-api .primary-btn span,.contact-form-to-any-api button span{
  position: relative;
  z-index: 1;
}


.contact-form-to-any-api .primary-btn:before {
  background: var( --navy-Deep);
  position: absolute;
  left: 0;
  width: 0;
  height: 100%;
  content: "";
  top: 0;
  transition: 0.3s;
  border-radius: 5px;
}

.contact-form-to-any-api .primary-btn:hover:before {
  width: 100%;
}

.contact-form-to-any-api .primary-btn:hover span {
  color: var(--white);
}

.contact-form-to-any-api .header-spacer {
  height: 100px;
}

.site-header {
  filter: drop-shadow(0px 4px 40px rgba(0, 0, 0, 0.06));
  background-color: var(--white);
  padding: 16px 0px;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 99;
  transition: 0.3s;
}

header.site-header.fixed-header{
  padding: 8px 0px;
}

.contact-form-to-any-api header.site-header.fixed-header .header-spacer{
  height: 84px;
}

.contact-form-to-any-api .site-header .header-left {
    width: 30%;
}
.contact-form-to-any-api .site-header .header-right {
    width: 70%;
}
.contact-form-to-any-api .site-header .logo {
    max-width: 235px;
    display: block;
    max-height: 230px;
}

.contact-form-to-any-api .site-header .header-menu ul {
    display: flex;
    line-height: normal;
    margin: 0;
}

.contact-form-to-any-api .site-header .header-menu ul li {
    list-style: none;
    margin-left: 50px;
    padding-left: 0;
}

.contact-form-to-any-api .site-header .header-menu ul li a {
    text-decoration: none;
    font-size: 16px;
    line-height: 20px;
    letter-spacing: 0.01em;
    color: #05070D;
    padding: 0px;
    text-transform: capitalize;
    display: inline-block;
    transition: 0.3s;
}

.contact-form-to-any-api .site-header .header-menu ul li.current-menu-item a,
.contact-form-to-any-api .site-header .header-menu ul li a:hover{
  color: var(--teal-shade);
}



.contact-form-to-any-api .site-header .header-right .button-group {
    margin-left: 50px;
}


.contact-form-to-any-api .header-banner.add_animation {
    padding: 80px 0px 125px;
    background-image: url(../img/banner-bg.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.contact-form-to-any-api .header-banner .hero-content {
    max-width: 1045px;
    margin: auto;
    text-align: center;
}
.contact-form-to-any-api .header-banner .scroll-down {
    margin: 80px auto 0px;

    display: flex;
    max-width: max-content;
    flex-direction: row-reverse;
    justify-content: center;
    align-items: center;
    animation: scrollDown 1.5s infinite ease-in-out;
}

@keyframes scrollDown {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(10px);
  }
}

.contact-form-to-any-api .header-banner .scroll-down p {
    margin: 0px;
    color: var(--white);
    margin-left: 10px;
    font-weight: 600;
}

.contact-form-to-any-api .header-banner .scroll-down svg {
    transform: rotate(90deg);
}
#pricingpoupModal .modal-header button.close-btn { 
      padding: 16px 0 16px 2px !important;
}
.contact-form-to-any-api .brand-title{
  margin-bottom: 50px;
}


.contact-form-to-any-api .brand-title h5 {
    font-size: 24px;
    line-height: 24px;
    position: relative;
    margin-bottom: 0;
}



.contact-form-to-any-api .logo-slider img {
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    width: auto !important;
    margin: 0 auto;
}

.contact-form-to-any-api .slider-block {
  padding: 30px 0;
}

.contact-form-to-any-api .counter .wrapper {
  max-width: 1060px;
  margin: 0 auto;
}

.contact-form-to-any-api .counter  h2{
    font-size: 55px;
    line-height: 69px;
    font-weight: bold;
    color: var( --navy-Deep);
    letter-spacing: -0.03em;
    margin-bottom: 0;
}

.contact-form-to-any-api .counter p{
  font-size: 22px;
  line-height: 28px;
  letter-spacing: -0.03em;
  color: var(--gray-color);
  margin: 0;
}

.contact-form-to-any-api .api_main{
  margin: 0 -20px;
}

.contact-form-to-any-api .api_box {
 padding: 0 20px;
 width: 33.33%;
 flex-grow: 1;
 position: relative;
}


.contact-form-to-any-api .api_box_img {
  background: var(--white);
  border-radius: 20px;
  width: 100%;
  border: 1px solid var(--navy-blue);
  height: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  text-decoration: none;
}

.contact-form-to-any-api .api_box_img h3{
  font-size: 32px;
  font-weight: 700;
  color: var(--black);
  letter-spacing: 0.02em;
  line-height: 48px;
  transition: 0.3s;
}

.contact-form-to-any-api .contact_c_title {
  max-width: 809px;
  width: 100%;
  text-align: center;
  margin: 0 auto;
}

.contact-form-to-any-api .contact_c_form a.button {
  display: flex;
  max-width: max-content;
  justify-content: center;
  margin: 40px auto 0;
}
.contact-form-to-any-api .contact_c_form h2 {
    margin-bottom: 40px;
}
.contact-form-to-any-api .brand_grid {
  gap: 0;
  margin-top: 60px;
  display: flex;
  flex-wrap: wrap;
  margin: 60px -20px 0;
}

.contact-form-to-any-api .brand_box{
  width: 16.66%;
  padding: 0 20px 30px;
}

.contact-form-to-any-api .partner-slider .owl-stage {
  display: flex;
  align-items: center;
}

.contact-form-to-any-api .brand_box figure{
  width: 170px;
  height: 170px;
  background:var(--white);
  border: 1px solid #D4E0ED;
  box-shadow: 0px 4px 40px rgba(0, 0, 0, 0.07);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-form-to-any-api .btn_main {
  margin-top: 0;
}

.contact-form-to-any-api .btn_main .link_btn {
  font-size: 22px;
  color: var(--teal-shade);
  font-weight: 600;
  transition: 0.3s;
}

.contact-form-to-any-api .btn_main button.link_btn {
    font-size: 22px;
    font-family: var(--font-primary);
    color: var(--teal-shade);
    font-weight: 600;
    transition: 0.3s;
    background: transparent;
    border: none;
    text-decoration: underline;
}

.contact-form-to-any-api .btn_main .link_btn:hover{
  color: var(--navy-Deep);
}


.contact-form-to-any-api .brand-modal.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 99;
}

.contact-form-to-any-api .brand-modal .modal-content {
  background: var(--white);
  padding: 60px 40px 40px;
  margin: 0 auto;
  width: 70%;
  text-align: center;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 20px;
  overflow-y: auto;
  max-height: calc(100% - 25px);
  overflow-x: hidden;
}

.contact-form-to-any-api .show-modal {
  display: block !important;
}

.contact-form-to-any-api .brand-modal .close-button {
  cursor: pointer;
  float: right;
  font-size: 33px;
  top: 16px;
  right: 16px;
  position: absolute;
  color: #fff;
  background: var(--teal-shade);
  width: 30px;
  transition: all 0.3s ease-in-out;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-weight: 400;
}

.contact-form-to-any-api .brand-modal .close-button:hover{
    background: var(--navy-Deep);
}


.contact-form-to-any-api .brand-modal .brand_grid{
  margin: 0 -10px;
}

.contact-form-to-any-api .brand-modal .brand_grid .brand_box{
 width: 14.2%;
 padding: 0 10px 20px;
}

.contact-form-to-any-api .brand-modal .brand_grid .brand_box figure{
  width: 100%;
  padding: 30px 20px;
  height: auto;
}

.contact-form-to-any-api .brand-modal .brand_grid .brand_box figure img {
  width: auto;
  height: 54px;
  object-fit: contain;
}

.contact-form-to-any-api .choose_title {
  display: flex;
  justify-content: space-between;
}

.contact-form-to-any-api .choose_title h2 {
  max-width: 509px;
  width: 100%;
  margin-bottom: 0;
}

.contact-form-to-any-api .choose_title p {
  max-width: 511px;
  text-align: left;
  padding-top: 13px;
}

.contact-form-to-any-api .slider_choose{
  overflow: hidden;
}

.contact-form-to-any-api .slider_choose .container {
  max-width: calc(1260px + (100% - 1260px) / 2);
  margin-left: auto;
  margin-right: 0;
  padding-right: 0;
}

.contact-form-to-any-api .slider_choose .owl-stage-outer {
  padding: 80px 0 40px;
  overflow: visible !important;
}

.contact-form-to-any-api .choose_desc {
  padding: 50px 40px 88px;
  box-shadow: 0px 4px 40px rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  position: relative;
  min-height: 400px;
  overflow: hidden;
  border: 1px solid #006DF0;
  width: 100%;
  display: inline-block;
  text-decoration: none;
  height: 100%;
}

.contact-form-to-any-api .choose_icon {
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}

.contact-form-to-any-api .choose_desc h3{
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 20px;
  line-height: 40px;
letter-spacing: 0.01em;
}

.contact-form-to-any-api .choose_desc p{
  margin-bottom: 30px;
}

.contact-form-to-any-api .choose_desc svg{
  fill: var(--white);
  stroke: #006DF0;
}

.contact-form-to-any-api .feture_title {
  text-align: center;
  max-width: 796px;
  margin: 0 auto;
}

.contact-form-to-any-api .feture_title h2{
  margin-bottom: 40px;
}

.contact-form-to-any-api .feature_right ul{
  margin: 0;
  padding: 0;
}

.contact-form-to-any-api .feature_right ul li {
  background: url(../img/list_icon.svg) no-repeat left top 8px;
  padding-left: 30px;
  list-style: none;
  border-bottom: 1px solid rgba(0,0,0,0.1);
  margin-bottom: 20px;
  padding-bottom: 20px;
  font-size: 20px;
  line-height: 32px;
  color: var(--black);
}

.contact-form-to-any-api .features_main {
  margin-top: 60px;
}

.contact-form-to-any-api .feature_left {
  width: 582px;
  padding-right: 44px;
  position: sticky;
  top: 100px;
  align-self: start;
}
.admin-bar .contact-form-to-any-api .feature_left {
    top: 140px;
}

.contact-form-to-any-api .feature_right {
  width: calc(100% - 582px);
  padding-left: 65px;
}

.contact-form-to-any-api .testimonial_box{
  background: var(--white);
  
  border-radius: 25px;
  position: relative;
  
  height: 100%;
  background-size: cover;
  min-height: 481px;
  padding: 30px 8px;
}

.contact-form-to-any-api .client_main{
  display: flex;
  justify-content: space-between;
}

.contact-form-to-any-api .client_left {
  width: 100%;
  position: relative;
  max-width: 516px;
}
.contact-form-to-any-api .client_right{
  width: 100%;
  max-width: 550px;
}


.contact-form-to-any-api .holder {
  position: relative;
  margin-left: 40px;
}
.contact-form-to-any-api .holder:before,.contact-form-to-any-api  .holder:after {
  animation: orbit 5s linear infinite;
  border-radius: 50%;
  box-shadow: none;
  content: "";
  position: absolute;

}
.contact-form-to-any-api .holder:before {
  background: #ffe897;
  background: -moz-linear-gradient(180deg, #5901B1 0%, #FF73B6 100%);
  background:  linear-gradient(180deg, #5901B1 0%, #FF73B6 100%);
  width: 120px;
  height: 120px;
  bottom: 100px;
  left: -40px;
  animation-direction: normal;
  
}
.contact-form-to-any-api .holder:after {
  animation-delay: -2.5s;
  background: #e0e793;
  background: -moz-linear-gradient(180deg, #73D4FF 0%, #0167B1 100%);
  background: linear-gradient(180deg, #73D4FF 0%, #0167B1 100%);
  background: -webkit-linear-gradient(180deg, #73D4FF 0%, #0167B1 100%);
  right: -39px;
  top: -47px;
  z-index: -1;
  width: 180px;
  height: 180px;
  animation-direction: reverse; /* Counterclockwise */
  animation-delay: -2.5s;
}

.contact-form-to-any-api .card {
  border: 3px solid var(--white);
  border-radius: 25px;
  box-shadow: none;
  font-size: 2rem;
  height: 100%;
  overflow: hidden;
  position: relative;
  width: 100%;
}
.contact-form-to-any-api .card:before {
  background: url(../img/texure.png) no-repeat center;
  content: "";
  height: 100%;
  position: absolute;
  width: 100%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.4) 0.55%, rgba(255, 255, 255, 0) 100%);
  -webkit-backdrop-filter: blur(21px); 
   backdrop-filter: blur(21px);
}

.contact-form-to-any-api .card_main{
  position: relative;
  z-index: 1;
  padding: 30px 50px 50px 50px;
}

@keyframes orbit {
  from {
    transform: rotate(0deg) translateX(30px) rotate(0deg);
  }
  to {
    transform: rotate(360deg) translateX(30px) rotate(-360deg);
  }
}


.contact-form-to-any-api .client_bottom {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding-right: 10px;
}

.contact-form-to-any-api .client_bottom .client_b_left img {
  object-fit: cover;
  border-radius: 50%;
  width: 78px;
  height: 78px;
}

.contact-form-to-any-api .card_main span.icon {
  margin-bottom: 50px;
  display: block;
}

.contact-form-to-any-api .client_b_right {
  max-width: max-content;
  padding-left: 20px;
}

.contact-form-to-any-api .client_b_right .name{
  font-size: 20px;
  font-weight: 600;
  color: var(--black);
}

.contact-form-to-any-api .position{
  font-size: 18px;
  font-weight: 400;
  color:var(--black);
  display: block;
}

.contact-form-to-any-api .testimonial-desc p{
  line-height: 26px;
  color: var(--black);
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.01em;
}

.contact-form-to-any-api .client_right h2{
  text-align: right;
}

.contact-form-to-any-api .feature_desc {
  background: var(--white);
  border: 1px solid #D4E0ED;
  box-shadow: 0px 4px 40px rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.contact-form-to-any-api .feature_desc .tringle_shape {
  position: absolute;
  left: 0;
  width: 525px;
  height: 525px;
  background-size: contain;
  
  
}

.contact-form-to-any-api .feature_desc .tringle_shape svg .animated-shape-02 {
  fill: rgba(24, 155, 155, 0.9);
}
.contact-form-to-any-api .feature_desc .tringle_shape svg .animated-shape-01{
  fill: var( --navy-Deep);
  position: relative;
  z-index: 1;
}

.contact-form-to-any-api .feature_desc img{
  position: relative;
  z-index: 1;
}

.contact-form-to-any-api .slider_choose .owl-nav {
  position: absolute;
  top: 2px;
  right: 0;
  max-width: 1257px;
  width: auto;
  gap: 15px;
  display: flex;
  transform: translateX(5%);
  padding-right: calc((100vw - 1218px) / 2);
  margin-right: 20px;
}

.contact-form-to-any-api .slider_choose  button.owl-prev, .contact-form-to-any-api .slider_choose button.owl-next {
  width: 40px;
  height: 40px;
  border: 1px solid #CDCDCD !important;
  border-radius: 50%;
  transition: 0.3s;
}

.contact-form-to-any-api .slider_choose  button.owl-prev{
  background: var(--white) url(../img/left_c_btn.svg) no-repeat center !important

}

.contact-form-to-any-api .slider_choose button.owl-next {
  background: var(--white) url(../img/right_c_btn.svg) no-repeat center !important
}

.contact-form-to-any-api .slider_choose  button.owl-prev:hover{
  background: var( --navy-Deep) url(../img/left_c_btn.svg) no-repeat center !important

}

.contact-form-to-any-api .slider_choose button.owl-next:hover{
  background: var( --navy-Deep) url(../img/right_c_btn.svg) no-repeat center !important
}

.contact-form-to-any-api .slider_choose  button.owl-prev span, .contact-form-to-any-api .slider_choose button.owl-next span{
  display: none;
}


.contact-form-to-any-api .owl-nav {
  display: none;
}

.contact-form-to-any-api .button-container {
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-form-to-any-api .button-container .owl-dots {
  display: flex;
  align-items: center;
  margin: 0 30px;
}

.contact-form-to-any-api .button-container .owl-dots button.owl-dot {
  background: #DCDCDC;
  width: 10px;
  height: 10px;
  display: inline-block;
  margin: 0 7px;
  padding: 0;
  border: 0;
}

.contact-form-to-any-api .button-container .owl-dots button.owl-dot.active
{
  background: var(--teal-shade) !important;
  width: 10px;
  height: 10px;
  display: block !important;
}


.contact-form-to-any-api .button-container .owl-dots button.owl-dot.previous {
    display: block !important;
}

.contact-form-to-any-api .button-container .owl-dots button.owl-dot.next {
    display: block !important;
}

.contact-form-to-any-api .button-container .owl-dots button.owl-dot {
    display: none;
}


.contact-form-to-any-api .button-container button.prevBtn.owl-prev {
  background: transparent url(../img/left_t_btn.svg) no-repeat center !important;
  border: 0;
  font-size: 0;
  transition: 0.3s;
  cursor: pointer;
}

.contact-form-to-any-api .button-container button.nextBtn.owl-next{
  background: transparent url(../img/right_t_btn.svg) no-repeat center !important;
  border: 0;
  font-size: 0;
  transition: 0.3s;
  cursor: pointer;
}

.contact-form-to-any-api .button-container button.prevBtn.owl-prev:hover{
 background: transparent url(../img/left_t_btn_hover.svg) no-repeat center !important;
}

.contact-form-to-any-api .button-container button.nextBtn.owl-next:hover{
  background: transparent url(../img/right_t_btn_hover.svg) no-repeat center !important;
}

.contact-form-to-any-api .video_main{
  position: relative;
  height: 500px;
}

.contact-form-to-any-api .video_main iframe {
  height: 100% !important;
  border-radius: 25px;
}

.contact-form-to-any-api .video_main::before {
  content: "";
  position: absolute;
  top: -24px;
  left: -42px;
  width: 1px;
  height: calc(100% + 42px);
  background: rgba(0, 0, 0, 0.1);
  background-size: cover;
}

.contact-form-to-any-api .price_section h2 {
  text-align: center;
  margin-bottom: 60px;
}

.contact-form-to-any-api .price_box{
  width: 33.33%;
  padding: 0 15px;
  flex-grow: 1;  
}

.contact-form-to-any-api .price_desc {
  border: 1px solid #EFF0F7;
  box-shadow: 0px 2px 12px rgba(20, 20, 43, 0.08);
  border-radius: 24px;
  padding: 60px 42px 30px;
  width: 100%;
  height: 100%;
  position: relative;
}
.contact-form-to-any-api .price_main .price_desc .badges {
    padding: 10px 16px;
    background-color: var(--white);
    border-radius: 30px;
    position: absolute;
    top: 20px;
    right: 20px;
    line-height: normal;
}

.contact-form-to-any-api .price_main .price_desc .badges span {
    font-size: 14px;
    line-height: 14px;
    text-transform: capitalize;
    color: #041C42;
    font-weight: 600;
    display: block;
}
.contact-form-to-any-api .price_main {
  margin: 0 -15px;
}

.contact-form-to-any-api .price_top {
  display: flex;
  align-items: center;
}

.contact-form-to-any-api .price_top span.price-title {
  font-size: 30px;
  line-height: 35px;
  font-weight: 700;
  color: var( --navy-Deep);

}

.title-main span.website-title {
    display: block;
    font-size: 20px;
    color: #041C42;
    font-weight: 500;
    margin-top: 5px;
}

.contact-form-to-any-api .price_box:nth-child(2) .price_desc span.website-title{
  color: #fff;
}


.price_box .title-main {
    width: calc(100% - 72px);
    padding-left: 18px;
}

.contact-form-to-any-api .price_top img {
  margin-bottom: 0;
}

.contact-form-to-any-api .price_middle{
  margin: 40px 0 20px;
}

.contact-form-to-any-api .price_desc h3 {
  font-size: 52px;
  line-height: 66px;
  font-weight: 700;
  
}

.contact-form-to-any-api .price_bottom {
  display: inline-block;
  padding-bottom: 70px;
}


.contact-form-to-any-api .price_box:nth-child(2) .price_desc {
  background: var(--teal-shade);;
}
.contact-form-to-any-api .price_box:nth-child(2) .price_desc .price {
    color: var(--white);
}
.contact-form-to-any-api .price_box:nth-child(2) .price_desc h3 {
  color: var(--white);
}

.contact-form-to-any-api .price_box:nth-child(2) .price_desc span.price-title {
  color: var(--white);
}

.contact-form-to-any-api .price_box:nth-child(2) h4 {
  color: var(--white);
  margin-bottom: 20px;
}

.contact-form-to-any-api .price_bottom ul {
  margin: 0;
  padding: 0;
  display: block;
}

.contact-form-to-any-api .price_bottom ul li {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
  color: var(--black);
  font-size: 18px;
  font-weight: 500;
  background: url(../img/check_icon.svg) no-repeat left top;
  padding-left: 39px;
}

.contact-form-to-any-api .price_desc h4 {
  margin-bottom: 20px;
  font-size: 20px;
  line-height: 20px;
  font-weight: bold;
  color: var( --navy-Deep);
}

.contact-form-to-any-api .price_desc a.button {
  width: calc(100% - 100px);
  text-align: center;
  height: 60px;
  border-radius: 96px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  bottom: 30px;
  left: 50px;
  right: 50px;
  font-size: 20px;
  font-weight: 600;
  font-family:  var(--font-primary);
}

.contact-form-to-any-api .price_box:nth-child(2) li {
  color: var(--white);
  background: url(../img/check_w_icon.svg) no-repeat left top;
}

.contact-form-to-any-api .price_box:nth-child(2) a.button {
  background: var(--white);
  color: var(--teal-shade);
}

.contact-form-to-any-api .price_desc span.price {
  color: var( --navy-Deep);
  font-weight: bold;
  font-size: 28px;
  line-height: 50px;
  text-decoration-line: line-through;
}

.contact-form-to-any-api .faq_section h2{
  text-align: center;
  margin-bottom: 45px;
}

.contact-form-to-any-api .faq_section .faq-container{
  margin: 0 -10px;
}

/*.faq_section .faq-column{
  width: 50%;
  padding: 0 10px;
}*/

.contact-form-to-any-api .faq_section .faq-column {
  width: 50%;
  padding: 0 10px;
  /* display: flex; */
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.contact-form-to-any-api .faq-item .faq-question {
  font-size: 22px;
  line-height: 28px;
  color: var( --navy-Deep);
  font-weight: 600;
  position: relative;
  background: url(../img/accordian_list.svg) no-repeat left top 6px;
  padding: 0 24px 0 30px;
  cursor: pointer;
}

.contact-form-to-any-api .faq-item .faq-question:after{
  background: url(../img/accordian_plus.svg) no-repeat right top 5px;
  position: absolute;
  right: 0;
  top: 0;
  width: 18px;
  height: 33px;
  content: "";
  transition: 0.3s;
}

.contact-form-to-any-api .faq-item.active .faq-question:after{
  transform: rotate(45deg);
}


.contact-form-to-any-api .faq-item {
    background: #F0F3F8;
    padding: 30px;
    margin-bottom: 20px;
    border-radius: 16px;
    width: 100%;
}

.contact-form-to-any-api .faq-container {
  margin: 0 -10px;
}

.contact-form-to-any-api .faq-answer {

  padding-left: 30px;
  padding-top: 15px;
}

.contact-form-to-any-api .faq-answer p {
  color: var(--black);
}

.contact-form-to-any-api .faq-answer p a {
  color: var(--teal-shade);
  word-break: break-all;
}

.contact-form-to-any-api .faq-answer p a:hover{
    color: var(--navy-Deep);
}

.contact-form-to-any-api .thanks_main {
  background: var(--teal-shade);;
  padding: 80px 0;
  text-align: center;
  border-radius: 25px;
  position: relative;
}

.contact-form-to-any-api .thanks_main:before{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: url(../img/texure.png) no-repeat center;
}

.contact-form-to-any-api .thanks_main .thanks_desc {
  max-width: 838px;
  margin: 0 auto;
      z-index: 1;
    position: relative;
}

.contact-form-to-any-api .thanks_main .thanks_desc span.icon {
  margin-bottom: 20px;
  display: block;
}

.contact-form-to-any-api .thanks_main .thanks_desc span.icon img {
    margin: 0 auto;
    display: block;
}

.contact-form-to-any-api .thanks_main .thanks_desc h2 {
  color: var(--white);
}

.contact-form-to-any-api .thanks_main .thanks_desc p {
  color: var(--white);
}

.contact-form-to-any-api .thanks_main .primary-btn {
  background: var(--white);
  color: var(--navy-Deep);
  display: block;
  max-width: max-content;
  margin: 20px auto 0;
}

.contact-form-to-any-api footer{
  padding: 130px 0 30px;
}

.contact-form-to-any-api footer ul{
  margin: 40px 0 0 0;
  padding: 0;
}

.contact-form-to-any-api footer ul li{
  list-style: none;
  padding: 0 10px 0 0;
}

.contact-form-to-any-api footer .footer_left ul li a{
  width: 35px;
  height: 35px;
  background: var(--navy-Deep);
  border-radius: 50%;
  display: flex;  
  justify-content: center;
  align-items: center;
  transition: 0.3s;
}

.contact-form-to-any-api footer .footer_left ul li a img{
  height: 16px;
  object-fit: cover;
  width: auto;
  padding-left: 1px;
}

.contact-form-to-any-api footer .footer_left ul li a:hover{
  background: var(--teal-shade);;
}


.contact-form-to-any-api .api_btn svg{
  position: absolute;
  bottom: -90px;
  left: -17px;
}

.contact-form-to-any-api .api_box:first-child .api_btn svg{
  bottom: -135px;
  left: -30px;
}

.contact-form-to-any-api .price_label {
  position: absolute;
  right: 15px;
  top: 8px;
  z-index: 1;
}

.contact-form-to-any-api .image_block {
  /* padding-bottom: 57px; */
  position: relative;
  z-index: 1;
}

.contact-form-to-any-api .api_box:nth-child(2) .api_btn svg{
  bottom: -135px;
  left: -16px;
}

.contact-form-to-any-api .api_box_img svg{
  transition: 0.3s;
}

.contact-form-to-any-api .api_box_img:hover svg {
  transform: scale(2.6);
}

.contact-form-to-any-api .api_box_img:hover h3{
  color: var(--white);
}


.contact-form-to-any-api .api_box_img:hover .btn_text img{
  transform: translateX(10px);
}

.contact-form-to-any-api .api_box_img img {
  position: relative;
  z-index: 1;
  
}

.contact-form-to-any-api .api_box.green_color .api_box_img {
  border-color: #88b13a;
}
.contact-form-to-any-api .api_box.orange_color a.api_box_img {
  border-color: #e86003;
}

.contact-form-to-any-api .api_btn {
  display: flex;
  font-style: italic;
}

.contact-form-to-any-api .api_btn span.btn_text {
  z-index: 1;
  display: flex;
  align-items: center;
  position: relative;
  right: 95px;
  top: 48px;
  font-style: normal;
  color: var(--white);
  font-weight: 600;
}
.contact-form-to-any-api .api_btn span.btn_text img {
  margin-left: 13px;
  transition: 0.3s;
}

.contact-form-to-any-api .api_box.orange_color a.api_box_img span.btn_text {
  /* top: 48px; */
}

.contact-form-to-any-api .api_box.blue_color .image_block img {
  margin: 0 auto 20px;
}

.contact-form-to-any-api .api_box.blue_color .price_label:before {
  position: absolute;
  top: -129px;
  right: -68px;
  width: 200px;
  height: 200px;
  background: #2B38C8;
  content: "";
  border-radius: 50%;
}

.contact-form-to-any-api .api_box.blue_color span.price {
  position: relative;
  color: var(--white);
  text-align: left;
  font-size: 14px;
  font-weight: 600;
  text-decoration-line: line-through;
  line-height: normal;
}

.contact-form-to-any-api .api_box.blue_color span.price-final {
  position: relative;
  display: block;
  color: var(--white);
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0.05em;
  line-height: 20px;
}

.contact-form-to-any-api .api_box.green_color .price_label {
  background: url(../img/path_green.svg) no-repeat left top;
  width: 89px;
  height: 89px;
  right: 11px;
  top: 15px;
  display: flex;
  align-items: center;
  flex-direction: column;
}

.contact-form-to-any-api .api_box.green_color span.price {
  padding-top: 18px;
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  text-decoration-line: line-through;
}

.contact-form-to-any-api .api_box.green_color span.price-final {
  font-size: 14px;
  font-weight: bold;
  color: var(--white);
  line-height: 17px;
}

.contact-form-to-any-api .api-slider .owl-item:nth-child(4n+1) .item .choose_desc{
  border: 1px solid #006DF0;
}

.contact-form-to-any-api .api-slider .owl-item:nth-child(4n+2) .item .choose_desc{
  border-color: var(--orange-color);
}

.contact-form-to-any-api .api-slider .owl-item:nth-child(4n+3) .item .choose_desc{
  border-color: var(--teal-shade);
}

.contact-form-to-any-api .api-slider .owl-item:nth-child(4n+4) .item .choose_desc{
  border-color: var(--green-color);
}

.contact-form-to-any-api .api-slider .owl-item:nth-child(4n+2) .item .choose_desc svg{
  stroke: var(--orange-color);
}

.contact-form-to-any-api .api-slider .owl-item:nth-child(4n+3) .item .choose_desc svg{
  stroke: var(--teal-shade);
}
.contact-form-to-any-api .api-slider .owl-item:nth-child(4n+4) .item .choose_desc  svg{
  stroke: var(--green-color);
}
.contact-form-to-any-api .api-slider .owl-item .choose_desc:hover .choose_icon svg{
  fill: transparent;
  stroke: var(--white);
}

.contact-form-to-any-api .try_btn svg {
  position: absolute;
  left: -39px;
  bottom: -50px;
  transition: 0.5s;
}

.contact-form-to-any-api .choose_desc:hover .try_btn svg {
  transform: scale(8);
}

.contact-form-to-any-api .choose_text {
  position: relative;
  z-index: 1;
}

.contact-form-to-any-api .choose_desc:hover h3, .choose_desc:hover p {
  color: var(--white);
}

.contact-form-to-any-api .choose_desc:hover .choose_desc svg {
  fill: #006DF0;
    stroke: var(--white) !important;
}

.contact-form-to-any-api .footer_top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.contact-form-to-any-api .footer_left {
  width: 20%;
}

.contact-form-to-any-api .footer_right {
  width: auto;
  display: flex;
  justify-content: space-between;
  width: calc(100% - 20%);
  padding-left: 62px;
}

.contact-form-to-any-api .footer_right span.title {
  display: block;
  margin-bottom: 25px;
  font-size: 22px;
  font-weight: 500;
  color: var(--navy-Deep);
}

.contact-form-to-any-api .footer_right .footer_box:first-child {
  max-width: 637px;
  width: 100%;
  margin-right: 0;
}

.contact-form-to-any-api .footer_right .footer_box ul {
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
  gap: 0px;
}

.contact-form-to-any-api .footer_right .footer_box ul li {
  width: 33.33%;
  padding-bottom: 20px;
}

.contact-form-to-any-api .footer_right .footer_box ul li a {
  font-size: 15px;
  text-decoration: none;
  color: #05070D;
  transition: 0.3s;
}

.contact-form-to-any-api .footer_right .footer_box ul li a:hover{
  color: var(--teal-shade);
}

.contact-form-to-any-api .copy_mnain {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(0,0,0,0.1);
  margin-top: 80px;
  padding-top: 30px;
}

.contact-form-to-any-api .copy_mnain ul {
  display: flex;
  margin: 0;
  width: auto;
  
}

.contact-form-to-any-api .copy_mnain p {
  margin-bottom: 0;
  font-size: 14px;
  color: var(--black);
}

.contact-form-to-any-api .address {
  display: flex;
  margin-bottom: 25px;
  align-items: flex-start;
}

.contact-form-to-any-api .address img {
  margin-bottom: 0;
  position: relative;
  top: 7px;
  width: 20px;
}

.contact-form-to-any-api .phone {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
}

.contact-form-to-any-api .phone img {
  margin-bottom: 0;
  width: 20px;

}

.contact-form-to-any-api .address address {
  font-style: normal;
  padding-left: 12px;
  color: var(--black);
  font-size: 16px;
  max-width: 224px;
}

.contact-form-to-any-api .phone a {
  font-style: normal;
  padding-left: 12px;
  color: var(--black);
  font-size: 16px;
  text-decoration: none;
  transition: 0.3s;
}

.contact-form-to-any-api footer a:hover{
  color: var(--teal-shade);
}

.brand_box img {
    width: 100%;
    max-width: 100px;
}


@media (prefers-reduced-motion:no-preference) {
  :root {
      --d: 0;
      --ani-speed: 100ms;
      --ani2-speed: 150ms;
  }

  .contact-form-to-any-api .add_animation.active [scale-up] {
      opacity: 0;
      animation: scale-up var(--ani-speed) ease-in-out forwards;
      animation-delay: calc(var(--order, 0ms) * var(--ani-speed));
  }

  /* .add_animation.active [add-fade]{opacity:0;animation:scale-up var(--ani-speed) ease-in-out forwards;animation-delay:calc(var(--order,0ms) * var(--ani-speed));} */
  .contact-form-to-any-api .add_animation.active [add-fade] {
      opacity: 0;
      animation: add-fade .5s ease-in-out forwards;
  }

  .contact-form-to-any-api .add_animation.active [slide-top] {
      animation: slide-top 1s ease-in-out forwards;
  }

  .contact-form-to-any-api .add_animation.active [slide-left] {
      animation: slide-left 1s ease-in-out forwards;
  }

  .contact-form-to-any-api .add_animation.active [slide-right] {
      animation: slide-right 1s ease-in-out forwards;
  }
}

@keyframes scale-up {
  0% {
      opacity: 0;
      transform: translateY(20px);
  }

  60% {
      opacity: 0.5;
      transform: translateY(10px);
  }

  100% {
      opacity: 1;
      transform: translateY(0px);
  }
}

@keyframes add-fade {
  0% {
    -webkit-filter: blur(6px);
            filter: blur(6px);
    opacity: 0;
  }
  100% {
    -webkit-filter: blur(0px);
            filter: blur(0px);
    opacity: 1;
  }
}

@keyframes slide-top {
  0% {
      opacity: 0;
      transform: translateY(100px);
  }

  100% {
      opacity: 1;
      transform: translateY(0px);
  }
}

.contact-form-to-any-api .copy_mnain a {
  font-size: 14px;
  text-decoration: none;
  position: relative;
}

.contact-form-to-any-api footer .copy_mnain li {
  padding: 0 15px;
  position: relative;
}

.contact-form-to-any-api footer .copy_mnain li:after {
  width: 4px;
  height: 4px;
  background: var(--teal-shade);;
  content: "";
  border-radius: 50%;
  right: -3px;
  top: 12px;
  position: absolute;
}

.contact-form-to-any-api footer .copy_mnain li:last-child:after {
  display: none;
}

.contact-form-to-any-api .choose_desc .btn_text img {
  width: 18px !important;
  height: 18px;
  display: block;
  margin-left: 10px;
}
.contact-form-to-any-api .slider_choose .api-slider .owl-stage {
    display: flex;
    align-items: stretch;
    padding-left: 0px !important;
}
.contact-form-to-any-api .slider_choose .api-slider .owl-stage .item {
    height: 100%;
}
.contact-form-to-any-api .choose_desc span.btn_text {
    position: absolute;
    display: flex;
    align-items: center;
    left: 26px;
    color: var(--white);
    font-weight: 600;
    bottom: 23px;
}

.contact-form-to-any-api .choose_desc .try_btn {
  text-decoration: none;
}

.contact-form-to-any-api .left-column,
.contact-form-to-any-api .right-column {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.contact-form-to-any-api .right-column iframe {
  flex: 1;
  width: 100%;
  height: 100%;
  border: none;
}

.contact-form-to-any-api .hamburger {
  display: none;
}

.contact-form-to-any-api .close_menu{
  display: none;
}

.contact-form-to-any-api .header-menu .button-group {
  margin-left: 50px;
}

.contact-form-to-any-api .header_main {
  justify-content: space-between;
}

.contact-form-to-any-api header.site-header.fixed-header + .header-spacer {
  height: 84px;
}

.contact-form-to-any-api .trusted-text {
  position: relative;
  top: -12px; /* Move text above the line */
  display: inline-flex;
  align-items: center;
  background-color: white; /* match page background */
  padding: 0 10px;
}

.contact-form-to-any-api .trusted-text .short-line {
  width: 50px;
  height: 2px;
  background-color:  var(--teal-shade);
  margin: 0 20px;
}

.contact-form-to-any-api .trusted-text .text {
  font-size: 16px;
  color: #111;
}

.contact-form-to-any-api .trusted-text strong {
  font-weight: 600;
}


/* plan section css */


.contact-form-to-any-api .plan_section .price_plan_main {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin: 0px -15px;
}

.contact-form-to-any-api .plan_section .plan_box {
    background: var(--white);
    padding: 0px 15px;
    transition: transform 0.3s ease;
    width: 33.33%;
}
.contact-form-to-any-api .plan_section .plan_image img {
    width: 100%;
    aspect-ratio: 3/1.9;
    object-fit: cover;
    border-radius: 20px;
}
.contact-form-to-any-api .plan_section .plan_desc {
    border: 1px solid #EDEFF3;
    box-shadow: 0px 2px 12px rgba(20, 20, 43, 0.08);
    border-radius: 30px;
    padding: 20px;
    height: 100%;
    position: relative;
    padding-bottom: 130px;
}
.contact-form-to-any-api .plan_section .plan_type p {
    font-size: 20px;
    line-height: 35px;
    font-weight: 500;
    text-transform: uppercase;
    margin: 0px;
    color: var(--navy-Deep);
}

.contact-form-to-any-api .plan_section .plan_type {
    margin-top: 40px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    padding: 0px 20px;
}
.contact-form-to-any-api .plan_section .plan_type span.badge {
    border: 1px solid  var(--teal-shade);
    border-radius: 10px;
    background: rgba(24, 155, 155, 0.1);
    padding: 8px 20px;
    margin-left: 20px;
    color: var(--navy-Deep);
    font-size: 14px;
    line-height: 20px;
}
.contact-form-to-any-api .plan_section .plan_websites {
    font-weight: 400;
    font-size: 20px;
    line-height: 20px;
    letter-spacing: 0.05em;
    color: var(--navy-Deep);
    padding: 0px 20px;
}

.contact-form-to-any-api .plan_section .plan_features ul {
    list-style: none;
    padding: 0;
}

.contact-form-to-any-api .plan_section .plan_features li {
    margin: 10px 0;
    padding-left: 36px;
    position: relative;
    color: var(--black);
}

.contact-form-to-any-api .plan_section .plan_features li::before {
    content: "";
    background-image: url('../img/checkmark-icon.svg');
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    left: 0;
    width: 24px;
    height: 24px;
}
.contact-form-to-any-api .plan_section .plan_price span {
     color: var(--navy-Deep);
    font-weight: 500;
    font-size: 62px;
    line-height: 66px;
}

.contact-form-to-any-api .plan_section .plan_price {
    margin-top: 10px;
    margin-bottom: 20px;
    padding: 0px 20px;
    display: inline-block;
}

.contact-form-to-any-api .plan_section .plan_price span.period {
    font-weight: 400;
    font-size: 24px;
    line-height: 20px;
    letter-spacing: 0.05em;
    color: #96A0B1;
}

.contact-form-to-any-api .plan_section .plan_features h4 {
    font-weight: 400;
    font-size: 20px;
    line-height: 20px;
    color: var(--navy-Deep);
    margin: 0px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--cool-gray);
    margin-bottom: 40px;
}

.contact-form-to-any-api .plan_section .plan_features {
  padding-bottom: 40px;
  padding-left: 20px;
  padding-right: 20px;
}

.contact-form-to-any-api .plan_section .get_started {
    position: absolute;
    bottom: 40px;
    left: 40px;
    width: calc(100% - 80px);
    font-weight: 400;
    border-radius: 14px;
    text-align: center;
    font-family: var(--font-primary);
}
.contact-form-to-any-api .transparent_btn{
    border: 1px solid var(--cool-gray);
    background-color: transparent;
    color: #000;
    font-weight: 400;
}
.contact-form-to-any-api .transparent_btn:hover{
  color: var(--white);
}
.contact-form-to-any-api .plan_box.active button.get_started.primary-btn {
    background-color:  var(--teal-shade);
    color: #fff;
    border:1px solid transparent ;
    font-family: var(--font-primary);
}
.contact-form-to-any-api .plan_section .title{
  text-align: center;
  margin-bottom: 60px;
}
.contact-form-to-any-api .plan_section .plan_desc:after {
    content: "";
    position: absolute;
    width: calc(100% - 80px);
    bottom: 128px;
    background-color: var(--cool-gray);
    height: 1px;
    left: 40px;
}

/* plan table css */

.contact-form-to-any-api .price_table table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

.contact-form-to-any-api .price_table th:first-child{
  width: 36%;
}
.contact-form-to-any-api .price_table tr td img {
  margin: auto;
  width: 22px;
}
.contact-form-to-any-api .price_table tr th{
  border-bottom: 0px solid transparent;
  text-align: center;
}
.contact-form-to-any-api .price_table th,.contact-form-to-any-api .price_table td {
  text-align: left;
  padding: 20px 15px;
  border-bottom: 1px solid var(--cool-gray);
  vertical-align: top;
}
.contact-form-to-any-api .price_table th button.primary-btn {
  border-radius: 14px;
  width: 100%;
  margin-top: 32px;
  margin-bottom:20px;
  font-family: var(--font-primary);
}

.contact-form-to-any-api .price_table th button.primary-btn.active{
  border: 1px solid transparent;
  color: var(--white);
  font-family: var(--font-primary);
}
.contact-form-to-any-api .price_table th button.primary-btn.active span{
  color: var(--white);
}
.contact-form-to-any-api .price_table th:first-child,.contact-form-to-any-api .price_table td:first-child {
  text-align: left;
}
.contact-form-to-any-api .price_table th:first-child p{
  text-align: left;
}

.contact-form-to-any-api .price_table .price {
   font-size: 50px;
    line-height: 66px;
    font-weight: 500;
    color: var(--navy-Deep);
    display: flex;
    align-items: flex-end;
    justify-content: center;
}
.contact-form-to-any-api .price_table .per-year {
    font-size: 20px;
    color: #96A0B1;
    line-height: 20px;
    padding-bottom: 17px;
    padding-left: 4px;
}
.contact-form-to-any-api .price_table th p {
    font-size: 24px;
    line-height: 30px;
    text-align: left;
    letter-spacing: 0.01em;
    color: var(--navy-Deep);
    margin-bottom: 10px;
    text-transform: uppercase;
    font-weight: 500;
    text-align: center;
}
.contact-form-to-any-api .price_table tr td {
  letter-spacing: 0.01em;
  color: #30343B;
  font-weight: 400;
  font-size: 20px;
  line-height: 32px;
  vertical-align: middle;
}
.contact-form-to-any-api .price_table th span {
    font-weight: 400;
    font-size: 18px;
    line-height: 20px;
    color: var(--navy-Deep);
    letter-spacing: 0.05em;
    text-align: center;
}

.contact-form-to-any-api .price_table tr:first-child td {
    font-size: 24px;
    line-height: 100%;
    color: var(--black);
    text-transform: capitalize;
    font-weight: 500;
}
.contact-form-to-any-api .price_table tr td {
  text-align: center;
}
.contact-form-to-any-api .price_table tr td:first-child{
  text-align: left;
}
.contact-form-to-any-api .price_table tr:first-child td:first-child{

  color:  var(--teal-shade);
}
.contact-form-to-any-api .price_table tr:first-child td.active{
   color:  var(--teal-shade);
}


/* block column css */

.contact-form-to-any-api .block_column .wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.contact-form-to-any-api .block_column .column {
    background: #F0F3F8;
    padding: 48px 32px;
    border-radius: 15px;
}

.contact-form-to-any-api .block_column .icon {
    display: flex;
    flex-direction: column;
}

.contact-form-to-any-api .block_column .icon img {
    width: 36px;
    height: 36px;
    margin-bottom: 16px;
}

.contact-form-to-any-api .block_column h4 {
    color: var(--black);
    font-size: 20px;
    line-height: 28px;
    margin-bottom: 8px;
    font-weight: 500;
}

.contact-form-to-any-api .block_column p {
    font-size: 16px;
    line-height: 24px;
    color: var(--gray-color);
    letter-spacing: 0.01em;
}

.post-template-default .entry-content h2,
.page-template-default .entry-content h2 {
    font-size: 32px;
    line-height: 130%;
}
.post-template-default .entry-content h1,
.page-template-default .entry-content h1 {
    font-size: 38px;
    line-height: 130%;
    font-weight: 600;
}


.post-template-default .page-header h1,
.page-template-default .page-header h1 {
    font-size: 46px;
    font-weight: 600;
    text-align: center;
    background: var(--teal-shade);
    color: var(--white);
    padding: 20px 0;
    margin: 0px;
}
ul.wp-block-list {
    padding: 0 20px;
}

.woocommerce-account .page-header h1 {
    background: unset;
    color: #041c42;
    margin: 15px 0;
}



.woocommerce .woocommerce-form-login{max-width:600px;margin:0 auto 60px!important;padding:30px;background-color:#fff;border-radius:12px;box-shadow:0 10px 30px rgba(0,0,0,0.08);font-family:"Segoe UI",sans-serif;}

.woocommerce .woocommerce-form-row input[type="email"],.woocommerce .woocommerce-form-row input[type="text"],.woocommerce  .woocommerce-form-row input[type="password"]{/* width:100%!important; *//* padding:12px 14px!important; *//* border:1px solid #ccc!important; *//* border-radius:6px!important; *//* font-size:14px; *//* transition:border-color 0.3s; */}
.woocommerce .woocommerce-form-row input[type="email"]:focus,.woocommerce .woocommerce-form-row input[type="text"]:focus,.woocommerce  .woocommerce-form-row input[type="password"]:focus{border-color:#0071a1;outline:none;}
.woocommerce .password-input{position:relative;width:100%;}
.woocommerce .password-input .show-password-input{position:absolute;right:10px;top:50%;transform:translateY(-50%);background:transparent;border:none;cursor:pointer;width:24px;height:24px;}
.woocommerce .woocommerce-form-login .form-row{display:flex;justify-content:flex-start;flex-wrap:wrap;flex-direction:column;align-items:flex-start;}
.woocommerce .woocommerce-form__label-for-checkbox{font-size:14px;color:#333;display:flex;align-items:center;gap:8px;}

.woocommerce .woocommerce-form-login__submit:hover{background-color:#005f87;}
.woocommerce .woocommerce-LostPassword a{color: #189b9b;font-size: 16px;text-decoration:none;font-weight: 500;}
.woocommerce .woocommerce-LostPassword a:hover{text-decoration:underline;}

/* ===== My Account Page Container ===== */
.woocommerce .page-content .container{display:flex;gap:30px;}

/* ===== Sidebar Navigation ===== */
.woocommerce-MyAccount-navigation{width: 100% !important;background:#fff;padding: 0;border-radius:10px;/* box-shadow:0 8px 20px rgba(0,0,0,0.05); *//* border:1px solid #ccc!important; */margin-bottom: 40px;}
.woocommerce-MyAccount-navigation ul{list-style:none;padding:0;margin:0;width:100%;display: inline-flex;gap: 20px;flex-wrap: wrap; border-bottom: 1px solid #DADADA99;}
.woocommerce-MyAccount-navigation li{margin-bottom: 0;}
.woocommerce-MyAccount-navigation li a{display:block;padding: 0px 20px 15px;background: #fff;color: #C4C4C4;font-weight:500;text-decoration:none;border-radius: 0;transition:all 0.3s ease;font-size: 20px;border-bottom: 4px solid transparent;}
.woocommerce-MyAccount-navigation li a:hover{
    color: #041C42;
}
.woocommerce-MyAccount-navigation li.is-active a{color: #041C42;font-weight:bold;border-color: #041C42;}

/* ===== Main Content Area ===== */
.woocommerce-MyAccount-content{/* background:#fff; */border-radius:10px;/* padding:20px; *//* box-shadow:0 8px 20px rgba(0,0,0,0.05); *//* border:1px solid #ccc!important; */width: 100% !important;}

/* ===== Table Styling ===== */
.woocommerce table.shop_table thead{background: #fff;}
.woocommerce table.shop_table td a{/* color: #189b9b; */text-decoration:none;font-weight: 400;font-size: 20px;}
.woocommerce table.shop_table td a.button{background-color: #189b9b;color:#fff!important;padding:0 16px;border-radius:6px;font-weight: 400;font-size:14px;text-align:center;display:inline-block;transition:background 0.3s ease; height: 38px; line-height: 38px;}
.woocommerce table.shop_table td a.button:hover{background-color:#041C42;}
.woocommerce fieldset{margin-bottom:20px!important;padding:12px 14px!important;border:1px solid #ccc!important;border-radius:6px!important;}
form.checkout.woocommerce-checkout h3,
.woocommerce .woocommerce-MyAccount-content h2{font-size: 20px;line-height:130%;font-weight:500;margin:0 0 15px;}
.page-content.entry-content .woocommerce {
    width: 100%;
}
.woocommerce button.woocommerce-Button.button,
.woocommerce [type="submit"].woocommerce-button {
    background-color: var(--teal-shade);
    padding: 14px 22px;
    color: var(--white);
    font-size: 18px;
    line-height: 23px;
    letter-spacing: 0.05em;
    font-weight: 400;
    text-decoration: none;
    border-radius: 5px;
    text-transform: capitalize;
    position: relative;
    overflow: hidden;
    min-width: 130px;
    border: 1px solid transparent;
    font-family: var(--font-primary);
    transition: 0.3s;
    cursor: pointer;
}
.woocommerce button.woocommerce-Button.button:hover,
.woocommerce [type="submit"].woocommerce-button:hover {
  color:var(--white);
  background: var(--navy-Deep);
  border-color: var(--navy-Deep);
}



/* ===== Cart Table Styling ===== */
.woocommerce-cart table.shop_table{width:100%;border-radius:8px;border:1px solid var(--cool-gray)!important;}
.woocommerce-cart table.shop_table thead{background:var(--cool-gray);}
.woocommerce-cart table.shop_table th,.woocommerce-cart table.shop_table td{padding:15px;}
.woocommerce-cart table.shop_table td a:hover{text-decoration:underline;}
.woocommerce-cart .product-thumbnail img{width:60px;border-radius:6px;}
.woocommerce-cart .product-remove a{color:var(--orange-color);font-size:18px;font-weight:bold;text-decoration:none;transition:color var(--transition);}
.woocommerce-cart .product-remove a:hover{color:var(--black);}
.woocommerce-cart input.qty{width:60px;padding:6px;border:1px solid #ccc;border-radius:6px;text-align:center;font-size:14px;}
.woocommerce-cart button.button[name="update_cart"]{background-color:var(--teal-shade);color:var(--white)!important;padding:16px 20px!important;font-weight:600;border:none;border-radius:6px;cursor:pointer!important;transition:background-color var(--transition);}
.woocommerce-cart button.button[name="update_cart"]:hover{background-color:var(--navy-Deep);}

/* ===== Cart Totals Styling ===== */
.cart_totals{padding:20px;border-radius:12px;border:1px solid var(--cool-gray);}
.cart_totals h2{font-size:24px;font-weight:600;margin-bottom:20px;color:var(--navy-Deep);}
.cart_totals table.shop_table th,.cart_totals table.shop_table td{padding:12px;border:none;color:var(--gray-color);}
.cart_totals .order-total strong{color:var(--black);font-weight:700;}
.wc-proceed-to-checkout a.checkout-button{display:inline-block !IMPORTANT;background:var(--teal-shade)!important;color:var(--white)!important;padding:20px 30px!important;border-radius:8px;font-weight:600;font-size:16px!important;text-decoration:none;margin:0!important;transition:background var(--transition);}
.wc-proceed-to-checkout a.checkout-button:hover{background:#6c9930;}


/* Billing & Shipping Fields */
.woocommerce-checkout-review-order, .woocommerce form.checkout .col2-set{display:flex;flex-wrap:wrap;padding:20px;background:var(--white);border-radius:12px;font-family:var(--font-primary);border:1px solid var(--cool-gray);margin-bottom: 30px;}
.woocommerce form.checkout .col-1,.woocommerce form.checkout .col-2{width:100%;}
.woocommerce form .form-row{margin-bottom:20px;    text-align: left;}
.woocommerce form .form-row label{display:block;font-weight: 400;margin-bottom:6px;color:var(--navy-Deep); font-size: 16px; font-weight: 400}
.woocommerce form .form-row .input-text, .woocommerce form .form-row select{width: 100% !important;padding: 7px 14px !important;font-size: 16px !important;border: 1px solid #CFD5DF !important;border-radius: 10px !important;transition:border-color var(--transition);background:#fff;color: #000 !important;height: 40px !important;}
.woocommerce form .form-row input.input-text:focus,.woocommerce form .form-row textarea:focus{border-color:var(--teal-shade);outline:none;}

.select2-container--default .select2-results>.select2-results__options {
    display: block;
}
.woocommerce-checkout.woocommerce-page.woocommerce-js {
    overflow-x: hidden;
}

/* Order Review Table */
.woocommerce-checkout-review-order{border: none; padding: 0}
.woocommerce table, .woocommerce table.order-license-key-row{width: 100% !important;font-size:14px;background: #F3F5F7;border-radius: 0px !important;overflow:hidden;/* box-shadow:0 5px 20px rgba(0,0,0,0.05); */border-spacing: 0 !important;border: 0px solid var(--cool-gray) !important;}
.woocommerce table th,.woocommerce table td{padding: 20px !important;text-align:left; font-size: 18px; font-weight:400; color:#000; border-top: 0 !important; border-bottom:1px solid #0000000D !important; display: table-cell; }
.woocommerce table th{color: #000000;font-size: 20px;font-weight: 400 !important; }
.woocommerce table th a{text-decoration: none;}
/* Payment Section */
.woocommerce-checkout-payment{margin-top: 40px !important;background: transparent !important;border: none !important;padding:0px;border-radius: 8px !important;}
.woocommerce-checkout-payment ul.payment_methods{list-style: none !important;padding: 0 !important;margin: 0 0 20px !important;}
.woocommerce-checkout-payment li.wc_payment_method{padding:10px 0;border-bottom:1px solid #ddd;}
.woocommerce-checkout-payment li label {
    font-weight: 500;
    color: var(--navy-Deep);
    display: flex;
    align-items: center;
    border: none !important;
    width: max-content;
    padding: 0;
    height: 40px;
    border-radius: 10px;
}

.four-image-section {
  padding: 40px 0;
  text-align: center;
}

.four-image-section p.subtitle {
  font-size: 28px;
  color: #189b9b;
  margin-bottom: 30px;
}
 

.four-image-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.four-img-grid {
    width: 500px;
    display: block;
    overflow: hidden;
    position: relative;
    text-align: center;
    object-fit: cover;
    margin: 10px;
}

.four-image-row img {
    height: 100%;
    min-width: 100%;
    position: relative;
    display: inline-block;
    max-width: none;
    max-height: 300px;
    transform: translateY(-5px);
}

.woocommerce-SavedPaymentMethods li input[type="radio"]{
display:none   
}
.woocommerce-SavedPaymentMethods li input[type="radio"]:checked + label:before {
    background: #189b9b;
}
.woocommerce-SavedPaymentMethods li input[type="radio"] + label:before {
    content: "";
    display: inline-block;
    width: 10px;
    height: 10px;
    background: transparent;
    margin-top: 0;
    margin-right: 9px;
    border: 3px solid #fff;
    outline: 1px solid #189b9b;
}

.woocommerce fieldset{
    margin-bottom: 20px !important;
    padding: 0 !important;
    border: none !important;
    border-radius: 6px !important;
}
.woocommerce-checkout-payment .place-order{text-align:right;}
.woocommerce-checkout-payment button#place_order{background-color:var(--teal-shade);color:var(--white);border:none;padding:12px 28px;font-size:16px;font-weight:600;border-radius:8px;cursor:pointer;transition:background-color var(--transition); display: none;}
.woocommerce-checkout-payment button#place_order:hover{background-color:var(--navy-blue);}
.woocommerce table.my_account_orders td:last-child {
    text-align: right;
    padding-right: 30px !important;
}

.woocommerce .payment_method_stripe{
    background: transparent !important;
    padding: 0 !important;
}
.woocommerce-checkout #payment div.payment_box::before{
    content: none !important;
    display: none !important;
}
/********cccc**********/

.custom-checkout-container {
  display: flex;
  gap: 30px;
  align-items: flex-start;
  flex-wrap: wrap;
/*  max-width: 1200px;*/
justify-content: space-between;
  margin: 0 auto;
}

.checkout-left {
  flex: 1 1 59%;
  min-width: 300px;
}

.checkout-right {
  flex: 1 1 25%;
  min-width: 280px;
      position: sticky;
    top: 110px;
}

.wc-saved-payment-methods li{
    border: 1px solid #CFD5DF !important;
    border-radius: 10px;
    padding: 13px;
    display: flex;
    align-items: center;
}

input#wc-stripe-new-payment-method {
    margin: 0 !important;
}
#wc-stripe-new-payment-method{
    display:none;
}
.woocommerce-SavedPaymentMethods-saveNew input[type="checkbox"]:checked + label:before {
    background: #189b9b;
}
 
.woocommerce-SavedPaymentMethods-saveNew input[type="checkbox"] + label:before {
    content: "";
    display: inline-block;
    width: 10px;
    height: 10px;
    background: transparent;
    margin-top: 6px;
    margin-right: 9px;
    border: 3px solid #fff;
    outline: 1px solid #189b9b;
}

.wc-saved-payment-methods li label{
    padding: 0;
    border: none !important;
    height: inherit;
}

.custom-order-totals {
    margin-bottom: 0;
}


.admin-bar .checkout-right {
    top: 140px;
}

.order-summary-box {
  display: block !important;
}

.checkout-heading {
  font-size: 1.5em;
  margin: 0 0 20px;
  padding-bottom: 15px;
/*  border-bottom: 1px solid #ddd;*/
}

.cart-item {
  display: flex;
  justify-content: space-between;
  margin: 4px 0;
}


.cart-discount, .shipping-total, .fee, .tax-total {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}

.order-total {
  display: flex;
  justify-content: space-between;
  /* margin: 0px 0 40px; */
/*  font-weight: bold;*/
  padding-top: 15px;
  /* border-top: 1px solid #ddd; */
  font-size: 18px;
  color: var(--navy-Deep);
  padding-bottom: 20px;
}

.discount-label {
  margin: 0 0 15px;
  text-align: center;
}

#custom-coupon-form {
  display: none;
  margin-top: 10px;
}

#custom_coupon_code {
  /* width: 70%; */
  /* padding: 10px; */
  /* border: 1px solid #ddd; */
  /* border-radius: 4px; */
  width: 70% !important;
  padding: 7px 14px !important;
  font-size: 16px !important;
  border: 1px solid #CFD5DF !important;
  border-radius: 4px !important;
  transition: border-color var(--transition);
  background: #fff;
  color: #000 !important;
  height: 40px !important;
}

#custom_coupon_code:focus{
  outline-color: var(--teal-shade);
}

#apply_custom_coupon {
  width: 28%;
  font-size: 14px;
  border: 0 !important;
  padding: 9px 22px;
  transition: 0.3s;
}

#apply_custom_coupon:hover{
  background: var(--navy-Deep);
}


.custom-place-order {
  margin-top: 20px;
}

.place-order{
    padding: 0 !important;
}

.custom-terms a{
    color: var(--navy-Deep);

}

.custom-terms a:hover{
    color: var(--teal-shade);
}


.subscription-details{
    display: none;
}

#place_order {
  width: 100%;
  cursor: pointer;
  background-color: var(--teal-shade);
  padding: 14px 22px;
  color: var(--white);
  font-size: 18px;
  line-height: 23px;
  letter-spacing: 0.05em;
  font-weight: 300;
  text-decoration: none;
  border-radius: 14px;
  margin-bottom: 20px;
  text-transform: capitalize;
  position: relative;
  overflow: hidden;
  letter-spacing: 0.5px;
  font-family: var(--font-primary);
  transition: 0.3s;
}

#place_order:hover{
  background: var(--navy-Deep);
}

.contact-form-to-any-api .button-container .owl-dots button.owl-dot.previous {
    display: block;
}

.contact-form-to-any-api .button-container .owl-dots button.owl-dot.next {
    display: block;
}

.contact-form-to-any-api .button-container .owl-dots button.owl-dot {
    display: none;
}

.post-type-shop_order table.wp-list-table .column-order_items{width: 12ch !important;}
.page-id-3231 .preview-license-key {
    display: none !important;
}
.order-table-license-key{display: none !important;}
input.license-copy-admin {color: #fff;border: 1px solid #189b9b;border-radius: 5px;padding: 10px 5px;background: #189b9b;font-weight: 600;}
/* table.order-license-key-row td span {
    color: #fff;
    display: block;
    padding-top: 7px;
    padding-bottom: 7px;
    background: #189b9b;
    cursor: pointer;
    margin-top: 5px;
    border-radius: 5px;
    transition: 0.4s all;
} */
.order-license-key-row{vertical-align:middle;}
/* table.order-license-key-row td span:hover{
    background: #157E7E;
} */
table.order-license-key-row td, table.order-license-key-row th{text-align:left;vertical-align:middle;}
.order-license-key input, .woocommerce-orders-table__cell-license-key-column .btn-copy input{background-color: #189B9B !important; border-radius: 5px 5px 5px 5px !important; color: #fff !important;border:none;}
.order-license-key input, .woocommerce-orders-table__cell-license-key-column .btn-copy, .woocommerce-orders-table__cell-order-actions{text-align:center;}
.order-license-key input:hover, .woocommerce-orders-table__cell-license-key-column .btn-copy input:hover{background-color: #157E7E !important;}
table.order-license-key-row tr th:first-child {width: 20%;}

.order-license-domain-row label.upkey .u_save span {
    display: inline;
    margin-left: -10px;
}

.order-license-domain-row label.upkey .u_save img.save {
    display: inline;
    vertical-align: middle;
    max-width: 18px;
    margin-left: 12px;
}

table.order-license-key-row td input[type="text"] + label {
    width: 90px;
    display: flex;
    position: absolute;
    top: 20px;
    right: 0;
    z-index: 1;
}

table.order-license-key-row td:nth-child(2) {text-align: center;display: flex;align-items: flex-start;justify-content: space-between;width: 100%;color: #000000;font-weight: 400;position: relative;}

table.order-license-key-row {
    /* width: 100% !important; */
}
/*table.order-license-key-row tr.order-license-domain-row:nth-child(even) {
    background: #fff;
}*/
table.order-license-key-row .u_save,
table.order-license-key-row .u_edit,
table.order-license-key-row .u_delete {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    width: 100%;
    justify-content: space-between;
    max-width: max-content;
    padding-left: 7px;
}
table.order-license-key-row .u_save img,
table.order-license-key-row .u_delete img,
table.order-license-key-row .u_edit img {
    max-width: 22px;
    cursor: pointer;
}



.order-license-domain-row label.upkey .u_save {
    display: none;
    padding-left: 20px;
}

table.order-license-key-row {
    width: 100%;
}

table.order-license-key-row td {
    width: 50%;
    text-decoration: none;
    font-weight: 300;
    font-size: 18px;
    color: #000000;
}

.woocommerce-form-coupon-toggle {
    display: none;
}

/******************/



.error404 .page-content.container {
    padding: 100px 0;
    text-align: center;
}

.error404 .page-content.container h1.entry-title {
    font-weight: 800;
    font-size: 15vw;
    line-height: 100%;
    color: var(--teal-shade);;
}
.error404 .page-content.container a {
    background-color: var(--teal-shade);
    padding: 14px 22px;
    color: var(--white);
    font-size: 18px;
    line-height: 23px;
    letter-spacing: 0.05em;
    font-weight: 600;
    text-decoration: none;
    border-radius: 5px;
    text-transform: capitalize;
    position: relative;
    overflow: hidden;
    margin-top: 30px !important;
    display: inline-flex;
}


.woocommerce-form-login-toggle{ 
  display: none;
}
.woocommerce-checkout-review-order table.shop_table.woocommerce-checkout-review-order-table {
    display: none;
}
.woocommerce-checkout-review-order .woocommerce-checkout-payment {
    margin-top: 0 !important;
}

.checkout-left #customer_details {
    width: 100%;
    margin-bottom: 40px;
}
.custom-checkout-container .order-summary-box {
    display: flex;
    flex-wrap: wrap;
    padding: 40px 30px;
    background: var(--white);
    border-radius: 12px;
    font-family: var(--font-primary);
    border: 1px solid var(--teal-shade);
    margin-bottom: 30px;
    box-sizing: border-box;
    background: #FFFFFF;
    box-shadow: 0px 2px 12px rgba(20, 20, 43, 0.08);
    border-radius: 30px;
    font-size: 18px;
    color: var(--navy-Deep);
    outline: 0;
}

.checkout-left{
    display: flex;
    flex-wrap: wrap;
    padding: 40px;
    background: var(--white);
    border-radius: 12px;
    font-family: var(--font-primary);
    border: 1px solid var(--cool-gray);
    margin-bottom: 30px;
    box-sizing: border-box;
    background: #FFFFFF;
    box-shadow: 0px 2px 12px rgba(20, 20, 43, 0.08);
    border-radius: 30px;
    font-size: 18px;
    color: var(--navy-Deep);
    outline: 0;
}
.admin-bar .checkout-right .order-summary-box {
    border-color: #189b9b;
}

.select2-container .select2-selection--single {
    height: auto;
    border-color: #cfd5df !important;
    border-radius: 10px !important;
    font-size: 16px;
    min-width: 40px;
}

.checkout-left div#customer_details > div {
    width: 100%;
}
.checkout-page h1{
  text-align: center;
}

.checkout-page {
    padding: 60px 0 40px;
}

.progress-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
      margin-bottom: 40px;
}


.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  flex: 1;
}

.step-number {
  width: 36px;
  height: 36px;
  background-color: #159e9c;
  color: #fff;
  font-weight: bold;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
}

.inactive .step-number {
  background-color: #d7dce4;
  color: #0a1f44;
}

.step-text {
    margin-top: 10px;
    font-size: 16px;
    color: #0a1f44;
    font-weight: 400;
    line-height: 20px;
}

.step::after {
  content: '';
  position: absolute;
  top: 18px;
  right: 0;
  width: 75%;
  height: 1px;
  background-color: #159e9c;
  z-index: -1;
  left: 63%;
}

.inactive::after {
  background-color: #d7dce4;
}

.step:last-child::after {
  display: none;
}

.custom-checkout-container .order-summary-box h3.checkout-heading {
    font-size: 20px;
    font-weight: 400;
}

.custom-checkout-container .order-summary-box  .custom-order-review {
    font-size: 16px;
    color: var(--navy-Deep);
    border-bottom: 1px dashed #ddd;
    padding-bottom: 20px;
}

.discount-label {
    display: flex;
    justify-content: space-between;
    margin-top: 30px !important;
    margin-bottom: 40px !important;
}
.discount-label a {
    color: #189b9b;
    transition: 0.3s;
}

.discount-label a:hover{
  color: var(--navy-Deep);
}


.custom-terms {
    margin-top: 10px;
}
.woocommerce form .form-row .input-text:focus, .woocommerce form .form-row select:focus {
    border-color: #189b9b !important;
}

table.order-license-key-row .license-key-copy {
  background-color: #041c42;
  color: #fff;
  font-weight: 600;
  font-size: 18px;
  padding: 7px 16px;
  border-radius: 6px;
  text-align: center;
  display: inline-block !important;
  transition: background 0.3s ease;
  cursor: pointer;
  height: 38px;
}

table.order-license-key-row .license-key-copy:hover {
    background: var(--teal-shade);
    color: #fff;
}

body.woocommerce-account.woocommerce-subscriptions .woocommerce h2 {
    display: none;
}

.contact-form-to-any-api .faq_section .faq-container h4 a {
    color: var(--teal-shade);
    transition: 0.3s;
}

.contact-form-to-any-api .faq_section .faq-container h4 a:hover{
  color: var(--navy-Deep);
}

.contact-form-to-any-api .faq_section .faq-container h4 {
    text-align: right;
    font-size: 22px;
    font-weight: 600;
    width: 100%;
}

.plan_box.active .plan_desc {
    border: 1px solid #189B9B;
}

.checkout-page h1 span {
    font-weight: 600;
}

.api_box.green_color img {
    margin-bottom: 0;
}

.api_box.orange_color .api_box_img img {
    margin-bottom: 7px;
}

.api_box.orange_color span.btn_text img {
    margin-bottom: 0 !important;
}

.why_choose button.owl-prev.disabled, .why_choose button.owl-next.disabled {
   opacity: 0;
}

div#cookie-notice {
    display: flex;
    justify-content: center;
    background: #fff;
    padding: 20px;
    position: fixed;
    bottom: 0;
    width: 100%;
    filter: drop-shadow(0px 4px 40px rgba(0, 0, 0, 0.06));
    z-index: 9;
}

span#cn-notice-text {
    color: var(--navy-Deep);
    font-size: 14px;
}

a#cn-accept-cookie {
    padding: 5px 10px;
    font-size: 14px;
    font-weight: normal;
    transition: 0.3s;
}

a#cn-accept-cookie:hover{
    background: var( --navy-Deep);
}

.woocommerce-error li {
    display: flex;
    width: 100%;
    justify-content: space-between;
    margin-bottom: 10px;
}

.contact-form-to-any-api .client_testimonial .owl-dots {
    display: none !important;
}

.contact-form-to-any-api .lost_reset_password{
  max-width: 600px;
    margin: 60px auto !important;
    padding: 30px;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    font-family: "Segoe UI", sans-serif;
    border: 1px solid #cfc8d8;
}

.contact-form-to-any-api .lost_reset_password .form-row-first{
  width: 100% !important;
  margin-bottom: 20px !important;
}

section.product_one_section {
    background: #fff ;
    padding: 100px 0;
    text-align: center;
    width: 100%;
    height: 100%;
    background-size: cover;
}

.product_left span.subtitle {
    font-size: 26px;
    font-weight: 600;
    text-transform: capitalize;
    line-height: 33px;
    color: #189B9B;
    margin-bottom: 10px;
    display: block;
}

.product_one_section h3 {
    font-size: 62px;
    line-height: 69px;
    letter-spacing: 0;
    font-weight: 400;
}

.product_main {
    display: flex;
    justify-content: space-between;
}

.product_left {
    text-align: left;
    width: 61%;
}

span.trending {
    
    background-color: var(--teal-shade);
    padding: 14px 35px;
    color: var(--white);
    font-size: 18px;
    line-height: 23px;
    letter-spacing: 0.05em;
    font-weight: 600;
    text-decoration: none;
    border-radius: 5px;
    text-transform: capitalize;
    position: relative;
    overflow: hidden;
    margin-bottom: 19px;
    display: block;
    max-width: max-content;
    text-transform: uppercase;
}

.product_left ul {
    margin: 15px 0 0 0;
    padding: 0;
    list-style: none;
}

.product_left ul li {
    margin-bottom: 16px;
    color: var(--navy-Deep);
    font-size: 20px;
    background: url(../img/accordian_list.svg) no-repeat left top 6px;
    padding-left: 30px;
}

.product_right .price_line {
    text-decoration-line: line-through;
    font-size: 50px;
    font-weight: 600;
    color: #c5c5c5;
    display: block;
    width: 100%;
    margin-bottom: 25px;
}

.product_right .price {
    border: 1px solid #EFF0F7;
    box-shadow: 0px 2px 12px rgba(20, 20, 43, 0.08);
    border-radius: 24px;
    padding: 60px 42px 30px;
    width: 100%;
    height: 100%;
    position: relative;
    background: rgba(254,254,254,0.8);
}

.product_right span.price-main {
    font-size: 74px;
    line-height: 66px;
    font-weight: 700;
    color: var(--navy-Deep);
}

.product_right {
    width: 37%;
    padding-left: 50px;
}

.product_right  a.buy_btn {
  width: 100%;
  background: #000;
  background-color: var(--teal-shade);
  padding: 14px 22px;
  color: var(--white);
  font-size: 18px;
  line-height: 23px;
  letter-spacing: 0.05em;
  font-weight: 600;
  text-decoration: none;
  border-radius: 5px;
  text-transform: capitalize;
  position: relative;
  overflow: hidden;
  margin-top: 30px;
  display: block;
  margin-bottom: 0;
}

.single-post .page-content p,
.single-post .page-content ul li {
    font-size: 20px;
    color: #000;
}
 
.single-post .page-content h2,
.single-post .page-content h3,
.single-post .page-content h4,
.single-post .page-content h5,
.single-post .page-content h6
{
    font-weight: 700;
}
 
.single-post .page-content h5,
.single-post .page-content h5 a {
    font-weight: 600;
    color: var(--navy-Deep);
}
 
.single-post .page-content ul li {
    margin-bottom: 16px;
    color: var(--navy-Deep);
    font-size: 20px;
    background: url('../img/accordian_list.svg') no-repeat left top 6px;
    padding-left: 30px;
}
 
.single-post .page-content ul {
    list-style: none;
}
 
.single-post .page-content p img {
    margin-bottom: 30px;
    display: block;
}
 
.single-post .page-content ul li a,
.single-post .page-content  p a {
    color: var(--teal-shade);
}

.product_right p {
    text-align: left;
    color: var(--navy-Deep);
    margin-top: 26px;
    font-size: 18px;
}

.product_right p a{
  color: #189B9B;
  transition: 0.3s;
}

.product_right p a:hover{
  color: var(--navy-Deep);
}

.blog_grid {
    display: flex;
    margin: 0 -15px;
    flex-wrap: wrap;
}

.blog_box {
    width: 33.33%;
    padding: 0 15px 30px;
}

.shop_table th.download-file {
    width: 35%;
}

.global_title_heading{
  padding: 70px 0;
  text-align: center;
}

.global_title_heading h1 {
    font-weight: 600;
    font-size: 60px;
    line-height: 91px;
    color: #041C42;
    letter-spacing: 0.01em;
}

div#customer_details {
    border: 0 !important;
}

.order-license-domain-row td input:read-only{
  color: var(--navy-Deep);
}

.order-license-domain-row td input{
  color: #189b9b;
}

.blog_grid {
    display: flex;
    margin: 0 -15px;
    flex-wrap: wrap;
}

.blog_box {
    width: 33.33%;
    padding: 0 15px 30px;
}


.blog_desc{
    border: 1px solid #EDEFF3;
    box-shadow: 0px 2px 12px rgba(20, 20, 43, 0.08);
    border-radius: 30px;
    padding: 20px;
    height: 100%;
    position: relative;
    display: inline-block;
    text-decoration: none;
}

.blog_desc .plan_image{
  overflow: hidden;
  width: 100%;
  border-radius: 20px;
}

.blog_desc .plan_image img{
  transform: scale(1.0);
  transition: 0.3s;
}

.blog_desc:hover .plan_image img{
  transform: scale(1.2);
}

.blog_text{
  padding: 20px 0 0;
}

.blog_text h4{
  margin-bottom: 0;
  font-size: 24px;
  font-weight: 600;
  line-height: 30px;
}

span.link-btn {
    display: flex;
    align-items: center;
    color: #041C42;
}

span.link-btn svg {
    width: 20px;
    margin-left: 10px;
    height: 20px;
    fill: #041C42;
    transition: 0.3s;
    transform: translateX(0);
}

.blog_desc:hover h4{
  color: #189B9B;
}

.blog_desc:hover svg{
  transform: translateX(10px);
}

.blog_desc:hover svg, .blog_desc:hover    span.link-btn{
  fill:#189B9B;
  color: #189B9B;
}

.woocommerce-view-order .woocommerce-MyAccount-navigation ul {
    overflow-x: scroll;
    white-space: nowrap;
    flex-wrap:nowrap;
}

.woocommerce-view-order .woocommerce-MyAccount-navigation ul::-webkit-scrollbar {
  width: 5px;
  height:3px;
}
 
.woocommerce-view-order .woocommerce-MyAccount-navigation ul::-webkit-scrollbar-thumb {
  background-color: var(--teal-shade);
  outline: 0;
}

a.button.wc-forward, .woocommerce-payment-methods .button {
    background: var(--teal-shade) !important;
    color: var(--white) !important;
    font-weight: 600 !important;
}

a.button.wc-forward:hover, .woocommerce-payment-methods .button:hover {
    background: var( --navy-Deep) !important;
    color: var(--white) !important;
}

.archive-pagination {
    gap: 14px;
}

.archive-pagination a {
    text-decoration: none;
    color: var(--navy-Deep);
    font-size: 18px;
    font-weight: 400;
    transition: 0.3s;
}

.archive-pagination a.current, .archive-pagination a:hover {
    color: var(--teal-shade);
    font-weight: 600;
}

td#license_key {
    border-bottom: 0 !important;
}

tr.order-license-domain-row {
    position: relative;
}

tr.payment-method td:last-child {
    text-align: right;
}


.search-no-results .page-content p {
    text-align: center;
    font-size: 22px;
    color: var(--navy-Deep);
}

.search-no-results .plan_section .container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.search-no-results #searchsubmit {
    background-color: var(--teal-shade);
    padding: 0 22px;
    color: var(--white);
    font-size: 16px;
    letter-spacing: 0.05em;
    font-weight: 600;
    text-decoration: none;
    border-radius: 0 5px 5px 0;
    text-transform: capitalize;
    position: relative;
    border: 0;
    margin-top: 0;
    height: 40px;
    line-height: 40px;
    transition: 0.3s;
    cursor: pointer;
}

.search-no-results .page-content input[type="text"]:focus{
  outline: none;
  border-color:var(--teal-shade) !important;
}

.search-no-results #searchsubmit:hover{
  background: var(--navy-Deep);
}

.search-no-results .form-submit {
    display: flex;
    justify-content: flex-start;
}

.search-no-results #searchform {
    
    max-width: 600px;
    margin: 30px auto !important;
    padding: 30px;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    font-family: "Segoe UI", sans-serif;
    display: flex;
    align-items: center;
}


.search-no-results .page-content input[type="text"] {
    line-height: 40px;
    width: 100% !important;
    padding: 7px 14px !important;
    font-size: 16px !important;
    border: 1px solid #CFD5DF !important;
    border-radius: 10px 0 0 10px !important;
    transition: border-color var(--transition);
    background: #fff;
    color: #000 !important;
    height: 40px !important;
}


.document_section .tabbed-content {
  background: transparent;
  box-shadow:0;
  max-width: 100%;
  padding: 0;
  margin: 0 auto;
}

.document_section .tabbed-content .item.active {
    padding: 30px;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--teal-shade);
    margin-bottom: 10px;
}



.document_section .tabs ul {
  margin: 0;
  padding: 0;
  font-weight: bold;
}

.document_section .tabs ul li a {
  padding: 14px 20px;
  text-decoration: none;
  font-weight: 600;
  font-family: var(--font-primary);
  border-radius: 10px 10px 0 0;
  
  color: var(--navy-Deep);
}
.document_section .tabs ul li a:hover, .document_section .tabs ul li a.active {
    background: var(--teal-shade);
    color: #eee;
   border-bottom: 0;
}


.document_section .item::before {
    cursor: pointer;
    font-weight: bold;
    padding: 0.5em;
    display: block;
    background: var(--teal-shade);
    color: var(--white);
    border-radius: 5px;
    margin-bottom: 10px;
}
.document_section .item.active::before {
  background: var(--teal-shade);
  color: var(--white);
  border-radius: 5px;
}
.document_section .item.active .item-content {
  padding:0;
  -webkit-transition: opacity 0.3s ease-in-out;
  -moz-transition: opacity 0.3s ease-in-out;
  -o-transition: opacity 0.3s ease-in-out;
  -ms-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
}

.document_section .item-content ol {
    padding: 0 0 0 20px;
}

.document_section ol li {
    padding: 5px;
    font-size: 18px;
}

.header-request {
    background: #F0F3F8;
    padding: 21px;
    font-size: 18px;
    line-height: 30px;
    margin: 5px 0;
}

.document_section .item-content ol li {
    font-size: 18px;
    line-height: 28px;
    color: var(--navy-Deep);
}

.item-content p {
    font-size: 20px;
}

.document_section .item-content p a {
    color: var(--teal-shade);
    transition: 0.3s;
}

.document_section .item-content p a:hover{
  color: var(--navy-Deep);
}

.header-request-example {
    background: #F0F3F8;
    padding: 21px;
    font-size: 18px;
    line-height: 30px;
    margin: 10px 0;
}

.header-request-example-key {
    background: #F0F3F8;
    padding: 21px;
    font-size: 18px;
    line-height: 30px;
    margin: 5px 0;
    overflow: auto;
}
.woocommerce-cart .cart_totals tr.order-total {
    display: table-row;
}
.cart_totals .woocommerce-input-wrapper select {
    height: 40px;
    padding: 0 8px;
    border: 1px solid #CFD5DF !important;
    border-radius: 10px !important;
}
.cart_totals .woocommerce-input-wrapper select:focus {
    border-color: #189b9b !important;
    outline: navajowhite;
}
.checkout-right .cart-item {
    padding-bottom: 15px;
}
.order-license-domain-row label.upkey img:hover {
    opacity: 0.6;
}

.home .btn-whatsapp-pulse {
  z-index: 9;
}

.contact-form-to-any-api .btn-whatsapp-pulse img{
  max-width: 40px;
  height: 40px;
  max-height: 40px;
}

.btn-whatsapp-pulse {
    background: #25d366;
    position: fixed;
    bottom: 20px;
    left: 35px;
    font-size: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 0;
    height: 0;
    padding: 30px;
    text-decoration: none;
    border-radius: 50%;
    animation-name: pulse;
    animation-duration: 1.5s;
    animation-timing-function: ease-out;
    animation-iteration-count: infinite;
}

@keyframes pulse {
  0% {
      box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  }

  80% {
      box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
  }
}

@media all and (min-width: 800px) {
  .document_section .item.active .item-content {
    padding-top: 0;
  }

  .document_section .tabs-side .tabs li {
    margin-bottom: 2px;
  }
}

.document_section .tabbed-content .tabs {
  display: none;
  padding-left: 12px;
}
.document_section .tabbed-content .item {
  min-height: 2em;
}
.document_section .tabbed-content .item::before {
  content: attr(data-title);
}
.document_section .tabbed-content .item .item-content {
  opacity: 0;
  visibility: hidden;
  height: 0;
}
.document_section .tabbed-content .item.active .item-content {
  opacity: 1;
  visibility: visible;
  height: auto;
}

@media all and (min-width: 800px) {
  .document_section .tabbed-content .tabs {
    display: block;
  }
  .document_section .tabbed-content .tabs li {
    display: inline-block;
  }
  .document_section .tabbed-content .tabs li a {
    display: block;
  }
  .document_section .tabbed-content .item {
    min-height: 0;
  }
  .document_section .tabbed-content .item::before {
    display: none;
  }
  .document_section .tabbed-content.tabs-side .tabs {
    width: 150px;
    float: left;
  }
  .document_section .tabbed-content.tabs-side .tabs li {
    display: block;
  }
  .document_section .tabbed-content.tabs-side .item {
    margin-left: 150px;
  }
}

.form-row label input + span {
    font-size: 18px;
/*    display: inline-flex;*/
    align-items: flex-start;
}

.form-row label input + span a{
    color: var(--navy-Deep);
}

.form-row label input + span a:hover{
    color: var(--teal-shade);
}
.woocommerce-privacy-policy-text {
    display: none;
}

.place-order{
    padding: 0;
}
.woocommerce-checkout-payment label input[type="checkbox"]{
  display: none !important;
}
.woocommerce-checkout-payment label input[type="checkbox"] + span:before {
    content: "";
    display: inline-block;
    width: 10px;
    height: 10px;
    background: transparent;
    margin-top: 6px;
    margin-right: 9px;
    border: 3px solid #fff;
    outline: 1px solid #189b9b;
}
.woocommerce-checkout-payment label input[type="checkbox"]:checked + span:before{
            background: #189b9b;
}
table.order-license-key-row td input[type="text"] {
    background: transparent;
    border: 0;
    outline: 0;
    box-shadow: none;
    width: 100%;
    font-weight: 400;
    font-size: 18px;
    font-family: var(--font-primary);
}

.input-row.form-row {
    display: flex;
    flex-direction: column;
}

.woocommerce-MyAccount-content .input-row.form-row input[type="url"] {
    margin-bottom: 20px;
    width: 100% !important;
    padding: 7px 14px !important;
    font-size: 16px !important;
    border: 1px solid #CFD5DF !important;
    border-radius: 10px !important;
    transition: border-color var(--transition);
    background: #fff;
    color: #000 !important;
    height: 40px !important;
}

.woocommerce-MyAccount-content .input-row.form-row input[type="url"]:focus{
  outline:0;
  border-color: #189b9b !important;
}

.order-license-key-row .copy-msg {
    position: absolute;
    bottom: 0px;
    left: 19px;
    color: #29ad00;
    font-size: 14px;
}

.domain_popup {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transform: scale(1.1);
    transition: visibility 0s linear 0.25s, opacity 0.25s 0s, transform 0.25s;
    z-index: 999;
}
.domain_popup .modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    padding: 3rem 2.5rem 2rem 2.5rem;
    width: 30em;
    border-radius: 0.5rem;
    background: var(--navy-Deep);
}
.domain_popup .modal-content .domain_popup_close {
    float: right;
    width: 1.5rem;
    font-size: 2.2em;
    line-height: 1;
    padding: 0 .2em .15em;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    border-radius: 0.25rem;
    transition: color 0.12s ease-in-out;
    margin-top: -40px;
    margin-right: -15px;
}

.domain_popup .modal-content .domain_popup_close:hover{
  color: #fff;
}
.domain_popup .input-row label {
    margin-bottom: 6px;
    color: var(--white);
    font-size: 16px;
    font-weight: 400;
}

.domain_popup .modal-content.form input.woocommerce-button {
    height: 40px;
    line-height: 40px;
    padding: 0;
    margin-right: 10px;
    font-size: 16px;
}

.domain_popup .modal-content.form input.woocommerce-button:hover{
  background: var(--white);
  color: var(--teal-shade);
}

.active.domain_popup {
    opacity: 1;
    visibility: visible;
}
.woocommerce-account .woocommerce-MyAccount-content a {
    color: #189b9b;
    transition: 0.3s;
    font-size: 18px;
}

.woocommerce-account .woocommerce-MyAccount-content a:hover{
  color: #041C42;
}

.u_delete, .u_edit, .u_save {
    font-size: 0;
}

.u_delete {
    padding-left: 0 !important;
}

.u_save img.save {
    height: 27px;
    margin-left: 0 !important;
}

.contact-form-to-any-api .copy_mnain p a {
    color: var(--teal-shade);
    font-weight: 500;
    text-decoration: underline;
}

.document_section .item-content h4{
  font-weight: 700;
}

.document_section .item-content iframe{
  width: 100%;
}

.document_section .item-content img {
    margin-top: 20px;
}



@media (max-width: 1300px) {
  .contact-form-to-any-api .price_table .price{
    font-size: 40px;
    line-height: 50px;
  }
  .contact-form-to-any-api .plan_section .plan_price span{
    font-size: 50px;
    line-height: 60px;
  }
  .contact-form-to-any-api .brand-modal .brand_grid .brand_box{
        width: 16.6%;
  }
}
@media (max-width: 1199px) {
  .contact-form-to-any-api .slider_choose .owl-nav{
    left: auto;
    right: 20px;
    margin-right: 0px;
    padding-right: 0px;
    top: 15px;
  }
  .contact-form-to-any-api .slider_choose .container{
    padding-right: 20px;
  }

  .contact-form-to-any-api .brand-modal .modal-content{
    width: 80%;
  }

 .contact-form-to-any-api .footer_right {
        width: 70%;
        padding-left: 0;
  }

  .contact-form-to-any-api .footer_left{
    width: 30%;
  }

  .contact-form-to-any-api .footer_right .footer_box:first-child {
    max-width: 408px;
    width: 89%;
    margin-right: 0;
}

  .contact-form-to-any-api .client_right {
    width: 100%;
    max-width: 50%;
    padding-left: 20px;
}

.contact-form-to-any-api .client_left {
    width: 100%;
    position: relative;
    max-width: 50%;
    padding-right: 20px;
  }

  .contact-form-to-any-api .holder{
    margin-left: 0;
  }
  .contact-form-to-any-api .video_main iframe{
    width: 100%;
  }

  .contact-form-to-any-api .video_main::before{
    left: -24px;
  }

  .contact-form-to-any-api h2{
    font-size: 50px;
    line-height: 70px;
  }

  .contact-form-to-any-api .price_desc span.price{
    font-size: 24px;
    line-height: 30px;
  }

  .contact-form-to-any-api .price_desc h3{
    font-size: 35px;
    line-height: 50px;
  }

  .contact-form-to-any-api .price_main{
    margin: 0 -10px;
  }
  .contact-form-to-any-api .price_box{
    padding: 0 10px;
    flex-grow: 1;
  }

  .contact-form-to-any-api .section-padding {
    padding: 40px 0px;
  }

  .contact-form-to-any-api h1{
    font-size: 50px;
    line-height: 70px;
  }

  .contact-form-to-any-api .price_desc{
    padding: 30px 20px;
  }
  .contact-form-to-any-api .price_desc a.button{
    left: 30px;
    right: 30px;
    width: calc(100% - 60px);
  }

  .contact-form-to-any-api .faq-item .faq-question{
    font-size: 18px;
    line-height: 24px;
  }
  .contact-form-to-any-api .feature_right {
    width: calc(100% - 529px);
    padding-left: 0;
  }

  .contact-form-to-any-api .feature_left{
    max-width: 529px;
  }

  .contact-form-to-any-api .partner-slider .owl-stage {
    display: flex;
    align-items: center;
  }
  .contact-form-to-any-api .api_btn span.btn_text{
    right: 47px;
  }

  .contact-form-to-any-api .api_main{
    margin: 0 -10px;
  }

  .contact-form-to-any-api .api_box{
    padding: 0 10px;
  }

  .contact-form-to-any-api .brand_grid{
    margin: 60px -10px 0;
  }

  .contact-form-to-any-api .brand_box{
    width: 20%;
    padding: 0 10px 20px;
  }

  .contact-form-to-any-api .brand_box figure{
    width: 100%;
  }
  
  .contact-form-to-any-api .price_table .price{
    font-size: 30px;
    line-height: 40px;
  }
  .contact-form-to-any-api .plan_section .plan_price span {
    font-size: 45px;
    line-height: 54px;
  }
  .contact-form-to-any-api .plan_section .plan_type,.contact-form-to-any-api .plan_section .plan_websites,.contact-form-to-any-api .plan_section .plan_price,.contact-form-to-any-api .plan_section .plan_features{
    padding: 0px;
  }
  .contact-form-to-any-api .plan_section button.get_started,.contact-form-to-any-api .plan_section .plan_desc:after{
        left: 20px;
    width: calc(100% - 40px);
  }
  .contact-form-to-any-api .plan_section .plan_features h4{
    margin-bottom: 10px;
  }
  .contact-form-to-any-api .plan_section .plan_features ul{
    margin-bottom: 15px;
  }
  .contact-form-to-any-api .price_main .price_desc .badges {
    position: relative;
    max-width: max-content;
    margin: auto;
    top: inherit;
    left: inherit;
    right: inherit;
    margin-bottom: 20px;
}
.contact-form-to-any-api .brand-modal .brand_grid .brand_box{
      width: 25%
}
}

@media(max-width: 991px) {
    .contact-form-to-any-api .block-setting-padding {
      padding-top: calc(var(--block-padding-top) / 1.5) !important;
      padding-bottom: calc(var(--block-padding-bottom) / 1.5) !important;
    }
  .contact-form-to-any-api .site-header .header-left {
    width: 25%;
}

.contact-form-to-any-api .footer_right .footer_box:first-child{
  max-width: 100%;
  width: 100%;
}

.contact-form-to-any-api .brand-modal .modal-content{
    padding: 60px 20px 20px;
    margin: 0 auto;
    width: 91%;
    text-align: center;
    position: relative;
    border-radius: 20px;
}

.contact-form-to-any-api .brand-modal .brand_grid .brand_box{
  width: 20%;
}

.contact-form-to-any-api .brand_grid{
  margin:30px -5px 0;
}

.contact-form-to-any-api .brand_box{
  width: 25%;
  padding: 0 5px 10px;
}

.contact-form-to-any-api .brand_box figure{
  width: 100%;
  height: 143px;
}

.contact-form-to-any-api .header-menu .button-group {
  margin-left: 0;
}

.contact-form-to-any-api header.site-header.fixed-header + .header-spacer{
  height: 69px;
}

.contact-form-to-any-api .header-spacer {
  height: 85px;
}

.contact-form-to-any-api .site-header .logo{
  max-width: 180px;
}

.contact-form-to-any-api .hamburger {
  display: block;
  width: 40px;
  height: 40px;
 
}

.contact-form-to-any-api .header_main {
  flex-wrap: nowrap;
  justify-content: space-between;
}

.contact-form-to-any-api a.close_menu {
  position: absolute;
  top: 20px;
  width: 30px;
  right: 20px;
  display: block;
}

.contact-form-to-any-api .header-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height:100vh;
  transform: translateX(100%);
  background: #fff;
  opacity: 0;
  transition: 0.3s;
  justify-content: flex-start;
  align-items: flex-start;
  z-index: 9;
  flex-direction: column;
  padding: 50px 25px;
}
.contact-form-to-any-api .site-header .header-menu .menu-primary-menu-container {
  width: 100%;
}
.show_menu .header-menu {
  transform: translateX(0);
  opacity: 1;
}

.contact-form-to-any-api .site-header .header-menu ul{
  flex-direction: column;
  width: 100%;
  margin-bottom: 30px;
}

.contact-form-to-any-api .header-menu .button-group .primary-btn{
  display: block;
}

.contact-form-to-any-api .site-header .header-right {
  width: 75%;
}

.contact-form-to-any-api .site-header .header-menu ul li{
  padding-left: 0;
  margin-left: 0;
  border-bottom: 1px solid rgba(0,0,0,0.1);
  width: 100%;
  padding: 17px 0;
}

.contact-form-to-any-api .site-header .header-menu ul li a{
  font-size: 18px;
}

.contact-form-to-any-api .counter .wrapper{
  max-width: 800px;
}

.contact-form-to-any-api .counter h2{
  font-size: 40px;
  line-height: 50px;
}

.contact-form-to-any-api .api_btn{
  position: absolute;
  left: 0;
  bottom: 0;
}

.contact-form-to-any-api .api_box .api_box_img span.btn_text {
  top: auto;
  bottom: 25px;
  left: 44px;
}

.contact-form-to-any-api .api_box.orange_color a.api_box_img span.btn_text{
  top: auto;
}

.contact-form-to-any-api .api_box{
  width: 50%;
  padding: 0 10px 20px;
}


.contact-form-to-any-api .choose_title{
  flex-direction: column;
}

.contact-form-to-any-api .choose_title h2{
  max-width: 100%;
}

.contact-form-to-any-api .choose_title p{
  max-width: 100%;
}

.contact-form-to-any-api .feature_left{
  max-width: 50%;
}

.contact-form-to-any-api .feature_left img{
  width: 100%;
  height: 100%;
}

.contact-form-to-any-api .feature_right{
  width: 50%;
}

.contact-form-to-any-api .feature_desc .tringle_shape{
  width: 100%;
  height: 100%;
}

.contact-form-to-any-api .feature_desc .tringle_shape svg{
  width: 100%;
  height: 100%; 
}

.contact-form-to-any-api .price_desc h3{
  font-size: 32px;
}
.contact-form-to-any-api .block_column .wrapper {
  grid-template-columns: repeat(2, 1fr);
}
.contact-form-to-any-api .plan_section .plan_box{
  width: 50%;
  margin-bottom: 30px;
}
  .contact-form-to-any-api .price_table .table_block {
    overflow-x: auto;
    width: 100%;
}

.contact-form-to-any-api .price_table .table_block  table {
    width: 900px;
}
.contact-form-to-any-api .price_table tr:first-child td{
  font-size: 20px;
}
 .contact-form-to-any-api .plan_section .title{
  margin-bottom: 30px;
 }
 .contact-form-to-any-api .price_table th, .contact-form-to-any-api .price_table td{
      padding: 10px;
 }
 .contact-form-to-any-api .price_table tr td{
  font-size: 16px;
  line-height: 24px;
 }
 .contact-form-to-any-api .price_table th:first-child{
  width: 25%;
 }
 .contact-form-to-any-api .price_table th p{
  font-size: 18px;
  line-height: 28px
 }
 .contact-form-to-any-api .price_table th span{
  font-size: 16px;
  line-height: 20px;
 }

 .contact-form-to-any-api .footer_left{
  width: 100%;
  margin-bottom: 30px;
 }

 .contact-form-to-any-api .footer_right{
  width: 100%;
 }

 .contact-form-to-any-api .price_box{
    width: 50%;
    padding: 0 10px 20px;
 }

 body.home.show_menu {
    overflow: hidden;
}

.blog_box{
  width: 50%;
}

.product_right {
    width: 37%;
    padding-left: 20px;
}

.product_right span.price-main{
  font-size: 50px;
  line-height: 60px;
}

.product_right .price_line{
  font-size: 40px;
  line-height: 50px;
}

.product_one_section h3{
  font-size: 36px;
  line-height: 42px;
}


}

@media (max-width: 767px) {
  .contact-form-to-any-api .block-setting-padding {
    padding-top: calc(var(--block-padding-top) / 2) !important;
    padding-bottom: calc(var(--block-padding-bottom) / 2) !important;
  }
  .contact-form-to-any-api .site-header .header-left {
      width: 100%;
  }

  .contact-form-to-any-api .footer_right .footer_box:first-child {
    margin: 20px 0;
  }

  .contact-form-to-any-api .brand-title {
    margin-bottom: 30px;
  }

  .contact-form-to-any-api .trusted-text .short-line {
      width: 24px;
      height: 2px;
      background-color: var(--teal-shade);
      margin: 0 10px;
  }

  .contact-form-to-any-api .thanks_section h2 {
    line-height: 42px;
  }

  .contact-form-to-any-api .header-banner .scroll-down{
    margin-top: 30px;
  }

  .contact-form-to-any-api footer {
      padding: 50px 0 30px;
  }

  .contact-form-to-any-api .address, .contact-form-to-any-api .footer_right span.title{
    margin-bottom: 15px;
  }

  .contact-form-to-any-api .footer_right .footer_box ul li{
    padding-bottom: 10px;
  }

  .contact-form-to-any-api footer ul{
    margin: 30px 0 0 0;
  }

  .contact-form-to-any-api footer ul{
    margin: 30px 0 0 0;
  }

  .contact-form-to-any-api .slider-block{
    padding: 22px 0;
  }

  .contact-form-to-any-api .logo-slider img{
    height: 50px;
  }

  .contact-form-to-any-api .brand-title h5{
    margin-bottom: 0;
    font-size: 18px;
  }

  .contact-form-to-any-api .client_right{
    padding-top: 30px;
  }

  .contact-form-to-any-api .video_main{
    height: 250px;
  }

  .contact-form-to-any-api .faq-item{
    min-height: auto;
    padding: 20px;
  }

  .contact-form-to-any-api footer .copy_mnain li:after{
    display: none;
  }

  .contact-form-to-any-api .choose_title h2{
    margin-bottom: 20px;
    line-height: 40px;
  }

  .contact-form-to-any-api .faq-item .faq-question {
    font-size: 17px;
    line-height: 24px;
  }

  .contact-form-to-any-api .btn_main .link_btn{
    font-size: 18px;
  }

  .contact-form-to-any-api .footer_right .footer_box:first-child{
    max-width: 100%;
    margin: 20px 0;
  }

  .contact-form-to-any-api .price_section h2{
    margin-bottom: 30px;
  }

  .contact-form-to-any-api .brand_box{
    width: 33.33%;
  }

  .contact-form-to-any-api .api_box_img h3{
    font-size: 26px;
    line-height: 34px;
  }

  .contact-form-to-any-api .brand-modal .brand_grid{
    margin: 0 -10px;
  }

  .contact-form-to-any-api .brand-modal .brand_grid .brand_box{
    width: 33.33%;
    padding: 0 10px 20px;
  }

  .contact-form-to-any-api .slider_choose .container {
    max-width: 100%;
    margin-left: auto;
    margin-right: 0;
    padding-right: 20px;
}

  .contact-form-to-any-api .section-padding{
    overflow: hidden;
  }

  .contact-form-to-any-api .holder:before{
    width: 60px;
    height: 60px;
    right: 0;
    left: 0;
  }

  .contact-form-to-any-api .holder:after{
    width: 100px;
    height: 100px;
    right: 0;
  }

  .contact-form-to-any-api .card_main span.icon{
    margin-bottom: 30px;
  }

  .contact-form-to-any-api .card_main span.icon img{
    width: 60px;
  }

  .contact-form-to-any-api .column {
    width: 50%;
    padding-bottom: 24px;
}

.contact-form-to-any-api .counter h2 {
  font-size: 33px;
  line-height: 44px;
}

.contact-form-to-any-api .counter p {
  font-size: 16px;
  line-height: 24px;
}

.contact-form-to-any-api h1 {
  font-size: 40px;
  line-height: 50px;
}


  .contact-form-to-any-api .api_box{
    width: 100%;
  }

  .contact-form-to-any-api .feature_right {
    width: 100%;
  }

  .contact-form-to-any-api .feature_left{
    width: 100%;
    max-width: 100%;
    padding-right: 0;
    margin-bottom: 30px;
    position: static;
  }

  .contact-form-to-any-api .client_main{
    flex-direction: column;
  }
  .contact-form-to-any-api .client_left{
    max-width: 100%;
    padding-right: 0;
  }

  .contact-form-to-any-api .client_right{
    max-width: 100%;
    padding-left: 0;
  }

  .contact-form-to-any-api .client_right h2 {
    text-align: left;
  }

  .contact-form-to-any-api .price_box{
    width: 100%;
    padding: 0 10px 20px;
  }

  .contact-form-to-any-api .faq_section .faq-column{
    width: 100%
  }

  .contact-form-to-any-api .footer_top{
    flex-direction: column;
  }

  .contact-form-to-any-api .footer_right {
    width: 100%;
    flex-direction: column;
}

.contact-form-to-any-api .copy_mnain{
  padding-top: 30px;
  margin-top: 10px;
  flex-direction: column;
}

.contact-form-to-any-api .copy_mnain ul{
  flex-direction: column;
}

.contact-form-to-any-api footer .copy_mnain li{
  text-align: center;
}

.contact-form-to-any-api .thanks_main{
  padding: 40px 20px;
}

.contact-form-to-any-api h2{
  font-size: 35px;
  line-height: 42px;
}

.contact-form-to-any-api .price_desc a.button{
  font-size: 17px;
  height: 50px;
}

.contact-form-to-any-api .feture_title h2 {
  margin-bottom: 20px;
}

.contact-form-to-any-api .features_main{
  margin-top: 30px;
}

.contact-form-to-any-api .slider_choose .owl-stage-outer{
  padding: 80px 0 20px;
}

.contact-form-to-any-api .feature_right ul li{
  font-size: 18px;
  line-height: 28px;
}

.contact-form-to-any-api .feature_right ul li:last-child {
  margin-bottom: 0;
  border-bottom: 0;
  padding-bottom: 0;
}

.contact-form-to-any-api .section-padding{
  padding: 20px 0;
}

.contact-form-to-any-api .slider_choose .owl-nav{
  transform: none;
  top: 17px;
          right: 0;
}
.contact-form-to-any-api .testimonial-desc {
  padding-right: 0;
}

.contact-form-to-any-api .choose_desc h3{
  font-size: 24px;
  line-height: 30px;
}

.contact-form-to-any-api .choose_desc span.btn_text{
  top: 98px;
}
.contact-form-to-any-api .plan_section .plan_box{
  width: 100%;
}
.contact-form-to-any-api .block_column .column{
  width: 100%;
  text-align: center;
}
.contact-form-to-any-api .block_column .icon img{
  margin-left: auto;
  margin-right: auto;
}
.contact-form-to-any-api .plan_section .plan_price span {
    font-size: 35px;
    line-height: 45px;
}
.contact-form-to-any-api .plan_section .plan_type p{
  font-size: 18px;
  line-height: 24px
}
.contact-form-to-any-api .plan_section .plan_websites,.contact-form-to-any-api .plan_section .plan_features h4,.contact-form-to-any-api .plan_section .plan_features li{
  font-size: 16px;
}
.contact-form-to-any-api .plan_section .plan_features li::before{
  width: 18px;
  height: 18px;
  background-size: contain;
  top: 5px;
}
.contact-form-to-any-api .plan_section .plan_features li{
  padding-left: 28px;
}
.contact-form-to-any-api .price_table tr:first-child td{
  font-size: 20px;
}
.contact-form-to-any-api .price_table tr td {
  font-size: 14px;
  line-height: 18px;
}
.contact-form-to-any-api .plan_section .title {
  margin-bottom: 20px;
}
.contact-form-to-any-api .price_table th, .contact-form-to-any-api .price_table td{
  padding: 10px;
}
.contact-form-to-any-api .price_table th button.primary-btn{
  padding: 8px;
  max-width: 127px;
  border-radius: 8px;
  margin-top: 10px;
}
.contact-form-to-any-api .price_table th p {
  font-size: 14px;
  line-height: 20px;
  margin: 0px;
}
.contact-form-to-any-api .price_table .price {
  font-size: 16px;
  line-height: 24px;
}
.contact-form-to-any-api .price_table .per-year{
  font-size: 14px;
  line-height: 20px;
}
.contact-form-to-any-api .price_table .table_block table {
  width: 540px;
}
.contact-form-to-any-api .price_table th span {
  font-size: 14px;
  line-height: 20px;
}
.contact-form-to-any-api .price_table tr:first-child td {
    font-size: 16px;
}
.contact-form-to-any-api .price_table th:first-child {
    width: 28%;
}
.woocommerce-MyAccount-content {
  margin-bottom: 40px;
}

.contact-form-to-any-api .faq-answer p a{
    word-break: break-all;
}

.woocommerce-MyAccount-navigation ul{
  display: flex;
  gap: 8px;
  border-bottom: 1px solid #DADADA99;
  white-space: nowrap;
  overflow-x: scroll;
  flex-wrap: nowrap;
}

.woocommerce-MyAccount-navigation li a{
  font-size: 18px;
}

.woocommerce form .form-row-first, .woocommerce form .form-row-last, .woocommerce-page form .form-row-first, .woocommerce-page form .form-row-last{
  width: 100% !important;
}

table.order-license-key-row td input[type="text"] + label{
  position: static  ;
}

table.order-license-key-row td:nth-child(2){
  min-height: 94px;
}

.blog_text h4{
  font-size: 20px;
  line-height: 26px;
}

.product_main{
  flex-direction: column;
}

.product_left {
    text-align: left;
    width: 100%;
}

.product_right{
  width: 100%;
  padding-left: 0;
}

.product_one_section h3 {
    font-size: 30px;
    line-height: 36px;
}

.product_left span.subtitle{
  font-size: 24px;
  line-height: 30px;
}

.product_left ul li{
  font-size: 18px;
}

section.product_one_section{
  padding: 20px 0;
}

.global_title_heading{
  padding: 30px 0;
}

.contact-form-to-any-api .footer_right .footer_box ul li{
  width: 50%;
}

}
@media (max-width: 600px) {
  .progress-bar {
    flex-direction: column;
    gap: 30px;
  }

  .step::after {
    display: none;
  }

  .contact-form-to-any-api .footer_left {
    width: 100%;
}

.contact-form-to-any-api h4 {
    font-size: 22px;
    line-height: 32px;
    letter-spacing: 0.02em;
}

.blog_box{
  width: 100%;
}
}

@media(max-width:500px){
  .contact-form-to-any-api .brand_box, .contact-form-to-any-api .brand-modal .brand_grid .brand_box{
    width: 50%;
    padding: 0 5px 10px;
  }

  .contact-form-to-any-api .brand-modal .brand_grid {
    margin: 20px -5px 0;
  }
  .contact-form-to-any-api .block_column .wrapper {
      grid-template-columns: 1fr;
  }

  .contact-form-to-any-api .footer_right .footer_box ul li{
    width: 100%;
  }
  
  .btn-whatsapp-pulse{
    padding: 24px !important;
    font-size: 29px !important;
    bottom: 110px !important;
    z-index: 1;
  }
  .btn-whatsapp-pulse img{
    max-width: 32px;
    max-height:32px;
  }

}

