/*
Theme Name: My English Academy
Author: Webskitters
Text Domain: my-english-academy
*/

@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;600;700;800&display=swap');

/* body,
html {
    overflow-x: hidden;
} */
/* body,html{
    width: 100%;
} */

body {
  margin: 0;
  padding: 0;
  font-family: 'Open Sans', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  width: 100%;
  font-weight: normal;
  font-style: normal;
  color: #696767;
  font-size: 16px;
  line-height: 1.5;
  background-color: #fff;
}

b,
strong {
  font-weight: 700;
}

p {
  margin: 0 0 22px 0;
}

p:last-child {
  margin-bottom: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 25px 0;
  padding: 0;
  color: #000;
  font-weight: 700;
  text-transform: capitalize;
}

h1:last-child,
h2:last-child,
h3:last-child,
h4:last-child,
h5:last-child,
h6:last-child {
  margin-bottom: 0;
}

h1 {
  font-size: 72px;
  line-height: 1;
}

h2 {
  font-size: 45px;
  line-height: 1.2;
}

h3 {
  font-size: 36px;
  line-height: 1;
}

h4 {
  font-size: 28px;
  line-height: 1.2;
}

h5 {
  font-size: 20px;
  line-height: 1.2;
}

h6 {
  font-size: 15px;
  font-weight: 600;
}

a {
  margin: 0;
  padding: 0;
  text-decoration: none !important;
  outline: none !important;
  color: #1d9bf0;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

a:hover {
  color: #000;
}

img {
  max-width: 100%;
}

input[type='text'],
input[type='tel'],
input[type='password'],
input[type='email'],
select {
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  border-radius: 8px;
  color: #000;
  height: 52px;
  padding: 0 17px;
  outline: none !important;
  color: #7d7d7d;
  background: #ffffff;
  border: 1px solid #bbbbbb;
  font-size: 14px;
}

textarea {
  -webkit-appearance: none;
  appearance: none;
  -webkit-border-radius: 8px !important;
  -moz-border-radius: 8px !important;
  -ms-border-radius: 8px !important;
  border-radius: 8px !important;
  padding: 17px !important;
  width: 100%;
  color: #000;
  height: 105px;
  outline: none !important;
  color: #7d7d7d !important;
  background: #ffffff;
  border: 1px solid #bbbbbb !important;
  resize: none;
  font-size: 14px !important;
}

select {
  border: 1px solid #bbbbbb !important;
  width: 100%;
  padding: 0 17px;
  background: url(images/arw1.svg) no-repeat calc(100% - 16px) center #ffffff;
  background-size: 11px;
  padding-right: 40px;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
  font-size: 14px;
}

select::-ms-expand {
  display: none;
}

input[type='submit'] {
  background: #1d9bf0;
  box-shadow: 0px 6px 32px rgba(29, 155, 240, 0.29);
  height: 47px;
  border: none;
  -webkit-appearance: none;
  appearance: none;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  border-radius: 8px;
  padding: 0 41px;

  cursor: pointer;
  font-weight: 600;
  font-size: 16px;
  outline: none !important;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  text-transform: capitalize;
  color: #ffffff;
}

input[type='submit']:hover {
  background: #2b80ca;
  color: #fff;
}

/* images alignment for wordpress content pages */
.alignright {
  float: right;
  margin: 0 0 20px 20px;
}

.alignleft {
  float: left;
  margin: 0 20px 20px 0;
}

.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 20px;
  float: none;
  clear: both;
}

/* custom checkbox */

.form_input_check label {
  position: relative;
  margin: 0;
  padding-left: 40px;
  display: inline-block;
}

.form_input_check label span {
  margin: 0;
  padding: 0;
}

.form_input_check label input[type='checkbox'] {
  visibility: hidden;
  display: none;
}

.form_input_check label input[type='checkbox']+span::before {
  content: '';
  position: absolute;
  left: 0;
  top: 2px;
  width: 20px;
  height: 20px;
  border: 1px solid #b5b5b5;
  background: transparent;
  border-radius: 4px;
}

.form_input_check label input[type='checkbox']+span::after {
  content: '';
  position: absolute;
  left: 0;
  top: 3px;
  width: 20px;
  height: 20px;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  background: url(images/tick.svg) no-repeat center center;
  background-size: 15px;
}

.form_input_check label input[type='checkbox']:not(:checked)+span::after {
  opacity: 0;
  -webkit-transform: scale(0);
  transform: scale(0);
}

/* .form_input_check input[type="checkbox"]:checked + span::before {
      
    } */

.form_input_check label input[type='checkbox']:checked+span:after {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}

/* custom radio */

.form_input_radio label {
  position: relative;
  margin: 0;
  padding-left: 30px;
  display: inline-block;
}

.form_input_radio label span {
  margin: 0;
  padding: 0;
}

.form_input_radio label input[type='radio'] {
  visibility: hidden;
  display: none;
}

.form_input_radio label input[type='radio']+span::before {
  content: '';
  position: absolute;
  left: 0;
  top: 1px;
  width: 22px;
  height: 22px;
  border: 2px solid #000000;
  border-radius: 100%;
  background: #fff;
}

.form_input_radio label input[type='radio']+span::after {
  content: '';
  width: 12px;
  height: 12px;
  background: #4b0049;
  position: absolute;
  top: 6px;
  left: 5px;
  border-radius: 100%;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.form_input_radio label input[type='radio']:not(:checked)+span::after {
  opacity: 0;
  -webkit-transform: scale(0);
  transform: scale(0);
}

/* .form_input_radio input[type="radio"]:checked + span::before {
      
    } */

.form_input_radio label input[type='radio']:checked+span:after {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}

/* custom radio end */

/* back to top */

#scroll {
  position: fixed;
  right: 20px;
  bottom: 20px;
  cursor: pointer;
  width: 55px;
  height: 55px;
  background-color: #bdd653;
  display: none;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  line-height: 68px;
  text-align: center;
  cursor: pointer;
  display: inline-block;
  -webkit-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.2);
  z-index: 9;
}

#scroll:hover {
  background: #88a725;
}

#scroll i {
  color: #fff;
  font-size: 44px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

#scroll:hover i {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-transform: translateY(-6px);
  transform: translateY(-6px);
}

/* navbar*/

.navbar-brand {
  padding: 0;
  margin: 0;
  width: 155px;
  display: inline-block;
}

.navbar {
  background: none;
  margin: 0;
  padding: 0;
  min-height: inherit;
  height: inherit;
  border: none;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  border-radius: 0;
}

.navbar-nav li {
  position: relative;
  list-style: none;
  font-weight: 600;
  text-transform: capitalize;
}

.navbar-nav>li {
  margin: 0 15px;
  padding: 20px 0;
  position: relative;
}

.navbar-nav>li:last-child {
  margin-right: 0;
}

.navbar-nav>li:first-child {
  margin-left: 0;
}

.navbar-nav>li>a {
  color: #1d1d1d;
  font-size: 15px;
  line-height: 1.2;
  position: relative;
  font-weight: 600;
}

/*
.navbar-nav>li>a:after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background: #3B61DC;

    position: absolute;
    bottom: -10px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
*/
.navbar-nav>li.current-menu-item>a,
.navbar-nav>li>a:hover,
.navbar-nav>li.menu-item-has-children:hover>a {
  color: #1d9bf0;
}

/*.navbar-nav>li.current-menu-item>a:after,
.navbar-nav>li>a:hover:after,
.navbar-nav>li.menu-item-has-children:hover>a:after {
    width: 100%;
}
*/

/* navbar submenu*/

.sub-menu {
  background: #ffffff;
  box-shadow: -10px 14px 34px rgba(0, 0, 0, 0.25);
  -webkit-box-shadow: -10px 14px 34px rgba(0, 0, 0, 0.25);
  -moz-box-shadow: -10px 14px 34px rgba(0, 0, 0, 0.25);
  border-radius: 10px;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  border: none;
  width: 223px;
  padding: 10px 0;
}

.sub-menu>li>a {
  color: #1d1d1d;
  display: block;
  width: 100%;
  padding: 10px 23px;
  line-height: 1.2;
}

.sub-menu>li {
  width: 100%;
  display: block;
}

.sub-menu>li>a:hover,
.sub-menu>li.menu-item-has-children:hover>a,
.sub-menu>li.current-menu-item>a {
  color: #1d9bf0;
}

.navbar-nav>li:last-child>.sub-menu {
  right: 0;
  left: inherit;
  padding: 0;
}

/* 2nd level submenu */
.navbar-nav>li>.sub-menu .sub-menu {
  position: absolute;
  left: 100%;
  top: 0;
}

/* for push-menu */
.navbar-collapse .navbar-toggler {
  display: none;
}

#navoverlay {
  display: block;
  pointer-events: none;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  margin: 0;
  padding: 0 !important;
  z-index: 99;
  -webkit-transition: background-color 0.5s linear;
  transition: background-color 0.5s linear;
}

/* for push-menu end*/

.videobg {
  width: 100%;
  height: 100vh;
  position: relative;
}

.videobg video {
  width: 100%;
  height: 100%;
  object-position: center;
  object-fit: cover;
  vertical-align: bottom;
  position: relative;
}

.videobg::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.1);
  width: 100%;
  height: 100%;
  z-index: 1;
}

.play-pause {
  position: absolute;
  left: 50%;
  transform: translate(-50%, 100%);
  -webkit-transform: translate(-50%, 100%);
  -moz-transform: translate(-50%, 100%);
  bottom: 146px;
  background: #000;
  border: 2px solid #000;

  border-radius: 35px;
  font-weight: 600;
  font-size: 18px;
  line-height: 1.2;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ffffff;
  display: inline-block;
  padding: 20px 30px;
  visibility: hidden;
  transition: all 400ms ease !important;
  z-index: 9;
}

.play-pause:hover {
  background: #fff;
  border: 2px solid #ffffff;
  color: #000;
}

.play-pause.show-button {
  visibility: visible;
  transform: translate(-50%, 0);
  -webkit-transform: translate(-50%, 0);
  -moz-transform: translate(-50%, 0);
}

.main-head {
  padding: 22px 0;
  border-bottom: 2px solid #d7d7d7;
  background: #fff;
}

.main-head .cmn-btn {
  padding: 15px 20px;
}

.cmn-btn,
.btn {
  display: inline-flex;
  display: -ms-flexbox;
  align-items: center;
  justify-content: center;
  background: #1d9bf0;
  box-shadow: 0px 6px 32px rgba(29, 155, 240, 0.29);
  -webkit-box-shadow: 0px 6px 32px rgba(29, 155, 240, 0.29);
  -moz-box-shadow: 0px 6px 32px rgba(29, 155, 240, 0.29);
  border-radius: 8px;
  padding: 15px 40px;
  text-transform: capitalize;
  font-weight: 600;
  color: #ffffff;
  text-align: center;
  line-height: 1.1;
}

.cmn-btn:hover {
  background: #2b80ca;
  color: #fff;
}

.cmn-btn img {
  width: 16px;
  display: inline-block;
  margin-right: 7px;
}

.language-dropdown {
  padding-right: 0;
  width: 140px;
  margin-right: 20px;
}

.language-dropdown .wpml-ls-legacy-dropdown-click a {
  font-weight: 600;
  text-transform: capitalize;
  border: 1px solid #499cf0;
  border-radius: 8px;
  padding: 15px 22px 15px 10px;
  font-size: 14px;
  color: #499cf0;
  background: transparent;
}

.language-dropdown .wpml-ls-legacy-dropdown-click a:hover,
.language-dropdown .wpml-ls-legacy-dropdown-click .wpml-ls-current-language:hover>a {
  color: #499cf0;
  background: transparent;
}

.language-dropdown .wpml-ls-legacy-dropdown-click .wpml-ls-sub-menu {
  border-top: none;
  border-radius: 8px;
}

.language-dropdown .wpml-ls-legacy-dropdown-click .wpml-ls-sub-menu a {
  padding: 15px 10px 15px 8px;
  font-size: 13px;
  background: #ffffff;
}

.language-dropdown .wpml-ls-legacy-dropdown-click .wpml-ls-sub-menu a:hover {
  color: #ffffff;
  background: #499cf0;
}

.language-dropdown .btn {
  background: transparent;
  font-size: 18px;
  color: #000000;
  border: none;
  box-shadow: none;
  padding: 20px 0;
  font-weight: 400;
}

.language-dropdown .btn:hover {
  color: #1d9bf0;
}

.language-dropdown .btn span {
  display: inline-block;
  margin-right: 7px;
  width: 20px;
}

.language-dropdown .btn span img {
  width: 100%;
}

.language-dropdown .dropdown-menu {
  background: #ffffff;
  box-shadow: -10px 14px 34px rgb(0 0 0 / 25%);
  -webkit-box-shadow: -10px 14px 34px rgb(0 0 0 / 25%);
  -moz-box-shadow: -10px 14px 34px rgba(0, 0, 0, 0.25);
  border-radius: 10px;
  border: none;
}

.dropdown-item.active,
.dropdown-item:hover {
  color: #1d9bf0;
  text-decoration: none;
  background-color: transparent;
}

.right-menu {
  display: flex;
  display: -ms-flexbox;
  align-items: center;
  padding-left: 42px;
}

.dropdown-toggle::after {
  position: relative;
  top: 0;
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  border-right: 0.12em solid #1d1d1d;
  border-top: 0.12em solid #1d1d1d;
  transform: rotate(135deg);
  margin-right: 0.5em;
  margin-left: 10px;
  border-left: 0;
}

.navbar-nav .clickD {
  position: absolute;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 8px;
  height: 8px;
  border-right: 0.12em solid #1d1d1d;
  border-top: 0.12em solid #1d1d1d;
  transform: translate(0, -50%) rotate(135deg);
  -webkit-transform: translate(0, -50%) rotate(135deg);
  -moz-transform: translate(0, -50%) rotate(135deg);
  margin-right: 0.5em;
  border-left: 0;
}

.navbar-nav .clickD.toggled {
  -webkit-transform: translate(0, -50%) rotate(315deg);
  transform: translate(0, -50%) rotate(315deg);
}

/*.sub-menu > li.menu-item-has-children .clickD {
  top: 8px;
  right: 5px;
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
}

.sub-menu > li.menu-item-has-children .clickD.toggled {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
*/
.navbar-nav>li.menu-item-has-children {
  padding-right: 26px;
}

.banner {
  background: #f0f0f0;
  position: relative;
  overflow: hidden;
  min-height: 707px;
  display: flex;
  display: -ms-flexbox;
  align-items: center;
}

.banner figure {
  margin-bottom: 0;
  width: 75%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
}

.banner:after {
  content: '';
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  left: -20%;
  width: 636px;
  height: 636px;
  background: #1d9bf0;
  opacity: 0.09;

  border-top-right-radius: 50%;
  z-index: 1;
  border-bottom-right-radius: 50%;
}

.banner.how-banner figure {
  width: 75%;
}

.how-banner.banner:before {
  width: 56%;
}

.banner figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left top;
}

.banner:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 70%;
  height: 100%;
  background: linear-gradient(90deg,
      #f0f0f0 57.85%,
      rgba(240, 240, 240, 0) 81.98%);
  z-index: 1;
}

.banner.corporatebanner:before {
  width: 74%;
  background: linear-gradient(90deg,
      #f0f0f0 40%,
      rgba(240, 240, 240, 0) 81.98%);
}

.banner-con {
  position: relative;
  width: 100%;
  z-index: 99;
  padding: 40px 0;
}

.banner-con h1 {
  text-transform: capitalize;
  color: #1d1d1d;
}

.banner-con h3 {
  text-transform: capitalize;
  font-weight: 400;
  color: #007cd8;
  font-style: italic;
  margin-bottom: 20px;
}

.banner-con .common-header {
  margin-bottom: 24px;
}

.common-header {
  position: relative;
  margin-bottom: 50px;
  padding-bottom: 26px;
}

.common-header:after {
  content: '';
  position: absolute;
  width: 57px;
  height: 5px;
  background: #1d9bf0;
  display: inline-block;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 0);
  -webkit-transform: translate(-50%, 0);
  -moz-transform: translate(-50%, 0);
}

.banner-con ul {
  padding-left: 0;
  margin-bottom: 50px;
}

.banner-con ul li {
  list-style-type: none;
  background: url(images/banner-tick.svg) no-repeat top 13px left;
  padding-left: 28px;
  font-size: 22px;
  text-transform: capitalize;
  padding-bottom: 10px;
  color: #000000;
  background-size: 12px;
}

.banner-con ul li:last-child {
  padding-bottom: 0;
}

.commonpattern {
  position: absolute;
}

.rating-block {
  background: #f0f5f9;
  position: relative;
}

.ratingpattern {
  top: 23px;
  left: -6px;
}

.ratingpattern1 {
  top: 0;
  right: 0;
}

.ratingcontainer {
  position: relative;
  max-width: 864px;
  margin: 0 auto;
  padding: 52px 120px;
}

.ratingcontainer:after {
  content: '';
  width: 100%;
  height: 100%;
  background: #e8f0f5;
  transform: skewX(-35deg);
  -webkit-transform: skewX(-35deg);
  -moz-transform: skewX(-35deg);
  position: absolute;
  top: 0;
  left: 0;
}

