
@import url("https://fonts.googleapis.com/css2?family=Arimo:wght@400;500;600;700&amp;family=DM+Sans:wght@400;500;700&amp;display=swap");
@import url("animate.css");
@import url("owl.css");
:root {
  --theme-color-light: #ffffff;
  --theme-color-dark: #27272F;
  --theme-color-gray: #F6F6F6;
  --theme-color1: #C9F31D;
  --theme-color2: #a0c506;
  --reivew-color: #ffc737;
  --bg-theme-color1: var(--theme-color1);
  --bg-theme-color2: var(--theme-color2);
  --text-color: #696E77;
  --headings-color: #27272F;
  --link-color: var(--headings-color);
  --link-hover-color: var(--headings-color);
  --text-font: "DM Sans", sans-serif ;
  --title-font: "Arimo", sans-serif ;
  --body-font-size: 16px;
  --body-line-height: 1.87em;
  --body-font-weight: 400;
  --line-height-heading-h1: 1em;
  --line-height-heading: 1.29em;
  --line-height-heading-small: 1.35em;
  --h1-font-size: 88px;
  --h2-font-size: 48px;
  --h3-font-size: 36px;
  --h4-font-size: 24px;
  --h5-font-size: 22px;
  --h6-font-size: 20px;
  --h1-font-weight: 700;
  --h2-font-weight: 700;
  --h3-font-weight: 700;
  --h4-font-weight: 600;
  --h5-font-weight: 700;
  --h6-font-weight: 700;
  --sec-title-subtitle-font-size: 14px;
  --sec-title-subtitle-color: var(--headings-color);
  --sec-title-subtitle-font-family: var(--text-font);
  --sec-title-subtitle-font-weight: 700;
  --sec-title-subtitle-line-height: 20px;
  --sec-title-color: var(--headings-color);
  --sec-title-font-size: var(--h2-font-size);
  --sec-title-font-family: var(--title-font);
  --sec-title-font-weight: var(--h2-font-weight);
  --theme-light-background: #F2F3F5;
  --theme-light-background-text-color: var(--headings-color);
  --theme-black: #131313;
  --container-width: 1310px;
  --small-container-width: 1000px;
  --large-container-width: 1760px;
  --container-pt: 120px;
  --container-pb: 120px;
}

/*
 * typography.scss
 * -----------------------------------------------
*/
::-moz-selection {
  background: var(--theme-color-dark);
  color: #fff;
  text-shadow: none;
}
::selection {
  background: var(--theme-color-dark);
  color: #fff;
  text-shadow: none;
}

:active,
:focus {
  outline: none !important;
}

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

::-moz-input-placeholder {
  color: #7c858c;
}

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

body {
  background-color: #fff;
  background-attachment: fixed;
  -ms-word-wrap: break-word;
  word-wrap: break-word;
  counter-reset: my-sec-counter;
  -webkit-font-smoothing: antialiased;
  -moz-font-smoothing: antialiased;
  color: var(--text-color);
  font-size: var(--body-font-size);
  font-family: var(--text-font);
  font-weight: var(--body-font-weight);
  line-height: var(--body-line-height);
}

p, .text {
  color: var(--text-color);
  font-size: var(--body-font-size);
  font-family: var(--text-font);
  font-weight: var(--body-font-weight);
  line-height: var(--body-line-height);
}

/* -------- Headings ---------- */
h1, h2, h3, h4, h5, h6 {
  color: var(--headings-color);
  font-family: var(--title-font);
  position: relative;
  line-height: var(--line-height-heading-);
}
h1 small,
h1 .small, h2 small,
h2 .small, h3 small,
h3 .small, h4 small,
h4 .small, h5 small,
h5 .small, h6 small,
h6 .small {
  font-weight: normal;
  line-height: 1;
  color: var(--headings-color);
}
h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
  color: inherit;
  font-weight: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 1rem;
}

h1 {
  font-size: var(--h1-font-size);
  font-weight: var(--h1-font-weight);
  line-height: var(--line-height-heading-h1);
}

h2 {
  font-size: var(--h2-font-size);
  font-weight: var(--h2-font-weight);
  line-height: var(--line-height-heading);
}

h3 {
  font-size: var(--h3-font-size);
  font-weight: var(--h3-font-weight);
  line-height: var(--line-height-heading);
}

h4 {
  font-size: var(--h4-font-size);
  font-weight: var(--h4-font-weight);
  line-height: var(--line-height-heading-small);
  letter-spacing: 0.15px;
}

h5 {
  font-size: var(--h5-font-size);
  font-weight: var(--h5-font-weight);
  line-height: var(--line-height-heading-small);
}

h6 {
  font-size: var(--h6-font-size);
  font-weight: var(--h6-font-weight);
  line-height: var(--line-height-heading-small);
}

/* -------- Body Text ---------- */
table p {
  margin-bottom: 0;
}

p {
  margin-bottom: 20px;
}
p a:not(.button):not(.btn):hover, p a:not(.button):not(.btn):focus {
  text-decoration: underline;
}