.ratingit {
  width: 114px;
  height: 114px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0px 14px 48px rgba(0, 0, 0, 0.03);
  -webkit-box-shadow: 0px 14px 48px rgba(0, 0, 0, 0.03);
  -moz-box-shadow: 0px 14px 48px rgba(0, 0, 0, 0.03);
  text-align: center;
  flex: 0 0 auto;
  display: flex;
  display: -ms-flexbox;
  align-items: center;
  justify-content: center;
}

.ratingit h3 {
  color: #fcbc02;
}

.ratinginner {
  position: relative;
  z-index: 1;
  display: flex;
  display: -ms-flexbox;
  align-items: center;
  justify-content: center;
}

.ratingstarbox {
  display: flex;
  display: -ms-flexbox;
  align-items: center;
  padding-left: 22px;
}

.ratingstar {
  color: #fcbc02;
  display: inline-block;
  padding-right: 24px;
}

.ratingstaritem {
  display: flex;
  display: -ms-flexbox;
  align-items: center;
  padding: 0 35px;
  position: relative;
}

.ratingstaritem:after {
  content: '';
  position: absolute;
  width: 1px;
  height: 28px;
  background: #000;
  left: 0;
}

.ratingstaritem:first-child {
  padding-left: 0;
}

.ratingstaritem:first-child::after {
  display: none;
}

.ratingstaritem:last-child {
  padding-right: 0;
}

.trustlogo img {
  width: 154px;
}

.trustlogo1 img {
  width: 33px;
  margin-left: 20px;
}

.common-gap {
  padding: 90px 0;
}

.textcenter {
  text-align: center;
}

.common-header.textlft:after {
  left: 0;
  transform: inherit;
}

.method-block {
  background: #ffffff;
  border: 1px solid #e8e8e8;
  box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.12);
  -webkit-box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.12);
  -moz-box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.12);
  padding: 57px;
  text-align: center;
  border-radius: 8px;
}

.method-block h4 {
  position: relative;
  padding-bottom: 15px;
  font-weight: 600;
}

.method-block h4:after {
  content: '';
  position: absolute;
  width: 30px;
  height: 6px;
  background: #1d9bf0;
  border-radius: 900px;
  display: inline-block;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 0);
  -webkit-transform: translate(-50%, 0);
  -moz-transform: translate(-50%, 0);
}

.method-icon {
  margin-bottom: 27px;
  position: relative;
}

.method-icon:after {
  content: '';
  position: absolute;
  width: 94px;
  height: 94px;
  background: #e7fdf9;
  border-radius: 50%;
  display: inline-block;
  top: -26px;
  left: 15%;
  animation: scalein 7s;
  animation-iteration-count: infinite;
}

.method-icon img {
  position: relative;
  z-index: 1;
  width: 110px;
  height: 86px;
  object-fit: contain;
}

.showmethod-block .rowspan {
  --bs-gutter-x: 47px;
}

.plan-blockarea {
  position: relative;
  background: #ecf7ff;
  margin-top: 120px;
}

.plan-pattern {
  position: absolute;
  top: -155px;
  left: 0;
  width: 100%;
  z-index: -1;
  height: 160px;
}

.plan-patterncircle {
  position: absolute;
  right: 0;
  top: -20%;
}

.plan-blockarea .maxcontainer {
  position: relative;
  z-index: 1;
}

.plan-pattern img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.commonheadpara {
  margin-bottom: 43px;
}

.commonheadpara p {
  font-size: 24px;
  color: #404040;
}

.commonheadpara .common-header {
  margin-bottom: 20px;
}

.planitem {
  background: #ffffff;
  box-shadow: 0px 11px 44px rgba(0, 0, 0, 0.06);
  -webkit-box-shadow: 0px 11px 44px rgba(0, 0, 0, 0.06);
  -moz-box-shadow: 0px 11px 44px rgba(0, 0, 0, 0.06);
  border-radius: 10px;
}

.planbody {
  padding: 47px 22px;
}

.plan-blockarea .rowspan {
  --bs-gutter-y: 20px;
}

.full-width {
  width: 100%;
}

.cmn-btn.border-btn {
  background: transparent;
  border: 2px solid #653591;
  border-radius: 8px;
  text-align: center;
  color: #653591;
  box-shadow: none;
  font-size: 18px;
  font-weight: 700;
}

.cmn-btn.border-btn:hover {
  background: #653591;
  color: #fff;
}

.planbody ul {
  padding-left: 0;
  margin-bottom: 21px;
}

.planbody ul li {
  list-style-type: none;
  background: url(images/circle-tick.svg) no-repeat top 5px left;
  font-size: 15px;
  color: #000000;
  padding-left: 37px;
  background-size: 18px;
  margin-bottom: 16px;
  line-height: 1.5;
}

.planbody ul li:last-child {
  margin-bottom: 0;
}

.planheader {
  padding: 52px 18px;
  background: #2b80ca;
  border-radius: 10px 10px 0px 0px;
  color: #fff;
  display: flex;
  display: -ms-flexbox;
  position: relative;
  overflow: hidden;
  justify-content: space-between;
}

.planheader h4 {
  font-size: 26px;
  color: #fff;
  margin-bottom: 10px;
}

.planicon {
  flex: 0 0 auto;
  width: 80px;
  height: 95px;
  object-fit: contain;
}

.planheader:after {
  content: '';
  position: absolute;
  bottom: -40%;
  right: -18%;
  width: 211px;
  border: 20px solid #4495dc;
  height: 211px;
  border-radius: 50%;
  animation: scalein 7s;
  animation-iteration-count: infinite;
}

.planheader>* {
  position: relative;
  z-index: 1;
}

.plan-blockarea .colspan:nth-child(4n + 1) .planheader {
  background: #2b80ca;
}

.plan-blockarea .colspan:nth-child(4n + 1) .planheader:after {
  border-color: #4495dc;
}

.plan-blockarea .colspan:nth-child(4n + 1) .planbody ul li {
  background: url(images/circle-tick.svg) no-repeat top 5px left;
  background-size: 18px;
}

.plan-blockarea .colspan:nth-child(4n + 2) .planheader {
  background: #07b4d3;
}

.plan-blockarea .colspan:nth-child(4n + 2) .planheader:after {
  border-color: #22c8e5;
}

.plan-blockarea .colspan:nth-child(4n + 2) .planbody ul li {
  background: url(images/circle-tick1.svg) no-repeat top 5px left;
  background-size: 18px;
}

.plan-blockarea .colspan:nth-child(4n + 3) .planheader {
  background: #0bcdb5;
}

.plan-blockarea .colspan:nth-child(4n + 3) .planheader:after {
  border-color: #2de3cd;
}

.plan-blockarea .colspan:nth-child(4n + 3) .planbody ul li {
  background: url(images/circle-tick2.svg) no-repeat top 5px left;
  background-size: 18px;
}

.plan-blockarea .colspan:nth-child(4n + 4) .planheader {
  background: #618dff;
}

.plan-blockarea .colspan:nth-child(4n + 4) .planheader:after {
  border-color: #759bff;
}

.plan-blockarea .colspan:nth-child(4n + 4) .planbody ul li {
  background: url(images/circle-tick3.svg) no-repeat top 5px left;
  background-size: 18px;
}

.plancon {
  padding-right: 5px;
}

/*-----Footer-----********/
.get-in-touch-con .common-header {
  margin-bottom: 15px;
}

.terms-panel {
  display: flex;
  display: -ms-flexbox;
  align-items: center;
  margin-top: 71px;
}

.footer ul {
  display: block;
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 0;
}

.col-width {
  width: 20%;
}

.trms-img {
  width: 66px;
  height: 66px;
  flex: 0 0 66px;
  display: flex;
  display: -ms-flexbox;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #ffffff;
}

.trms-con {
  padding-left: 16px;
}

.footer {
  background: linear-gradient(180deg, #2c9cf9 0%, #35558e 100%);
}

.footer-con p {
  font-style: normal;
  font-weight: 300;
  font-size: 16px;
  color: #ffffff;
}

.footer-logo {
  margin-bottom: 13px;
}

.company-details {
  display: flex;
  display: -ms-flexbox;
}

.company-img {
  margin-right: 12px;
  margin-bottom: 0;
  width: 18px;
  flex: 0 0 20px;
  /* display: inline-flex;
  justify-content: center; */
}

.company-content h6 {
  margin-bottom: 5px;
}

.footer-menu h5 {
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  text-transform: capitalize;
  color: #ffffff;
  margin-bottom: 20px;
}

.footer-menu li a {
  font-style: normal;
  font-weight: 300;
  font-size: 16px;
  color: #ffffff;
}

.footer-menu li {
  margin-bottom: 4px;
}

.footer-menu li:last-child {
  margin-bottom: 0;
}

.company-content h6 {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  text-transform: capitalize;
  color: #ffffff;
}

.company-content p {
  font-style: normal;
  font-weight: 300;
  font-size: 14px;
  text-transform: capitalize;
  color: #ffffff;
}

.company-details {
  margin-bottom: 29px;
}

.company-content p a {
  font-style: normal;
  font-weight: 300;
  font-size: 14px;
  text-transform: capitalize;
  color: #ffffff;
}

.footer {
  overflow: hidden;
}

.footer .col-width:first-child {
  width: 32%;
}

.footer .col-width:last-child {
  width: 17%;
}

.footer .col-width:nth-child(2) {
  width: 17%;
}

.footer .col-width:nth-child(3) {
  width: 17%;
}

.footer .col-width:nth-child(4) {
  width: 17%;
}

.footer-con p {
  max-width: 314px;
}

.trms-hd {
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  text-align: center;
  color: #ffffff;
  margin-bottom: 2px;
}

.trms-down a {
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  text-decoration-line: underline !important;
  color: #ffffff;
}

.trms-down a:hover {
  color: #e2dbdb;
}

.footer-menu li a:hover,
.footer-menu li.active a {
  color: #e2dbdb;
}

.company-content p a:hover {
  color: #e2dbdb;
}

.footer .company-details:last-child {
  margin-bottom: 0;
}

.become-btn .cmn-btn {
  padding: 15px 15px;
}

.footer-top {
  padding: 88px 0 61px;
  border-bottom: 1px solid #447bb9;
}

.ftr-btm-right ul {
  display: flex;
  display: -ms-flexbox;
  padding-left: 0;
  list-style-type: 0;
  margin-bottom: 0;
}

.ftr-btm-right ul li {
  margin: 0 14px;
}

.ftr-btm-right ul li:first-child {
  margin-left: 0;
}

.ftr-btm-right ul li:last-child {
  margin-right: 0;
}

.footer-btm {
  display: flex;
  display: -ms-flexbox;
  align-items: center;
  justify-content: space-between;
  padding: 33px 0;
}

.ftr-btm-left p {
  font-style: normal;
  color: #ffffff;
}

.ftr-btm-left p a {
  color: #ffffff;
}

.ftr-btm-left p a:hover {
  color: #1d9bf0;
}

.ftr-btm-right ul li a:hover svg path {
  fill: #1d9bf0;
}

.get-in-touch {
  background: #ecf7ff;
}

.get-in-touch-con p {
  max-width: 527px;
}

.get-pattern {
  position: absolute;
  right: 0;
  top: 0;
  width: 140px;
}

.get-pattern img {
  width: 100%;
}

.get-in-touch {
  position: relative;
}

.get-in-touch-img {
  margin-top: -37px;
}

.trms-img img {
  box-shadow: 0px 4px 14px rgb(0 0 0 / 27%);
  -webkit-box-shadow: 0px 4px 14px rgb(0 0 0 / 27%);
  -moz-box-shadow: 0px 4px 14px rgb(0 0 0 / 27%);
}

.certificate-con h4 {
  font-style: normal;
  font-weight: 400;
  font-size: 26px;
  color: #000000;
  margin-bottom: 18px;
}

.certificate-con .common-header {
  margin-bottom: 16px;
}

.certificate-btn {
  padding-top: 13px;
}

.certificate .rowspace {
  --bs-gutter-x: 79px;
  align-items: center;
}

.certificate-circle {
  width: 105px;
  height: 105px;
  background: #33efa0;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: -10%;
  z-index: -1;
}

.certificate .col-position {
  position: relative;
}

.certificate-img img {
  box-shadow: 0px 4px 24px rgb(0 0 0 / 15%);
  -webkit-box-shadow: 0px 4px 24px rgb(0 0 0 / 15%);
  -moz-box-shadow: 0px 4px 24px rgb(0 0 0 / 15%);
  width: 100%;
}

.crtifct-hdng {
  margin-bottom: 67px;
}

.lorem-para {
  max-width: 1004px;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 80px;
  font-size: 28px;
  color: #696767;
}

.lorem-sec .common-header {
  margin-bottom: 15px;
}

.lorem-sec {
  position: relative;
}

.lorem-pattern-left {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  width: 210px;
}

.lorem-pattern-left img,
.lorem-pattern-right img {
  width: 100%;
}

.lorem-pattern-right {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
  width: 210px;
}

.lorem-grp-bg img {
  border-radius: 20px;
  width: 100%;
}

.lorem-green {
  width: 138px;
  height: 138px;
  background: #33efa0;
  border-radius: 20px;
  position: absolute;
  left: -23px;
  top: -25px;
  z-index: -1;
}

.lorem-blue {
  width: 231px;
  height: 231px;
  background: #1d9bf0;
  border-radius: 20px;
  position: absolute;
  right: -27px;
  bottom: -29px;
  z-index: -1;
}

.lorem-sec .lorem-position {
  position: relative;
}

.lorem-sec .container {
  position: relative;
  z-index: 1;
}

.lorem-sec:after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 54%;
  background: #ecf7ff;
}

.video-main {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  display: inline-block;
  width: 277px;
  height: 277px;
}

.waves {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.64);
  opacity: 0;
  -ms-filter: 'progid:DXImageTransform.Microsoft.Alpha(Opacity=0)';
  border-radius: 100%;
  left: 0;
  top: 0;

  -webkit-animation: waves 3s ease-in-out infinite;
  animation: waves 3s ease-in-out infinite;
}

@keyframes waves {
  0% {
    -webkit-transform: scale(0.2, 0.2);
    transform: scale(0.2, 0.2);
    opacity: 0;
    -ms-filter: 'progid:DXImageTransform.Microsoft.Alpha(Opacity=0)';
  }

  50% {
    opacity: 0.9;
    -ms-filter: 'progid:DXImageTransform.Microsoft.Alpha(Opacity=90)';
  }

  100% {
    -webkit-transform: scale(0.9, 0.9);
    transform: scale(0.9, 0.9);
    opacity: 0;
    -ms-filter: 'progid:DXImageTransform.Microsoft.Alpha(Opacity=0)';
  }
}

.wave-1 {
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
}

.wave-2 {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}

.wave-3 {
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
}

.videoic {
  height: 61px;
  width: 61px;
  text-align: center;
  border-radius: 100%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  z-index: 999;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  z-index: 1;
}

.shadownone {
  box-shadow: none;
}

.whyus-block .commonheadpara p {
  color: #696767;
  max-width: 650px;
  margin: 0 auto;
}

.whyimg {
  text-align: center;
}

.whyitems .common-header {
  margin-bottom: 33px;
  padding-bottom: 20px;
}

.pos-re {
  position: relative;
}

.whypattern {
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
  width: 60%;
}

.whypattern img {
  width: 100%;
}

.whyimg-icon {
  position: absolute;
  top: -4%;
  right: 10%;
  z-index: -1;
}

.whyimg-icon1 {
  position: absolute;
  top: -4%;
  left: 11%;
  z-index: 1;
}

.whypattern.why-3rditem {
  width: 46%;
  bottom: 0;
  display: flex;
  display: -ms-flexbox;
  align-items: end;
}

.whyimg-bgicon {
  width: 72px;
  height: 72px;
  position: relative;
  display: flex;
  display: -ms-flexbox;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  box-shadow: 0px 14px 44px rgba(86, 91, 221, 0.1);
  -webkit-box-shadow: 0px 14px 44px rgba(86, 91, 221, 0.1);
  -moz-box-shadow: 0px 14px 44px rgba(86, 91, 221, 0.1);
  border-radius: 20px;
}

.whyimg-bgicon img {
  position: relative;
  z-index: 1;
}

.whyimg-bgicon:after {
  content: '';
  position: absolute;
  width: 52px;
  height: 52px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  background: #ffffff;
  box-shadow: 0px 16px 44px rgba(13, 15, 28, 0.1);
  -webkit-box-shadow: 0px 16px 44px rgba(13, 15, 28, 0.1);
  -moz-box-shadow: 0px 16px 44px rgba(13, 15, 28, 0.1);
  border-radius: 20px;
}

.bgicon {
  transform: rotate(9.92deg);
  -webkit-transform: rotate(9.92deg);
  -moz-transform: rotate(9.92deg);
  position: absolute;
  top: 13%;
  right: 0;
}

.bgicon1 {
  transform: rotate(-12.14deg);
  -webkit-transform: rotate(-12.14deg);
  -moz-transform: rotate(-12.14deg);
  position: absolute;
  top: 9%;
  left: 17%;
}

.whyitems .rowspan {
  align-items: center;
}

.whyiteminner .whyitems:first-child {
  padding-top: 40px;
}

.whyiteminner .whyitems:last-child {
  padding-bottom: 0;
}

.whyiteminner .whyitems:nth-child(even) .rowspan {
  flex-direction: row-reverse;
}

.whylftpattern {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 30%;
}

.whylftpattern img {
  width: 100;
}

.whyimg-icon-center {
  position: absolute;
  bottom: 5%;
  right: 18%;
  z-index: -1;
}

.whyimg-icon-center1 {
  position: absolute;
  top: -16%;
  left: 8%;
  z-index: -1;
}

.whyimg-bgcircle {
  position: absolute;
  width: 201px;
  height: 201px;
  border-radius: 50%;
  display: block;
  background: #ff6a6a;
  top: 0;
  left: 41%;
}

.whyimg-bgsmallcircle {
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: block;
  background: #ff9a7a;
  bottom: 34%;
  left: 10%;
  z-index: -1;
}

.whyimg-bgsmallcircle-green {
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: block;
  background: #6bf0a8;
  top: -10%;
  right: 32%;
  z-index: -1;
}

.whyimg img {
  position: relative;
  z-index: 1;
  width: 100%;
}

.mainbody {
  overflow: hidden;
}

.whyitems .rowspan .col-md-4 {
  width: 40%;
}

.whyitems .rowspan .col-md-8 {
  width: 60%;
}

.banner.methodology-banner:after {
  top: auto;
  transform: inherit;
  bottom: -36%;
  left: -22%;
  animation: scalein 7s;
  animation-iteration-count: infinite;
}

.banner-con p {
  max-width: 434px;
}

.ingerpanel {
  padding: 70px 0 0;
}

.ingerpanel figure img {
  width: 100%;
}

.ingerpanel .common-header h2 {
  max-width: 90%;
  line-height: 1.2;
}