/* -------- other ---------- */
a {
  color: var(--link-color);
  text-decoration: none;
  font-weight: var(--body-font-weight);
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
a:hover, a:focus {
  color: inherit;
  text-decoration: none;
  outline: none;
}
a b, a strong {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
a img {
  border: none;
}

pre,
ul,
ol,
dl,
dd,
blockquote,
address,
table,
fieldset {
  margin-bottom: 10px;
}

ol, ul {
  list-style-position: inside;
  margin: 0;
  padding: 0;
}

b, strong {
  color: #333;
  font-weight: var(--body-font-weight-bold);
}

iframe {
  border: none !important;
}

/*
 * container.scss
 * -----------------------------------------------
*/
.container .container {
  width: 100%;
}

.container .container,
.container .container-fluid,
.container-fluid .container,
.container-fluid .container-fluid {
  padding-left: 0;
  padding-right: 0;
}

section > .container,
section > .container-fluid {
  padding-top: var(--container-pt);
  padding-bottom: var(--container-pt);
}

@media (min-width: 1400px) {
  .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
    max-width: var(--container-width);
  }
}
/*=== Default Form ===*/
.form-control, .input-text {
  height: calc(2.25rem + 27px);
  padding: 14px 30px;
  outline: 0;
  background-color: #f4f5f8;
  border: 1px solid #f4f5f8;
  color: #686a6f;
  font-size: 0.9rem;
  width: 100%;
}
.form-control::-webkit-input-placeholder, .input-text::-webkit-input-placeholder {
  color: #686a6f;
  opacity: 1;
}
.form-control::-moz-placeholder, .input-text::-moz-placeholder {
  color: #686a6f;
  opacity: 1;
}
.form-control:-ms-input-placeholder, .input-text:-ms-input-placeholder {
  color: #686a6f;
  opacity: 1;
}
.form-control::-ms-input-placeholder, .input-text::-ms-input-placeholder {
  color: #686a6f;
  opacity: 1;
}
.form-control::placeholder, .input-text::placeholder {
  color: #686a6f;
  opacity: 1;
}
.form-control:-ms-input-placeholder, .input-text:-ms-input-placeholder {
  color: #686a6f;
}
.form-control::-ms-input-placeholder, .input-text::-ms-input-placeholder {
  color: #686a6f;
}

textarea.form-control {
  height: auto;
  padding-top: 15px;
  padding-bottom: 15px;
}

/* -------- Dark Theme Styling ---------- */
.dark-layout {
  background-color: var(--theme-color-dark) !important;
  --sec-title-color: var(--theme-color-light);
}
.dark-layout .sticky-header .main-menu .navigation > li > a,
.dark-layout h1, .dark-layout h2, .dark-layout h3, .dark-layout h4, .dark-layout h5, .dark-layout h6 {
  color: var(--theme-color-light);
}
.dark-layout .preloader {
  background-color: var(--theme-color-dark);
}
.dark-layout .preloader:after {
  background-image: url(../images/logo.png);
}
.dark-layout .sticky-header {
  background-color: var(--theme-color-dark);
}
.dark-layout .hidden-bar .upper-box {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.dark-layout .hidden-bar .social-links {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.dark-layout .hidden-bar .social-links li {
  border-right: 1px solid rgba(0, 0, 0, 0.1);
}

/***

====================================================================
Reset
====================================================================

***/
* {
  margin: 0px;
  padding: 0px;
  border: none;
  outline: none;
  font-size: 100%;
}

/***

====================================================================
Global Settings
====================================================================

***/
textarea {
  overflow: hidden;
  resize: none;
}

button {
  outline: none !important;
  cursor: pointer;
}

img {
  display: inline-block;
  max-width: 100%;
  height: auto;
}

ul,
li {
  list-style: none;
  padding: 0px;
  margin: 0px;
}

figure.image {
  margin-bottom: 0;
}

.title a {
  color: inherit;
}

.color1 {
  color: var(--theme-color1);
}

.page-wrapper {
  position: relative;
  margin: 0 auto;
  width: 100%;
  min-width: 300px;
  overflow: hidden;
  z-index: 99;
  background-color: #ffffff;
}


.auto-container {
  position: static;
  max-width: var(--container-width);
  padding: 0px 15px;
  margin: 0 auto;
  width: 100%;
}



.bg {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}


.bg-pattern-2 {
  background-image: url(../images/icons/pattern-2.png);
}


/*=======================
    Preloader
=======================*/
.preloader {
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: 999999;
  background-color: #ffffff;
}
.preloader:after {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 150px;
  margin-left: -75px;
  margin-top: -30px;
  height: 50px;
  background-position: center center;
  background-repeat: no-repeat;
  -webkit-animation: pulse 1s infinite linear;
          animation: pulse 1s infinite linear;
  background-image: url(../images/favicon.png);
  content: "";
}
.preloader:before {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  width: 100%;
  text-align: center;
  margin: 0 auto;
  margin-top: 20px;
  color: var(--theme-color-dark);
  font-weight: 600;
  font-size: 14px;
  font-family: var(--title-font);
  letter-spacing: 2px;
  text-transform: uppercase;
  content: "Loading";
  -webkit-transition: none;
  transition: none;
}

/*=======================
Scroll To Top style
=======================*/
.scroll-to-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 40px;
  font-size: 16px;
  line-height: 40px;
  color: #EFEFF3;
  text-align: center;
  cursor: pointer;
  background-color: #702861;
  z-index: 100;
  display: none;
  border-radius: 50%;
  margin: 0 auto;
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.scroll-to-top:hover {
  background: #27272f;
  color: #ffffff;
}




.default-dots .owl-dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.default-dots .owl-dots .owl-dot {
  position: relative;
  height: 10px;
  width: 10px;
  border-radius: 10px;
  background-color: rgba(0, 0, 0, 0.2);
  margin: 0 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.default-dots .owl-dots .owl-dot::before {
  position: absolute;
  height: 24px;
  width: 24px;
  left: -7px;
  top: -7px;
  border-radius: 24px;
  border: 2px solid var(--theme-color-dark);
  content: "";
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.default-dots .owl-dots .owl-dot.active {
  background-color: var(--theme-color-dark);
}
.default-dots .owl-dots .owl-dot.active::before {
  -webkit-transform: scale(1);
          transform: scale(1);
}

.default-dots-two .owl-dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.default-dots-two .owl-dots .owl-dot {
  position: relative;
  height: 10px;
  width: 10px;
  border-radius: 10px;
  border: 1px solid var(--theme-color-dark);
  margin: 0 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.default-dots-two .owl-dots .owl-dot::before {
  position: absolute;
  height: 24px;
  width: 24px;
  left: -8px;
  top: -8px;
  border-radius: 24px;
  border: 2px solid var(--theme-color-dark);
  content: "";
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.default-dots-two .owl-dots .owl-dot.active {
  background-color: var(--theme-color-dark);
}
.default-dots-two .owl-dots .owl-dot.active::before {
  -webkit-transform: scale(1);
          transform: scale(1);
}

.default-dots-three .owl-dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.default-dots-three .owl-dots .owl-dot {
  position: relative;
  height: 10px;
  width: 10px;
  border-radius: 10px;
  background-color: rgba(255, 255, 255, 0.5);
  margin: 0 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.default-dots-three .owl-dots .owl-dot::before {
  position: absolute;
  height: 24px;
  width: 24px;
  left: -7px;
  top: -7px;
  border-radius: 24px;
  border: 2px solid var(--theme-color1);
  content: "";
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.default-dots-three .owl-dots .owl-dot.active {
  background-color: var(--theme-color-light);
}
.default-dots-three .owl-dots .owl-dot.active::before {
  -webkit-transform: scale(1);
          transform: scale(1);
}

.default-dots-four .owl-dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.default-dots-four .owl-dots .owl-dot {
  position: relative;
  height: 10px;
  width: 10px;
  border-radius: 10px;
  background-color: rgba(255, 255, 255, 0.2);
  margin: 0 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.default-dots-four .owl-dots .owl-dot::before {
  position: absolute;
  height: 24px;
  width: 24px;
  left: -7px;
  top: -7px;
  border-radius: 24px;
  border: 2px solid var(--theme-color1);
  content: "";
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.default-dots-four .owl-dots .owl-dot.active {
  background-color: var(--theme-color1);
}
.default-dots-four .owl-dots .owl-dot.active::before {
  -webkit-transform: scale(1);
          transform: scale(1);
}

.disable-navs .owl-nav {
  display: none;
}

.disable-dots .owl-dots {
  display: none;
}



/*
 * typography.scss
 * -----------------------------------------------
*/
::-moz-selection {
  background: var(--theme-color-dark);
  color: #fff;
  text-shadow: none;
}
::selection {
  background: var(--theme-color-dark);
  color: #fff;
  text-shadow: none;
}

:active,
:focus {
  outline: none !important;
}

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

::-moz-input-placeholder {
  color: #7c858c;
}

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

body {
  background-color: #fff;
  background-attachment: fixed;
  -ms-word-wrap: break-word;
  word-wrap: break-word;
  counter-reset: my-sec-counter;
  -webkit-font-smoothing: antialiased;
  -moz-font-smoothing: antialiased;
  color: var(--text-color);
  font-size: var(--body-font-size);
  font-family: var(--text-font);
  font-weight: var(--body-font-weight);
  line-height: var(--body-line-height);
}

p, .text {
  color: var(--text-color);
  font-size: var(--body-font-size);
  font-family: var(--text-font);
  font-weight: var(--body-font-weight);
  line-height: var(--body-line-height);
}

/* -------- Headings ---------- */
h1, h2, h3, h4, h5, h6 {
  color: var(--headings-color);
  font-family: var(--title-font);
  position: relative;
  line-height: var(--line-height-heading-);
}
h1 small,
h1 .small, h2 small,
h2 .small, h3 small,
h3 .small, h4 small,
h4 .small, h5 small,
h5 .small, h6 small,
h6 .small {
  font-weight: normal;
  line-height: 1;
  color: var(--headings-color);
}
h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
  color: inherit;
  font-weight: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 1rem;
}

h1 {
  font-size: var(--h1-font-size);
  font-weight: var(--h1-font-weight);
  line-height: var(--line-height-heading-h1);
}

h2 {
  font-size: var(--h2-font-size);
  font-weight: var(--h2-font-weight);
  line-height: var(--line-height-heading);
}

h3 {
  font-size: var(--h3-font-size);
  font-weight: var(--h3-font-weight);
  line-height: var(--line-height-heading);
}

h4 {
  font-size: var(--h4-font-size);
  font-weight: var(--h4-font-weight);
  line-height: var(--line-height-heading-small);
  letter-spacing: 0.15px;
}

h5 {
  font-size: var(--h5-font-size);
  font-weight: var(--h5-font-weight);
  line-height: var(--line-height-heading-small);
}

h6 {
  font-size: var(--h6-font-size);
  font-weight: var(--h6-font-weight);
  line-height: var(--line-height-heading-small);
}

/* -------- Body Text ---------- */
table p {
  margin-bottom: 0;
}

p {
  margin-bottom: 20px;
}
p a:not(.button):not(.btn):hover, p a:not(.button):not(.btn):focus {
  text-decoration: underline;
}

/* -------- other ---------- */
a {
  color: var(--link-color);
  text-decoration: none;
  font-weight: var(--body-font-weight);
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
a:hover, a:focus {
  color: inherit;
  text-decoration: none;
  outline: none;
}
a b, a strong {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
a img {
  border: none;
}

pre,
ul,
ol,
dl,
dd,
blockquote,
address,
table,
fieldset {
  margin-bottom: 10px;
}

ol, ul {
  list-style-position: inside;
  margin: 0;
  padding: 0;
}

b, strong {
  color: #333;
  font-weight: var(--body-font-weight-bold);
}

iframe {
  border: none !important;
}

/*
 * container.scss
 * -----------------------------------------------
*/
.container .container {
  width: 100%;
}

.container .container,
.container .container-fluid,
.container-fluid .container,
.container-fluid .container-fluid {
  padding-left: 0;
  padding-right: 0;
}

section > .container,
section > .container-fluid {
  padding-top: var(--container-pt);
  padding-bottom: var(--container-pt);
}

@media (min-width: 1400px) {
  .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
    max-width: var(--container-width);
  }
}
/*=== Default Form ===*/
.form-control, .input-text {
  height: calc(2.25rem + 27px);
  padding: 14px 30px;
  outline: 0;
  background-color: #f4f5f8;
  border: 1px solid #f4f5f8;
  color: #686a6f;
  font-size: 0.9rem;
  width: 100%;
}
.form-control::-webkit-input-placeholder, .input-text::-webkit-input-placeholder {
  color: #686a6f;
  opacity: 1;
}
.form-control::-moz-placeholder, .input-text::-moz-placeholder {
  color: #686a6f;
  opacity: 1;
}
.form-control:-ms-input-placeholder, .input-text:-ms-input-placeholder {
  color: #686a6f;
  opacity: 1;
}
.form-control::-ms-input-placeholder, .input-text::-ms-input-placeholder {
  color: #686a6f;
  opacity: 1;
}
.form-control::placeholder, .input-text::placeholder {
  color: #686a6f;
  opacity: 1;
}
.form-control:-ms-input-placeholder, .input-text:-ms-input-placeholder {
  color: #686a6f;
}
.form-control::-ms-input-placeholder, .input-text::-ms-input-placeholder {
  color: #686a6f;
}

textarea.form-control {
  height: auto;
  padding-top: 15px;
  padding-bottom: 15px;
}



.theme-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  white-space: nowrap;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-family: var(--title-font);
}
.theme-btn .btn-title {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

/*Btn Style One*/
.btn-style-one {
  position: relative;
  font-size: 14px;
  line-height: 30px;
  padding: 15px 26px;
  font-weight: 700;
  overflow: hidden;
  color: #EDEDF2;
  background: var(--theme-color1);
  border-radius: 5px;
  letter-spacing: 1.4px;
  text-transform: capitalize;
}
.btn-style-one i {
  position: relative;
  display: block;
  margin-left: 10px;
}
.btn-style-one:before {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  content: "";
  background-color: var(--theme-color-dark);
  border-radius: inherit;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: top right;
          transform-origin: top right;
  transition: -webkit-transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
  -webkit-transition: -webkit-transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
  transition: transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
  transition: transform 500ms cubic-bezier(0.86, 0, 0.07, 1), -webkit-transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
  -webkit-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
          transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
}
.btn-style-one:hover:before {
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
  -webkit-transform-origin: bottom left;
          transform-origin: bottom left;
}
.btn-style-one:hover {
  color: var(--theme-color1);
}
.btn-style-one.hover-light:before {
  background-color: var(--theme-color-light);
}
.btn-style-one.hover-light:hover {
  color: var(--theme-color-dark);
}
.btn-style-one.dark-bg {
  background-color: var(--theme-color-dark);
  color: var(--theme-color1);
}
.btn-style-one.dark-bg:before {
  background-color: var(--theme-color-light);
}
.btn-style-one.dark-bg:hover {
  color: var(--theme-color-dark);
}



.theme-btn.small {
  padding: 10px 30px;
  line-height: 20px;
  font-size: 10px;
}

.theme-btn.large {
  padding: 20px 60px;
  line-height: 25px;
}




/***

====================================================================
Section Title
====================================================================

***/
.sec-title {
  position: relative;
  margin-bottom: 60px;
}
@media (max-width: 991.98px) {
  .sec-title br {
    display: none;
  }
}
.sec-title .sub-title {
  position: relative;
  display: inline-block;
  font-size: 33px;
  line-height: var(--sec-title-subtitle-line-height);
  font-weight: var(--sec-title-subtitle-font-weight);
  font-family: var(--sec-title-subtitle-font-family);
  color: var(--sec-title-subtitle-color);
  text-transform: uppercase;
  padding-right: 46px;
  letter-spacing: 1.3px;
  margin-bottom: 10px;
}
.sec-title .sub-title:before {
  position: absolute;
  right: 0;
  top: 2px;
  height: 14px;
  width: 32px;
  background-image: url(../images/icons/sub-title-before-colored.png);
  background-repeat: no-repeat;
  background-position: center;
  content: "";
}
.sec-title h2 {
  position: relative;
  display: block;
  font-size: var(--sec-title-font-size);
  color: var(--sec-title-color);
  font-family: var(--sec-title-font-family);
  font-weight: var(--sec-title-font-weight);
  margin-bottom: 0;
  z-index: 2;
}
@media (max-width: 575.98px) {
  .sec-title h2 {
    font-size: 36px;
    line-height: 1.1em;
    letter-spacing: -1px;
  }
}
.sec-title .text {
  margin-top: 20px;
}
.sec-title.light .sub-title,
.sec-title.light .text,
.sec-title.light h2,
.sec-title.light h1 {
  color: #fff;
}
.sec-title.light .sub-title::before {
  background-image: url(../images/icons/sub-title-before-colored.png);
}
.sec-title.alt .sub-title::before {
  background-image: url(../images/icons/sub-title-before-colored.png);
}
.sec-title.alt .sub-title::after {
  background-image: url(../images/icons/sub-title-before-colored.png);
}
.sec-title.text-center .sub-title {
  padding-left: 46px;
}
.sec-title.text-center .sub-title::after {
  position: absolute;
  left: 0;
  top: 2px;
  height: 14px;
  width: 32px;
  background-image: url(../images/icons/sub-title-before-colored.png);
  background-repeat: no-repeat;
  background-position: center;
  content: "";
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
}
.sec-title.v2 .sub-title {
  padding-left: 0;
}
.sec-title.v2 .sub-title:after {
  display: none;
}
.sec-title.v3 .sub-title {
  padding-left: 0;
  padding-right: 0;
}
.sec-title.v3 .sub-title:after {
  display: none;
}
.sec-title.v3 .sub-title:before {
  display: none;
}


/***

====================================================================
Banner Section Two
====================================================================

***/
.banner-section-two {
  position: relative;
  padding:110px 0 70px;
  background-color: var(--theme-color-gray);
}
@media (max-width: 575.98px) {
  .banner-section-two {
    padding: 25px 0 20px;
  }
}
.banner-section-two .bg-image .bg-overlay {
  background-image: url(../images/banner/overlay.png);
}
@media (max-width: 1199.98px) {
  .banner-section-two .bg-image .bg-overlay {
    background-color: rgba(0, 0, 0, 0.3);
  }
}
@media (max-width: 991.98px) {
  .banner-section-two .bg-image .bg-overlay {
    background-color: rgba(0, 0, 0, 0.5);
  }
}
.banner-section-two .content-box {
  position: relative;
  max-width:635px;
  padding-left: 45px;
  margin-top: -40px;
}
@media (max-width: 991.98px) {
  .banner-section-two .content-box {
   text-align: left;
    margin: 0px;
    max-width: 100%;
    padding-left: 5px;

  }
}
.banner-section-two .content-box .play-btn-two .icon {
  margin-right: 20px;
}
.banner-section-two .content-box .play-btn-two .sub-title {
  color: var(--theme-color-light);
}
.banner-section-two .content-box .title {
  position: relative;
  color: #fff;
  margin-bottom: 18px;
  font-size: 48px;
  font-weight: 700;
  line-height: 57px;
  text-transform: capitalize;
  text-shadow: 3px 3px 3px #151515c4;
  letter-spacing: 0.2px;
}
@media (max-width: 575.98px) {
  .banner-section-two .content-box .title {
    font-size: 27px;
    line-height: 1.2em;
    margin-bottom: 12px;
  }
}
.banner-section-two .content-box .text {
  color: var(--theme-color-light);
  margin-bottom: 35px;
}
@media (max-width: 575.98px) {
  .banner-section-two .content-box .text {
   margin-bottom: 20px;
    line-height: 24px;
  }
}
.banner-section-two .content-box .play-btn-two {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 20px;
}
.banner-section-two .content-box .play-btn-two .icon {
  position: relative;
  height: 50px;
  width: 50px;
  line-height: 46px;
  text-align: center;
  border-radius: 50%;
  font-size: 16px;
  color: var(--theme-color-light);
  border: 2px solid var(--theme-color-light);
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.banner-section-two .content-box .play-btn-two .title {
  color: var(--theme-color-light);
  padding-left: 30px;
  margin-left: -10px;
  font-size: 18px;
  font-weight: 500;
  line-height: 26px;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.banner-section-two .content-box .play-btn-two:hover .icon {
  background-color: var(--theme-color-light);
  color: var(--theme-color1);
}
.banner-section-two .content-box .btn-box {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 991.98px) {
  .banner-section-two .content-box .btn-box {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media (max-width: 575.98px) {
  .banner-section-two .content-box .btn-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.banner-section-two .content-box .btn-box .info-btn-three {
  position: relative;
  color: var(--theme-color1);
  padding-left: 2px;
  text-align: left;
  white-space: nowrap;
  margin-left: 42px;
  margin-right: 16px;
}
@media (max-width: 575.98px) {
  .banner-section-two .content-box .btn-box .info-btn-three {
    margin-left: 0px;
    margin-top: 7px;
    display: block;
  }
}
.banner-section-two .content-box .btn-box .info-btn-three .icon {
  position: absolute;
  left: -39px;
  top: -9px;
  font-size: 17px;
  color: #702861;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  line-height: 35px;
  background-color: #ede7e7;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  text-align: center;
}
.banner-section-two .content-box .btn-box .info-btn-three small {
  display: block;
  font-size: 16px;
  font-weight: 400;
  line-height: 30px;
  color: var(--theme-color-light);
  margin-bottom: 3px;
}
.banner-section-two .content-box .btn-box .info-btn-three strong {
  font-size: 20px;
  line-height: 28px;
  color: var(--theme-color-light);
  font-weight: 500;
  letter-spacing: 0.7px;
  font-family: var(--title-font);
}
.banner-section-two .content-box .btn-box .info-btn-three:hover {
  color: var(--theme-color1);
}
.banner-section-two .content-box .btn-box .info-btn-three:hover .icon {
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
}




/***

====================================================================
    Process Section
====================================================================

***/
.process-section {
  position: relative;
  padding:75px 0 50px;
}

.process-blk-wrp {
  text-align: center;
}

.process-blk-wrp .process-block{
  display: inline-block;
  width: 150px;
  margin-right: 5px;

}

.process-block {
  margin-bottom: 30px;
}
.process-block .inner-box {
  position: relative;
}
.process-block .inner-box:hover .content-box {
  background-color: #702861;
  border-color: #702861;
  -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
          box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
}
.process-block .inner-box .content-box {
  text-align: center;
  border: 2px solid #dbd3d98a;
  border-radius: 5px;
  padding: 23px 5px;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  box-shadow: rgba(99, 99, 99, 0.16) 0px 2px 8px 0px;
}

@media (max-width: 575.98px) {
  .process-block .inner-box .content-box {
    padding: 11px 7px;
  }
}
.process-block .inner-box .content-box .title {
  color: var(--theme-color-dark);
  font-size: 16px;
  transition: all 300ms ease;
  margin-bottom: 0px;

}


.process-block:hover .inner-box .content-box .title {
  color: #fff;

}


.process-block .inner-box .content-box .text {
  color: var(--text-color);
  margin-bottom: 0;
}
.process-block .inner-box .content-box .count {
  position: relative;
  width: 61px;
  margin: 0 auto 12px;
  height: 61px;
  text-align: center;
  line-height: 60px;
  border-radius: 50px;
  display: inline-block;
}
.process-block .inner-box .content-box .count:before {
  content: "";
  position: absolute;
  top: -2px;
  left: -3px;
  width: 67px;
  height: 67px;
  text-align: center;
  line-height: 70px;
  border: 2px solid #CBCBCE;
  border-radius: 50%;
}


/***

====================================================================
    Fun Fact Section three
====================================================================

***/
.fun-fact-section-three {
  position: relative;
  padding: 80px 0 50px;
  z-index: 9;
  background-color: var(--theme-color-gray);
}
@media (max-width: 767.98px) {
  .fun-fact-section-three {
    padding: 45px 0 15px;
  }
}

.counter-block-three {
  position: relative;
  margin-bottom: 30px;
}
.counter-block-three .inner {
  background-color: var(--theme-color-light);
  position: relative;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  padding: 38px 35px 37px 39px;
  border-radius: 5px;
}
@media (max-width: 1399.98px) {
  .counter-block-three .inner {
    padding: 38px 27px 37px 20px;
  }
}
@media (max-width: 1199.98px) {
  .counter-block-three .inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 30px 0;
  }
}
.counter-block-three .inner:hover .icon {
  color: var(--theme-color-dark);
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
}
.counter-block-three .content {
  padding-left: 90px;
  position: relative;
}
@media (max-width: 767.98px) {
  .counter-block-three .content {
    padding-left: 0;
    text-align: center;
  }
}
.counter-block-three .icon {
  position: absolute;
  top: 5px;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #702861;
  font-size: 63px;
  line-height: 68px;
  border-radius: 5px;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
@media (max-width: 767.98px) {
  .counter-block-three .icon {
    position: relative;
    display: inline-block;
    top: 0;
    margin-bottom: 10px;
  }
}
.counter-block-three .count-box {
  font-family: var(--title-font);
  color: var(--theme-color-dark);
  margin-bottom: 5px;
  font-family: Arimo;
  font-size: 48px;
  font-weight: 700;
  line-height: 62.4px;
}
.counter-block-three .count-box .count-text {
  font-family: var(--title-font);
  color: var(--theme-color-dark);
  margin-bottom: 2px;
  font-family: Arimo;
  font-size: 36px;
  font-weight: 700;
  line-height: 6px;
}
.counter-block-three .counter-title {
  font-size: 16px;
  line-height: 20px;
  margin-bottom: 0;
  font-weight: 400;
  color: var(--theme-color-dark);
  font-family: var(--text-font);
}


 .form-column {
  position: relative;
  z-index: 3;
  margin-top: -40px;
  margin-bottom: 50px;
}
.form-column .inner-column {
  position: relative;
  background-color: #ffffffe5;
  width: 60%;
  left: 26px;
}
@media (max-width: 991.98px) {
  .form-column .inner-column {
    margin-left: 0;
    padding-top: 0;
  }
}
 .form-column .contact-form {
  position: relative;
  padding: 20px 20px;
}
 .form-column .contact-form .theme-btn {
  background-color: #702861;
  border: 2px solid #d8cad5fc;
}
@media (max-width: 575.98px) {
  .form-column .contact-form {
    padding: 16px 16px;
  }
}


.contact-form {
  position: relative;
  border-radius: 5px;
}
.contact-form .sec-title {
  margin-bottom: 50px;
}
.contact-form .input-outer {
  position: relative;
}
.contact-form .form-group {
  position: relative;
  margin-bottom: 20px;
}
.contact-form .form-group:last-child {
  margin-bottom: 0;
}
.contact-form .select2-container--default .select2-selection--single,
.contact-form input:not([type=submit]),
.contact-form textarea,
.contact-form select {
  position: relative;
  display: block;
  height: 47px;
  width: 100%;
  padding: 2px 5px 2px 50px;
  font-size: 16px;
  color: #67687A;
  line-height: 32px;
  font-weight: 400;
  background-color: var(--theme-color-gray);
  border: 1px solid #CACEDA;
  border-radius: 5px;
  margin-bottom: 0;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
@media (max-width: 575.98px) {
  .contact-form .select2-container--default .select2-selection--single,
  .contact-form input:not([type=submit]),
  .contact-form textarea,
  .contact-form select {
    height: 45px;
    padding: 10px 20px 10px 50px;
    font-size: 14px;
  }
}
.contact-form ::-webkit-input-placeholder {
  color: #67687A;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--theme-color2);
}
.contact-form input[type=submit],
.contact-form button {
  width: 100%;
  font-weight: 600;
  line-height: 32px;
  padding: 9px 30px;
}
@media (max-width: 575.98px) {
  .contact-form input[type=submit],
  .contact-form button {
    padding: 6px 30px;
  }
}



/***

====================================================================
	Testimonial Section
====================================================================

***/
.testimonial-section {
  position: relative;
  padding: 120px 0 120px;
}
.testimonial-section .sec-title {
  margin-bottom: 20px;
}
.testimonial-section .carousel-outer {
  margin-left: -15px;
  margin-right: -15px;
}
.testimonial-section .carousel-outer .owl-dots {
  margin-top: 30px;
}
.testimonial-section .carousel-outer .testimonial-block {
  padding: 15px 15px;
}
@media (max-width: 575.98px) {
  .testimonial-section .carousel-outer .testimonial-block {
    padding: 0;
  }
}

.testimonial-block {
  position: relative;
  margin-bottom: 30px;
  margin-top: 40px;
}
.testimonial-block .inner-box {
  position: relative;
  -webkit-box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 40px 40px;
}
.testimonial-block .inner-box:hover .thumb img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.testimonial-block .info-box {
  position: relative;
  display: inline-block;
  text-align: left;
  z-index: 2;
  border-radius: 0 0 10px 10px;
  width: 100%;
  padding-left: 260px;
}
@media (max-width: 1199.98px) {
  .testimonial-block .info-box {
    padding-left: 0;
    text-align: center;
  }
}
.testimonial-block .info-box .thumb {
  position: absolute;
  left: 0px;
  top: 0px;
  border-radius: 5px;
  margin-bottom: 20px;
  overflow: hidden;
}
.testimonial-block .info-box .thumb img {
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
@media (max-width: 1199.98px) {
  .testimonial-block .info-box .thumb {
    position: relative;
    display: inline-block;
  }
}
.testimonial-block .info-box .name {
  margin-bottom: 5px;
}
.testimonial-block .info-box .designation {
  display: block;
  margin-bottom: 30px;
  position: relative;
}
.testimonial-block .info-box .designation:before {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 1px;
  background-color: var(--theme-color-dark);
}
@media (max-width: 1199.98px) {
  .testimonial-block .info-box .designation:before {
    left: 50%;
    margin-left: -30px;
  }
}
.testimonial-block .info-box .icon {
  position: absolute;
  top: 40px;
  right: 40px;
  color: var(--theme-color1);
  font-size: 40px;
  line-height: 40px;
}
.testimonial-block .info-box .rating {
  position: relative;
  font-size: 16px;
  z-index: 2;
  line-height: 20px;
  margin-bottom: 13px;
  color: #FFBA08;
}
.testimonial-block .info-box .rating i {
  margin-right: 4px;
}
.testimonial-block .info-box .text {
  position: relative;
  color: var(--text-color);
  margin-bottom: 0;
}

/***

====================================================================
	Testimonial Section two
====================================================================

***/
.testimonial-section-two {
  position: relative;
  padding: 85px 0 75px;
}
.testimonial-section-two .icon-shape {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center;
}
.testimonial-section-two .sec-title {
  margin-bottom: 35px;
}
.testimonial-section-two .sec-title .sub-title {
  padding-left: 0;
}
.testimonial-section-two .sec-title .sub-title:after {
  display: none;
}
.testimonial-section-two .carousel-outer {
  margin-left: -15px;
  margin-right: -15px;
}
.testimonial-section-two .carousel-outer .owl-dots {
  margin-top: 30px;
}
.testimonial-section-two .carousel-outer .testimonial-block-two {
  padding: 10px 15px;
}

.testimonial-block-two {
  position: relative;
  margin-bottom: 30px;
}
.testimonial-block-two .inner-box {
  position: relative;
  padding:60px 54px 25px 112px;
  background-color: var(--theme-color-light);
  -webkit-box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.05);
          box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.05);
  border-radius: 5px;
  height: 300px;
}
@media (max-width: 1199.98px) {
  .testimonial-block-two .inner-box {
    padding: 40px 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-align: center;
  }
}
.testimonial-block-two .inner-box:hover .image-box .thumb img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.testimonial-block-two .inner-box:hover .info-box .quote-icon .icon {
  background-color: var(--theme-color-dark);
  color: var(--theme-color-light);
}
.testimonial-block-two .image-box {
  position: absolute;
  top: 37px;
  left: 0px;
  text-align: center;
}
@media (max-width: 1199.98px) {
  .testimonial-block-two .image-box {
    position: relative;
    top: 0;
    left: 0;
    display: inline-block;
    text-align: center;
  }
}
.testimonial-block-two .image-box .thumb {
  position: relative;
  margin-bottom: 20px;
  height: 115px;
  width: 115px;
  border-radius: 50%;
  overflow: hidden;
  display: inline-block;
}
@media (max-width: 1199.98px) {
  .testimonial-block-two .image-box .thumb {
    margin-bottom: 15px;
  }
}
.testimonial-block-two .image-box .thumb img {
  width: 100%;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.testimonial-block-two .image-box .rating {
  position: relative;
  font-size: 16px;
  z-index: 2;
  line-height: 20px;
  color: var(--theme-color1);
  margin-bottom: 30px;
}
@media (max-width: 1199.98px) {
  .testimonial-block-two .image-box .rating {
    margin-bottom: 15px;
  }
}
.testimonial-block-two .image-box .rating i {
  margin-right: 4px;
}
.testimonial-block-two .image-box .rating i:last-child {
  margin-right: 0;
}
.testimonial-block-two .info-box {
  z-index: 2;
}
.testimonial-block-two .info-box .name {
  margin-bottom: 0px;
  line-height: 31px;
  font-size: 20px;
}

.testimonial-block-two .info-box .text{
  font-size: 14px;
  line-height: 23px;
}

.testimonial-block-two .info-box .designation {
  display: block;
  margin-bottom: 16px;
}
.testimonial-block-two .info-box .quote-icon {
  position: absolute;
  right: 11px;
  top: 19px;
}
@media (max-width: 991.98px) {
  .testimonial-block-two .info-box .quote-icon {
    display: none;
  }
}
.testimonial-block-two .info-box .quote-icon .icon {
  text-align: center;
  height: 50px;
  width: 50px;
  color: var(--theme-color-dark);
  background: var(--theme-color-gray);
  font-size: 28px;
  line-height: 50px;
  border-radius: 50%;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}


/***

==================================================================
	Main Footer
==================================================================

***/
.main-footer {
  position: relative;
  /* Widget Section */
}
.main-footer .bg {
  background-size: auto;
}


.main-footer .widgets-section {
  position: relative;
}

.main-footer .footer-widget {
  position: relative;
}
.main-footer .widget-title {
  position: relative;
  color: var(--theme-color-light);
  margin-bottom: 30px;
}
.main-footer .widget-content {
  position: relative;
}
.main-footer .widget-content .text {
  color: var(--theme-color-light);
}



/*=== Footer Bottom ===*/
.footer-bottom {
  position: relative;
  z-index: 3;
  border-top: 1px solid #333F4D;
  padding: 30px 0;
}
@media (max-width: 991.98px) {
  .footer-bottom {
    text-align: center;
  }
}
.footer-bottom .inner-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media (max-width: 991.98px) {
  .footer-bottom .inner-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.footer-bottom .copyright-text {
  position: relative;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.7);
  margin: auto;
}
@media (max-width: 991.98px) {
  .footer-bottom .copyright-text {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    text-align: center;
    margin-top: 30px;
  }
}
.footer-bottom .copyright-text a {
  color: inherit;
}
.footer-bottom .copyright-text a:hover {
  color: var(--theme-color-light);
}
.footer-bottom .footer-nav {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media (max-width: 575.98px) {
  .footer-bottom .footer-nav {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.footer-bottom .footer-nav li {
  font-size: 16px;
  line-height: 32px;
  color: rgba(255, 255, 255, 0.7);
  margin-left: 30px;
}
.footer-bottom .footer-nav li:first-child {
  margin-left: 0;
}
@media (max-width: 991.98px) {
  .footer-bottom .footer-nav li {
    margin: 0 20px !important;
    text-align: center;
  }
}
.footer-bottom .footer-nav li a {
  color: inherit;
}
.footer-bottom .footer-nav li a:hover {
  color: var(--theme-color-light);
}





.footer-style-two {
  background-color: var(--theme-color-dark);
  /*=== Footer Bottom ===*/
}
.footer-style-two .widgets-section {
  padding: 92px 0 30px;
}
.footer-style-two .about-widget {
  margin-top: -10px;
}
.footer-style-two .about-widget .widget-content .logo {
  margin-bottom: 10px;
}
.footer-style-two .about-widget .widget-content .text {
  color: #E3E3E3;
  margin-bottom: 33px;
}
.footer-style-two .about-widget .widget-content .contact-info-block .inner .text {
  margin-bottom: 0;
}
.footer-style-two .links-widget {
  padding-left: 90px;
  margin-bottom: 30px;
}
@media (max-width: 1199.98px) {
  .footer-style-two .links-widget {
    padding-left: 0;
  }
}
.footer-style-two .links-widget li {
  margin-bottom: 6px;
}
.footer-style-two .links-widget.style-two {
  padding: 0;
  margin-left: -20px;
}
@media (max-width: 1199.98px) {
  .footer-style-two .links-widget.style-two {
    margin-left: 0;
  }
}
.footer-style-two .newsletter-widget {
  margin-left: -80px;
}
@media (max-width: 1199.98px) {
  .footer-style-two .newsletter-widget {
    margin-left: -60px;
  }
}
@media (max-width: 991.98px) {
  .footer-style-two .newsletter-widget {
    margin-left: 0;
  }
}
.footer-style-two .newsletter-widget .text {
  font-size: 14px;
  margin-bottom: 30px;
}
.footer-style-two .footer-bottom {
  position: relative;
  z-index: 3;
  padding: 13px 0;
  border-top: 0;
  background-color: rgba(255, 255, 255, 0.02);
}


/*------------------------------------------my------style-------------wrap-------------------start-------------------------*/


.cont-inpt-icn{
  position: absolute;
  width: 45px;
  height: 45px;
  top: 1px;
  left: 1px;
  text-align: center;
  background-color: #dddbdb;
  line-height: 44px;
  border-radius: 2px 0px 2px 0px;
  color: #212142;
}

.cpcth-div{
  border-radius: 2px;
  background-color: #e4e4e4;
  border: 1px solid #ddd;
  width: 120px;
  height: 46px;
}

.cptch-wrp .inr-cptcha{
  display: inline-block;
  width: 43%;
}

.cptch-wrp .inr-cptcha:first-child{
  width: 10%;
}

.inr-cptcha .rot-icn{
  position: relative;
  top: -16px;
  padding-left: 7px;

}

.inr-cptcha input{
  padding-left: 8px !important;
  top: -17px;
}

.contact-form h5:before{
  display: block;
  content: '';
  width: 35px;
  height: 2px;
  background-color: #702861;
  position: absolute;
  top: 14px;
  right: 40px;

}

/***

====================================================================
    Services Section Nine
====================================================================

***/
.services-section-nine {
  position: relative;
  padding: 120px 0 90px;
  background: var(--theme-color-dark);
}
@media (max-width: 767.98px) {
  .services-section-nine {
    padding: 50px 0 40px;
  }
}


.servc-wrp{
  text-align: center;
}


.servc-wrp .service-block-nine{
  display: inline-block;
  width: 19%;
  margin-top: 35px;
}

.service-block-nine {
  position: relative;
  margin-bottom: 30px;
}
.service-block-nine .inner-box {
  position: relative;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  border: 1px solid #333F4D;
  padding:8px 5px 10px;
  margin-left: 10px;
}
@media (max-width: 1199.98px) {
  .service-block-nine .inner-box {
    margin-left: 0;
    padding: 20px 23px;
  }
}
.service-block-nine .inner-box:hover .content-box .icon {
  background-color: var(--theme-color-light);
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
}
.service-block-nine .inner-box:hover .count {
  color: var(--theme-color1);
}
.service-block-nine .inner-box .content-box {
  position: relative;
  padding:68px 4px 0px 4px;
  text-align: center;
}
@media (max-width: 1199.98px) {
  .service-block-nine .inner-box .content-box {
    padding: 0;
    margin-bottom: 0;
  }
}
.service-block-nine .inner-box .content-box .icon {
  position: absolute;
  top: -28px;
  left: 0px;
  line-height: 73px;
  width: 88px;
  height: 86px;
  background-color: #EEE;
  border-radius: 5px;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  right: 0px;
  text-align: center;
  margin: auto;
}

.service-block-nine .inner-box .content-box .icon img{
  width: 82%;
}


@media (max-width: 1199.98px) {
  .service-block-nine .inner-box .content-box .icon {
    position: relative;
    left: 0;
    margin-bottom: 20px;
  }
}
@media (max-width: 575.98px) {
  .service-block-nine .inner-box .content-box .icon {
    width: 85px;
    height: 75px;
    line-height: 65px;
    font-size: 50px;
    margin-bottom: 0px;
  }
}
.service-block-nine .inner-box .content-box .title {
  position: relative;
  color: var(--theme-color-light);
  margin-bottom: 0;
  line-height: 30px;
  font-size: 17px;
}
@media (max-width: 575.98px) {
  .service-block-nine .inner-box .content-box .title {
    font-size: 16px;
    line-height: 14px;
  }
}
.service-block-nine .inner-box .content-box .title a:hover {
  color: var(--theme-color1);
}
.service-block-nine .inner-box .text {
  position: relative;
  margin-top: 50px;
  margin-bottom: 38px;
  color: var(--theme-color-light);
}
@media (max-width: 1199.98px) {
  .service-block-nine .inner-box .text {
    margin-top: 20px;
  }
}
.service-block-nine .inner-box .count {
  position: absolute;
  top: -7px;
  right: 7px;
  color: #E3E3E340;
  font-size: 33px;
  font-weight: 700;
  line-height: 62.4px;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
@media (max-width: 991.98px) {
  .service-block-nine .inner-box .count {
    top: -14px;
    right: 7px;
    font-size: 21px;
  }
}
.service-block-nine .inner-box .read-more {
  font-size: 14px;
  color: var(--theme-color-light);
  font-weight: 700;
}
.service-block-nine .inner-box .read-more:hover {
  color: var(--theme-color1);
}
.service-block-nine .inner-box .read-more i {
  margin-left: 8px;
  position: relative;
  top: 1px;
}


.logo {
  margin-bottom: 38px;
}

.logo img{
  width: 27%;
}

.bnr-numb a:before{
  /* content: '';
  display: block;
  width: 2px;
  height: 36px;
  background-color: #ffffff47;
  position: absolute;
  right: -7px;
  top: -10px; */
}


.bnr-numb a:nth-child(2):before{
  display: none;
}

.foot-brnch-wrp{
  padding: 0px 60px;
}


.rgt-txt-brnch {
  text-align: right;
}

.foot-brnch h4 {
  color: #fff;
  font-weight: 700;
  font-size: 20px;
  border-bottom: 1px solid #c1a0c563;
  padding-bottom: 5px;
}

.foot-brnch p {
  color: #f2f1f1;
  font-size: 14px;
  line-height: 19px;
  font-weight: 500;
  margin-bottom: 5px;
}

.foot-brnch h5 {
  color: #f2f1f1;
  font-size: 16px;
  font-weight: 600;
}


/*------------footer-------------social----------icon------------start----------------*/

.foot-scl-link {
  margin-bottom: 20px;
  text-align: center;
  margin-top: 8px;
}

.foot-scl-link li {
  list-style: none;
  display: inline-block;
}

.foot-scl-link li a {
  width: 37px;
  height: 37px;
  background-color: #ffffffcf;
  text-align: center;
  font-size: 14px;
  margin: 0 2px;
  display: block;
  border-radius: 50%;
  position: relative;
  overflow: hidden;
  border: 3px solid #aba7a7;
  z-index: 1;
  color: #464446;
}

.foot-scl-link li a i{
  line-height: 32px;
}

.foot-scl-link li a::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: #f00;
  transition: .5s;
  z-index: -1;
}

.foot-scl-link li:hover a{
  color: #fff;
}

.foot-scl-link li a:hover::before {
  top: 0;
}

.foot-scl-link li:nth-child(1) a::before {
  background: #3b5999;
}

.foot-scl-link li:nth-child(2) a::before {
  background: #e04e4e;
}

.foot-scl-link li:nth-child(3) a::before {
  background: #0077b5;
}

.foot-scl-link li:nth-child(4) a::before {
  background: #55acee;
}
small.help-block {
    color: red;
}
.loading {
    height: 0;
    width: 0;
    padding: 15px;
    border: 6px solid #ccc;
    border-right-color: #3e263e;
    border-radius: 22px;
    -webkit-animation: rotate 1s infinite linear;
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 99999;
}



@-webkit-keyframes rotate {

  /* 100% keyframe for  clockwise.

     use 0% instead for anticlockwise */

  100% {

    -webkit-transform: rotate(360deg);

  }

}



#loaderBody {

    background: #212529a1;

    position: fixed;

    z-index: 999999;

    width: 100%;

    height: 100%;

    display: none;

}


/* -------------------- amit  ----------------- */
.country-block .inner-box {
  position: relative;
  text-align: center;
  box-shadow: 0 0 15px rgba(0, 0, 0, .1);
  background-color: #fff;
}
.country-block .image-box {
  position: relative;
}
.country-block .image {
  position: relative;
  overflow: hidden;
  margin-bottom: 0;
}
.country-block .image:before {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 20px;
  width: 100%;
  overflow: hidden;
  background-position: 50%;
  background-image: url(../images/curve.png);
  content: "";
  z-index: 2;
}
.country-block .image img {
  width: 100%;
  transition: all .3s ease;
  height: 174px;
}
.country-block .inner-box:hover .image img {
  transform: scale(1.1);
}
.country-block .content-box {
  position: relative;
  padding: 0 40px 0px;
  border-bottom: 4px solid #97006d;
}
.country-block .content-box .flag {
  position: relative;
  display: block;
  margin: -48px auto 15px;
  height: 57px;
  width: 57px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid #fff;
  transition: all .3s ease;
  z-index: 2;
}
.country-block .content-box .title {
  display: block;
  margin-bottom: 20px;
}
.country-block .content-box .text {
  font-size: 16px;
  line-height: 30px;
}
.countries-section {
  position: relative;
  padding: 70px 0;
  z-index: 2;
  background: #d9d6d6;
}
.countries-section .bg-layer {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: cover;
  background-image: url(../images/pattern-2.891ee956.png);
  background-color: #1d2f41;
  max-height:330px;
}
.country_carousel {
  padding-left: 50px;
  padding-right: 50px;
}


.our-coaching-section-two {
  background-color: #f5f8fb;
  padding: 50px 0 40px 0;
}
.pbmit-subtitle {
  font-size: 13px;
  line-height: 25px;
  letter-spacing: 3px;
  font-weight: 600;
  color: #979b9f;
  text-transform: uppercase;
  font-style: normal;
  margin-bottom: 0;
}
.pbmit-title {
  font-weight: 500;
  font-size: 42px;
  line-height: 50px;
  letter-spacing: 1px;
  color: #2d3845;
  text-transform: none;
  font-style: normal;
}
.our-coaching-section-two p {
  margin-top: 35px;
}
.coachingbox-two {
  /* margin-top: -155px; */
  padding-bottom: 0px;
  background-color: #f4f4f4;
}
.coachingbox-two .five-step {
  padding-top: 50px !important;
}
.five-step {
  text-align: center;
  background-color: #f4f4f4;
}
.five-step {
  margin: 0px auto 0px;
  position: relative;
  /* background: linear-gradient(60deg, rgb(251, 142, 36) 10%, rgb(244, 133, 25) 20%, rgb(247, 191, 31) 100%); */
  padding: 50px 0px 65px;
  /* overflow: hidden; */
}
.five-step .pbmit-coachingbox-style-2 {
  display: inline-block;
  width: 18%;
}
.pbmit-coachingbox-style-2 .pbmit-box-content {
  background: #fff;
  text-align: center;
  border-radius: 4px;
  box-shadow: 0 10px 20px rgba(23, 119, 224, 0.06);
  padding: 21px 38px;
  position: relative;
  transform: translateY(0);
  transition: all 0.3s ease-in-out;
  padding: 21px 23px;
}
.pbmit-coachingbox-style-2 .pbmit-ihbox-icon {
  padding-bottom: 10px;
  font-size: 70px;
  color: #4466a5;
}
.pbmit-coachingbox-style-2 .pbmit-des h3 a {
  font-size: 15px;
  line-height: 20px;
  margin-top: 0;
  margin-bottom: 0px;
  color: #2d3845;
  text-decoration: none;
  font-weight: 600;
}
.counter-section-two {
  background-color: #91177a;
  padding: 65px 0px 45px;
  margin-bottom: 0px;
}
.text-white {
  color: #fff !important;
}
.pbmit-heading-subheading.text-white .pbmit-subtitle {
  color: #fff;
}
.pbmit-subtitle {
  font-size: 13px;
  line-height: 25px;
  letter-spacing: 3px;
  font-weight: 600;
  color: #979b9f;
  text-transform: uppercase;
  font-style: normal;
  margin-bottom: 0;
}
.pbmit-heading-subheading.text-white .pbmit-title {
  color: #fff;
}
.pbmit-title {
  font-weight: 500;
  font-size: 42px;
  line-height: 50px;
  letter-spacing: 1px;
  color: #2d3845;
  text-transform: none;
  font-style: normal;
}
.counter-two-left-box p {
  color: #edeef0;
  margin-bottom: 12px;
}
.map-img-two {
  margin-top: 30px;
  text-align: right;
}
.counter-two-box {
  padding-top: 50px;
}
.counter-container {
  text-align: center;
  position: relative;
}
.counter-container i {
  color: #fff;
  font-size: 45px;
}
.counter-container .counter {
  color: #f4f4f4;
  font-size: 35px;
  font-weight: 700;
}.fun-fct-plus {
  position: absolute;
  top: 33%;
  font-size: 36px !important;
  right: 50px;
}
.counter-container span {
  color: #f4f4f4;
  font-size: 18px;
  font-weight: 600;
}
.testi-bg {
  background-color: #f5f8fb;
  padding: 50px 0px 30px;
}
.five-step-hdng {
  text-align: center;
}
.five-step-hdng i {
  font-size: 34px;
  color: #2c1933;
}
.five-step-hdng h2 {
  font-weight: 700;
  font-size: 36px;
  position: relative;
  color: #a82884;
}
.five-step-hdng h2 span {
  color: #2c1933;
}
.five-step-hdng h2::after {
  content: '';
  position: absolute;
  bottom: -13px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 7px;
  height: 7px;
  background: #2c1933;
}
.five-step-hdng h2:before {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 20%;
  height: 1px;
  background: #2c1933;
}
.single-testimonial-item {
  position: relative;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0px 1px 9px -2px rgba(36, 44, 66, 0.31);
  padding: 25px 30px 30px;
  height: 300px;
  margin-bottom: 35px;
}


.pbminfotech-box-author {
  display: flex
;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  margin-bottom: 0px;
}
.pbminfotech-box-img img {
  width: 70px !important;
  height: 70px;
  border-radius: 50%;
  margin-right: 25px;
  display: block;
}

.pbminfotech-box-title {
  font-size: 18px;
  letter-spacing: 1px;
  line-height: 20px;
  margin-bottom: 0px;
  font-weight: 400;
  font-family: "Roboto", Arial, Helvetica, sans-serif;
  color: #4466a5;
}
.rating-star ul {
  padding-left: 0px;
}
.rating-star ul li {
  list-style: none;
  display: inline-block;
  color: #ffa500;
  font-size: 14px;
}
.client-testimonial-carousel {
  margin-top: 60px;
}
.foot-bg-wrp {
  width: 100%;
  background: url(../images/footer-bg.jpg);
  background-size: cover;
  position: relative;
  padding: 50px 0px 0px 0px;
  margin-bottom: 0px;
  z-index: 4;
  background-repeat: no-repeat;
  background-position: top center;
}
.education-footer-pattren {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background: url(../images/footer-pattren-1.png);
  z-index: -1;
}
.education-copyright {
  float: left;
  width: 100%;
  position: relative;
  border-top: 1px solid #8b8785;
  padding: 24px 0px 16px 0px;
}
.education-copyright p {
  text-align: center;
  margin-bottom: 0px;
  color: #cccccc;
}
.education-copyright p a {
  color: #fdfdfd;
  text-decoration: none;
}
.education-back-top {
  position: absolute;
  left: 50%;
  top: -25px;
  width: 30px;
  height: 30px;
  background-color: #ffffff;
  text-align: center;
  padding-top: 8px;
  color: #2f2f2f;
  display: none;
}
.education-back-top::before {
  content: '';
  position: absolute;
  left: -4px;
  bottom: 0px;
  border-top: 5px solid #ffffff;
  border-left: 4px solid transparent;
}
.education-back-top::after {
  content: '';
  position: absolute;
  right: -4px;
  bottom: 0px;
  border-top: 5px solid #ffffff;
  border-right: 4px solid transparent;
}
.our-coaching-section-two .container,
.coachingbox-two .container-fluid,
.testi-bg .container,
section.foot-bg-wrp .container,
.counter-section-two .container{
  padding: 49px 20px 20px;
  padding-bottom: 2px;
}
section.foot-bg-wrp .container {
  padding: 49px 20px 20px;
  padding-bottom: 2px;
  padding-top: 10px;
}
.five-step {
  display: flex;
  justify-content: space-between;
}

p.address {
  width: 60%;
 color: #ffffff;
 text-align:center;
 margin:auto;
 padding-bottom:20px;
}

@media(max-width:991px){
  .form-column {
    margin-top: 20px;

}
.five-step .pbmit-coachingbox-style-2 {
  display: inline-block;
  width: 32%;
  margin-bottom: 10px;
}
.five-step {
  display: flex
;
  justify-content: space-between;
  flex-wrap: wrap;
}
.five-step .pbmit-coachingbox-style-2 {
  display: inline-block;
  width: 31%;
  margin-bottom: 10px;
}
.counter-container span{
  display: none;
}
}

@media (max-width:767px) {
  .five-step .pbmit-coachingbox-style-2 {
      display: inline-block;
      width: 49%;
      margin-bottom: 10px;

  }
  .counter-container {
    text-align: center;
    position: relative;
    margin-bottom: 26px;
}
}
@media (max-width:575px) {
  .five-step .pbmit-coachingbox-style-2 {
      display: inline-block;
      width: 100%;
      margin-bottom: 10px;
  }
  .counter-container {
    text-align: center;
    position: relative;
    margin-bottom: 26px;
}
.fun-fct-plus {
  position: absolute;
  top: 33%;
  font-size: 36px !important;
  right: 152px;
}
.counter-container span{
  display: block;
}
}


@media(min-width:320px) and (max-width:500px){
  .fun-fct-plus {
    position: absolute;
    top: 33%;
    font-size: 36px !important;
    right: 90px;
  }
}
@media(max-width:375px){
  .contact-form h5:before{
    display: none;
  }
  .sec-title .sub-title {
    font-size: 17px !important;
}
.fun-fct-plus {
  position: absolute;
  top: 33%;
  font-size: 36px !important;
  right: 80px;
}
}
@media(min-width:320px) and (max-width:375px){
.single-testimonial-item {
  height: 336px;

}

}
/* -------------------- amit  ----------------- */


.cptha-row {
  display: flex
;
  gap: 0px 8px;
}
.cptcha-rfsh-icn {
  padding-top: 12px;
}
.form .input-field {
  position: relative;
  margin-top: 20px;
}