.process-block {
  background: linear-gradient(90deg, #13acd5 2.48%, #6fcde6 78.46%);
  position: relative;
}

.process-block:after {
  content: '';
  width: 100%;
  height: 100%;
  opacity: 0.5;
  background: url(images/process-pattern.png) no-repeat;
  background-size: cover;
  background-position: top center;
  position: absolute;
  top: 0;
  left: 0;
  animation: banmove 6s;
  animation-iteration-count: infinite;
}

.process-block>* {
  position: relative;
  z-index: 1;
}

.textwhite.common-header h2,
.textwhite.common-header h3 {
  color: #fff;
}

.common-header.textwhite:after {
  background: #fff;
}

.process-item {
  color: #fff;
  margin-bottom: 84px;
}

.process-item:last-child {
  margin-bottom: 0;
}

.process-item .common-header {
  margin-bottom: 33px;
  padding-bottom: 20px;
}

.process-item figure img {
  width: 100%;
  -webkit-box-shadow: 0px 0px 11px 0px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0px 0px 11px 0px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 0px 11px 0px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
}

.process-item p {
  max-width: 80%;
}

.process-item .rowspan {
  align-items: center;
  --bs-gutter-x: 60px;
}

.process-item:nth-child(even) .rowspan {
  flex-direction: row-reverse;
}

.processlist {
  margin-top: 84px;
}

.inter-panel {
  display: flex;
  display: -ms-flexbox;
  align-items: center;
}

.inter-panel h4 {
  font-weight: 400;
}

.inter-panel figure {
  width: 87px;
  height: 87px;
  flex: 0 0 auto;
  margin-right: 19px;
}

.inter-panel figure img {
  object-fit: contain;
  width: 100%;
  height: 100%;
}

figure {
  margin-bottom: 0;
}

.need-internetblock .rowspan {
  --bs-gutter-y: 60px;
}

.need-internetblock {
  margin: 97px 0 84px;
}

.total-counterblock {
  background: linear-gradient(90deg, #13acd5 2.48%, #6fcde6 78.46%);
  position: relative;
  padding-top: 144px;
}

.needed-block.common-gap {
  padding-bottom: 60px;
}

.upperwhite {
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
}

.upperwhite img {
  width: 100%;
}

.countercontain {
  display: flex;
  display: -ms-flexbox;
  margin: 0 -40px;
}

.countercontain>* {
  width: 50%;
}

.counterit {
  font-size: 28px;
  text-align: center;
  color: #fff;
  text-transform: capitalize;
  padding: 0 40px;
  line-height: 1.3;
}

.counterit span {
  font-weight: 700;
  font-size: 115px;
  display: block;
  width: 100%;
}

.proconinner {
  display: flex;
  display: -ms-flexbox;
  align-items: center;
}

.social-proofinner {
  background: #ffffff;
  border: 1px solid #e8e8e8;
  box-shadow: 0px 6px 16px rgb(0 0 0 / 12%);
  -webkit-box-shadow: 0px 6px 16px rgb(0 0 0 / 12%);
  -moz-box-shadow: 0px 6px 16px rgb(0 0 0 / 12%);
  border-radius: 8px;
  padding: 21px 18px;
  color: #878787;
}

.profile-info {
  color: #767676;
}

.star-rating {
  padding-bottom: 8px;
}

.profigure {
  width: 43px;
  height: 43px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 14px;
  flex: 0 0 auto;
}

.profigure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.profile-info h6 {
  margin-bottom: 0;
}

.profile-info p {
  font-size: 14px;
}

.procon {
  display: flex;
  display: -ms-flexbox;
  align-items: center;
  justify-content: space-between;
}

.pro-social img {
  width: 23px;
}

.social-proofitem {
  padding: 20px 13px;
}

.slick-arrow {
  width: 48px;
  height: 48px;
  background: #ffffff;
  box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  z-index: 1;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  opacity: 1;
}

.slick-arrow:hover {
  background: #1d9bf0;
}

.slick-arrow:before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  display: inline-block;
  width: 10px;
  height: 10px;
  border-right: 0.12em solid #979797;
  border-top: 0.12em solid #979797;

  border-left: 0;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.slick-arrow:hover::before {
  border-color: #fff;
}

.slick-arrow.slick-prev:before {
  transform: translate(-50%, -50%) rotate(228deg);
  -webkit-transform: translate(-50%, -50%) rotate(228deg);
  -moz-transform: translate(-50%, -50%) rotate(228deg);
  left: 52%;
}

.slick-arrow.slick-next:before {
  transform: translate(-50%, -50%) rotate(43deg);
  -webkit-transform: translate(-50%, -50%) rotate(43deg);
  -moz-transform: translate(-50%, -50%) rotate(43deg);
  left: 48%;
}

.innerheader .common-header {
  margin-bottom: 14px;
}

.innerheader {
  margin-bottom: 50px;
}

.faq-block .accordion-button {
  font-size: 22px;
  text-transform: capitalize;
  font-weight: 600;
  color: #1b1b1b;
  background: transparent;
  border: none !important;
  padding: 25px 0;
  border-radius: 0;
  box-shadow: none;
  line-height: 1.3;
}

.faq-block .accordion-item {
  border: none;
  border-bottom: 1px solid #bebebe;
  border-radius: 0;
}

.faq-block .accordion-body {
  padding: 0 0 28px;
}

.accordion-button:not(.collapsed)::after,
.accordion-button::after {
  background-image: url(images/uparrow.svg);
  background-size: 12px;
  background-position: center;
}

.testimonial-block {
  background: #ecf7ff;
  position: relative;
  overflow: hidden;
}

.testipattern {
  position: absolute;
  top: 0;
  right: 0;
  width: 150px;
}

.testipattern img {
  width: 100%;
}

.test-infosec {
  font-size: 20px;
  color: #303030;
  font-weight: 600;
  text-transform: capitalize;
}

.test-infosec h5 {
  font-size: 18px;
  text-transform: capitalize;
  font-weight: 600;
  margin-bottom: 2px;
  color: #1d9bf0;
}

.test-infosec h6 {
  font-size: 14px;
  text-transform: capitalize;
  font-weight: 600;
  color: #1d9bf0;
}

.testiblockinner {
  display: flex;
  display: -ms-flexbox;
  align-items: center;
}

.testiblockinner figure {
  width: 195px;
  flex: 0 0 auto;
  margin-right: 50px;
  position: relative;
}

.testiblockinner figure:after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  background: url(images/testi-pattern.svg) no-repeat bottom center;
  background-size: contain;
}

.testiblockinner figure img {
  position: relative;
  z-index: 1;
}

.showmethod-block h2,
.contact-us-sec .common-header h2,
.social-block .common-header h2,
.showmethod-block .common-header h2,
.needed-block .common-header h2,
.need-internetblock .inter-panel h4 {
  color: #000;
}

.common-header h2,
.common-header h4,
.needed-block h4 {
  color: #303030;
}

.plan-blockarea .common-header h2 {
  color: #1c1c1c;
}

.flexible-block {
  position: relative;
  background: #ecf7ff;
  margin-top: 120px;
}

.flexible-block .rowspan {
  align-items: center;
}

.flexible-con {
  padding-left: 100px;
}

.flexible-block .common-header {
  margin-bottom: 30px;
}

.flexible-con p {
  max-width: 80%;
}

/*----corporate*****************/
/* .corporatebanner figure::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(-90deg,
            rgba(217, 217, 217, 0) 26.25%,
            #d9d9d9 72.09%);
} */
.corporatebanner:after {
  display: none;
}

.inner-banner figure {
  position: relative;
}

.inner-banner .common-header p {
  max-width: 474px;
}

.inner-banner .common-header:after {
  display: none;
}

.inner-banner-con {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  display: -ms-flexbox;
  align-items: center;
  flex-wrap: wrap;
  z-index: 1;
}

.inner-banner {
  background: #f0f0f0;
  position: relative;
  /* overflow: hidden; */
}

.inner-banner .common-header {
  padding-bottom: 0;
  margin-bottom: 23px;
}

.inner-banner-con h1 {
  margin-bottom: 20px;
}

.together-con .common-header h2 {
  text-transform: capitalize;
  color: #303030;
  max-width: 464px;
}

.together-con ul li {
  font-size: 20px;
  color: #060606;
  margin-bottom: 18px;
}

.together-con ul {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 36px;
  max-width: 427px;
}

.together-con ul li:before {
  content: '';
  position: absolute;
  left: 0;
  top: 2px;
  height: 30px;
  width: 18px;
  background: url(images/tick.svg) no-repeat;
  background-size: 17px;
  background-position: center;
}

.together-con ul li {
  position: relative;
  padding-left: 25px;
}

.together-con ul li:last-child {
  margin-bottom: 0;
}

.together-pattern {
  position: absolute;
  top: 8%;
  left: 0;
  z-index: -1;
  width: 51%;
}

.together-pattern img {
  width: 100%;
}

.lets-together {
  position: relative;
}

.lets-together .together-goals:nth-child(even) .flx-row {
  flex-direction: row-reverse;
}

.help-circle {
  width: 75%;
  border-radius: 50%;
  position: absolute;
  bottom: 45px;
  left: 3%;
  z-index: -1;
}

.lets-together .col-position {
  position: relative;
  z-index: 1;
}

.help-circle img {
  width: 100%;
}

.hlp-con li h5 {
  margin-bottom: 1px;
}

.hlp-con.together-con ul li:before {
  height: 24px;
}

.hlp-con.together-con .common-header h2 {
  max-width: inherit;
}

.lets-together .rowspace {
  --bs-gutter-x: 25px;
}

.together-con.hlp-con ul {
  max-width: 561px;
}

.help-pattern1 {
  position: absolute;
  right: -22px;
  top: 16%;
  width: 307px;
  height: 307px;
  background: rgb(84 90 232 / 6%);
  border-radius: 50%;
}

.help-pattern2 {
  position: absolute;
  right: 0;
  top: 62%;
}

.contact-us-sec {
  position: relative;
  background: #ecf7ff;
}

.help-bttr {
  position: relative;
  background: #ecf7ff;
  margin-top: 160px;
}

.togrther-plan-pattern {
  position: absolute;
  top: -132px;
  left: 0;
  width: 100%;
  z-index: -1;
  height: 160px;
}

.togrther-plan-pattern img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.contact-pattern {
  position: absolute;
  top: -80px;
  left: 0;
  width: 100%;
  z-index: -1;
  height: 160px;
}

.contact-pattern img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.contact-form .rowspace {
  --bs-gutter-y: 14px;
}

::-webkit-input-placeholder {
  color: #7d7d7d;
}

:-ms-input-placeholder {
  color: #7d7d7d;
}

::-moz-placeholder {
  color: #7d7d7d;
}

:-moz-placeholder {
  color: #7d7d7d;
}

.contact-form ::-webkit-input-placeholder {
  color: #7d7d7d;
}

.contact-form :-ms-input-placeholder {
  color: #7d7d7d;
}

.contact-form ::-moz-placeholder {
  color: #7d7d7d;
}

.contact-form :-moz-placeholder {
  color: #7d7d7d;
}

.form-control:focus {
  box-shadow: none;
  border-color: #1d9bf0 !important;
}

.ralp-profile {
  display: flex;
  display: -ms-flexbox;
  align-items: center;
  justify-content: space-between;
  /* background: #b8e1ff; */
  border-radius: 10px 10px 0px 0px;
  padding: 15px 27px 20px 29px;
}

.ralp-con h4 {
  margin-bottom: 2px;
  font-weight: 600;
  text-transform: capitalize;
}

.ralp-con p {
  font-weight: 600;
  font-size: 10px;
  text-transform: capitalize;
  color: #000000;
}

.ralp-email {
  background: #ffffff;
  box-shadow: 0px 11px 44px rgba(0, 0, 0, 0.06);
  border-radius: 10px;
  padding: 15px 30px;
  border-top-right-radius: 0;
  border-top-left-radius: 0;
}

.ralp-email a {
  font-weight: 600;
  font-size: 14px;
  color: #000000;
}

.ralp-email a:hover {
  color: #1d9bf0;
}

.contact-us-sec .rowspace {
  --bs-gutter-x: 54px;
}

.contact-us-sec .rowformspace {
  --bs-gutter-x: 14px;
}

.ralp-blk {
  max-width: 365px;
}

.learning-inner {
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0px 0px 15px rgb(0 0 0 / 7%);
  -webkit-box-shadow: 0px 0px 15px rgb(0 0 0 / 7%);
  -moz-box-shadow: 0px 0px 15px rgb(0 0 0 / 7%);
}

.learning-header {
  background: #6dade6;
  border-radius: 10px 10px 0px 0px;
  text-align: center;
  padding: 10px 45px;
}

.learning-header h2 {
  font-weight: 700;
  font-size: 88px;
  text-transform: capitalize;
  margin-bottom: 5px;
  color: #ffffff;
}

.learning-header h5 {
  font-weight: 400;
  text-transform: capitalize;

  color: #ffffff;
}

.learning-body {
  padding: 39px 23px;
}

.learning-body ul {
  padding-left: 0;
}

.learning-body ul li {
  list-style-type: none;
  background: url(images/tickblue.svg) no-repeat top 6px left;
  background-size: 17px;
  padding-left: 30px;
  margin-bottom: 13px;
  color: #000;
  font-size: 15px;
}

.learning-body ul li:last-child {
  margin-bottom: 0;
}

.learning-item {
  padding: 8px;
}

.learning-level-block {
  position: relative;
}

.learning-slider {
  position: relative;
}

.learning-slider .slick-list {
  padding-right: 8%;
}

.learning-slider:after {
  content: '';
  width: 20%;
  height: 100%;
  background: linear-gradient(270deg,
      #ffffff 68.23%,
      rgba(255, 255, 255, 0) 100%);
  position: absolute;
  top: 0;
  right: -10%;
}

.learning-level-block .container {
  max-width: 100%;
  padding-right: 0;
}

.learninginnerslider {
  margin-left: auto;
}

.learninginnerslider .col-lg-5 {
  width: 36%;
}

.learninginnerslider .col-lg-7 {
  width: 64%;
}

.learning-item:nth-child(3n + 2) .learning-header {
  background: #518ec2;
}

.learning-item:nth-child(3n + 2) .learning-body ul li {
  background: url(images/tickblue1.svg) no-repeat top 6px left;
  background-size: 17px;
}

.learning-item:nth-child(3n + 3) .learning-header {
  background: #326a9a;
}

.learning-item:nth-child(3n + 3) .learning-body ul li {
  background: url(images/tickblue2.svg) no-repeat top 6px left;
  background-size: 17px;
}

.learning-slider {
  padding-bottom: 55px;
}

.slick-dots li button:before {
  display: none;
}

.slick-dots li {
  width: auto;
  height: auto;
  margin: 0 4px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.slick-dots li button {
  width: 12px;
  height: 12px;
  background: #d9d9d9;
  border-radius: 50%;
  padding: 0;
}

.slick-dots li.slick-active button,
.slick-dots li:hover button {
  background: #2b80ca;
}

.learninglft {
  padding-top: 80px;
}

.learninglft h6 {
  margin-bottom: 4px;
  color: #1d9bf0;
  font-weight: 400;
}

.learning-slider .slick-prev {
  bottom: -35px;
  top: auto;
  transform: inherit;
  left: 7px;
}

.learning-slider .slick-next {
  bottom: -35px;
  top: auto;
  transform: inherit;
  margin-right: 8%;
}

.learning-slider .slick-dots {
  width: 90%;
}

.formpanelbox {
  background: #ffffff;
  border: 2px solid #1d9bf0;
  box-shadow: 0px 11px 44px rgba(0, 0, 0, 0.06);
  -webkit-box-shadow: 0px 11px 44px rgba(0, 0, 0, 0.06);
  -moz-box-shadow: 0px 11px 44px rgba(0, 0, 0, 0.06);
  border-radius: 10px;
  padding: 29px 38px 49px;
}

.form-floating>.form-control:focus~label,
.form-floating>.form-control:not(:placeholder-shown)~label,
.form-floating>.form-select~label {
  opacity: 1;
  transform: scale(0.85) translateY(-1rem) translateX(0.55rem);
  color: #000000;
  font-weight: 600;
  text-transform: capitalize;
  background-color: #fff;
  padding: 0 7px 6px;
  height: auto;
}

.form-floating>input:focus,
.form-floating>input:not(:placeholder-shown),
.form-floating>.form-control:focus,
.form-floating>.form-control:not(:placeholder-shown),
.form-floating>textarea:focus,
.form-floating>textarea:not(:placeholder-shown) {
  border-color: #1d9bf0 !important;
}

.form-floating>.form-control:focus,
.form-floating>.form-control:not(:placeholder-shown) {
  padding-top: 0.625rem;
  padding-bottom: 0.625rem;
}

.form-floating {
  margin-bottom: 16px;
}

.formfooter {
  margin-top: 40px;
}

.formfooter h6 {
  margin-top: 22px;
  font-weight: 600;
}

.stepscon h6 {
  font-weight: 400;
  margin-bottom: 4px;
  color: #1d9bf0;
}

.starting-learnitem .rowspan {
  align-items: center;
}

.starting-learnitem {
  padding: 0 20px;
}

.starting-learnslider .slick-prev {
  left: -40px;
}

.starting-learnslider .slick-next {
  right: -40px;
}

.stepscon {
  padding-right: 40px;
}

.starting-learn-block {
  position: relative;
}

.started-pattern {
  position: absolute;
  bottom: 60px;
  right: 0;
  z-index: -1;
  width: 27%;
}

.started-pattern img {
  width: 100%;
}

.stepscon h4 {
  color: #303030;
}

.starting-learn-block h2 {
  color: #000;
}

.plans-block .common-header {
  margin-bottom: 24px;
}

.pricing-blk-sec {
  background: #ffffff;
  box-shadow: 0px 11px 44px rgba(0, 0, 0, 0.06);
  -webkit-box-shadow: 0px 11px 44px rgba(0, 0, 0, 0.06);
  -moz-box-shadow: 0px 11px 44px rgba(0, 0, 0, 0.06);
  border-radius: 10px;
  padding: 52px 23px 65px;
}

.pricing-blk {
  padding-top: 19px;
}

.pricing-blk-sec h6 {
  font-size: 17px;
  text-transform: capitalize;
  margin-bottom: 48px;
}

.pricing-blk-sec h2 {
  font-size: 68px;
  text-transform: capitalize;
}

.pricing-blk-sec h5 {
  font-weight: 600;
  font-size: 22px;
  margin-bottom: 62px;
}

.pricing-blk-sec .cmn-btn {
  margin-top: 18px;
}

.pricing-blk-sec .cmn-btn.border-btn {
  border: 2px solid #1d9bf0;
  color: #1d9bf0;
}

.form-group {
  margin-bottom: 15px;
}

.pricing-blk-sec .cmn-btn {
  font-size: 18px;
  font-weight: 700;
}

.subs-blk .common-header {
  margin-bottom: 24px;
}

.subs-list {
  display: flex;
  align-items: center;
}

.subs-right {
  background: #ffffff;
  box-shadow: 0px 11px 44px rgb(0 0 0 / 6%);
  border-radius: 10px;
  padding: 33px 31px 33px 63px;
  margin-left: -44px;
  position: relative;
  z-index: -1;
  display: flex;
  display: -ms-flexbox;
  align-items: center;
  width: calc(100% - 44px);
  text-align: left;
}

.subs-right h5 {
  font-weight: 400;
  font-size: 20px;
}

.subs-left {
  background: #ffffff;
  box-shadow: 0px 11px 44px rgba(0, 0, 0, 0.06);
  border-radius: 10px;
  width: 88px;
  height: 88px;
  flex: 0 0 88px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.subs-blk .rowspace {
  --bs-gutter-x: 67px;
  --bs-gutter-y: 28px;
}

.subs-blk .rowspace {
  margin-top: 22px;
}

.the-free {
  position: relative;
  background: #ecf7ff;
}

.freeblkimg {
  width: 109px;
  height: 109px;
  background: #ffffff;
  box-shadow: 0px 11px 44px rgba(0, 0, 0, 0.06);
  border-radius: 10px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  margin-bottom: 17px;
  position: relative;
}

.free-blk-area p {
  max-width: 167px;
  margin: 0 auto;
  color: #000000;
}

.big-tick img {
  width: 100%;
}

.big-tick {
  padding-right: 36px;
}

.free-con .common-header {
  max-width: 483px;
  margin-top: 40px;
}

.number {
  position: absolute;
  left: 0;
  top: 0;
}

.freecrcl- {
  position: absolute;
  right: 0;
  top: 17%;
  animation: banmove 6s;
  animation-iteration-count: infinite;
}

.plns-pg {
  background: linear-gradient(90deg, #8ec8ef 0%, #1d9bf0 100%);
  position: relative;
  padding: 130px 0;
}

.plns-pg::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -3px;
  height: 75px;
  width: 100%;
  background: url(images/plns-pg-pttrn.png) no-repeat;
  background-size: 100% 100%;
  background-position: top;
}

.plns-pg ul {
  list-style-type: none;
  padding-left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 15px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.plns-pg .cmn-btn {
  background: transparent;
  border: 1px solid #ffffff;
}

.plns-pg ul li {
  margin: 0 12px;
}

.plns-pg ul li:first-child {
  margin-left: 0;
}

.plns-pg ul li:last-child {
  margin-right: 0;
}

.plns-pg .inner-banner-sec-con h2 {
  text-transform: capitalize;
  color: #ffffff;
}

.plns-pg .inner-banner-sec-con ul li {
  font-weight: 600;
  font-size: 20px;
  text-transform: capitalize;
  position: relative;
  color: #ffffff;
  padding-left: 24px;
}

.plns-pg ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 30px;
  width: 18px;
  background: url(images/white-tick.svg) no-repeat;
  background-size: 23px;
  background-position: center;
}

.plns-pg .cmn-btn:hover {
  background: #ffffff;
  color: #000;
}

.formpanel-logo {
  margin-bottom: 34px;
  text-align: center;
}

.formpanel-logo img {
  max-width: 132px;
  display: inline-block;
}

.formfooter h6 a {
  text-transform: initial;
}

.pro-social a img {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.pro-social a:hover img {
  transform: scale(1.1);
}

.subs-blk .common-header h2 {
  text-transform: inherit;
}

.subs-blk p {
  color: #404040;
}

.pricing-blk-sec .cmn-btn.border-btn:hover {
  background: #1d9bf0;
  color: #fff;
}

.mobile-block {
  display: none;
}

.plans-sec-area.common-gap {
  padding: 40px 0 120px;
}

.together-goals {
  position: relative;
}

.innerban .common-header {
  padding-bottom: 0;
}

.starting-learnslider {
  padding: 15px 0;
}

.mobilebanner {
  display: none;
}

.pro-social img {
  width: 23px;
}

/*.banner figure{
  width: 80%;
}
.banner:before{
  content: "";
    width: 60%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(90deg, #F0F0F0 57.85%, rgba(240, 240, 240, 0) 81.98%);
    z-index: 1;

}*/
/*=========support 22/09/2022 ss==========*/
.woocommerce-account nav.woocommerce-MyAccount-navigation {
  padding: 0;
  background: #24334f;
  min-height: 100vh;
}

.woocommerce-account nav.woocommerce-MyAccount-navigation ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.woocommerce-account nav.woocommerce-MyAccount-navigation ul li {
  padding: 18px 30px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.method-icon img {
  margin-bottom: 15px;
}

.woocommerce-account nav.woocommerce-MyAccount-navigation ul li a {
  font-weight: 700;
}

.woocommerce-MyAccount-content .button,
.woocommerce-form .button,
.woocommerce-MyAccount-content .btn,
.bbb-btn-join,
.return-to-shop .button {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  background-color: #1d9bf0 !important;
  box-shadow: 0px 6px 32px rgb(29 155 240 / 29%) !important;
  border-radius: 8px !important;
  padding: 12px 20px !important;
  text-transform: capitalize;
  font-weight: 600 !important;
  color: #ffffff !important;
  text-align: center;
  line-height: 1.1 !important;
}

.woocommerce-MyAccount-content .button:hover,
.woocommerce-form .button:hover,
.formpanelbox a:hover,
.woocommerce-MyAccount-content .btn:hover,
.bbb-btn-join:hover,
.page-template-how-it-works .formpanelbox button[type='submit']:hover,
.return-to-shop .button:hover,
.woocommerce-cart .shop_table .button:hover,
.cart_totals .button:hover,
.single-product .summary .button:hover,
.woocommerce-checkout .woocommerce-checkout-review-order .button:hover {
  background-color: #2b80ca !important;
}

.woocommerce-MyAccount-content .method-icon {
  margin-bottom: 0;
}

.woocommerce-MyAccount-content .method-block {
  padding: 40px 50px 20px 50px;
  height: 100%;
}

.woocommerce-account h1.entry-title {
  font-size: 50px;
  padding-bottom: 50px !important;
}

.woocommerce-MyAccount-content h2,
.woocommerce-MyAccount-content h3 {
  font-size: 30px;
  margin-bottom: 25px;
}

.formpanelbox a {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  background-color: #1d9bf0 !important;
  box-shadow: 0px 6px 32px rgb(29 155 240 / 29%) !important;
  border-radius: 8px !important;
  padding: 12px 20px !important;
  text-transform: capitalize;
  font-weight: 600 !important;
  color: #ffffff !important;
  text-align: center;
  line-height: 1.1 !important;
}

.formpanelbox {
  padding: 30px 30px 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.woocommerce-MyAccount-content .btn {
  padding: 12px 15px !important;
  border: 0 !important;
}

.acc-prf-wrp {
  display: inline-flex;
  align-items: center;
}

.acc-prf-wrp i {
  width: 30px;
  height: 30px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background-color: #1d9bf0;
  margin-right: 5px;
}

.starting-learn-block .entry-header h1 {
  text-align: center;
  font-size: 50px;
  margin-bottom: 30px;
}

.hdr-btn-wrp-cls {
  border: 2px solid #1d9bf0;
  padding: 30px;
  border-radius: 10px;
  background-color: #ecf7ff;
  box-shadow: 0px 6px 32px rgb(29 155 240 / 29%) !important;
  max-width: 500px;
  margin: 0 auto;
}

/*=========support 22/09/2022 ss end==========*/
/*=========support 23/09/2022 ss==========*/
.page-template-how-it-works .formpanelbox p {
  width: 100%;
}

.page-template-how-it-works .formpanelbox .woocommerce-privacy-policy-text a {
  display: inline-block !important;
  background-color: transparent !important;
  padding: 0 !important;
  margin: 0 !important;
  color: #1d9bf0 !important;
  box-shadow: none !important;
}

.page-template-how-it-works .formpanelbox button[type='submit'] {
  margin-top: 15px;
}

.cart_totals .button {
  width: 100%;
}

.page-template-how-it-works .formpanelbox button[type='submit'],
.woocommerce-cart .shop_table .button,
.cart_totals .button,
.single-product .summary .button,
.woocommerce-checkout .woocommerce-checkout-review-order .button {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  background-color: #1d9bf0 !important;
  box-shadow: 0px 6px 32px rgb(29 155 240 / 29%) !important;
  border-radius: 8px !important;
  padding: 12px 20px !important;
  text-transform: capitalize;
  font-weight: 600 !important;
  color: #ffffff !important;
  text-align: center;
  line-height: 1.1 !important;
  border: 0 !important;
}

.sign-wrp-how-it-works {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  align-items: center;
}

.sign-wrp-how-it-works a {
  margin-left: 20px;
}

.woocommerce-shop .woocommerce-products-header {
  text-align: center;
  padding-top: 30px;
}

.single-product .summary {
  margin: 0 auto;
  float: none !important;
  padding: 15px;
  box-shadow: 0px 6px 32px rgb(29 155 240 / 29%);
  border-radius: 10px;
  border: 1px solid #1d9bf0;
}

.single-product .summary h1 {
  font-size: 50px;
  text-align: center;
}

.single-product .summary .button {
  margin-top: 15px;
}

.woocommerce-checkout .entry-content h3 {
  margin-top: 15px;
}

.woocommerce-checkout .entry-content .select2-container .select2-selection--single {
  height: 52px;
}

.woocommerce-checkout .entry-content .select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 50px;
  height: 100%;
}

.woocommerce-checkout .entry-content .select2-container--default .select2-selection--single .select2-selection__arrow {
  top: 50%;
  transform: translateY(-50%);
}

/*=========support 23/09/2022 ss==========*/
/*-----------Support 26/09/22------------*/
.woocommerce-account .starting-learn-block {
  /* padding: 0; */
  border-top: 5px solid #1d9bf0;
  padding-left: 20px;
  padding-right: 20px;
}

.woocommerce-account .starting-learn-block .container {
  max-width: inherit;
  padding: 0;
}

.woocommerce-account .starting-learn-block .entry-header {
  display: none;
}

.log-dashboard-wrp {
  padding: 15px 20px;
  background: #fff;
  border-right: 1px solid #ddd;
}

.woocommerce-account nav.woocommerce-MyAccount-navigation ul li a {
  color: #fff;
}

.woocommerce-account nav.woocommerce-MyAccount-navigation ul li.is-active,
.woocommerce-account nav.woocommerce-MyAccount-navigation ul li:hover {
  background: #1d9bf0;
}

.dashboard-body {
  padding: 20px 30px;
}

.woocommerce-account {
  background: #ecf7ff;
}

.dashboard-header {
  background: #fff;
  padding: 25px 20px;
  min-height: 88px;
  display: flex;
  align-items: center;
}

.dashboard-header .row {
  width: 100%;
}

.woocommerce-account.logged-in .main-head,
.woocommerce-account.logged-in .footer {
  display: none;
}

.woocommerce-account .woocommerce-MyAccount-content {
  width: 70%;
}

.woocommerce-account .navbar-brand {
  width: 140px;
}

.dashboard-header .col-md-6:last-child {
  text-align: right;
}

.logout-btn {
  color: #696767;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.logout-btn i {
  margin-right: 8px;
}

.logout-btn:hover {
  color: #1d9bf0;
}

.dash-title-wrap h2 {
  color: #1d9bf0;
}

.dashboard-body .method-icon img {
  display: block;
  margin: 0 auto 15px;
}

.woocommerce-MyAccount-content h3 {
  font-size: 24px;
}

.woocommerce-Address {
  background: #fff;
  border-radius: 8px;
  padding: 20px;
}

.usr-img-wrp span {
  margin-right: 10px;
}

.woocommerce-account .woocommerce-orders-table,
.woocommerce-account .addresses,
.woocommerce-account .woocommerce-MyAccount-paymentMethods {
  padding: 20px;
}

/* 29.09.22 */

.woocommerce-account.logged-in .starting-learn-block {
  padding: 0;
}

.woocommerce-account.logged-in .woocommerce-MyAccount-navigation {
  width: 18%;
}

.woocommerce-account.logged-in .woocommerce-MyAccount-content {
  width: 82%;
  margin-left: auto;
}

.woocommerce-account.logged-in nav.woocommerce-MyAccount-navigation ul li {
  border-bottom: 1px solid #152238;
}

.woocommerce-account.logged-in .woocommerce-MyAccount-content .method-block {
  padding: 0;
}

.woocommerce-account.logged-in .woocommerce-MyAccount-content .dash-clock,
.woocommerce-account.logged-in .woocommerce-MyAccount-content .buye-sec-details-wrp {
  padding: 15px;
  border-bottom: 1px solid #3794ea;
}

.woocommerce-account.logged-in .woocommerce-MyAccount-content .book-buy-section {
  padding: 15px;
}

.woocommerce-account.logged-in .woocommerce-MyAccount-content .dash-clock {
  display: flex;
  align-items: center;
  justify-content: center;
}

.woocommerce-account.logged-in .woocommerce-MyAccount-content .dash-clock span {
  font-size: 22px;
  color: #3793ea;
  font-weight: 600;
}

.woocommerce-account.logged-in .woocommerce-MyAccount-content .dashicons-clock {
  font-weight: 300;
}

.woocommerce-account.logged-in .entry-content .woocommerce {
  display: flex;
  flex-wrap: wrap;
}

.woocommerce-account.logged-in .my-booking-schedule-section table {
  width: 100%;
  box-shadow: 0px 8px 59px -13px rgb(0 0 0 / 21%);
  -webkit-box-shadow: 0px 8px 59px -13px rgb(0 0 0 / 21%);
  -moz-box-shadow: 0px 8px 59px -13px rgba(0, 0, 0, 0.21);
  background: #fff;
  border-radius: 5px;
  overflow: hidden;
}

.woocommerce-account.logged-in .my-booking-schedule-section table tbody tr th,
.woocommerce-account.logged-in .my-booking-schedule-section table tbody tr td {
  padding: 6px 10px;
  text-align: center;
}

.woocommerce-account.logged-in .my-booking-schedule-section table tbody tr th {
  background: #7c9299 !important;
  color: #fff;
}

.woocommerce-account.logged-in .my-booking-schedule-section table tbody tr {
  border-bottom: 1px solid #7c9299;
}

.woocommerce-account.logged-in .my-booking-schedule-section table tbody tr:last-child {
  border-bottom: none;
}

.woocommerce-account.logged-in .dashboard-body h4 {
  margin-bottom: 10px;
}

.woocommerce-account.logged-in .woocommerce form .form-row {
  padding: 0;
}

.woocommerce-account.logged-in input[type='text'],
.woocommerce-account.logged-in input[type='tel'],
.woocommerce-account.logged-in input[type='password'],
.woocommerce-account.logged-in input[type='email'], 
.woocommerce-account.logged-in select {
  height: 40px;
}

.woocommerce-account .dashboard-body-communication select {
  height: 70px;
}

.woocommerce-account.logged-in .ga_appointments_calendar_header {
  padding: 2% 20px;
}

.woocommerce-account.logged-in .ga_monthly_schedule_wrapper thead th {
  padding-bottom: 2% !important;
  padding-top: 2% !important;
}

.woocommerce-account.logged-in .ga_monthly_schedule_wrapper td {
  padding: 2% 0 !important;
}

.my-booking-schedule-section table tr td:nth-child(4) {
  min-width: 300px;
}

.woocommerce-account.logged-in .woocommerce-MyAccount-content .dashicons-clock {
  margin-right: 6px;
}

/* .....support-11.10.22 */
.dashboard-body-communication .mail-header-button-wrp {
  display: flex;
  align-items: center;
  justify-content: right;
  margin-bottom: 12px;
}

.dashboard-body-communication .write-btn {
  margin-right: 12px;
}

.dashboard-body-communication .wrp-email-fields {
  margin-bottom: 12px;
}

.dashboard-body-communication .ck.ck-editor {
  margin-bottom: 18px;
}

.dashboard-body-communication #email-list {
  margin-top: 30px;
}

.dashboard-body-communication .table-striped>tbody>tr:nth-of-type(odd) {
  --bs-table-accent-bg: transparent;
}

.dashboard-body-communication .table-bordered> :not(caption)>*>* {
  border: 0;
}

.dashboard-body-communication .table-bordered tbody tr:hover {
  border-bottom: 1px solid #dddddd;
  box-shadow: 0px 2px 2px 0px rgb(0 0 0 / 40%);
  -webkit-box-shadow: 0px 2px 2px 0px rgb(0 0 0 / 40%);
  -moz-box-shadow: 0px 2px 2px 0px rgb(0 0 0 / 40%);
}

.dashboard-body-communication .table-bordered tbody tr:first-child:hover {
  border-bottom: 0;
  box-shadow: none;
}

.dashboard-body-communication #mail-form-id .wrp-email-form-fields label {
  font-weight: 700;
  margin-bottom: 8px;
}

.dashboard-body-communication .max-file-upload-txt span {
  color: red;
}

.dashboard-body-communication .ck.ck-toolbar.ck-toolbar_grouping {
  border-top-left-radius: 8px !important;
  border-top-right-radius: 8px !important;
}

.dashboard-body-communication .ck-blurred.ck.ck-content.ck-editor__editable {
  border-bottom-left-radius: 8px !important;
  border-bottom-right-radius: 8px !important;
}

#email-list_filter label {
  display: inline-block;
  width: 100%;
  font-size: 18px;
  color: #000;
  font-weight: 600;
}

#email-list_filter [type='search'] {
  outline-offset: -2px;
  -webkit-appearance: textfield;
  padding: 8px;
  border: 1px solid #ddd;
  border-radius: 5px;
  margin-left: 10px;
  width: 300px;
  max-width: 300px;
}

/* support 14/10/22 start */

.woocommerce-account .starting-learn-block .woocommerce-form.woocommerce-form-login .mo-openid-app-icons a {
  margin-top: 20px;
}

.woocommerce-account.logged-in .starting-learn-block .mail-information table tbody tr td .fa.fa-file {
  font-size: 18px;
}

.woocommerce-account.logged-in .mail-information table td .mail-form-collapse-wrp .wrp-email-form-fields .wrp-email-fields .ck.ck-editor__main .ck.ck-content {
  min-height: 300px;
}

.woocommerce-account.logged-in .woocommerce-MyAccount-content .woocommerce-EditAccountForm.edit-account .woocommerce-form-row.woocommerce-form-row--wide span em {
  margin-top: 5px;
  display: inline-block;
}

/* td, th {
  border: 1px solid #dddddd;
  text-align: left;
  padding: 8px;
} */

.woocommerce-account .starting-learn-block .woocommerce-MyAccount-content .dashboard-body-material table td p {
  margin-top: 3px;
}

.woocommerce-account #email-list_wrapper.dataTables_wrapper #email-list td,
.woocommerce-account #email-list_wrapper.dataTables_wrapper #email-list th {
  padding: 9px 6px;
}

.woocommerce-account.logged-in .woocommerce-MyAccount-content .wrp-email-form-fields .wrp-email-fields .ck.ck-editor__main .ck.ck-content {
  min-height: 300px;
}

/* .woocommerce-account .dashboard-body-communication-details .mail-information{
  padding: 20px 20px;
  border: 1px solid #dddddd;
} */
.mail-form-collapse-wrp .chse-fle-wrp span:last-child {
  color: red;
  display: block;
}

.woocommerce-account .starting-learn-block .woocommerce-MyAccount-content .dashboard-body-communication-details .mail-information .role-student tr td h6,
.woocommerce-account .starting-learn-block .woocommerce-MyAccount-content .dashboard-body-communication-details .mail-information .role-teacher tr td h6 {
  margin-bottom: 6px;
}

/* .woocommerce-account .starting-learn-block .woocommerce-MyAccount-content .dashboard-body-communication-details .mail-information .role-student td:first-child,
.woocommerce-account .starting-learn-block .woocommerce-MyAccount-content .dashboard-body-communication-details .mail-information .role-teacher td:first-child{
  width: 80%;
}
.woocommerce-account .starting-learn-block .woocommerce-MyAccount-content .dashboard-body-communication-details .mail-information .role-student td:last-child,
.woocommerce-account .starting-learn-block .woocommerce-MyAccount-content .dashboard-body-communication-details .mail-information .role-teacher td:last-child{
  width: 20%;
} */

.woocommerce-account .starting-learn-block .woocommerce-MyAccount-content .dashboard-body-communication-details .mail-information .role-teacher td.email-usr-detls {
  width: 74%;
  padding: 7px 12px;
}

.woocommerce-account .starting-learn-block .woocommerce-MyAccount-content .dashboard-body-communication-details .mail-information .role-teacher td.email-tme {
  width: 22%;
  padding: 7px 12px;
  text-align: right;
  padding-right: 5px;
}

.woocommerce-account .starting-learn-block .woocommerce-MyAccount-content .dashboard-body-communication-details .mail-information .role-teacher td.email-reply-exp {
  width: 4%;
  padding-right: 10px;
}

.woocommerce-account .starting-learn-block .woocommerce-MyAccount-content .dashboard-body-communication-details .mail-information .role-teacher td.mail-mssg-td {
  padding: 7px 12px;
}

.woocommerce-account .starting-learn-block .woocommerce-MyAccount-content .dashboard-body-communication-details .mail-information .role-teacher td.mail-attach-td {
  padding: 7px 12px;
}

.woocommerce-account .starting-learn-block .woocommerce-MyAccount-content .dashboard-body-communication-details .mail-information .role-student td.email-usr-detls {
  width: 75%;
  padding: 7px 12px;
}

.woocommerce-account .starting-learn-block .woocommerce-MyAccount-content .dashboard-body-communication-details .mail-information .role-student td.email-tme {
  width: 25%;
  text-align: right;
  padding: 7px 12px;
}

.woocommerce-account .starting-learn-block .woocommerce-MyAccount-content .dashboard-body-communication-details .mail-information .role-student,
.woocommerce-account .starting-learn-block .woocommerce-MyAccount-content .dashboard-body-communication-details .mail-information .role-teacher {
  border: 1px solid #dddddd;
  margin-bottom: 15px;
}

.woocommerce-account .starting-learn-block .woocommerce-MyAccount-content .dashboard-body-communication-details .mail-information .role-student .mail-mssg-td {
  padding: 7px 12px;
}

.woocommerce-account .starting-learn-block .woocommerce-MyAccount-content .dashboard-body-communication-details .mail-information .role-student .mail-attach-td {
  padding: 7px 12px;
}

.woocommerce-account .woocommerce .mail-information .role-student .email-usr-detls .modal-body table tr td {
  padding: 5px;
}

.woocommerce-account .woocommerce .mail-information .role-student .email-usr-detls .modal-content {
  background-color: #ecf7ff;
}

.woocommerce-account .woocommerce .mail-information .role-student .email-usr-detls .wrp-maling-usr-detls,
.woocommerce-account .woocommerce .mail-information .role-teacher .email-usr-detls .wrp-maling-usr-detls {
  padding-top: 0;
}

.woocommerce-account .starting-learn-block .woocommerce-MyAccount-content .dashboard-body-communication-details .mail-information table tr:first-child td {
  padding-top: 20px !important;
}

.woocommerce-account .starting-learn-block .woocommerce-MyAccount-content .dashboard-body-communication-details .mail-information table tr:last-child td {
  padding-bottom: 20px !important;
}

.woocommerce-account .starting-learn-block .woocommerce-MyAccount-content .booking-section .gform_confirmation_wrapper .gform_confirmation_message_1.gform_confirmation_message {
  color: #1d9bf0;
}

.woocommerce-account .woocommerce-MyAccount-content .dashboard-body .my-booking-schedule-section {
  padding-top: 30px;
}

/* fot text area  */
.woocommerce-account .starting-learn-block .woocommerce-MyAccount-content .dashboard-body-communication-details .mail-information .role-teacher .mail-form-rply-td {
  padding: 7px 12px;
}

.woocommerce-account #add_payment_method #payment,
.woocommerce-account .woocommerce-cart #payment,
.woocommerce-account .woocommerce-checkout #payment {
  background-color: #e8f6ff;
  border: 1px solid #ddd;
}

.woocommerce-account #add_payment_method #payment div.payment_box,
.woocommerce-account .woocommerce-cart #payment div.payment_box,
.woocommerce-account .woocommerce-checkout #payment div.payment_box {
  background-color: #d2eeff;
  border-radius: 10px;
}

.woocommerce-account #add_payment_method #payment div.payment_box::before,
.woocommerce-account .woocommerce-cart #payment div.payment_box::before,
.woocommerce-account .woocommerce-checkout #payment div.payment_box::before {
  border: 1em solid #d2eeff;
  border-right-color: transparent;
  border-left-color: transparent;
  border-top-color: transparent;
}

.woocommerce-account .starting-learn-block .woocommerce-MyAccount-content .dashboard-body-communication-details .mail-information table {
  width: 100%;
}

.woocommerce-account .starting-learn-block .woocommerce-MyAccount-content .dashboard-body-communication-details .modal-body table tr:first-child td {
  padding-top: 5px !important;
}

.my-booking-schedule-section {}

/* support 14/10/22 end */

/* support 21/10/22 */

.lorem-grp-bg.lorem-position.student-panel-autoplay {
  position: relative;
}

.plans-sec-area .pricing-blk .row {
  justify-content: center;
}

.pricing-blk-sec h6 {
  font-size: 16px;
}

.woocommerce-checkout #payment {
  background: #e1f5fe;
}

.woocommerce-checkout #payment div.payment_box {
  background-color: #d2eeff;
  border-radius: 10px;
}

.woocommerce-checkout #payment div.payment_box::before {
  border: 1em solid #d2eeff;
  border-right-color: transparent;
  border-left-color: transparent;
  border-top-color: transparent;
}

.form-row .button.alt {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  background-color: #1d9bf0 !important;
  box-shadow: 0px 6px 32px rgb(29 155 240 / 29%) !important;
  border-radius: 8px !important;
  padding: 12px 20px !important;
  text-transform: capitalize;
  font-weight: 600 !important;
  color: #ffffff !important;
  text-align: center;
  line-height: 1.1 !important;
}

.form-row .button.alt:hover {
  background-color: #2b80ca !important;
}

.edit-account button[type='submit'] {
  margin-top: 15px;
}

.woocommerce-MyAccount-content .dashboard-body .gf_browser_chrome.gform_wrapper.gravity-theme {
  padding: 20px 30px;
  border: 1px solid #d3ced2;
  border-radius: 25px;
}

.woocommerce-MyAccount-content .dashboard-body .account-edit {
  padding: 20px 30px;
  border: 1px solid #d3ced2;
  border-radius: 25px;
}

/* end support 21/10/22 */

/* support-17-11-2022-css-start */
.new-innr-frm-outer-physics {
  position: relative;
  padding: 60px 0;
}

.wrap-form-new-physic-frm {
  display: flex;
  flex-wrap: wrap;
}

.wrap-form-new-physic-frmLft {
  width: 35%;
  background: #2b80ca;
  padding: 80px 20px 20px;
}

.wrap-form-new-physic-txtRght {
  width: 65%;
  background: linear-gradient(90deg, #13acd5 2.48%, #6fcde6 78.46%);
  padding: 20px;
  display: flex;
  align-items: center;
}

.wrap-form-new-physic-frmLft h4 {
  text-align: center;
  font-size: 30px;
  color: #ffffff;
  text-transform: uppercase;
}

.singl-frm-nw-wrap-phys {
  position: relative;
  width: 100%;
  margin-bottom: 20px;
}

.singl-frm-nw-wrap-phys label {
  color: #ffffff;
  text-transform: uppercase;
}

.singl-frm-nw-wrap-phys input[type='text'],
.singl-frm-nw-wrap-phys input[type='tel'],
.singl-frm-nw-wrap-phys input[type='number'],
.singl-frm-nw-wrap-phys input[type='email'] {
  width: 100%;
  height: 45px;
  background: #ffffff;
  border-radius: 8px;
  color: #000000;
  padding: 0 15px;
  border: none;
  box-shadow: none;
}

.checjbox-btn {
  margin-bottom: 20px;
  display: flex;
  align-items: baseline;
}

.checjbox-btn label {
  padding-left: 10px;
  color: #ffffff;
  text-transform: uppercase;
}

.subbtn-physcis-nw {
  position: relative;
  width: 100%;
}

.subbtn-physcis-nw input[type='submit'] {
  width: 100%;
  height: 45px;
  border: 1px solid #ffffff;
  color: #ffffff;
  text-align: center;
  background: transparent;
  transition: 0.5s;
  border-radius: 0;
}

.subbtn-physcis-nw input[type='submit']:hover {
  background: #ffffff;
  color: #000;
}

.wrap-txt-new-frm-rght-physic {
  position: relative;
}

.wrap-txt-new-frm-rght-physic h3 {
  color: #ffffff;
  margin: 0;
  padding-bottom: 15px;
  font-size: 40px;
  position: relative;
  margin-bottom: 30px;
  font-weight: 400;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.wrap-txt-new-frm-rght-physic h3::before {
  position: absolute;
  content: '';
  width: 150px;
  height: 4px;
  background: #ffffff;
  left: 0;
  bottom: 0;
}

.wrap-txt-new-frm-rght-physic p {
  color: #ffffff;
  text-transform: uppercase;
}

.wrap-txt-new-frm-rght-physic ul {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin: 0 -15px;
  padding: 0;
}

.wrap-txt-new-frm-rght-physic ul li {
  list-style: none;
  padding: 0 15px;
  color: #ffffff;
  border-right: 1px solid #ffffff;
  text-transform: uppercase;
  font-weight: 600;
}

.wrap-txt-new-frm-rght-physic ul li:last-child {
  border: none;
}

.inner-wrap-new-physcsTw {
  position: relative;
  padding: 60px 0;
}

.inner-wrap-new-physcsTw .txt-wrap {
  text-align: center;
  margin-bottom: 60px;
}

.inner-wrap-new-physcsTw .txt-wrap h3 {
  color: #000000;
  text-transform: uppercase;
}

.inner-wrap-new-physcsTw .txt-wrap p {
  max-width: 750px;
  margin: 0 auto;
}

.cart-physic-wrap-bx {
  position: relative;
  background: linear-gradient(90deg, #13acd5 2.48%, #6fcde6 78.46%);
  border-radius: 15px;
  overflow: hidden;
  transition: 0.5s;
  min-height: 180px;
}

.cart-physic-wrap-bx h5 {
  padding: 20px 10px;
  color: #ffffff;
  position: absolute;
  bottom: 10px;
  left: 0;
  text-align: center;
  width: 100%;
  z-index: 3;
}

.cart-physic-wrap-bx h5::before {
  position: absolute;
  content: '';
  width: 150px;
  height: 2px;
  background: #ffffff;
  left: 50%;
  transform: translateX(-50%);
  bottom: 10px;
}

.cart-physic-wrap-bx figure {
  margin: 0;
  width: 100%;
  border-radius: 15px;
  transition: 0.5s;
  min-height: 180px;
  height: 100%;
  width: 100%;
}

.cart-physic-wrap-bx figure img {
  transition: 0.5s;
  height: 100%;
  width: 100%;
  min-height: 180px;
  object-fit: cover;
}

.cart-physic-wrap-bx figure::before {
  position: absolute;
  content: '';
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg,
      rgba(51, 135, 158, 1) 35%,
      rgba(255, 255, 255, 1) 100%);
  opacity: 0.5;
}

.bluee-physic-wrapbtn-txt-nwthre {
  background: #2b80ca;
  padding: 40px 0;
  text-align: center;
  color: #ffffff;
  text-transform: uppercase;
}

.bluee-physic-wrapbtn-txt-nwthre h4 {
  color: #ffffff;
  text-transform: uppercase;
}

.bluee-physic-wrapbtn-txt-nwthre a {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0bcdb5;
  color: #ffffff;
  height: 40px;
  text-align: center;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 20px;
  width: 200px;
  margin: 0 auto;
}

.bluee-physic-wrapbtn-txt-nwthre a:hover {
  background: #ffffff;
  color: #0bcdb5;
}

.reddd-physic-wrapbtn-txt-nwthre {
  background: #0bcdb5;
  padding: 40px 0;
  text-align: center;
  color: #ffffff;
  text-transform: uppercase;
}

.reddd-physic-wrapbtn-txt-nwthre h3 {
  color: #ffffff;
  text-transform: uppercase;
}

.last-nwe-physics-wrap-cart-btm {
  position: relative;
  padding: 80px 0;
}

.last-nwe-physics-wrap-cart-btm .txt-wrap-innr {
  text-align: center;
}

.last-nwe-physics-wrap-cart-btm .txt-wrap-innr h3 {
  color: #000000;
  position: relative;
  padding-bottom: 20px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.last-nwe-physics-wrap-cart-btm .txt-wrap-innr h3::before {
  position: absolute;
  content: '';
  width: 150px;
  height: 4px;
  background: #007cd8;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
}

.wrap-crt-lst-smal-physc {
  position: relative;
}

.wrap-crt-lst-smal-physc i {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 5px;
}

.wrap-crt-lst-smal-physc h5 {
  color: #000000;
  text-align: center;
  font-weight: 600;
  text-transform: uppercase;
}

.navbar-nav>li {
  margin: 0 30px 0 0;
}

.navbar-nav>li>a {
  font-size: 14px;
}

.right-menu {
  padding-left: 20px;
}

/* support-17-11-2022-css-end */
/* .....4.1.23........ */
.page-template-corporate .together-pattern {
  display: none;
}

.logged-in .dashboard-body #gform_1 #field_1_7 .gfield_label {
  color: #000000;
}

/* update start 06/01/2022 */
.entry-content .gform_body .gfield_label {
  display: none !important;
}

.starting-learn-block #post-1021 {
  max-width: 60%;
  width: 100%;
  margin: 0 auto;
}

.plan-single-wrap #primary .pricing-blk-sec h5 {
  font-weight: 700;
  min-height: 110px;
}

.plan-single-wrap #primary .pricing-blk-sec h2 {
  line-height: 1;
  margin-bottom: 18px;
  font-size: 55px;
}

.plan-single-wrap #primary .pricing-blk-sec h4 {
  font-weight: 400;
  margin-bottom: 40px;
}

.plan-single-wrap #primary .pricing-blk-sec {
  padding: 24px;
  box-shadow: 0px 11px 44px rgb(0 0 0 / 18%);
  -webkit-box-shadow: 0px 11px 44px rgb(0 0 0 / 18%);
  -moz-box-shadow: 0px 11px 44px rgba(0, 0, 0, 0.18);
  height: 100%;
}

.new-innr-frm-outer-physics {
  background-size: cover !important;
  background-repeat: no-repeat !important;
  background-position: center center !important;
  position: relative;
  z-index: 4;
}

.new-innr-frm-outer-physics:after {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  content: '';
  background: #2b80ca;
  opacity: 0.75;
}

.new-innr-frm-outer-physics .wrap-form-new-physic-frmLft,
.new-innr-frm-outer-physics .wrap-form-new-physic-txtRght {
  background: transparent;
}

.new-innr-frm-outer-physics .wrap-form-new-physic-frmLft .gform_footer input[type='submit'] {
  background: #003e68;
}

.new-innr-frm-outer-physics .wrap-form-new-physic-frmLft .gform_footer input[type='submit']:hover {
  background: #fff;
  color: #003e68;
}

.cart-physic-wrap-bx figure img {
  transition: all 0.3s ease-in-out;
}

.cart-physic-wrap-bx:hover figure img {
  transform: scale(1.1);
}

.cart-physic-wrap-bx figure::before {
  z-index: 2;
}

/* update end 06/01/2022 */
/* support 10-01-23 start */
.woocommerce-account .edit-account p img.attachment-full {
  width: 100px !important;
  height: 100px !important;
  object-fit: cover;
  margin-top: 20px;
  display: block;
}

/* support 10-01-23 end */

/* support 16-01-23 start */
.plan-single-wrap #primary .pricing-blk-sec h2 span {
  font-size: 27px;
}

/* support 16-01-23 end */

.booking-section .grid-row .ga_wrapper_large {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.booking-section .grid-row .ga_wrapper_large #ga_selected_bookings {
  width: 340px;
  margin-left: 10px;
}

.booking-section .grid-row .ga_wrapper_large #ga_appointments_calendar {
  width: calc(100% - 350px);
}

.booking-section .grid-row .ga_wrapper_large #ga_selected_bookings .ga_selected_booking {
  font-size: 13px;
  color: #1d9bf0;
  padding: 9px 7px;
  background: #ffffff;
  border-radius: 2px;
  margin-bottom: 11px;
}

.booking-section .grid-row .ga_wrapper_large #ga_selected_bookings .ga_selected_booking .fa-times-circle {
  font-size: 16px;
}

.woocommerce-account.logged-in .booking-section .ga_monthly_schedule_wrapper td {
  padding: 25px !important;
}

.booking-section .grid-row #ga_appointments_calendar h3.slots-title {
  margin-top: 0;
}

.woocommerce-account.logged-in .booking-section .ga_wrapper_large .ga_monthly_schedule_wrapper td.selected span {
  background: #1d9bf0 !important;
  border: 2px solid #1d9bf0 !important;
}

.woocommerce-account.logged-in .booking-section .ga_wrapper_large .ga_monthly_schedule_wrapper td.ga_today span {
  border: 2px solid #1d9bf0 !important;
}

.woocommerce-account.logged-in .booking-section .ga_wrapper_large .ga_monthly_schedule_wrapper td.day_available:hover span {
  background: #1d9bf0 !important;
  border: 2px solid #1d9bf0 !important;
}

.woocommerce-account.logged-in .booking-section #gappointments_calendar_slots label.time_selected div {
  background: #1d9bf0 !important;
}


/* support 16/1/23 */

/* 20.01.23 start */

.pricing-blk-sec p .bst-prc {
  display: inline-block;
  background: linear-gradient(90deg, #23ad0c 0%, #0c8006 100%);
  line-height: 1.2;
  padding: 3px 20px;
  border-radius: 50px;
  color: #fff;
  font-weight: bold;
  text-transform: uppercase;
  margin-top: 5px;
}

/* 20.01.23 end */




/* end support 16/1/23 */

/* 23-01-2023-support-css-start */

.plan-single-wrap #primary .pricing-blk-sec p {
  min-height: 55px;
}

/* 23-01-2023-support-css-end */


/* 13/03/23 work start */

.cky-btn {
  color: #1d9bf0 !important;
  border-color: #1d9bf0 !important;
  box-shadow: 0px 6px 32px rgb(29 155 240 / 29%) !important;
  -webkit-box-shadow: 0px 6px 32px rgb(29 155 240 / 29%) !important;
  -moz-box-shadow: 0px 6px 32px rgba(29, 155, 240, 0.29) !important;
  border-radius: 8px !important;
}

.cky-btn-accept {
  background: #1d9bf0 !important;
  color: #fff !important;
}

.moveUpDown {
  animation: banmove 6s;
  animation-iteration-count: infinite;
}

.scalingAnim {
  animation: scalein 7s;
  animation-iteration-count: infinite;
}

@-webkit-keyframes banmove {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  50% {
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes banmove {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  50% {
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@-webkit-keyframes scalein {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  50% {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes scalein {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  50% {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

.mob_bg {
  display: none;
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

/* 13/03/23 work end */

/*support paulomi 13/5/2023*/
.home .plan-blockarea .planitem {
  height: 100%;
}
.logout-link-wrp {
  text-align: right;
}
/*support paulomi 13/5/2023*/


.multi-em-send-wrp .select2-container{
  width: 100% !important;
}
.multi-em-send-wrp .select2-container .select2-selection--multiple{
  min-height: 40px;
  padding: 2px 10px;
  border: 1px solid #bbb;
  border-radius: 8px !important;
}

.multi-em-send-wrp .select2-search__field{
  padding: 0px !important;
  display: block;
  height: auto;
  margin: 0px;
  border: 0px none !important;
  width: 100% !important;
  margin: 0 !important;
  height: 100% !important;
}
.multi-em-send-wrp .select2-container .select2-search--inline{
  min-height: 40px;
  padding: 0;
  line-height: 1;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
}
.multi-em-send-wrp .select2-container .select2-selection--multiple .select2-selection__rendered{
  display: inline-block;
  z-index: 1;
  position: relative;
}
.multi-em-send-wrp .select2-container .select2-selection--multiple .select2-selection__rendered:empty{
  display: none;
}
.select2-container--open .select2-dropdown{
  z-index: 1060;
}


/* 03/04/2023 dm */

.ajax-loader-cancel-class{ 
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.3);
}

.ajax-loader-cancel-class > img{ max-width: 120px; }

.class-cancel-loader .ajax-loader-cancel-class{ display: flex; }

.class-cancel-loader{ overflow: hidden; }

/* 03/04/2023 dm */

/* ========== responsive css =========== */

@media (min-width: 1025px) {

  /* navbar*/
  /*  .navbar-nav .clickD {
        display: none;
    }*/
  .navbar-nav li.menu-item-has-children:hover>.sub-menu {
    display: block;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1164px;
  }

  .needed-block .container {
    max-width: 1060px;
  }

  .learninginnerslider {
    width: calc(100% - (50% - (1164px / 2)));
  }
}

@media (min-width: 1400px) {
  .main-head .container {
    max-width: 1320px;
  }
}

@media (min-width: 1600px) {
  .whypattern.why-3rditem {
    width: 40%;
  }

  .maxcontainer {
    max-width: 1488px;
  }

  .whypattern {
    top: -7%;
    width: 56%;
  }

  .started-pattern {
    width: 25%;
  }

  .together-pattern {
    width: 43%;
  }

  .banner figure {
    width: 62%;
  }

  .banner.how-banner figure {
    width: 62%;
  }

  .banner:before {
    width: 80%;
  }

  .banner.corporatebanner:before {
    width: 96%;
  }

  .banner.methodology-banner:after {
    left: -18%;
  }
}

@media (min-width: 2100px) {
  .whypattern {
    width: 28%;
  }

  .why-3rditem {
    width: 33%;
  }

  .whypattern.why-3rditem {
    width: 33%;
  }

  .started-pattern {
    width: 12%;
  }

  .banner {
    min-height: calc(100vh - 210px);
  }

  .container {
    max-width: 1700px;
  }

  .main-head .container,
  .maxcontainer {
    max-width: 1800px;
  }

  .learninginnerslider {
    width: calc(100% - (50% - (1700px / 2)));
  }

  .upperwhite {
    top: -5px;
  }

  .total-counterblock {
    padding-top: 220px;
  }

  .needed-block .container {
    max-width: 1400px;
  }

  .together-pattern {
    width: 24%;
  }
}

@media (max-width: 1600px) {
  .maxcontainer {
    max-width: 100%;
    padding: 0 50px;
  }

  .planicon {
    width: 75px;
    height: 90px;
  }

  .planheader {
    min-height: 250px;
  }

  .learning-body {
    padding: 39px 16px 39px;
  }
  /*support paulomi 13/3/2023*/
  .home .plan-blockarea .planitem .planheader{
    min-height: 280px;
  }
    /*support paulomi 13/3/2023*/
}

@media (max-width: 1400px) {
  .right-menu {
    padding-left: 15px;
  }

  .main-head .container {
    max-width: 100%;
    padding: 0 30px;
  }

  .maxcontainer {
    max-width: 100%;
    padding: 0 30px;
  }

  .navbar-brand {
    width: 120px;
  }

  .language-dropdown {
    margin-right: 10px;
  }

  .ratingpattern {
    left: 0;
  }

  .ratingcontainer:after {
    transform: skewX(-25deg);
    -webkit-transform: skewX(-25deg);
    -moz-transform: skewX(-25deg);
  }

  .showmethod-block .rowspan {
    --bs-gutter-x: 1.5rem;
  }

  .footer .col-width:last-child {
    width: 19%;
  }

  .footer .col-width:first-child {
    width: 30%;
  }

  .starting-learnslider .slick-prev {
    left: -25px;
  }

  .starting-learnslider .slick-next {
    right: -25px;
  }

  .starting-learnitem {
    padding: 0 30px;
  }

  .navbar-nav>li {
    margin: 0 28px 0 0;
  }

  .banner {
    min-height: 550px;
  }

  .socialproof-list .slick-next {
    right: -14px;
  }

  .socialproof-list .slick-prev {
    left: -14px;
  }

  .navbar-nav>li>a {
    font-size: 14px;
  }
}

@media (max-width: 1199px) {
  .navbar-nav>li {
    margin: 0 10px;
  }

  .right-menu {
    padding-left: 20px;
  }

  h1 {
    font-size: 60px;
  }

  .container {
    max-width: 100%;
    padding: 0 30px;
  }

  .lorem-blue {
    right: -20px;
  }

  .lorem-green {
    left: -15px;
  }

  .certificate-circle {
    left: 14px;
  }

  .footer .col-width:first-child {
    width: 100%;
    margin-bottom: 30px;
    text-align: center;
  }

  .footer-con p {
    max-width: 600px;
    margin: 0 auto;
  }

  .terms-panel {
    margin-top: 30px;
    justify-content: center;
    width: 100%;
  }

  .trms-con {
    display: flex;
    display: -ms-flexbox;
    flex-wrap: wrap;
  }

  .trms-hd {
    margin-bottom: 0;
    padding-right: 10px;
  }

  .footer .col-width:nth-child(2),
  .footer .col-width:nth-child(3),
  .footer .col-width:nth-child(4),
  .footer .col-width:last-child {
    width: 25%;
  }

  .language-dropdown {
    padding-right: 8px;
  }

  .navbar-brand {
    width: 120px;
  }

  .navbar-nav>li.menu-item-has-children {
    padding-right: 18px;
  }

  .navbar-nav .clickD {
    margin-right: 0;
  }

  /*------Why-Choose-us-----*/
  .starting-learnslider .slick-prev {
    left: -8px;
  }

  .starting-learnslider .slick-next {
    right: -8px;
  }

  .flexible-con {
    padding-left: 60px;
  }

  .formpanelbox {
    margin-top: 25px;
  }

  .ingerpanel .common-header h2 {
    max-width: 100%;
  }

  .process-item .rowspan {
    --bs-gutter-x: 1.5rem;
  }

  .socialproof-list .slick-next {
    right: -14px;
  }

  .socialproof-list .slick-prev {
    left: -14px;
  }

  .together-con .common-header h2 {
    max-width: inherit;
  }

  .planheader {
    min-height: 194px;
  }

  .subs-blk .rowspace {
    --bs-gutter-x: 1.5rem;
  }

  .plns-pg {
    padding: 80px 0 120px;
  }

  .plns-pg .inner-banner-sec-con ul li {
    margin-bottom: 8px;
  }

  .banner:after {
    width: 400px;
    height: 400px;
  }

  .certificate .rowspace {
    --bs-gutter-x: 1.5rem;
  }

  .lorem-para {
    font-size: 22px;
  }

  .stepscon {
    padding-left: 40px;
  }

  .socialproof-list .slick-next {
    right: calc(50% - 60px);
    top: auto;
    bottom: 0;
  }

  .socialproof-list .slick-prev {
    left: calc(50% - 60px);
    top: auto;
    bottom: 0;
  }

  .socialproof-list {
    padding-bottom: 70px;
  }

  .banner {
    min-height: 500px;
  }

  .banner-con p {
    max-width: 300px;
  }

  /*---26-09-22------------*/

  .woocommerce-MyAccount-content .method-block {
    padding: 40px 15px 20px 15px;
  }

  /* 29.09.22 */

  .woocommerce-account.logged-in .ga_monthly_schedule_wrapper td {
    padding: 3% 0 !important;
  }


  .booking-section .grid-row .grid-md-4 {
    width: 50%;
  }

  .booking-section .grid-row .time_slot {
    font-size: 13px !important;
  }

  /*support paulomi 13/3/2023*/
  .home .plan-blockarea .planitem .planheader{
    min-height: 194px;
  }
    /*support paulomi 13/3/2023*/
}

@media (max-width: 1199px) and (min-width: 992px) {
  .language-dropdown {
    padding-right: 0;
  }

  .navbar-nav>li>a {
    font-size: 12px;
  }

  .navbar-nav>li {
    margin: 0 20px 0 0;
  }

  .navbar-nav>li.menu-item-has-children {
    padding-right: 17px;
  }

  .right-menu {
    padding-left: 10px;
  }

  .language-dropdown {
    width: 118px;
    margin-right: 10px;
  }

  .navbar-brand {
    width: 90px;
  }

  .language-dropdown .wpml-ls-legacy-dropdown-click a {
    padding: 15px 15px 15px 6px;
  }

  .main-head .cmn-btn {
    padding: 15px 11px;
  }

  /* update start 06/01/2022 */
  .pricing-blk-sec h5 {
    font-size: 20px;
  }

  .plan-single-wrap #primary .pricing-blk-sec h2 {
    font-size: 50px;
  }

  .plan-single-wrap #primary .pricing-blk-sec h4 {
    font-size: 24px;
  }

  .pricing-blk-sec .cmn-btn {
    padding: 15px 20px;
  }

  /* update end 06/01/2022 */
}

@media (max-width: 1024px) {
  /* navbar*/

  .navbar-nav>li.menu-item-has-children {
    padding-right: 20px;
  }

  .sub-menu>li.menu-item-has-children>a {
    padding-right: 20px;
  }

  .sub-menu.show {
    display: block;
  }

  .navbar-nav>li {
    padding-top: 15px;
    padding-bottom: 15px;
  }

  .navbar-nav>li.current-menu-item>a:after,
  .navbar-nav>li>a:after,
  .navbar-nav>li.menu-item-has-children>a:after {
    width: 100%;
    opacity: 0;
  }

  .navbar-nav>li.current-menu-item>a:after,
  .navbar-nav>li>a:hover:after,
  .navbar-nav>li.menu-item-has-children:hover>a:after {
    width: 100%;
    opacity: 1;
  }

  /* navbar end*/
}

@media (max-width: 991px) {

  /* navbar*/
  .navbar-toggler {
    position: relative;
    width: 33px;

    height: 28px;
    padding: 0;
    outline: none !important;
    border: none !important;
    box-shadow: none !important;
  }

  .stick,
  .stick:after,
  .stick:before {
    width: 30px;
    height: 2px;
    background: #000;
    position: absolute;
    left: 0;
    top: auto;
    transition: all 0.6s;
    border-radius: 5px;
  }

  .stick:before {
    content: '';
    top: -10px;
    left: 0;
  }

  .stick:after {
    content: '';
    top: 10px;
    left: 0;
  }

  .stick.open {
    transform: translateX(-50px);
    background: transparent;
  }

  .stick.open:before {
    transform: rotate(45deg) translate(42px, -28px);
    left: 2px;
  }

  .stick.open:after {
    transform: rotate(-45deg) translate(42px, 28px);
    left: 2px;
  }

  .navbar-nav .clickD {
    top: 15px;
    right: 18px !important;
  }

  .sub-menu,
  .navbar-nav>li>.sub-menu .sub-menu {
    position: relative;
    width: 100%;
    left: inherit;
    top: inherit;
    border: none;
    right: inherit;
  }

  .navbar-nav>li.menu-item-has-children {
    padding-right: 0;
  }

  .navbar-nav>li {
    margin: 0;
    padding: 0;
  }

  .navbar-nav li.menu-item-has-children>a {
    padding-right: 30px !important;
  }

  .navbar-nav>li>a {
    padding: 8px 20px;
    display: inline-block;
    width: 100%;
  }

  .sub-menu>li>a {
    padding-left: 40px;
  }

  .sub-menu .sub-menu>li>a {
    padding-left: 60px;
  }

  .sub-menu .sub-menu .sub-menu>li>a {
    padding-left: 80px;
  }

  .navbar-nav>li>a:after {
    bottom: 0;
  }

  /* navbar end*/

  /* push nav */

  .navbar-collapse {
    background: #fff;
    position: fixed;
    top: 0;
    height: 100% !important;
    width: 350px;
    overflow-y: auto;
    transition: inherit !important;
    right: 0;
    margin: 0;
    display: block !important;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    -webkit-transition: transform 0.2s ease-in-out !important;
    transition: transform 0.2s ease-in-out !important;
    z-index: 100;
  }

  .navbar-collapse.show,
  .navbar-collapse.collapsing {
    display: block !important;
    -webkit-transform: translateX(0);
    transform: translateX(0);
    -webkit-transition: transform 0.2s ease-in-out !important;
    transition: transform 0.2s ease-in-out !important;
  }

  .navbar-collapse .navbar-nav {
    margin: 80px 0 0 !important;
    padding: 0 0 40px 0;
  }

  .navbar-collapse .navbar-toggler {
    display: block;
    right: 20px;
    top: 20px;
    position: absolute;
  }

  #navoverlay.open {
    background-color: rgba(0, 0, 0, 0.4);
    pointer-events: all;
    -webkit-transition: background-color 0.5s linear;
    transition: background-color 0.5s linear;
  }

  body.open-nav,
  html.open-nav {
    height: 100%;
    overflow: hidden !important;
  }

  /* push nav end */

  /* ..................7.9.2-Meghna.......... */
  .banner {
    min-height: 350px;
  }

  h1 {
    font-size: 45px;
  }

  h2 {
    font-size: 35px;
  }

  h3 {
    font-size: 26px;
  }

  h4 {
    font-size: 24px;
  }

  .banner-con ul li {
    font-size: 16px;
  }

  .banner-con ul {
    margin-bottom: 30px;
  }

  .banner-con h3 {
    margin-bottom: 10px;
  }

  .banner-con ul li {
    padding-bottom: 8px;
    background-position: top 10px left;
  }

  .ratingit {
    width: 100px;
    height: 100px;
  }

  .ratingcontainer {
    padding: 24px 40px;
    max-width: 700px;
  }

  .common-gap {
    padding: 60px 0;
  }

  .method-icon img {
    width: 80px;
    height: 80px;
  }

  .planbody ul li {
    margin-bottom: 12px;
  }

  .planicon {
    width: 60px;
    height: 60px;
  }

  .plancon {
    padding-right: 20px;
  }

  .commonheadpara {
    margin-bottom: 35px;
  }

  .whyitems .common-header {
    margin-bottom: 30px;
  }

  .whyitems .rowspan .col-md-8 {
    width: 50%;
  }

  .whyitems .rowspan .col-md-4 {
    width: 50%;
  }

  .lorem-para {
    margin-bottom: 40px;
    font-size: 16px;
  }

  .lorem-blue {
    width: 130px;
    height: 130px;
  }

  .lorem-green {
    width: 100px;
    height: 100px;
  }

  .lorem-pattern-right {
    width: 60px;
  }

  .lorem-pattern-left {
    width: 60px;
  }

  .certificate-circle {
    width: 75px;
    height: 75px;
  }

  .certificate-img {
    margin-top: 30px;
  }

  .certificate-con h4 {
    font-size: 20px;
    margin-bottom: 10px;
  }

  .certificate-btn {
    padding-top: 0;
  }

  .crtifct-hdng {
    margin-bottom: 60px;
  }

  .get-pattern {
    width: 60px;
  }

  .get-in-touch-con {
    padding: 50px 0;
  }

  .get-in-touch .row-end {
    align-items: flex-end !important;
  }

  .video-main {
    width: 150px;
    height: 150px;
  }

  .plan-patterncircle {
    top: -5%;
    width: 150px;
  }

  .commonheadpara p {
    font-size: 16px;
  }

  .plan-pattern {
    top: -122px;
    height: 123px;
  }

  .footer-top {
    padding: 40px 0 40px;
  }

  .footer-menu li a {
    font-size: 14px;
  }

  .footer-menu h5 {
    font-size: 18px;
  }

  .footer .col-width:nth-child(4) {
    width: 25%;
  }

  .footer .col-width:nth-child(3) {
    width: 22%;
  }

  .footer .col-width:nth-child(2) {
    width: 21%;
  }

  .trms-img {
    width: 58px;
    height: 58px;
    flex: 0 0 58px;
  }

  .terms-panel {
    margin-top: 18px;
  }

  .become-btn .cmn-btn {
    font-size: 14px;
  }

  .ftr-btm-right ul li {
    margin: 0 8px;
  }

  .footer-btm {
    padding: 20px 0;
  }

  /*----How it works-----*/

  .flexible-con {
    padding-left: 0;
  }

  .learning-header {
    padding: 10px 20px;
  }

  .main-head {
    padding: 12px 0;
  }

  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    margin: 0 0 15px 0;
  }

  .common-header {
    padding-bottom: 16px;
  }

  .banner:after {
    width: 300px;
    height: 300px;
  }

  .faq-block .accordion-button {
    font-size: 18px;
  }

  .sub-menu {
    box-shadow: none;
  }

  .stepscon {
    text-align: center;
    padding-right: calc(var(--bs-gutter-x) * 0.5);
    padding-left: 0;
  }

  .learning-slider {
    padding-bottom: 40px;
  }

  .starting-learnslider .slick-next,
  .starting-learnslider .slick-prev {
    top: auto;
    bottom: 0;
    transform: inherit;
  }

  .starting-learnslider .slick-next {
    right: calc(50% - 60px);
  }

  .starting-learnslider .slick-prev {
    left: calc(50% - 60px);
  }

  .starting-learnslider {
    padding-bottom: 80px;
  }

  .mobile-block {
    display: block;
  }

  .mobile-none {
    display: none;
  }

  .main-head .cmn-btn {
    max-width: 90%;
    margin: 0 auto;
  }

  .language-dropdown {
    padding-right: 0;
  }

  .right-menu {
    padding-left: 0;
    margin-left: auto;
    padding-right: 20px;
  }

  .learning-header h2 {
    font-size: 60px;
  }

  .process-item p {
    max-width: 100%;
  }

  .counterit span {
    font-size: 90px;
  }

  .total-counterblock {
    padding-top: 84px;
  }

  .counterit {
    font-size: 22px;
    padding: 0 15px;
  }

  .ingerpanel .row {
    align-items: center;
  }

  .countercontain {
    margin: 0 -15px;
  }

  .whypattern {
    width: 50%;
  }

  .whyitems .rowspan.whyblk-row {
    align-items: flex-end;
  }

  .whyblk-row .col-padding {
    padding-bottom: 20px;
  }

  .whyiteminner .whyitems:first-child {
    padding-top: 0;
  }

  .showmethod-block.common-gap {
    padding-bottom: 35px;
  }

  .ratingpattern1 {
    z-index: 1;
    width: 15%;
  }

  .ratingpattern {
    z-index: 1;
    width: 6%;
  }

  .ratingit {
    width: 80px;
    height: 80px;
  }

  .company-content p {
    font-size: 13px;
  }

  .subs-right h5 {
    font-size: 17px;
  }

  .pricing-blk-sec .cmn-btn,
  .pricing-blk-sec .btn {
    padding: 15px 20px;
    font-size: 16px;
  }

  .pricing-blk-sec h2 {
    font-size: 55px;
  }

  .big-tick {
    padding-right: 0;
    max-width: 200px;
    margin: 0 auto;
  }

  .free-con .common-header {
    max-width: inherit;
    margin-top: 0;
  }

  .free-con .common-header {
    text-align: center;
  }

  .free-con .common-header:after {
    content: '';
    position: absolute;
    width: 57px;
    height: 5px;
    background: #1d9bf0;
    display: inline-block;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 0);
    -webkit-transform: translate(-50%, 0);
    -moz-transform: translate(-50%, 0);
  }

  .pricing-blk-sec {
    background: #ffffff;
    padding: 32px 17px 35px;
  }

  .free-blk-area p {
    max-width: inherit;
    margin: 0 auto;
    width: 80%;
  }

  .banner.corporatebanner:before {
    width: 90%;
  }

  .woocommerce-checkout .woocommerce-checkout-review-order .button {
    margin-top: 15px;
  }

  .starting-learn-block .entry-header h1 {
    margin-bottom: 0;
    padding: 0;
  }

  .woocommerce-account nav.woocommerce-MyAccount-navigation {
    margin-bottom: 20px;
  }

  /*----26-09-22----------*/

  .woocommerce-account nav.woocommerce-MyAccount-navigation {
    min-height: auto;
    margin-bottom: 0;
  }

  /* 29.09.22 */

  .woocommerce-account.logged-in .ga_monthly_schedule_wrapper td {
    padding: 3% 0 !important;
  }

  .woocommerce-account.logged-in .woocommerce-MyAccount-navigation {
    width: 25%;
  }

  .woocommerce-account.logged-in .woocommerce-MyAccount-content {
    width: 75%;
  }

  /* support 21/10/22 */
  .woocommerce-MyAccount-content .dashboard-body .account-edit {
    margin-bottom: 25px;
  }

  .dashboard-body .shop_table.subscription_details .button.cancel {
    margin-bottom: 5px;
  }

  /* end support 21/10/22 */

  /* support-17-11-2022-css */
  .wrap-form-new-physic-frmLft {
    width: 100%;
    margin-bottom: 20px;
  }

  .wrap-form-new-physic-txtRght {
    width: 100%;
  }

  .wrap-txt-new-frm-rght-physic h3 {
    font-size: 30px;
  }

  .new-innr-frm-outer-physics,
  .inner-wrap-new-physcsTw {
    padding: 40px 0;
  }

  .cart-physic-wrap-bx,
  .wrap-crt-lst-smal-physc {
    margin-bottom: 20px;
  }

  .wrap-form-new-physic-frmLft h4 {
    font-size: 25px;
    margin-bottom: 15px;
  }

  .cart-physic-wrap-bx {
    min-height: 250px;
  }

  .cart-physic-wrap-bx figure img {
    height: 250px;
  }

  /* update start 06/01/2022 */
  .starting-learn-block #post-1021 {
    max-width: 80%;
  }

  .starting-learn-block #post-1021 .entry-header {
    margin-bottom: 25px;
  }

  .plan-single-wrap #primary .col-wrap {
    margin-bottom: 25px;
  }

  /* update end 06/01/2022 */


  /* support 17/1/23 */

  .booking-section .grid-row .ga_wrapper_large {
    flex-wrap: wrap;
  }

  .booking-section .grid-row .ga_wrapper_large #ga_appointments_calendar {
    width: 100%;
  }

  .booking-section .grid-row .ga_wrapper_large #ga_selected_bookings {
    width: 100%;
    margin-left: 0;
    margin-top: 15px;
  }


  .navbar-nav .clickD {
    width: 100%;
    height: 32px;
    transform: none !important;
    border: 0;
    top: 0;
    right: 0 !important;
    left: auto;
    -webkit-transform: none !important;
    -moz-transform: none !important;
    -ms-transform: none !important;
    -o-transform: none !important;
  }

  .navbar-nav .clickD:after {
    content: "";
    top: 15px;
    right: 18px;
    position: absolute;
    display: inline-block;
    width: 8px;
    height: 8px;
    border-right: 0.12em solid #1d1d1d;
    border-top: 0.12em solid #1d1d1d;
    transform: translate(0, -50%) rotate(135deg);
    -webkit-transform: translate(0, -50%) rotate(135deg);
    -moz-transform: translate(0, -50%) rotate(135deg);
    border-left: 0;
    -ms-transform: translate(0, -50%) rotate(135deg);
    -o-transform: translate(0, -50%) rotate(135deg);
  }

  .navbar-nav .clickD.toggled:after {
    -webkit-transform: translate(0, -50%) rotate(315deg);
    transform: translate(0, -50%) rotate(315deg);
    -moz-transform: translate(0, -50%) rotate(315deg);
    -ms-transform: translate(0, -50%) rotate(315deg);
    -o-transform: translate(0, -50%) rotate(315deg);
  }
}

@media (max-width: 767px) {

  /* images alignment for wordpress content pages */
  .alignright,
  .alignleft,
  .aligncenter {
    float: none;
    clear: both;
    display: block;
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
    clear: both;
    margin-bottom: 24px;
  }

  .footer .col-width:nth-child(2),
  .footer .col-width:nth-child(3),
  .footer .col-width:nth-child(4),
  .footer .col-width:last-child {
    width: 50%;
  }

  /* .footer-top {
        text-align: center;
    } */
  /* .footer-menu h5 {
        margin-bottom: 15px;
    } */
  .footer-menu {
    margin-bottom: 25px;
  }

  .company-details {
    text-align: left;
  }

  .footer-btm {
    display: block;
    text-align: center;
  }

  .ftr-btm-right ul {
    justify-content: center;
    margin-top: 20px;
  }

  .get-in-touch-con {
    text-align: center;
  }

  .get-in-touch-con p {
    margin: 0 auto;
  }

  .get-in-touch-con .cmn-btn {
    margin-top: 20px;
  }

  /*----how-it----*/
  .learninginnerslider .col-lg-5,
  .learninginnerslider .col-lg-7 {
    width: 100%;
  }

  .learninglft {
    padding-top: 0;
    padding-bottom: 20px;
    text-align: center;
  }

  .flexible-block .row {
    flex-direction: column-reverse;
  }

  .flexible-con {
    text-align: center;
    margin-bottom: 20px;
  }

  .common-header.textlft:after {
    left: 50%;
    transform: translate(-50%, 0);
    -webkit-transform: translate(-50%, 0);
    -moz-transform: translate(-50%, 0);
  }

  .flexible-con p {
    max-width: 100%;
  }

  .flexible-block figure {
    max-width: 400px;
    margin: 0 auto;
  }

  .flexible-block figure img {
    width: 100%;
  }

  .learning-level-block .container {
    padding-right: 30px;
  }

  .learning-slider:after {
    display: none;
  }

  .learning-slider .slick-list {
    padding-right: 0;
  }

  .learning-slider .slick-next {
    margin-right: 0;
    right: 7px;
  }

  .learning-slider .slick-dots {
    width: 100%;
  }

  .test-infosec {
    font-size: 17px;
    padding: 15px 0;
  }

  .flexible-block {
    margin-top: 80px;
  }

  .learninginnerslider {
    margin-left: calc(var(--bs-gutter-x) * -0.5);
  }

  .ingerpanel .row {
    flex-direction: column-reverse;
    text-align: center;
  }

  .showmethod-block .rowspan {
    justify-content: center;
    --bs-gutter-y: 20px;
  }

  .ingerpanel figure {
    margin-top: 20px;
  }

  .process-item {
    text-align: center;
  }

  .process-item figure {
    max-width: 450px;
    margin: 25px auto 0;
  }

  .process-item .common-header {
    margin-bottom: 20px;
  }

  .inter-panel figure {
    width: 65px;
    height: 65px;
    margin-right: 17px;
  }

  .inter-panel h4 {
    font-size: 20px;
  }

  .counterit span {
    font-size: 70px;
  }

  .get-in-touch-con {
    margin-bottom: 25px;
  }

  .certificate-con {
    text-align: center;
    margin-top: 15px;
  }

  .crtifct-hdng {
    margin-bottom: 40px;
  }

  .whyimg {
    margin-top: 45px;
  }

  .whyus-block .whyiteminner .whyitems:first-child {
    padding-top: 0;
    padding-bottom: 0;
  }

  .whyimg-bgcircle {
    width: 130px;
    height: 130px;
    left: 50%;
    top: 65px;
  }

  .whyimg-icon {
    top: 9px;
    width: 40px;
  }

  .whyimg-icon1 {
    top: 0;
    width: 40px;
  }

  .whyitems .rowspan .col-md-4 {
    width: 100%;
    text-align: center;
  }

  .whyitems .rowspan .col-md-8 {
    width: 100%;
  }

  .planicon {
    width: 38px;
    height: 38px;
  }

  .planheader h4 {
    font-size: 20px;
  }

  .planbody {
    padding: 22px 22px;
  }

  .planbody ul li {
    padding-left: 32px;
  }

  .get-pattern {
    width: 41px;
  }

  .whyimg-icon-center1 {
    top: -6%;
  }

  .certificate-circle {
    top: -6%;
  }

  .showmethod-block .rowspan {
    justify-content: center;
    --bs-gutter-y: 20px;
  }

  .ratingcontainer {
    padding: 24px 0;
  }

  .trustlogo img {
    width: 100px;
  }

  .ratingit h3 {
    font-size: 19px;
  }

  .whypattern {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .together-goals .row,
  .lets-together .together-goals:nth-child(even) .flx-row {
    flex-direction: column-reverse;
  }

  .together-con {
    text-align: center;
    display: flex;
    display: -ms-flexbox;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
  }

  .together-con ul {
    text-align: left;
    display: inline-block;
  }

  .together-goals figure {
    margin-top: 20px;
  }

  .together-pattern {
    width: 100%;
    top: auto;
    bottom: 0;
  }

  .ralp-blk {
    margin: 0 auto 20px;
  }

  .contact-us-sec .rowspace {
    flex-direction: column-reverse;
  }

  .pricing-blk .row,
  .free-blk-sec .row {
    justify-content: center;
    --bs-gutter-y: 30px;
  }

  .plns-pg .inner-banner-sec-con ul li {
    font-size: 17px;
  }

  .plns-pg ul li::before {
    background-size: 16px;
    background-position: top 8px center;
  }

  .pricing-blk-sec h5 {
    margin-bottom: 40px;
  }

  .plans-sec-area.common-gap {
    padding: 40px 0 80px;
  }

  .ratingcontainer:after {
    display: none;
  }

  .certificate .rowspace {
    align-items: center;
    flex-direction: column-reverse;
  }

  .banner-con p {
    max-width: inherit;
  }

  .mobilebanner img {
    width: 100%;
  }

  .mobilebanner {
    display: block;
    position: relative;
    z-index: 1;
  }

  .desktop-banner {
    display: none;
  }

  .banner {
    display: block;
  }

  .banner-con {
    text-align: center;
  }

  .banner-con ul {
    max-width: 280px;
    text-align: left;
    margin: 0 auto 30px;
  }

  .together-con.hlp-con ul {
    max-width: 300px;
  }

  .banner figure,
  .banner.how-banner figure {
    position: relative;
    width: 100%;
    z-index: 11;
  }

  .banner:before {
    display: none;
  }

  .woocommerce-MyAccount-content .row {
    --bs-gutter-y: 1.5rem;
  }

  .woocommerce-MyAccount-content .method-block a {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    flex-direction: column;
  }

  .woocommerce-MyAccount-content .method-block .method-icon:after {
    left: 44%;
  }

  /*---26-09-22--------*/
  .woocommerce-account .woocommerce-MyAccount-content {
    width: 100%;
  }

  .dashboard-header {
    text-align: center;
  }

  .dashboard-header .col-md-6:last-child {
    text-align: center;
    margin-top: 15px;
  }

  /* 29.09.22 */

  .woocommerce-account .starting-learn-block {
    padding-left: 15px;
    padding-right: 15px;
  }

  .woocommerce-account.logged-in .dashboard-body {
    padding: 20px 15px;
  }

  .woocommerce-account.logged-in .my-booking-schedule-section {
    overflow-x: auto;
  }

  .woocommerce-account.logged-in .navbar-brand {
    width: 100px;
  }

  /* support 14/10/22 start */
  .woocommerce-account.logged-in .woocommerce-MyAccount-navigation {
    width: 100%;
  }

  .woocommerce-account.logged-in .woocommerce-MyAccount-content {
    width: 100%;
  }

  /* support 14/10/22 end */

  .language-dropdown {
    width: 116px;
    margin-right: 12px;
  }

  .language-dropdown .wpml-ls-legacy-dropdown-click a {
    padding: 10px 22px 12px 10px;
  }

  /* 767px  */

  /* support-17-11-2022-css */
  .wrap-txt-new-frm-rght-physic ul {
    flex-wrap: wrap;
  }

  .wrap-txt-new-frm-rght-physic ul li {
    width: 100%;
    border: none;
  }

  .last-nwe-physics-wrap-cart-btm {
    padding: 60px 0;
  }

  /* support-17-11-2022-css */
  .mob_bg {
    display: block;
  }
  /*support paulomi 13/5/2023*/
  .home .plan-blockarea .planitem .planheader {
    min-height: 266px;
  }
  .logout-link-wrp {
    text-align: center;
  }
    /*support paulomi 13/5/2023*/
}

@media (max-width: 575px) {
  .ftr-btm-left {
    font-size: 14px;
  }

  .footer .col-width:last-child .footer-menu {
    margin-bottom: 0;
  }

  .ftr-btm-right li a svg {
    width: 18px;
  }

  h2 {
    font-size: 30px;
  }

  .testiblockinner figure {
    margin-right: 25px;
  }

  .formpanelbox {
    padding: 29px 22px 49px;
  }

  h1 {
    font-size: 37px;
  }

  .testiblockinner figure {
    width: 145px;
    margin-right: 0;
    margin-top: 25px;
  }

  .testiblockinner {
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
  }

  .test-infosec {
    padding: 15px 0 25px;
  }

  .learning-level-block .container {
    padding-right: var(--bs-gutter-x, 0.75rem);
  }

  .container,
  .main-head .container,
  .maxcontainer {
    padding: 0 var(--bs-gutter-x, 0.75rem);
  }

  .starting-learnitem {
    padding: 0 15px;
  }

  .formpanelbox {
    box-shadow: 0px 0px 22px rgb(0 0 0 / 6%);
    -webkit-box-shadow: 0px 0px 22px rgb(0 0 0 / 6%);
    -moz-box-shadow: 0px 0px 22px rgb(0 0 0 / 6%);
  }

  .main-head .cmn-btn {
    padding: 12px 20px;
  }

  .language-dropdown .btn {
    font-size: 14px;
  }

  .language-dropdown .btn {
    padding: 12px 0;
  }

  .navbar-collapse {
    width: 100%;
  }

  .method-icon {
    max-width: 190px;
    display: block;
    margin: 0 auto 27px;
  }

  .need-internetblock .rowspan {
    --bs-gutter-y: 20px;
  }

  .need-internetblock {
    margin: 40px auto;
    max-width: 280px;
    text-align: left;
  }

  .countercontain {
    flex-wrap: wrap;
    margin: 0;
  }

  .countercontain>* {
    width: 100%;
  }

  .counterit {
    padding: 0;
    margin-bottom: 20px;
  }

  .counterit:last-child {
    margin-bottom: 0;
  }

  .lorem-blue {
    width: 80px;
    height: 80px;
    right: -7px;
    bottom: -7px;
  }

  .lorem-green {
    width: 65px;
    height: 65px;
    left: -7px;
    top: -7px;
  }

  .certificate-circle {
    top: -7%;
  }

  .cmn-btn.border-btn {
    font-size: 16px;
  }

  .ratinginner {
    display: block;
  }

  .ratingstaritem {
    justify-content: center;
  }

  .ratingstaritem:after {
    display: none;
  }

  .ratingstaritem:first-child {
    padding-left: 0;
    padding-right: 0;
    margin-bottom: 5px;
  }

  .processlist {
    margin-top: 40px;
  }

  .process-item {
    margin-bottom: 60px;
  }

  .ralp-blk {
    max-width: inherit;
  }

  .planheader {
    min-height: auto;
  }

  .free-blk-area p {
    text-align: center;
  }

  .plns-pg .inner-banner-sec-con ul li {
    font-size: 15px;
  }

  .plns-pg {
    padding: 50px 0 120px;
  }

  .testipattern {
    width: 100px;
    bottom: 0;
    top: auto;
  }

  .needed-block {
    text-align: center;
  }

  .woocommerce form .form-row textarea {
    height: 6em;
  }

  .woocommerce-checkout #payment div.payment_box .woocommerce-SavedPaymentMethods {
    padding: 0;
  }

  .starting-learn-block .entry-header h1 {
    font-size: 35px;
    margin-bottom: 15px;
  }

  .woocommerce-account .starting-learn-block .entry-header h1 {
    margin-bottom: 30px;
    padding: 0 !important;
  }

  /* support 21/10/22 */

  .woocommerce-MyAccount-content .dashboard-body .account-edit {
    padding: 20px 25px;
    margin-bottom: 15px;
  }

  .woocommerce-MyAccount-content .dashboard-body .gf_browser_chrome.gform_wrapper.gravity-theme {
    padding: 21px 15px;
  }

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

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

  /* end support 21/10/22 */

  /* update start 06/01/2022 */
  .starting-learn-block #post-1021 {
    max-width: 100%;
  }

  .plan-single-wrap #primary .pricing-blk-sec h2 {
    font-size: 50px;
  }

  .plan-single-wrap #primary .col-wrap {
    margin-bottom: 0;
  }

  /* update end 06/01/2022 */

  .booking-section .grid-row .grid-sm-4 {
    width: 100%;
  }

  .page-template-physical-academy .new-innr-frm-outer-physics {
    background-position: center right -50vw !important;
  }
  /*support paulomi 13/5/2023*/
.plan-blockarea .planitem {
  height: auto;
}
  .home .plan-blockarea .planitem .planheader{
    min-height: auto;
  }
/*support paulomi 13/5/2023*/
}

@media (max-width: 479px) {
  .trms-hd {
    font-size: 16px;
  }

  .footer .col-width:nth-child(2),
  .footer .col-width:nth-child(3),
  .footer .col-width:nth-child(4),
  .footer .col-width:last-child {
    width: 50%;
  }

  .terms-panel {
    justify-content: flex-start;
  }

  .trms-down a {
    font-size: 16px;
  }

  .footer .col-width:first-child {
    text-align: left;
  }

  .banner:after {
    width: 250px;
    height: 250px;
  }

  .upperwhite {
    top: -4px;
  }

  .common-header {
    margin-bottom: 30px;
  }

  .video-main {
    width: 100px;
    height: 100px;
  }

  .formfooter h6 a {
    display: block;
    margin-top: 5px;
  }

  .plns-pg ul {
    display: block;
    max-width: 90%;
    margin: 0 auto 30px;
  }

  .plns-pg .inner-banner-sec-con ul li {
    padding-left: 24px;
    text-align: left;
    margin: 0 0 10px;
  }

  /* 29.09.22 */

  .woocommerce-account.logged-in .ga_monthly_schedule_wrapper td {
    padding: 6% 0 !important;
  }

  /* support 21/10/22 */

  .woocommerce-MyAccount-content .dashboard-body .account-edit {
    padding: 21px 15px;
    margin-bottom: 7px;
  }

  .woocommerce-MyAccount-content .dashboard-body .gf_browser_chrome.gform_wrapper.gravity-theme {
    padding: 21px 15px;
  }

  /* end support 21/10/22 */

  /* support 17/1/23 */

  .booking-section .grid-row .ga_wrapper_large #ga_selected_bookings .ga_selected_booking {
    font-size: 10px;
  }

  /* end support 17/1/23 */


}

@media (max-width: 360px) {
  .trms-con {
    display: block;
  }

  .right-menu {
    padding-right: 12px;
  }

  .navbar-brand {
    width: 100px;
  }

  .banner-con {
    padding: 20px 0;
  }

  .footer .col-width:nth-child(2),
  .footer .col-width:nth-child(3),
  .footer .col-width:nth-child(4),
  .footer .col-width:last-child {
    width: 100%;
  }

  .ratingstarbox {
    padding-left: 12px;
  }

  .ratingstar {
    padding-right: 18px;
  }
}

.gform_wrapper.gravity-theme .gfield textarea.large {
  height: 120px !important;
}

#post-33 .entry-title {
  padding: 2px 35px 70px 4px;
  text-align: center;
}

div#ga_appointments_calendar {
  max-width: 100%;
}

.action-btn-wrap a {
  margin: 6px;
}

.wrp-doc-fields {
  padding: 8px;
}

/* support-7.10.22 */

.dashboard-body-material table td p a {
  margin-left: 8px;
}

.dashboard-body-material .modal-body form input[type='submit'] {
  height: 40px;
  margin-top: 10px;
}

.dashboard-body-material table {
  margin-top: 25px;
}

.dashboard-body-material .wrp-doc-fields {
  padding: 8px 0;
}

.dashboard-body-material .wrp-doc label {
  font-weight: 700;
}

.wrp-maling-usr-detls {
  padding: 21px 0px 2px 0px;
}

.mail-form-collapse-wrp {
  padding: 24px 8px 2px 0px;
}

.mail-form-collapse-wrp .chse-fle-wrp {
  padding: 19px 0px 12px 0px;
}

/* CSS Modification 19.10.22 */
.header-ntf-display {
  padding: 4px 0;
  text-align: center;
  background: #1d9bf0;
  color: #fff;
  text-transform: capitalize;
  font-weight: 600;
  font-size: 12px;
}

.header-ntf-display a {
  color: #fff;
  text-decoration: underline !important;
}

/* CSS Modification 19.10.22 */

#gform_wrapper_4 .gform_title {
  font-size: 28px !important;
}

.woocommerce-MyAccount-orders a.woocommerce-button.button.invoice {
  margin: 6px;
}

.ginput_container_number input[type='number'] {
  width: 100%;
  height: 45px;
  background: #ffffff;
  border-radius: 8px;
  color: #000000;
  padding: 0 15px;
  border: none;
  box-shadow: none;
}

.gform_wrapper.gravity-theme .gfield_label {
  color: #ffffff;
}

.gform_wrapper .gfield_required {
  color: #ffffff;
}

.ginput_container_consent {
  display: flex;
  align-items: baseline;
}

.ginput_container_consent .gfield_consent_label {
  color: #ffffff;
  padding-left: 15px;
}

.wrap-autoplay-vdo video {
  width: 90% !important;
  margin: 0 auto !important;
  display: block !important;
}

.slot-error-ntfi span {
  margin-left: 15px;
  margin-top: 15px;
  float: left;
}

h2.gform_title {
  text-align: center;
  position: relative;
  padding-bottom: 26px;
  margin-bottom: 24px;
}

h2.gform_title:after {
  content: '';
  position: absolute;
  width: 57px;
  height: 5px;
  background: #1d9bf0;
  display: inline-block;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 0);
  -webkit-transform: translate(-50%, 0);
  -moz-transform: translate(-50%, 0);
}

#gform_submit_button_7 {
  background: #1d9bf0;
  box-shadow: 0px 6px 32px rgb(29 155 240 / 29%);
  height: 47px;
  border: none;
  -webkit-appearance: none;
  appearance: none;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  border-radius: 8px;
  padding: 0 41px;
  cursor: pointer;
  font-weight: 600;
  font-size: 16px;
  outline: none !important;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  text-transform: capitalize;
  color: #ffffff;
}

form#gform_7 {
  max-width: 1024px;
  margin: auto;
}

.avail-credits {
    font-size: 14px;
}
