 
 
/*----------------------------------------
 01. THEME DEFAULT CSS START
----------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;700&family=Manrope:wght@300;400;500;600;700;800&display=swap" rel="stylesheet');
:root {
  /**
  @font family declaration
  */
  --tp-ff-body: 'Manrope', sans-serif;
  --tp-ff-heading: 'Manrope', sans-serif;
  --tp-ff-fontawesome: Font Awesome 6 Pro;
  /**
  @color declaration
  */
  --tp-common-white: #ffffff;
  --tp-common-black: #000000;
  --tp-common-orange: #275c87;
  --tp-heading-primary: #1e3737;
  --tp-grey-1: #f2f7f7;
  --tp-grey-2: #8b9e9e;
  --tp-text-body: #6e7a7a;
  --tp-theme-1: #1e3737;
  --tp-theme-2: #275c87;
  --tp-theme-3: #d7f6f5;
  --tp-border-1: #385656;
  --tp-border-2: #edefef;
}

@media (min-width: 1400px) {
  .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
    max-width: 1200px;
  }
}
.container-large {
  max-width: 1325px;
}

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

body{
  overflow-x: hidden;
}

.my-smart-badge-create .info h4 a { 
    font-size: 25px !important;  
}

.my-smart-badge-create .icon {   
    border: 3px solid #406ae8 !important;
}

/*---------------------------------
	typography css start 
---------------------------------*/
body {
  font-family: var(--tp-ff-body);
  font-size: 16px;
  font-weight: 500;
  color: var(--tp-text-body);
  line-height: 1.3;
  overflow-x: hidden;
}

html, body {
  overflow-x: hidden;
}

a {
  text-decoration: none;
  transition: 0.3s;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--tp-ff-heading);
  color: var(--tp-heading-primary);
  margin-top: 0px;
  font-weight: 800;
  line-height: 1.1;
  transition: 0.3s;
}

.section-padding {
  padding: 100px 0px;
}

img {
  max-width: 100%;
}

h1 {
  font-size: 40px;
}

h2 {
  font-size: 32px;
}

h3 {
  font-size: 28px;
}

h4 {
  font-size: 24px;
}

h5 {
  font-size: 20px;
}

h6 {
  font-size: 16px;
}

ul {
  margin: 0px;
  padding: 0px;
}

p {
  color: var(--tp-text-body);
  font-weight: 500;
  font-size: 16px;
  line-height: 30px;
  text-align: justify;
}

.z-index {
  position: relative;
  z-index: 2;
}

 

.z-index-6 {
  position: relative;
  z-index: 6;
}

a,
.btn,
button,
input,
select,
textarea,
li,
img,
.transition-3,
h1,
h2,
h3,
h4,
h5,
h6 {
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

li {
  list-style: none;
}

a:focus,
.button:focus {
  text-decoration: none;
  outline: none;
}

a:focus,
a:hover {
  color: inherit;
  text-decoration: none;
}

a,
button {
  color: inherit;
  outline: none;
  border: none;
  background: transparent;
}

button:hover {
  cursor: pointer;
}

button:focus {
  outline: 0;
}

.uppercase {
  text-transform: uppercase;
}

.capitalize {
  text-transform: capitalize;
}

input,
textarea {
  outline: none;
  color: var(--tp-theme-2);
}
input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  color: rgb(116, 116, 116);
}
input:-moz-placeholder,
textarea:-moz-placeholder {
  color: rgb(116, 116, 116);
}
input::-moz-placeholder,
textarea::-moz-placeholder {
  color: rgb(116, 116, 116);
}
input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  color: rgb(116, 116, 116);
}

input[type=color] {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  background: none;
  border: 0;
  cursor: pointer;
  height: 100%;
  width: 100%;
  padding: 0;
  border-radius: 50%;
}

*::-moz-selection {
  background: var(--tp-theme-1);
  color: var(--tp-common-white);
  text-shadow: none;
}

::-moz-selection {
  background: var(--tp-theme-1);
  color: var(--tp-common-white);
  text-shadow: none;
}

::selection {
  background: var(--tp-common-orange);
  color: var(--tp-common-white);
  text-shadow: none;
}

*::-moz-placeholder {
  color: var(--tp-theme-1);
  font-size: var(--tp-fz-body);
  opacity: 1;
}

*::placeholder {
  color: var(--tp-theme-1);
  font-size: var(--tp-fz-body);
  opacity: 1;
}

/*---------------------------------
    common classes css start 
---------------------------------*/
.w-img img {
  width: 100%;
}

.m-img img {
  max-width: 100%;
}

.fix {
  overflow: hidden;
}

 

.overflow-y-visible {
  overflow-x: hidden;
  overflow-y: visible;
}

.p-relative {
  position: relative;
}

.p-absolute {
  position: absolute;
}

.include-bg {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

 

input[type=text], input[type=email], input[type=tel], input[type=number], input[type=password], input[type=url] {
  outline: none;
  background-color: #fff;
  height: 60px;
  width: 100%;
  line-height: 60px;
  font-size: 14px;
  color: var(--tp-common-black);
  padding-left: 30px;
  padding-right: 30px;
  border: 0;
}

.tp-btn {
  display: inline-block;
  background-color: var(--tp-common-orange);
  color: var(--tp-common-white);
  height: 58px;
  line-height: 55px;
  padding: 0 51px;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  text-transform: capitalize;
  position: relative;
  transition: all 0.6s linear;
  overflow: hidden;
  z-index: 1;
}
.tp-btn:hover {
  color: var(--tp-common-white);
}
.tp-btn:hover::after {
  height: 380%;
}
.tp-btn::after {
  position: absolute;
  content: "";
  background-color: var(--tp-theme-1);
  width: 100%;
  height: 0%;
  left: 50%;
  top: 50%;
  border-radius: 0px;
  transform: translate(-50%, -50%) rotate(-45deg);
  z-index: -1;
  transition: all 500ms ease;
}
.tp-btn.theme-2-bg {
  background-color: var(--tp-common-orange);
  color: var(--tp-common-white);
}
.tp-btn.theme-2-bg:hover::after {
  background-color: var(--tp-theme-2);
}

.tp-border-btn {
  display: inline-block;
  border: 1px solid var(--tp-common-orange);
  color: var(--tp-common-white);
  height: 58px;
  line-height: 55px;
  padding: 0 51px;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  text-transform: capitalize;
  position: relative;
  transition: all 0.6s linear;
  overflow: hidden;
  z-index: 1;
}
.tp-border-btn:hover {
  color: var(--tp-common-white);
}
.tp-border-btn:hover::after {
  height: 380%;
}
.tp-border-btn::after {
  position: absolute;
  content: "";
  background-color: var(--tp-common-orange);
  width: 100%;
  height: 0%;
  left: 50%;
  top: 50%;
  border-radius: 0px;
  transform: translate(-50%, -50%) rotate(-45deg);
  z-index: -1;
  transition: all 500ms ease;
}

.theme-btn {
  display: inline-block;
  background-color: var(--tp-theme-1);
  color: var(--tp-common-white);
  height: 58px;
  line-height: 55px;
  padding: 0 51px;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  text-transform: capitalize;
  position: relative;
  transition: all 0.6s linear;
  overflow: hidden;
  z-index: 1;
}
.theme-btn:hover {
  color: var(--tp-common-white);
}
.theme-btn:hover::after {
  height: 380%;
}
.theme-btn::after {
  position: absolute;
  content: "";
  background-color: var(--tp-common-orange);
  width: 100%;
  height: 0%;
  left: 50%;
  top: 50%;
  border-radius: 0px;
  transform: translate(-50%, -50%) rotate(-45deg);
  z-index: -1;
  transition: all 500ms ease;
}

.tp-btn-lg {
  display: inline-block;
  background-color: var(--tp-common-orange);
  color: var(--tp-common-white);
  height: 58px;
  line-height: 55px;
  padding: 0 51px;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  text-transform: capitalize;
  position: relative;
  transition: all 0.6s linear;
  overflow: hidden;
  z-index: 1;
}
.tp-btn-lg:hover {
  color: var(--tp-common-white);
}
.tp-btn-lg:hover::after {
  height: 560%;
}
.tp-btn-lg::after {
  position: absolute;
  content: "";
  background-color: var(--tp-theme-1);
  width: 100%;
  height: 0%;
  left: 50%;
  top: 50%;
  border-radius: 0px;
  transform: translate(-50%, -50%) rotate(-45deg);
  z-index: -1;
  transition: all 500ms ease;
}

.tp-btn-sm {
  display: inline-block;
  background-color: var(--tp-common-orange);
  color: var(--tp-common-white);
  height: 45px;
  line-height: 45px;
  padding: 0 30px;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  text-transform: capitalize;
  transition: 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.tp-btn-sm i {
  padding-left: 20px;
  color: var(--tp-common-white);
  font-size: 16px;
  transform: translateY(2px);
}
.tp-btn-sm:hover {
  color: var(--tp-common-white);
}
.tp-btn-sm:hover::after {
  height: 380%;
}
.tp-btn-sm::after {
  position: absolute;
  content: "";
  background-color: var(--tp-theme-1);
  width: 100%;
  height: 0%;
  left: 50%;
  top: 50%;
  border-radius: 0px;
  transform: translate(-50%, -50%) rotate(-45deg);
  z-index: -1;
  transition: all 500ms ease;
}
.tp-btn-sm.theme-2-bg {
  background-color: var(--tp-common-orange);
  color: var(--tp-common-white);
}
.tp-btn-sm.theme-2-bg:hover::after {
  background-color: var(--tp-theme-2);
}

.tp-grey-btn {
  display: inline-block;
  background-color: var(--tp-grey-1);
  color: var(--tp-theme-2);
  height: 58px;
  line-height: 55px;
  padding: 0 51px;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  text-transform: capitalize;
  position: relative;
  transition: 0.3s;
  overflow: hidden;
  z-index: 1;
}
.tp-grey-btn:hover {
  color: var(--tp-common-white);
}
.tp-grey-btn:hover::after {
  height: 380%;
}
.tp-grey-btn::after {
  position: absolute;
  content: "";
  background-color: var(--tp-common-orange);
  width: 100%;
  height: 0%;
  left: 50%;
  top: 50%;
  border-radius: 0px;
  transform: translate(-50%, -50%) rotate(-45deg);
  z-index: -1;
  transition: all 500ms ease;
}

.tp-menu-btn {
  background-color: var(--tp-common-orange);
  color: var(--tp-common-white);
  height: 40px;
  line-height: 40px;
  padding: 0 20px;
  overflow: hidden;
  display: inline-block;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.03em;
  position: relative;
  z-index: 9;
}
.tp-menu-btn::before {
  position: absolute;
  content: "";
  background-color: var(--tp-theme-2);
  width: 100%;
  height: 0%;
  left: 50%;
  top: 50%;
  border-radius: 0px;
  transform: translate(-50%, -50%) rotate(-45deg);
  z-index: -1;
  transition: all 500ms ease;
}
.tp-menu-btn:hover {
  color: var(--tp-common-white);
}
.tp-menu-btn:hover::before {
  height: 380%;
}

/* pulse effect animation */
@-webkit-keyframes pulse {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
  }
  70% {
    -webkit-box-shadow: 0 0 0 45px rgba(255, 255, 255, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}
@keyframes pulse {
  0% {
    -moz-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
  }
  70% {
    -moz-box-shadow: 0 0 0 45px rgba(255, 255, 255, 0);
    box-shadow: 0 0 0 45px rgba(255, 255, 255, 0);
  }
  100% {
    -moz-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}
@-webkit-keyframes lineDash {
  0% {
    stroke-dashoffset: 0;
  }
  100% {
    stroke-dashoffset: 1000;
  }
}
@keyframes lineDash {
  0% {
    stroke-dashoffset: 0;
  }
  100% {
    stroke-dashoffset: 1000;
  }
}
@keyframes pulse-2 {
  0% {
    -moz-box-shadow: 0 0 0 0 rgba(255, 153, 0, 0.2);
    box-shadow: 0 0 0 0 rgba(255, 153, 0, 0.2);
  }
  70% {
    -moz-box-shadow: 0 0 0 20px rgba(21, 165, 150, 0);
    box-shadow: 0 0 0 20px rgba(21, 165, 150, 0);
  }
  100% {
    -moz-box-shadow: 0 0 0 0 rgba(21, 165, 150, 0);
    box-shadow: 0 0 0 0 rgba(21, 165, 150, 0);
  }
}
@keyframes section-animation {
  0% {
    width: 0;
  }
  15% {
    width: 100%;
  }
  85% {
    opacity: 1;
  }
  90% {
    width: 100%;
    opacity: 0;
  }
  to {
    width: 0;
    opacity: 0;
  }
}
@keyframes about-sm {
  100% {
    transform: translateY(60px);
  }
  100% {
    transform: translateY(50px);
  }
}
@keyframes hero-thumb-animation {
  0% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0px);
  }
}
@keyframes tpleftright {
  0% {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-20px);
    -moz-transform: translateX(-20px);
    -ms-transform: translateX(-20px);
    -o-transform: translateX(-20px);
    transform: translateX(-20px);
  }
}
@keyframes tprotate {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes tpupdown {
  0% {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(-20px);
    -moz-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    -o-transform: translateY(-20px);
    transform: translateY(-20px);
  }
}
@keyframes tpswing {
  0% {
    -webkit-transform: rotate(6deg);
    -moz-transform: rotate(6deg);
    -ms-transform: rotate(6deg);
    -o-transform: rotate(6deg);
    transform: rotate(6deg);
  }
  100% {
    -webkit-transform: rotate(-6deg);
    -moz-transform: rotate(-6deg);
    -ms-transform: rotate(-6deg);
    -o-transform: rotate(-6deg);
    transform: rotate(-6deg);
  }
}
@keyframes borderanimate2 {
  0% {
    transform: translate(-50%, -50%) scale(0.8);
  }
  60% {
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) scale(2.5);
    opacity: 0;
  }
}
@keyframes bounceInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    -ms-transform: translateY(2000px);
    transform: translateY(2000px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateY(-30px);
    -ms-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  80% {
    -webkit-transform: translateY(10px);
    -ms-transform: translateY(10px);
    transform: translateY(10px);
  }
  100% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes moving {
  0% {
    transform: translatey(0px);
  }
  50% {
    transform: translatey(-20px);
  }
  100% {
    transform: translatey(0px);
  }
}
@keyframes about-circle {
  0% {
    -webkit-transform: translateX(100px);
    -moz-transform: translateX(100px);
    -ms-transform: translateX(100px);
    -o-transform: translateX(100px);
    transform: translateX(100px);
  }
  100% {
    -webkit-transform: translateX(0px);
    -moz-transform: translateX(0px);
    -ms-transform: translateX(0px);
    -o-transform: translateX(0px);
    transform: translateX(0px);
  }
}
@keyframes services-triangle {
  0% {
    -webkit-transform: rotate(0deg) translateX(-50px);
    -moz-transform: rotate(0deg) translateX(-50px);
    -ms-transform: rotate(0deg) translateX(-50px);
    -o-transform: rotate(0deg) translateX(-50px);
    transform: rotate(0deg) translateX(-50px);
  }
  100% {
    -webkit-transform: rotate(360deg) translateY(100px);
    -moz-transform: rotate(360deg) translateY(100px);
    -ms-transform: rotate(360deg) translateY(100px);
    -o-transform: rotate(360deg) translateY(100px);
    transform: rotate(360deg) translateY(100px);
  }
}
@keyframes hero-3-dot-2 {
  0% {
    transform: translateY(-50px);
  }
  100% {
    transform: translateY(0px);
  }
}
@keyframes tfLeftToRight {
  49% {
    transform: translateX(30%);
  }
  50% {
    opacity: 0;
    transform: translateX(-30%);
  }
  51% {
    opacity: 1;
  }
}
@keyframes rotate2 {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes moving {
  0% {
    transform: translatey(0px);
  }
  20% {
    transform: translateX(-50px);
  }
  50% {
    transform: translatey(-40px);
  }
  100% {
    transform: translatey(0px);
  }
}
@keyframes leftright {
  0% {
    transform: translatex(0);
  }
  50% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes movinglight {
  0% {
    transform: translatey(0px);
  }
  20% {
    transform: translateX(-70px);
  }
  50% {
    transform: translatey(-70px);
  }
  100% {
    transform: translatey(0px);
  }
}
@keyframes movinglight2 {
  0% {
    transform: translatey(0px);
  }
  20% {
    transform: translateX(70px);
  }
  50% {
    transform: translatey(70px);
  }
  100% {
    transform: translatey(0px);
  }
}
@keyframes movingtop {
  0% {
    transform: translatey(0px);
  }
  20% {
    transform: translatey(70px);
  }
  50% {
    transform: translatey(-70px);
  }
  100% {
    transform: translatey(0px);
  }
}
@keyframes circle-animation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes circle-animation2 {
  0% {
    transform: scale(-1, 1) rotate(360deg);
  }
  100% {
    transform: scale(-1, 1) rotate(0deg);
  }
}
@keyframes zoom {
  0% {
    transform: scale(0.5);
  }
  50% {
    transform: scale(1);
  }
  100% {
    transform: scale(0.5);
  }
}
@keyframes zoom2 {
  0% {
    transform: scale(0.9);
  }
  50% {
    transform: scale(1);
  }
  100% {
    transform: scale(0.9);
  }
}
@keyframes wobble-vertical {
  10% {
    transform: translateY(-10px);
  }
  50% {
    transform: skew(15deg);
  }
  80% {
    transform: rotate(10deg);
  }
  100% {
    transform: translate(0);
  }
}
@-webkit-keyframes section-highlight {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
@-moz-keyframes section-highlight {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
@-ms-keyframes section-highlight {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
@keyframes section-highlight {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
@keyframes widthcalc {
  0% {
    width: 20%;
  }
  50% {
    width: 50%;
  }
  75% {
    width: 90%;
  }
  90% {
    opacity: 75%;
  }
  90% {
    opacity: 100%;
  }
}
/* right bounce */
@-webkit-keyframes bounceRight {
  0%, 20%, 50%, 80%, 100% {
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  40% {
    -ms-transform: translateX(-90px);
    transform: translateX(-90px);
  }
  60% {
    -ms-transform: translateX(-15px);
    transform: translateX(-15px);
  }
}
@-moz-keyframes bounceRight {
  0%, 20%, 50%, 80%, 100% {
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  40% {
    -ms-transform: translateX(-90px);
    transform: translateX(-90px);
  }
  60% {
    -ms-transform: translateX(-15px);
    transform: translateX(-15px);
  }
}
@keyframes bounceRight {
  0%, 20%, 50%, 80%, 100% {
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  40% {
    -ms-transform: translateX(-50px);
    transform: translateX(-50px);
  }
  60% {
    -ms-transform: translateX(-10px);
    transform: translateX(-10px);
  }
}
/* /right bounce */
@keyframes icon-bounce {
  0%, 100%, 20%, 50%, 80% {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-10px);
    -moz-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    -o-transform: translateY(-10px);
    transform: translateY(-10px);
  }
  60% {
    -webkit-transform: translateY(-5px);
    -moz-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    -o-transform: translateY(-5px);
    transform: translateY(-5px);
  }
}
@keyframes light-one {
  0% {
    opacity: 1;
  }
  25% {
    opacity: 0.4;
  }
  50% {
    opacity: 0.6;
  }
  75% {
    opacity: 0.8;
  }
  100% {
    opacity: 1;
  }
}
@keyframes scroll {
  0% {
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
    transform: translateY(0px);
  }
  100% {
    -webkit-transform: translateY(8px);
    -moz-transform: translateY(8px);
    -ms-transform: translateY(8px);
    -o-transform: translateY(8px);
    transform: translateY(8px);
  }
}
@keyframes rotate2 {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes tpswing {
  0% {
    -webkit-transform: rotate(25deg);
    -ms-transform: rotate(25deg);
    transform: rotate(25deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}
@keyframes tptranslateX2 {
  0% {
    -webkit-transform: translateX(-30px);
    -moz-transform: translateX(-30px);
    -ms-transform: translateX(-30px);
    -o-transform: translateX(-30px);
    transform: translateX(-30px);
  }
  100% {
    -webkit-transform: translatXY(20px);
    -moz-transform: translateX(20px);
    -ms-transform: translateX(20px);
    -o-transform: translateX(20px);
    transform: translateX(20px);
  }
}
/*--- preloader ---*/
.dark #preloader {
  background-color: var(--tp-theme-1);
}

#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #f7f7f7;
  z-index: 999999;
}

.preloader {
  width: 50px;
  height: 50px;
  display: inline-block;
  padding: 0px;
  text-align: left;
  box-sizing: border-box;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -25px;
  margin-top: -25px;
}

.preloader span {
  position: absolute;
  display: inline-block;
  width: 50px;
  height: 50px;
  border-radius: 100%;
  background: var(--tp-theme-1);
  -webkit-animation: preloader 1.3s linear infinite;
  animation: preloader 1.3s linear infinite;
}

.preloader span:last-child {
  animation-delay: -0.9s;
  -webkit-animation-delay: -0.9s;
}

@keyframes preloader {
  0% {
    transform: scale(0, 0);
    opacity: 0.5;
  }
  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}
@-webkit-keyframes preloader {
  0% {
    -webkit-transform: scale(0, 0);
    opacity: 0.5;
  }
  100% {
    -webkit-transform: scale(1, 1);
    opacity: 0;
  }
}
/*--- end of preloader ---*/
.scroll-top {
  width: 50px;
  height: 50px;
  line-height: 50px;
  position: fixed;
  bottom: -10%;
  right: 50px;
  font-size: 16px;
  z-index: 999;
  color: var(--tp-common-white);
  text-align: center;
  cursor: pointer;
  background: var(--tp-theme-2);
  transition: 1s ease;
  border: none;
}

.scroll-top.open {
  bottom: 30px;
}

 
 
.body-overlay {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100%;
  height: 100%;
  background: rgba(24, 24, 24, 0.8);
  visibility: hidden;
  opacity: 0;
  transition: 0.45s ease-in-out;
}
.body-overlay.apply {
  opacity: 1;
  visibility: visible;
}
.body-overlay:hover {
  cursor: url(../img/cross-out.html), pointer;
}

.tpoffcanvas {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: fixed;
  top: 0;
  right: -100%;
  width: 480px;
  bottom: 0;
  box-shadow: 0 16px -32px 0 rgba(0, 0, 0, 0.8);
  background-color: #071f32;
  z-index: 999999;
  padding: 50px;
  scrollbar-width: none;
  opacity: 0;
  visibility: hidden;
  transition: 0.45s ease-in-out;
  overflow-y: scroll;
}
.tpoffcanvas .homemenu {
  margin-bottom: 30px;
}
.tpoffcanvas .tp-main-menu-mobile {
  margin-bottom: 50px;
}
.tpoffcanvas.opened {
  opacity: 1;
  visibility: visible;
}
@media (max-width: 767px) {
  .tpoffcanvas {
    width: 300px;
    padding: 40px 35px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tpoffcanvas {
    width: 400px;
    padding: 40px;
  }
}
.tpoffcanvas.opened {
  right: 0;
  -webkit-transition: all 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -moz-transition: all 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition: all 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition-duration: 0.6s;
}
.tpoffcanvas__title p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.49);
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 50px;
}
@media (max-width: 767px) {
  .tpoffcanvas__title p {
    font-size: 17px;
  }
}
.tpoffcanvas__contact-title h5 {
  font-size: 14px;
  color: #888888;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 30px;
  display: inline-block;
}
.tpoffcanvas__input-title h4 {
  font-size: 14px;
  color: #888888;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 30px;
  display: inline-block;
}
.tpoffcanvas__input {
  margin-bottom: 100px;
}
.tpoffcanvas__input input {
  background: rgba(118, 118, 130, 0.3);
  border: transparent;
  height: 60px;
  width: 100%;
  padding-left: 20px;
  padding-right: 80px;
  color: var(--tp-common-white);
}
.tpoffcanvas__input button {
  height: 60px;
  width: 60px;
  background-color: var(--tp-common-orange);
  color: var(--tp-common-white);
  font-size: 16px;
  position: absolute;
  top: 0;
  right: 0;
}
.tpoffcanvas__contact-info {
  margin-bottom: 50px;
}
.tpoffcanvas__contact-info ul li {
  font-size: 16px;
  color: var(--tp-common-white);
  margin-bottom: 15px;
  list-style-type: none;
}
@media (max-width: 767px) {
  .tpoffcanvas__contact-info ul li {
    font-size: 14px;
  }
}
.tpoffcanvas__contact-info ul li:last-child {
  margin-bottom: 0;
}
.tpoffcanvas__contact-info ul li a {
  margin-left: 10px;
  transition: 0.3s;
}
.tpoffcanvas__contact-info ul li a:hover {
  color: var(--tp-common-orange);
}
.tpoffcanvas__logo {
  margin-bottom: 60px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tpoffcanvas__logo {
    padding-top: 0;
  }
}
@media (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .tpoffcanvas__logo {
    padding-top: 0;
  }
}
.tpoffcanvas__close-btn button {
  position: absolute;
  right: 30px;
  top: 30px;
  transition: 1s;
  -webkit-transition: all 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -moz-transition: all 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition: all 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition-duration: 0.3s;
  height: 40px;
  width: 40px;
  line-height: 45px;
  background-color: var(--tp-common-white);
  color: var(--tp-common-black);
}
.tpoffcanvas__close-btn button:hover i {
  transform: rotate(360deg);
}
.tpoffcanvas__close-btn button i {
  font-weight: 300;
  font-size: 20px;
  transition: 0.9s;
}
.tpoffcanvas__social {
  margin-top: 30px;
}
.tpoffcanvas__social .social-icon a {
  height: 55px;
  width: 55px;
  line-height: 58px;
  text-align: center;
  font-size: 16px;
  background-color: rgba(251, 251, 253, 0.08);
  color: var(--tp-common-white);
  margin-right: 15px;
  transition: 0.3s;
  display: inline-block;
  border-radius: 50%;
}
@media (max-width: 767px) {
  .tpoffcanvas__social .social-icon a {
    margin-right: 3px;
    height: 50px;
    width: 50px;
    line-height: 53px;
    font-size: 15px;
  }
}
.tpoffcanvas__social .social-icon a:hover {
  background-color: var(--tp-common-orange);
  color: var(--tp-common-white);
}

.tp-breadcrumb-height {
  padding-top: 145px;
  padding-bottom: 145px;
  background-repeat: no-repeat;
  background-size: cover;
  object-fit: cover;
  background-color: #052725;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-breadcrumb-height {
    background-position: bottom;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-breadcrumb-height {
    background-position: bottom;
  }
}

.tp-breadcrumb__overlay {
  position: relative;
}
.tp-breadcrumb__overlay::after {
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  background-color: rgba(30, 55, 55, 0.75);
}
@media (max-width: 767px) {
  .tp-breadcrumb__section-box {
    text-align: center;
  }
}
.tp-breadcrumb__title {
  font-weight: 800;
  font-size: 50px;
  line-height: 1;
  color: var(--tp-common-white);
  margin-bottom: 0;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-breadcrumb__title {
    font-size: 45px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-breadcrumb__title {
    font-size: 34px;
  }
}
@media (max-width: 767px) {
  .tp-breadcrumb__title {
    font-size: 30px;
  }
}
.tp-breadcrumb__list {
  display: inline-block;
  padding: 8px 20px;
  background-color: rgba(255, 255, 255, 0.078);
  margin-bottom: 20px;
}
.tp-breadcrumb__list span {
  font-size: 16px;
  font-weight: 400;
  color: var(--tp-common-white);
  text-transform: capitalize;
  opacity: 85%;
}
.tp-breadcrumb__list span.dvdr i {
  color: var(--tp-common-white);
  font-weight: 400;
  font-size: 13px;
}
.tp-breadcrumb__shape-1 {
  position: absolute;
  bottom: -7%;
  left: -2%;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .tp-breadcrumb__shape-1 {
    display: none;
    visibility: hidden;
  }
}
.tp-breadcrumb__shape-2 {
  position: absolute;
  bottom: 20px;
  left: 0%;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .tp-breadcrumb__shape-2 {
    display: none;
    visibility: hidden;
  }
}

.tp-custom-accordion .accordion-items {
  margin-bottom: 20px;
  box-shadow: 0px 25px 65px rgba(0, 0, 0, 0.07);
  border-radius: 16px;
}
.tp-custom-accordion .accordion-buttons {
  position: relative;
  width: 100%;
  padding: 26px 30px;
  padding-left: 60px;
  background-color: var(--tp-common-white);
  text-align: left;
  font-weight: 700;
  font-size: 18px;
  color: var(--tp-theme-1);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-custom-accordion .accordion-buttons {
    font-size: 19px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-custom-accordion .accordion-buttons {
    padding: 25px 28px;
    padding-left: 60px;
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .tp-custom-accordion .accordion-buttons {
    font-size: 14px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-custom-accordion .accordion-buttons {
    font-size: 15px;
  }
}
.tp-custom-accordion .accordion-buttons::after {
  position: absolute;
  content: "\f068";
  font-family: "Font Awesome 5 Pro";
  top: 50%;
  transform: translateY(-50%);
  left: 30px;
  font-size: 16px;
  opacity: 1;
  color: var(--tp-common-orange);
}
@media (max-width: 767px) {
  .tp-custom-accordion .accordion-buttons::after {
    top: 35px;
    right: 25px;
    font-size: 13px;
  }
}
.tp-custom-accordion .accordion-buttons.collapsed::after {
  content: "\f067";
}
.tp-custom-accordion .collapsed {
  position: relative;
  z-index: 99;
}
.tp-custom-accordion .accordion-body {
  background-color: var(--tp-common-white);
  padding-bottom: 20px;
  padding-left: 100px;
  padding-right: 55px;
  position: relative;
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  z-index: 1;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-custom-accordion .accordion-body {
    font-size: 14px;
    padding-right: 25px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-custom-accordion .accordion-body {
    font-size: 14px;
    padding-right: 30px;
    padding-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .tp-custom-accordion .accordion-body {
    font-size: 13px;
    padding-right: 30px;
    padding-left: 30px;
  }
}
.tp-custom-accordion .accordion-body::after {
  position: absolute;
  content: "";
  top: 6px;
  left: 70px;
  width: 1px;
  height: 75px;
  background-color: var(--tp-common-orange);
}
@media (max-width: 767px) {
  .tp-custom-accordion .accordion-body::after {
    display: none;
    visibility: hidden;
  }
}

.tp-section-subtitle {
  font-size: 16px;
  color: var(--tp-common-orange);
  font-family: var(--tp-ff-heading);
  font-weight: 700;
  text-transform: uppercase;
  position: relative;
  display: inline-block;
  margin-bottom: 17px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-section-subtitle {
    font-size: 14px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-section-subtitle {
    font-size: 13px;
  }
}
@media (max-width: 767px) {
  .tp-section-subtitle {
    font-size: 13px;
  }
}
.tp-section-subtitle::after {
  content: "";
  position: absolute;
  height: 2px;
  width: 30px;
  background-color: var(--tp-theme-2);
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
}
.tp-section-subtitle::before {
  content: "";
  height: 2px;
  width: 10px;
  background-color: var(--tp-common-orange);
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
}

.tp-section-subtitle-2 {
  font-size: 16px;
  color: var(--tp-common-orange);
  font-family: var(--tp-ff-heading);
  font-weight: 700;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 17px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-section-subtitle-2 {
    font-size: 14px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-section-subtitle-2 {
    font-size: 13px;
  }
}
@media (max-width: 767px) {
  .tp-section-subtitle-2 {
    font-size: 13px;
  }
}
.tp-section-subtitle-2::before {
  content: "";
  height: 2px;
  width: 10px;
  background-color: var(--tp-theme-2);
  display: inline-block;
  transform: translateY(-5px);
  margin-right: 10px;
}

.tp-section-subtitle-3 {
  font-size: 16px;
  color: var(--tp-common-orange);
  font-family: var(--tp-ff-heading);
  font-weight: 700;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 17px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-section-subtitle-3 {
    font-size: 14px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-section-subtitle-3 {
    font-size: 13px;
  }
}
@media (max-width: 767px) {
  .tp-section-subtitle-3 {
    font-size: 13px;
  }
}
.tp-section-subtitle-3::after {
  content: "";
  height: 6px;
  width: 6px;
  border-radius: 50%;
  background-color: var(--tp-theme-2);
  display: inline-block;
  transform: translateY(-3px);
  margin-left: 10px;
}

.tp-section-title {
  font-size: 50px;
  color: var(--tp-theme-1);
  font-weight: 800;
  font-family: var(--tp-ff-heading);
  line-height: 1.2;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .tp-section-title {
    font-size: 45px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-section-title {
    font-size: 42px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-section-title {
    font-size: 42px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-section-title {
    font-size: 35px;
  }
  .tp-section-title br {
    display: none;
  }
}
@media (max-width: 767px) {
  .tp-section-title {
    font-size: 31px;
  }
  .tp-section-title br {
    display: none;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-section-title {
    font-size: 37px;
  }
  .tp-section-title br {
    display: none;
  }
}



/*----------------------------------------*/
/*  03. MEANMENU CSS START
/*----------------------------------------*/
.mobile-menu.mean-container {
  overflow: hidden;
}
@media (max-width: 767px) {
  .mobile-menu.mean-container {
    margin-bottom: 30px;
  }
}

.mobile-menu .sidebar-list {
  clear: both;
}
.mobile-menu .sidebar-list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 5px;
  color: var(--tp-common-white);
}
.mobile-menu .sidebar-list li::after {
  top: 10px;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  border: 1px solid #c00;
  background-color: transparent;
  content: "";
  display: inline-block;
  position: absolute;
}
.mobile-menu .tp-sidebar-social {
  margin-top: 20px;
}
.mobile-menu .tp-sidebar-social a {
  margin-right: 5px;
  background-color: var(--tp-theme-primary);
  color: #fff;
  display: inline-block;
  width: 35px;
  height: 35px;
  text-align: center;
  font-size: 14px;
  line-height: 34px;
}

.sidebar-title h3 {
  color: var(--tp-common-white);
}

/* mean menu customize */
.mean-container a.meanmenu-reveal {
  display: none;
}

.mean-container .mean-nav {
  background: none;
  margin-top: 0;
}

.mean-container .mean-bar {
  padding: 0;
  min-height: auto;
  background: none;
}

.mean-container .mean-nav > ul {
  padding: 0;
  margin: 0;
  width: 100%;
  list-style-type: none;
  display: block !important;
}

.mean-container a.meanmenu-reveal {
  display: none !important;
}

.mean-container .mean-nav ul li a {
  width: 100%;
  padding: 15px 0;
  color: #fff;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 14px;
  line-height: 1.5;
  font-weight: 700;
}
.mean-container .mean-nav ul li a:hover {
  color: var(--tp-theme-3);
}

.mean-container .mean-nav ul li a.mean-expand {
  margin-top: 10px;
  padding: 0 !important;
  line-height: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  height: 30px;
  width: 30px;
  line-height: 30px;
  color: #fff;
  line-height: 30px;
  top: 0;
  font-weight: 400;
}
.mean-container .mean-nav ul li a.mean-expand:hover {
  color: var(--tp-theme-2);
  border-color: #888888;
}

.mean-container .mean-nav ul li > a > i {
  display: none;
}

.mean-container .mean-nav ul li > a.mean-expand i {
  display: inline-block;
}

.mean-container .mean-nav > ul > li:first-child > a {
  border-top: 0;
}

.mean-container .mean-nav ul li a.mean-expand.mean-clicked {
  color: var(--tp-theme-2);
}

.mean-container .mean-nav ul li a.mean-expand.mean-clicked i {
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  color: var(--tp-common-white);
}

/*----------------------------------------*/
/*  02. header css start
/*----------------------------------------*/
.header-sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: var(--tp-common-white);
  opacity: 1;
  visibility: visible;
  width: 100%;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  animation: 0.5s ease-in-out 0s normal none 1 running fadeInDown;
  z-index: 999;
}
.header-sticky .tp-header-top__area {
  display: none;
}

.tp-header-2__area.header-sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: var(--tp-common-white);
  opacity: 1;
  visibility: visible;
  width: 100%;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  animation: 0.5s ease-in-out 0s normal none 1 running fadeInDown;
  z-index: 999;
}
.tp-header-2__area.header-sticky .tp-header-2__plr {
  box-shadow: none;
  margin-top: 0;
}

.tp-header-3__area.header-sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: var(--tp-common-white);
  opacity: 1;
  visibility: visible;
  width: 100%;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  animation: 0.5s ease-in-out 0s normal none 1 running fadeInDown;
  z-index: 999;
}

.tp-main-menu-mobile .tp-submenu {
  display: none;
}
.tp-main-menu-mobile .header-icon {
  display: none;
}
.tp-main-menu-mobile ul {
  position: static;
  display: block;
  box-shadow: none;
}
.tp-main-menu-mobile ul li {
  list-style: none;
  position: relative;
  width: 100%;
  padding: 0;
}
.tp-main-menu-mobile ul li:not(:last-child) a {
  border-bottom: 1px solid rgba(6, 7, 40, 0.1);
}
.tp-main-menu-mobile ul li.has-dropdown > a .dropdown-toggle-btn {
  position: absolute;
  right: 0;
  top: 21%;
  -webkit-transform: translateY(-2px);
  -moz-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  -o-transform: translateY(-2px);
  transform: translateY(-2px);
  font-size: 18px;
  color: #7F8387;
  font-family: "Font Awesome 5 Pro";
  transition: all 0.3s ease-in-out;
  z-index: 1;
  width: 25px;
  height: 25px;
  line-height: 22px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: background-color 0.3s ease-in-out, border-color 0.3s ease-in-out, color 0.3s ease-in-out;
}
.tp-main-menu-mobile ul li.has-dropdown > a .dropdown-toggle-btn i {
  transition: all 0.3s ease-in-out;
  margin-left: 2px;
}
.tp-main-menu-mobile ul li.has-dropdown > a .dropdown-toggle-btn.dropdown-opened i {
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);
}
.tp-main-menu-mobile ul li.has-dropdown > a .dropdown-toggle-btn:hover {
  background-color: var(--tp-common-orange);
  border-color: var(--tp-theme-1);
  color: var(--tp-common-orange);
}
.tp-main-menu-mobile ul li.has-dropdown > a .dropdown-toggle-btn:hover i {
  color: var(--tp-common-white);
}
.tp-main-menu-mobile ul li.has-dropdown > a.expanded {
  color: var(--tp-theme-1);
}
.tp-main-menu-mobile ul li.has-dropdown > a.expanded .dropdown-toggle-btn.dropdown-opened {
  background-color: var(--tp-theme-1);
  border-color: var(--tp-theme-1);
  color: var(--tp-common-white);
}
.tp-main-menu-mobile ul li.has-dropdown > a.expanded .dropdown-toggle-btn.dropdown-opened i {
  color: var(--tp-common-white);
}
.tp-main-menu-mobile ul li.has-dropdown:hover > a::after {
  color: var(--tp-common-orange);
}
.tp-main-menu-mobile ul li:last-child a span {
  border-bottom: 0;
}
.tp-main-menu-mobile ul li > a {
  display: block;
  font-size: 16px;
  color: var(--tp-common-white);
  position: relative;
  padding: 10px 0;
  padding-right: 20px;
}
.tp-main-menu-mobile ul li > a svg {
  -webkit-transform: translateY(-2px);
  -moz-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  -o-transform: translateY(-2px);
  transform: translateY(-2px);
}
.tp-main-menu-mobile ul li > a > i {
  display: inline-block;
  width: 11%;
  margin-right: 13px;
  -webkit-transform: translateY(4px);
  -moz-transform: translateY(4px);
  -ms-transform: translateY(4px);
  -o-transform: translateY(4px);
  transform: translateY(4px);
  font-size: 21px;
  line-height: 1;
}
.tp-main-menu-mobile ul li > a .menu-text {
  font-size: 16px;
  line-height: 11px;
  border-bottom: 1px solid #EAEBED;
  width: 82%;
  display: inline-block;
  padding: 19px 0 17px;
}
.tp-main-menu-mobile ul li img {
  width: 100%;
}
.tp-main-menu-mobile ul li ul {
  padding: 0;
}
.tp-main-menu-mobile ul li ul li {
  padding: 0;
}
.tp-main-menu-mobile ul li ul li a {
  margin-left: auto;
  width: 93%;
  padding: 10px 5%;
  text-shadow: none !important;
  visibility: visible;
  padding-left: 0;
  padding-right: 20px;
}
.tp-main-menu-mobile ul li ul li li a {
  width: 88%;
  padding: 10px 7%;
  padding-left: 0;
  padding-right: 20px;
}
.tp-main-menu-mobile ul li ul li li li a {
  width: 83%;
  padding: 10px 9%;
  padding-left: 0;
  padding-right: 20px;
}
.tp-main-menu-mobile ul li ul li li li li a {
  width: 68%;
  padding: 10px 11%;
  padding-left: 0;
  padding-right: 20px;
}
.tp-main-menu-mobile ul li:hover > a {
  color: var(--tp-common-orange);
}
.tp-main-menu-mobile ul li:hover > a::after {
  color: var(--tp-theme-1);
}
.tp-main-menu-mobile ul li:hover > a .dropdown-toggle-btn i {
  color: var(--tp-theme-1);
}
.tp-main-menu-mobile ul li:hover .mega-menu {
  visibility: visible;
  opacity: 1;
  top: 0;
}
.tp-main-menu-mobile ul li .mega-menu, .tp-main-menu-mobile ul li .submenu {
  position: static;
  min-width: 100%;
  padding: 0;
  box-shadow: none;
  visibility: visible;
  opacity: 1;
  display: none;
}
.tp-main-menu-mobile ul li .mega-menu li, .tp-main-menu-mobile ul li .submenu li {
  float: none;
  display: block;
  width: 100%;
  padding: 0;
}
.tp-main-menu-mobile ul li .mega-menu li:hover a .dropdown-toggle-btn, .tp-main-menu-mobile ul li .submenu li:hover a .dropdown-toggle-btn {
  color: var(--tp-theme-1);
}
.tp-main-menu-mobile .tp-main-menu-content ul li:not(:last-child) .home-menu-title a {
  border-bottom: none;
}
.tp-main-menu-mobile * ul, .tp-main-menu-mobile * li {
  transition: none !important;
}

/** HEADER AREA GOES HERE ***/
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .tp-header-top__hide {
    display: none;
  }
}
.tp-header-top__space {
  padding: 10px 0;
  padding-left: 50px;
  padding-right: 70px;
}
@media only screen and (min-width: 1600px) and (max-width: 1800px) {
  .tp-header-top__space {
    padding: 10px 0;
    padding-left: 40px;
    padding-right: 50px;
  }
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .tp-header-top__space {
    padding: 10px 0;
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-header-top__space {
    padding: 10px 0;
    padding-left: 20px;
    padding-right: 0px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-header-top__space {
    padding: 10px 0;
    padding-left: 27px;
    padding-right: 8px;
  }
}
.tp-header-top__left-box ul li {
  display: inline-block;
}
.tp-header-top__left-box ul li span {
  color: #8b9e9e;
  font-size: 14px;
  padding-right: 20px;
}
.tp-header-top__social a {
  padding-right: 15px;
  font-size: 16px;
  color: var(--tp-common-white);
  transition: 0.3s;
}
.tp-header-top__social a:hover {
  color: var(--tp-common-orange);
}
.tp-header-top__right-box ul li {
  display: inline-block;
  padding-right: 26px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-header-top__right-box ul li.location {
    display: none;
  }
}
.tp-header-top__right-box ul li:last-child {
  padding-right: 0;
}
.tp-header-top__right-box ul li i {
  font-size: 15px;
  padding-right: 12px;
  color: var(--tp-common-white);
}
.tp-header-top__right-box ul li a {
  font-size: 14px;
  transition: 0.3s;
  color: #8b9e9e;
}
.tp-header-top__right-box ul li a:hover {
  color: var(--tp-common-orange);
}

.tp-header__logo {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 99;
  background-color: var(--tp-theme-2);
  display: inline-block;
  padding: 15px 80px;
  height: calc(100% + 25px);
  display: flex;
  align-items: center;
  justify-content: center;
}
@media only screen and (min-width: 1600px) and (max-width: 1800px), only screen and (min-width: 1400px) and (max-width: 1599px) {
  .tp-header__logo {
    padding: 15px 50px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-header__logo {
    padding: 15px 20px;
    text-align: center;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-header__logo {
    padding: 15px 0px;
    text-align: center;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-header__logo {
    padding: 0px;
    text-align: center;
  }
}
@media (max-width: 767px) {
  .tp-header__logo {
    padding: 0px;
    text-align: center;
    width: 50%;
    height: calc(100% + 0px);
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-header__logo img {
    max-width: 88%;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-header__logo img {
    max-width: 70%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-header__logo img {
    max-width: 73%;
  }
}
@media (max-width: 767px) {
  .tp-header__logo img {
    max-width: 80%;
  }
}
.tp-header__logo::after {
  position: absolute;
  bottom: 0;
  right: -60px;
  height: 25px;
  width: 60px;
  background-color: #154f7e;
  content: "";
  clip-path: polygon(100% 0, 0 0, 0 100%);
}
@media (max-width: 767px) {
  .tp-header__logo::after {
    display: none;
  }
}
.tp-header__plr {
  padding-left: 373px;
}
@media only screen and (min-width: 1600px) and (max-width: 1800px), only screen and (min-width: 1400px) and (max-width: 1599px) {
  .tp-header__plr {
    padding-left: 314px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-header__plr {
    padding-left: 254px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-header__plr {
    padding-left: 214px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-header__plr {
    padding: 15px 0;
    padding-left: 214px;
  }
}
@media (max-width: 767px) {
  .tp-header__plr {
    padding: 15px 0;
    padding-left: 214px;
  }
}
.tp-header__space {
  padding-left: 50px;
  padding-right: 70px;
}
@media only screen and (min-width: 1600px) and (max-width: 1800px) {
  .tp-header__space {
    padding-left: 40px;
    padding-right: 50px;
  }
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .tp-header__space {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-header__space {
    padding-left: 20px;
    padding-right: 0px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-header__space {
    padding-left: 25px;
    padding-right: 5px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-header__space {
    padding-left: 0px;
    padding-right: 20px;
  }
}
@media (max-width: 767px) {
  .tp-header__space {
    padding-left: 0px;
    padding-right: 0px;
  }
}
.tp-header__main-menu nav > ul > li {
  display: inline-block;
  margin-right: 40px;
  position: relative;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-header__main-menu nav > ul > li {
    margin-right: 30px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-header__main-menu nav > ul > li {
    margin-right: 30px;
  }
}
.tp-header__main-menu nav > ul > li > a {
  padding: 40px 0;
  display: inline-block;
  font-weight: 600;
  font-size: 17px;
  color: var(--tp-grey-2);
  transition: 0.3s;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-header__main-menu nav > ul > li > a {
    font-size: 16px;
    padding: 33px 0;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-header__main-menu nav > ul > li > a {
    font-size: 15px;
    padding: 30px 0;
  }
}
.tp-header__main-menu nav > ul > li:hover .submenu {
  opacity: 1;
  visibility: visible;
  -webkit-transform: scaleY(1);
  -moz-transform: scaleY(1);
  -ms-transform: scaleY(1);
  -o-transform: scaleY(1);
  transform: scaleY(1);
}
.tp-header__main-menu nav > ul > li:hover > a {
  color: var(--tp-theme-1);
}
.tp-header__main-menu nav > ul > li .submenu {
  border-top: 3px solid var(--tp-common-orange);
  position: absolute;
  top: 100%;
  width: 240px;
  background-color: var(--tp-common-white);
  z-index: 999;
  padding: 30px 0px;
  opacity: 0;
  visibility: hidden;
  transition: 0.4s;
  transform: scaleY(0);
  transform-origin: top center;
  text-align: start;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
.tp-header__main-menu nav > ul > li .submenu > li {
  margin: 0 30px;
  margin-bottom: 13px;
  display: block;
}
.tp-header__main-menu nav > ul > li .submenu > li:last-child {
  margin-bottom: 0;
}
.tp-header__main-menu nav > ul > li .submenu > li > a {
  padding: 0;
  font-size: 14px;
  text-transform: capitalize;
  color: var(--tp-common-black);
  position: relative;
  font-weight: 600;
}
.tp-header__main-menu nav > ul > li .submenu > li > a::after {
  display: none;
}
.tp-header__main-menu nav > ul > li .submenu > li > a::before {
  content: "";
  position: absolute;
  bottom: 0px;
  right: 0;
  left: auto;
  height: 1px;
  width: 0;
  background-color: var(--tp-common-orange);
  transition: 0.7s;
  display: inline-block;
}
.tp-header__main-menu nav > ul > li .submenu > li:hover a {
  color: var(--tp-common-orange);
}
.tp-header__main-menu nav > ul > li .submenu > li:hover a::before {
  width: 100%;
  right: auto;
  left: 0;
}
.tp-header__main-menu nav > ul > li:last-child {
  margin-right: 0;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .tp-header__main-menu nav > ul > li {
    margin-right: 25px;
  }
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .tp-header__right-action {
    margin-left: -60px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-header__right-action {
    margin-left: -20px;
  }
}
.tp-header__right-action ul li {
  display: inline-block;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .tp-header__right-action ul li:last-child {
    display: none;
    visibility: hidden;
  }
}
.tp-header__icon-box {
  padding-right: 28px;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .tp-header__icon-box {
    padding-right: 25px;
  }
}
.tp-header__icon-box button {
  font-size: 24px;
  transform: translateY(4px);
  color: var(--tp-theme-1);
  font-weight: 400;
  margin-right: 25px;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .tp-header__icon-box button {
    font-size: 21px;
    margin-right: 15px;
  }
}
.tp-header__icon-box a {
  color: var(--tp-theme-1);
  font-weight: 400;
  font-size: 24px;
  transform: translateY(4px);
  display: inline-block;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .tp-header__icon-box a {
    font-size: 21px;
  }
}
.tp-header__tel-icon span {
  width: 58px;
  height: 58px;
  line-height: 58px;
  border-radius: 50%;
  text-align: center;
  background-color: var(--tp-theme-2);
  display: inline-block;
  font-size: 24px;
  color: var(--tp-common-white);
  margin-right: 18px;
  transition: all 400ms ease;
  position: relative;
  overflow: hidden;
}
.tp-header__tel-icon span::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background-color: var(--tp-theme-1);
  transition-delay: 0.1s;
  transition-timing-function: ease-in-out;
  transition-duration: 0.4s;
  transition-property: all;
  opacity: 1;
  transform-origin: top;
  transform-style: preserve-3d;
  transform: scaleY(0);
  border-radius: 50%;
  z-index: 3;
}
.tp-header__tel-icon span i {
  transform: translateY(3px);
  display: inline-block;
  position: relative;
  z-index: 4;
}
.tp-header__tel-text span {
  display: block;
  font-size: 14px;
  padding-bottom: 8px;
}
.tp-header__tel-text a {
  font-size: 18px;
  color: var(--tp-theme-1);
  font-weight: 700;
  transition: 0.3s;
}
.tp-header__tel-text a:hover {
  color: var(--tp-common-orange);
}
.tp-header__tel-box {
  padding-left: 30px;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .tp-header__tel-box {
    padding-left: 25px;
  }
}
.tp-header__tel-box:hover .tp-header__tel-icon span::after {
  opacity: 1;
  transform: scaleY(1);
}
.tp-header__btn {
  line-height: 0;
}

.tp-header-2__transparent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1;
}
.tp-header-2__plr {
  box-shadow: 2px 3.464px 20px 0px rgba(10, 9, 9, 0.04);
  padding: 0 45px;
  margin-top: 20px;
  background-color: var(--tp-common-white);
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-header-2__plr {
    padding: 0 35px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-header-2__plr {
    padding: 0 35px;
    margin-top: 0;
  }
}
@media (max-width: 767px) {
  .tp-header-2__plr {
    padding: 0 15px;
    margin-top: 0;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .tp-header-2__logo {
    padding: 30px 0;
  }
}
.tp-header-2__logo img {
  max-width: inherit;
}
@media (max-width: 767px) {
  .tp-header-2__logo img {
    max-width: 100%;
  }
}
.tp-header-2__right-box {
  margin-left: -20px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-header-2__right-box {
    margin-left: -33px;
  }
}
.tp-header-2__right-action ul {
  display: flex;
  align-items: center;
  justify-content: end;
}
.tp-header-2__btn {
  line-height: 0;
}
.tp-header-2__icon-box button {
  font-size: 24px;
  color: var(--tp-theme-1);
  font-weight: 400;
  margin-right: 28px;
  transform: translateY(3px);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-header-2__icon-box button {
    font-size: 20px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-header-2__icon-box button {
    font-size: 21px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .tp-header-2__icon-box button {
    font-size: 20px;
  }
}
.tp-header-2__icon-box a {
  font-size: 24px;
  color: var(--tp-theme-1);
  font-weight: 400;
  margin-right: 25px;
  transform: translateY(3px);
  display: inline-block;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-header-2__icon-box a {
    font-size: 20px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-header-2__icon-box a {
    font-size: 21px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .tp-header-2__icon-box a {
    font-size: 20px;
  }
}
.tp-header-2__bar {
  line-height: 0;
}
.tp-header-2__bar button {
  font-size: 24px;
  color: var(--tp-common-orange);
  margin-left: 20px;
  border: 1px solid var(--tp-common-orange);
  height: 58px;
  width: 55px;
  line-height: 55px;
}
.tp-header-2__main-menu {
  padding-left: 75px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-header-2__main-menu {
    padding-left: 70px;
  }
}
.tp-header-2__main-menu > nav > ul > li {
  margin-right: 39px;
  display: inline-block;
  list-style-type: none;
  position: relative;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-header-2__main-menu > nav > ul > li {
    margin-right: 30px;
  }
}
.tp-header-2__main-menu > nav > ul > li > a {
  padding: 40px 0;
  font-weight: 700;
  transition: 0.3s;
  font-size: 17px;
  display: inline-block;
  position: relative;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-header-2__main-menu > nav > ul > li > a {
    font-size: 16px;
  }
}
.tp-header-2__main-menu > nav > ul > li > a::after {
  content: "";
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 2px;
  width: 0%;
  background-color: var(--tp-common-orange);
  position: absolute;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}
.tp-header-2__main-menu > nav > ul > li:last-child {
  margin-right: 0;
}
.tp-header-2__main-menu > nav > ul > li:hover .submenu {
  opacity: 1;
  visibility: visible;
  -webkit-transform: scaleY(1);
  -moz-transform: scaleY(1);
  -ms-transform: scaleY(1);
  -o-transform: scaleY(1);
  transform: scaleY(1);
}
.tp-header-2__main-menu > nav > ul > li:hover > a {
  color: var(--tp-theme-1);
}
.tp-header-2__main-menu > nav > ul > li:hover > a::after {
  opacity: 1;
  visibility: visible;
  width: 100%;
}
.tp-header-2__main-menu > nav > ul > li > .submenu {
  border-top: 3px solid var(--tp-common-orange);
  position: absolute;
  top: 100%;
  width: 240px;
  background-color: var(--tp-common-white);
  z-index: 999;
  padding: 30px 0px;
  opacity: 0;
  visibility: hidden;
  transition: 0.4s;
  transform: scaleY(0);
  transform-origin: top center;
  text-align: start;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
.tp-header-2__main-menu > nav > ul > li > .submenu > li {
  padding: 0;
  display: block;
  margin: 0 30px;
  margin-bottom: 13px;
}
.tp-header-2__main-menu > nav > ul > li > .submenu > li:last-child {
  margin-bottom: 0;
}
.tp-header-2__main-menu > nav > ul > li > .submenu > li > a {
  padding: 0;
  font-size: 14px;
  text-transform: capitalize;
  color: var(--tp-common-black);
  letter-spacing: 1px;
  position: relative;
  font-weight: 600;
}
.tp-header-2__main-menu > nav > ul > li > .submenu > li > a::before {
  content: "";
  position: absolute;
  bottom: 0px;
  right: 0;
  left: auto;
  height: 1px;
  width: 0;
  background-color: var(--tp-common-orange);
  transition: 0.7s;
  display: inline-block;
}
.tp-header-2__main-menu > nav > ul > li > .submenu > li:hover a {
  color: var(--tp-common-orange);
}
.tp-header-2__main-menu > nav > ul > li > .submenu > li:hover a::before {
  width: 100%;
  right: auto;
  left: 0;
}

.tp-header-top-3__left-box ul li {
  display: inline-block;
}
.tp-header-top-3__left-box ul li span {
  font-size: 14px;
  margin-right: 25px;
}
@media (max-width: 767px) {
  .tp-header-top-3__left-box ul li span {
    margin-right: 22px;
  }
}
.tp-header-top-3__social {
  background-color: rgba(30, 55, 55, 0.039);
  padding: 10px 30px;
}
@media (max-width: 767px) {
  .tp-header-top-3__social {
    padding: 10px 14px;
  }
}
.tp-header-top-3__social a {
  font-size: 15px;
  color: var(--tp-theme-1);
  transition: 0.3s;
  padding-right: 20px;
}
@media (max-width: 767px) {
  .tp-header-top-3__social a {
    padding-right: 12px;
    font-size: 14px;
  }
}
.tp-header-top-3__social a:last-child {
  padding-right: 0;
}
.tp-header-top-3__social a:hover {
  color: var(--tp-common-orange);
}
.tp-header-top-3__right-box ul li {
  display: inline-block;
  font-size: 14px;
  padding-left: 30px;
}
.tp-header-top-3__right-box ul li a {
  transition: 0.3s;
}
.tp-header-top-3__right-box ul li a:hover {
  color: var(--tp-common-orange);
}
.tp-header-top-3__right-box ul li.location {
  padding-right: 10px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .tp-header-top-3__right-box ul li.location {
    display: none;
  }
}
@media (max-width: 767px) {
  .tp-header-top-3__right-box ul li.email {
    display: none;
  }
}
.tp-header-top-3__right-box ul li i {
  font-size: 15px;
  padding-right: 12px;
  color: var(--tp-theme-1);
  display: inline-block;
  transform: translateY(3px);
}

@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .tp-header-3__logo {
    padding: 30px 0;
  }
}
.tp-header-3__logo img {
  max-width: inherit;
}
@media (max-width: 767px) {
  .tp-header-3__logo img {
    max-width: 100%;
  }
}
.tp-header-3__main-menu {
  padding-left: 55px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-header-3__main-menu {
    padding-left: 0;
    text-align: center;
  }
}
.tp-header-3__main-menu > nav > ul > li {
  padding-right: 39px;
  display: inline-block;
  list-style-type: none;
  position: relative;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-header-3__main-menu > nav > ul > li {
    padding-right: 30px;
  }
}
.tp-header-3__main-menu > nav > ul > li > a {
  padding: 39px 0;
  font-weight: 700;
  transition: 0.3s;
  font-size: 17px;
  display: inline-block;
  position: relative;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-header-3__main-menu > nav > ul > li > a {
    font-size: 16px;
  }
}
.tp-header-3__main-menu > nav > ul > li > a::after {
  content: "";
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  height: 20px;
  width: 20px;
  border-radius: 50%;
  background-color: var(--tp-common-orange);
  position: absolute;
  transition: 0.3s;
  opacity: 0;
  visibility: hidden;
  clip-path: polygon(0 0, 100% 0%, 100% 40%, 0 40%);
}
.tp-header-3__main-menu > nav > ul > li:hover .submenu {
  opacity: 1;
  visibility: visible;
  -webkit-transform: scaleY(1);
  -moz-transform: scaleY(1);
  -ms-transform: scaleY(1);
  -o-transform: scaleY(1);
  transform: scaleY(1);
}
.tp-header-3__main-menu > nav > ul > li:hover > a {
  color: var(--tp-theme-1);
}
.tp-header-3__main-menu > nav > ul > li:hover > a::after {
  opacity: 1;
  visibility: visible;
}
.tp-header-3__main-menu > nav > ul > li .submenu {
  border-top: 3px solid var(--tp-common-orange);
  background-color: var(--tp-common-white);
  position: absolute;
  top: 100%;
  width: 240px;
  z-index: 999;
  padding: 30px 0px;
  opacity: 0;
  visibility: hidden;
  transition: 0.4s;
  transform: scaleY(0);
  transform-origin: top center;
  text-align: start;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
.tp-header-3__main-menu > nav > ul > li .submenu > li {
  padding: 0 30px;
  margin-bottom: 13px;
  display: block;
}
.tp-header-3__main-menu > nav > ul > li .submenu > li:last-child {
  margin-bottom: 0;
}
.tp-header-3__main-menu > nav > ul > li .submenu > li > a {
  padding: 0;
  font-size: 14px;
  text-transform: capitalize;
  color: var(--tp-common-black);
  font-weight: 600;
  position: relative;
}
.tp-header-3__main-menu > nav > ul > li .submenu > li > a::before {
  content: "";
  position: absolute;
  bottom: 0px;
  right: 0;
  left: auto;
  height: 1px;
  width: 0;
  background-color: var(--tp-common-orange);
  transition: 0.7s;
  display: inline-block;
}
.tp-header-3__main-menu > nav > ul > li .submenu > li:hover > a {
  color: var(--tp-common-orange);
}
.tp-header-3__main-menu > nav > ul > li .submenu > li:hover > a::before {
  width: 100%;
  right: auto;
  left: 0;
}
.tp-header-3__main-menu > nav > ul > li:last-child {
  padding-right: 0;
}
.tp-header-3__right-box {
  margin-left: -28px;
}
.tp-header-3__right-action ul li {
  display: inline-block;
}
.tp-header-3__icon-box button {
  font-size: 24px;
  transform: translateY(3px);
  color: var(--tp-theme-1);
  font-weight: 400;
  margin-right: 28px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .tp-header-3__icon-box button {
    font-size: 20px;
  }
}
.tp-header-3__icon-box a {
  font-size: 24px;
  transform: translateY(3px);
  display: inline-block;
  color: var(--tp-theme-1);
  font-weight: 400;
  margin-right: 25px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .tp-header-3__icon-box a {
    font-size: 20px;
  }
}
.tp-header-3__bar {
  line-height: 0;
}
.tp-header-3__bar button {
  font-size: 18px;
  color: var(--tp-common-orange);
  margin-left: 20px;
  border: 1px solid var(--tp-common-orange);
  height: 58px;
  width: 55px;
  line-height: 55px;
}
@media (max-width: 767px) {
  .tp-header-3__bar button {
    margin-right: 0;
  }
}
.tp-header-3__btn {
  line-height: 0;
}

/** HOME-MENU GOES HERE ***/
.tp-header__main-menu nav ul li .has-homemenu {
  width: 810px;
  padding: 30px 30px 10px 30px;
  opacity: 0;
  visibility: hidden;
  background-color: var(--tp-common-white);
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
.tp-header__main-menu nav ul li .has-homemenu .homemenu {
  padding: 0px 10px;
  position: relative;
  margin-bottom: 20px;
}

.tp-header-2__main-menu nav ul li .has-homemenu {
  width: 810px;
  padding: 30px 30px 10px 30px;
  opacity: 0;
  visibility: hidden;
  background-color: var(--tp-common-white);
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
.tp-header-2__main-menu nav ul li .has-homemenu .homemenu {
  padding: 0px 10px;
  position: relative;
  margin-bottom: 20px;
}

.tp-header-2__main-menu nav ul li .has-homemenu {
  width: 810px;
  padding: 30px 30px 10px 30px;
  opacity: 0;
  visibility: hidden;
  background-color: var(--tp-common-white);
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
.tp-header-2__main-menu nav ul li .has-homemenu .homemenu {
  padding: 0px 10px;
  position: relative;
  margin-bottom: 20px;
}

.tp-header-3__main-menu nav ul li .has-homemenu {
  width: 810px;
  padding: 30px 30px 10px 30px;
  opacity: 0;
  visibility: hidden;
  background-color: var(--tp-common-white);
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
.tp-header-3__main-menu nav ul li .has-homemenu .homemenu {
  padding: 0px 10px;
  position: relative;
  margin-bottom: 20px;
}

.homemenu-btn {
  position: absolute;
  bottom: 20%;
  left: 0;
  right: 0;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transition: 0.4s;
}

.homemenu-title {
  font-size: 18px;
  margin-bottom: 0;
  color: var(--tp-common-orange);
  display: inline-block;
  font-weight: 700;
}
.homemenu-title:hover {
  color: var(--tp-theme-2);
}

.homemenu-thumb {
  position: relative;
  border: 1px solid rgba(0, 0, 0, 0.1);
}
.homemenu-thumb:hover .homemenu-btn {
  opacity: 1;
  visibility: visible;
  bottom: 50%;
  transform: translateY(50%);
}

.tp-main-menu-mobile .tp-submenu {
  display: none;
}
.tp-main-menu-mobile .header-icon {
  display: none;
}
.tp-main-menu-mobile ul {
  position: static;
  display: block;
  box-shadow: none;
}
.tp-main-menu-mobile ul li {
  list-style: none;
  position: relative;
  width: 100%;
  padding: 0;
}
.tp-main-menu-mobile ul li:not(:last-child) a {
  border-bottom: 1px solid rgba(6, 7, 40, 0.1);
}
.tp-main-menu-mobile ul li.has-dropdown > a .dropdown-toggle-btn {
  position: absolute;
  right: 0;
  top: 21%;
  -webkit-transform: translateY(-2px);
  -moz-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  -o-transform: translateY(-2px);
  transform: translateY(-2px);
  font-size: 18px;
  color: #7F8387;
  font-family: "Font Awesome 5 Pro";
  transition: all 0.3s ease-in-out;
  z-index: 1;
  width: 25px;
  height: 25px;
  line-height: 22px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: background-color 0.3s ease-in-out, border-color 0.3s ease-in-out, color 0.3s ease-in-out;
}
.tp-main-menu-mobile ul li.has-dropdown > a .dropdown-toggle-btn i {
  transition: all 0.3s ease-in-out;
  margin-left: 2px;
}
.tp-main-menu-mobile ul li.has-dropdown > a .dropdown-toggle-btn.dropdown-opened i {
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);
}
.tp-main-menu-mobile ul li.has-dropdown > a .dropdown-toggle-btn:hover {
  background-color: var(--tp-common-orange);
  border-color: var(--tp-common-orange);
  color: var(--tp-common-white);
}
.tp-main-menu-mobile ul li.has-dropdown > a .dropdown-toggle-btn:hover i {
  color: var(--tp-common-white);
}
.tp-main-menu-mobile ul li.has-dropdown > a.expanded {
  color: var(--tp-common-orange);
}
.tp-main-menu-mobile ul li.has-dropdown > a.expanded .dropdown-toggle-btn.dropdown-opened {
  background-color: var(--tp-common-orange);
  border-color: var(--tp-common-orange);
  color: var(--tp-common-white);
}
.tp-main-menu-mobile ul li.has-dropdown > a.expanded .dropdown-toggle-btn.dropdown-opened i {
  color: var(--tp-common-white);
}
.tp-main-menu-mobile ul li.has-dropdown:hover > a::after {
  color: var(--tp-theme-green);
}
.tp-main-menu-mobile ul li:last-child a span {
  border-bottom: 0;
}
.tp-main-menu-mobile ul li > a {
  display: block;
  font-size: 16px;
  color: var(--tp-common-white);
  position: relative;
  padding: 10px 0;
  padding-right: 20px;
}
.tp-main-menu-mobile ul li > a svg {
  -webkit-transform: translateY(-2px);
  -moz-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  -o-transform: translateY(-2px);
  transform: translateY(-2px);
}
.tp-main-menu-mobile ul li > a > i {
  display: inline-block;
  width: 11%;
  margin-right: 13px;
  -webkit-transform: translateY(4px);
  -moz-transform: translateY(4px);
  -ms-transform: translateY(4px);
  -o-transform: translateY(4px);
  transform: translateY(4px);
  font-size: 21px;
  line-height: 1;
}
.tp-main-menu-mobile ul li > a .menu-text {
  font-size: 16px;
  line-height: 11px;
  border-bottom: 1px solid #EAEBED;
  width: 82%;
  display: inline-block;
  padding: 19px 0 17px;
}
.tp-main-menu-mobile ul li img {
  width: 100%;
}
.tp-main-menu-mobile ul li ul {
  padding: 0;
}
.tp-main-menu-mobile ul li ul li {
  padding: 0;
}
.tp-main-menu-mobile ul li ul li a {
  margin-left: auto;
  width: 93%;
  padding: 10px 5%;
  text-shadow: none !important;
  visibility: visible;
  padding-left: 0;
  padding-right: 20px;
}
.tp-main-menu-mobile ul li ul li li a {
  width: 88%;
  padding: 10px 7%;
  padding-left: 0;
  padding-right: 20px;
}
.tp-main-menu-mobile ul li ul li li li a {
  width: 83%;
  padding: 10px 9%;
  padding-left: 0;
  padding-right: 20px;
}
.tp-main-menu-mobile ul li ul li li li li a {
  width: 68%;
  padding: 10px 11%;
  padding-left: 0;
  padding-right: 20px;
}
.tp-main-menu-mobile ul li:hover > a {
  color: var(--tp-common-orange);
}
.tp-main-menu-mobile ul li:hover > a::after {
  color: var(--tp-theme-1);
}
.tp-main-menu-mobile ul li:hover > a .dropdown-toggle-btn i {
  color: var(--tp-common-orange);
}
.tp-main-menu-mobile ul li:hover .mega-menu {
  visibility: visible;
  opacity: 1;
  top: 0;
}
.tp-main-menu-mobile ul li .mega-menu, .tp-main-menu-mobile ul li .submenu {
  position: static;
  min-width: 100%;
  padding: 0;
  box-shadow: none;
  visibility: visible;
  opacity: 1;
  display: none;
}
.tp-main-menu-mobile ul li .mega-menu li, .tp-main-menu-mobile ul li .submenu li {
  float: none;
  display: block;
  width: 100%;
  padding: 0;
}
.tp-main-menu-mobile ul li .mega-menu li:hover a .dropdown-toggle-btn, .tp-main-menu-mobile ul li .submenu li:hover a .dropdown-toggle-btn {
  color: var(--tp-theme-1);
}
.tp-main-menu-mobile .tp-main-menu-content ul li:not(:last-child) .home-menu-title a {
  border-bottom: none;
}
.tp-main-menu-mobile * ul, .tp-main-menu-mobile * li {
  transition: none !important;
}

/*----------------------------------------*/
/*  02. slider css start 
/*----------------------------------------*/

#fBanner {
  /* background-image: linear-gradient(60deg, #39719d 0%, #413e27 100%);
  background-image: -webkit-linear-gradient(60deg, #39719d 0%, #413e27 100%); */
  background-position: right top;
  background-repeat: repeat-y;
  padding-bottom: 88px;
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

#fBanner::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-image: -webkit-linear-gradient(60deg, #007cb8ba 0%, #0072b082 100%);
}
/* #fBanner{
  background-image: url('../img/header-free-conference-badge-bg.png');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 90px 0px;
} */
.banner_sec .slider_batch .badge-container{
  text-align: center;
  background-image: url('../img/banner-img/badge-fream.png');
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  padding: 50px 30px;
  margin-bottom: 70px;
}
.banner_sec .slider_batch .badge-container .com_bg{
  background: #fff;
  padding: 30px;
  border: 1px solid #ddd;
}
.banner_sec .slider_batch .badge-container .com_bg .owl-carousel .owl-controls {
position: absolute;
right: 40%;
top: 125%;
}
.banner_sec .slider_batch .badge-container .com_bg .owl-carousel .owl-controls .owl-page span {
width: 25px;
height: 25px;
border: 3px solid rgba(255,255,255,0.9);
background: #0472b0;
  margin: 0 3px;
  opacity: 1 !important;
  transition: all 0.5s ease;
}
.banner_sec .slider_batch .badge-container .com_bg .owl-carousel .owl-controls .owl-page:last-child span{
  background: #000;
}
.banner_sec .slider_batch .badge-container .com_bg .owl-carousel .owl-controls .owl-page.active span{
  border: none;
  background: #fe9400;
  transition: all 0.5s ease;
}
.banner_sec .slider_batch .badge-container .com_bg .owl-carousel{
  width: auto;
  margin-left: -30px;
  margin-right: -30px;
  margin-bottom: -35px;
}
.banner_sec .slider_batch .badge-container .com_bg .owl-carousel .item{
  text-align: left;
}
.banner_sec .slider_batch .badge-container .com_bg .owl-carousel .item h1{
  margin: 0;
  font-size: 41px;
  text-transform: uppercase;
  font-weight: bold;
  line-height: 45px;
  color: #0472b0;
  padding: 0 30px;
  margin-bottom: 40px;
  margin-top: 30px;
  position: relative;
}
.banner_sec .slider_batch .badge-container .com_bg .owl-carousel .item h1.change > small,.banner_sec .slider_batch .badge-container .com_bg .owl-carousel .item h1.change{
  color: #eee !important;
}
.banner_sec .slider_batch .badge-container .com_bg .owl-carousel .item h1 .prt4{
  top: 0;
  left: 25px;
}
.banner_sec .slider_batch .badge-container .com_bg .owl-carousel .item .desg{
  padding: 20px;
  background: #275c87;
  display: inline-block;
  width: 100%;
  color: #fff;
  text-transform: uppercase;
  font-size: 26px;
  position: relative;
  z-index: 0;
  text-align: center;
}
.banner_sec .slider_batch .badge-container .com_bg .owl-carousel .item .desg.change{
  background: #eee !important;
}
.banner_sec .slider_batch .badge-container .com_bg .owl-carousel .item .desg.change.change2{
  background: #275c87 !important;
}
.banner_sec .slider_batch .badge-container .com_bg .owl-carousel .item .desg > strong{
  opacity: 0;
}
.banner_sec .slider_batch .badge-container .com_bg .owl-carousel .item .desg > strong.omm{
  opacity: 1;
}
.banner_sec .slider_batch .badge-container .com_bg .owl-carousel .item .desg .prt3{
  left: 20px;
  top: -5px;
}
.banner_sec .slider_batch .badge-container .com_bg .owl-carousel .item .desg:after{
  position: absolute;
  content: '';
  left: 0;
  top: 0;
  bottom: 0;
  width: 150px;
  background: rgba(255,255,255,0.2);
  z-index: -1;
  clip-path: polygon(0 0, 100% 0%, 38% 100%, 0% 100%);
}
.banner_sec .slider_batch .badge-container .com_bg .owl-carousel .owl-wrapper .owl-item:nth-child(2) .item h1{
  color: #275c87;
}
.banner_sec .slider_batch .badge-container .com_bg .owl-carousel .owl-wrapper .owl-item:nth-child(2) .item .desg{
  background: #0472b0;
}
.banner_sec .slider_batch .badge-container .com_bg .owl-carousel .owl-wrapper .owl-item:nth-child(2) .item .desg.change.change2{
 background: #0472b0 !important; 
}
.banner_sec .slider_batch .badge-container .com_bg .owl-carousel .owl-wrapper .owl-item:nth-child(3) .item h1{
  color: #000;
}
.banner_sec .slider_batch .badge-container .com_bg .owl-carousel .owl-wrapper .owl-item:nth-child(3) .item .desg{
  background: #000;
}
.banner_sec .slider_batch .badge-container .com_bg .owl-carousel .owl-wrapper .owl-item:nth-child(3) .item .desg.change.change2{
   background: #000 !important;
}
@keyframes blinker {
50% {
  transform: scale(1.1);
   text-shadow: 0 0 5px #fff;
}
}
@keyframes blinker2 {
50% {
  transform: scale(1.1);
   text-shadow: 0 0 2px #000;
}
}
.banner_sec .slider_batch .badge-container .com_bg .owl-carousel .item h1 > small{
  display: block;
}
.banner_sec .slider_batch > img {
  margin-top: -245px;
  /* display: none; */
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.banner_sec .slider_batch {
  text-align: center;
  margin-top: 83px;
  position: relative;
}
.banner_sec .slider_batch a.btn_more {
  margin-bottom: 20px;
}
.banner_sec .slider_batch .heading-alpha {
  margin-top: 0;
  font-weight: 600;
  font-size: 22px;
  margin-bottom: 66px;
  padding-right: 65px;
  letter-spacing: 0.7px;
}
.banner_sec .slider_batch .heading-alpha .orange-color{
  color: #fff;
   
}
.banner_sec .text_con{
  margin-top: 278px;
}
.banner_sec .text_con.right_set ul li{
  text-align: right;
}
.banner_sec .text_con ul li h2{
  margin: 0;
  font-size: 17px;
  text-transform: uppercase;
  font-weight: bold;
  margin-bottom: 10px;
}
.banner_sec .text_con ul li h2 a{
  transition: 0.5s ease;
  position: relative;
      color: #ffffff;
  text-decoration: none !important;
}
.banner_sec .text_con ul li h2 a:hover::after,
.banner_sec .text_con ul li h2 a:hover{
  color: yellow !important;
}
.banner_sec .text_con ul li h2 a::after {
position: absolute;
content: '\f067';
left: -30px;
top: 0;
font-family: FontAwesome;
color: #8D8D8D;
font-size: 21px;
  transition: 0.5s ease;
}
.banner_sec .text_con.right_set ul{
  padding-left: 0;
  padding-right: 30px;
}
.banner_sec .text_con.right_set ul li h2 a:after{
  left: inherit;
  right: -30px;
}
.banner_sec .text_con ul li.active h2 a::after{
  content: '\f068';
  transition: 0.5s ease;
  color: yellow;
}
.banner_sec .text_con ul li:hover h2 a{
  color: #0472b0;
  transition: 0.5s ease;
}
.banner_sec .text_con ul li:hover h2 a:after{
  color: #0472b0;
}
.banner_sec .text_con ul li{
  margin-bottom: 35px;
  text-align: left;
  transition: 0.5s ease-in-out;
}
.banner_sec .text_con ul li:hover{
  transform: scale(1.05);
  transition: 0.5s ease-in-out;
  z-index: 1;
}
.banner_sec .text_con ul li p{
  margin: 0;
  line-height: normal;
  color: #fff;
  text-align: unset !important;
}
.banner_sec .text_con ul li:last-child{
  margin-bottom: 0;
}
.banner_sec .text_con.left_set{
  text-align: right;
}
.banner_sec .text_con ul{
  text-align: center;
  padding-left: 30px;
}
.banner_sec .text_con ul li{
  position: relative;
  padding: 0 25px;
  cursor: pointer;
}
.banner_sec .text_con ul li.logopoint.pass::after {
position: absolute;
  left: 113%;
  content: '';
  top: -33px;
  width: 109px;
  transform: rotate(-31deg);
  height: 142px;
  background-image: url('../img/banner-img/image-pointer.png');
  background-repeat: no-repeat;
  background-size: 100% auto;
  z-index: 1;
  opacity: 0;
  -webkit-animation: mymove 0.1s;
  -webkit-animation-fill-mode: forwards;
  animation: mymove 0.1s;
  animation-fill-mode: forwards;
}
@-webkit-keyframes mymove {
from {opacity: 0;}
to {opacity: 1;}
}

@keyframes mymove {
from {opacity: 0;}
to {opacity: 1;}
}
.banner_sec .text_con ul li.barpoint.pass::after {
position: absolute;
  right: 105%;
  content: '';
  top: -36px;
  transform: rotate(30deg);
  width: 130px;
  height: 142px;
  background-image: url('../img/banner-img/Qr-pointer.png');
  background-repeat: no-repeat;
  background-size: 100% auto;
  z-index: 1;
  opacity: 0;
  -webkit-animation: mymove2 0.1s;
  -webkit-animation-fill-mode: forwards;
  animation: mymove2 0.1s;
  animation-fill-mode: forwards;
}
@-webkit-keyframes mymove2 {
from {opacity: 0;}
to {opacity: 1;}
}

@keyframes mymove2 {
from {opacity: 0;}
to {opacity: 1;}
}
.banner_sec .text_con ul li.textpoint.pass::after {
position: absolute;
right: 104%;
content: '';
top: 10px;
width: 181px;
height: 142px;
background: url('../img/banner-img/info_pointer.png');
background-repeat: no-repeat;
background-size: 100% auto;
z-index: 1;
  opacity: 0;
-webkit-animation: mymove3 0.1s;
-webkit-animation-fill-mode: forwards;
animation: mymove3 0.1s;
animation-fill-mode: forwards;
}
@-webkit-keyframes mymove3 {
from {opacity: 0;}
to {opacity: 1;}
}

@keyframes mymove3 {
from {opacity: 0;}
to {opacity: 1;}
}
.banner_sec .text_con ul li.shapoint.pass::after {
position: absolute;
right: 105%;
content: '';
top: 6px;
width: 94px;
height: 132px;
background: url('../img/banner-img/rectange_pointer.png');
background-repeat: no-repeat;
background-size: 100% auto;
z-index: 1;
opacity: 0;
-webkit-animation: mymove4 0.1s;
-webkit-animation-fill-mode: forwards;
animation: mymove3 0.1s;
animation-fill-mode: forwards;
}
@-webkit-keyframes mymove4 {
from {opacity: 0;}
to {opacity: 1;}
}

@keyframes mymove4 {
from {opacity: 0;}
to {opacity: 1;}
}
.banner_sec .text_con ul li.compny.pass::after {
position: absolute;
  left: 109%;
  content: '';
  top: 0px;
  transform: rotate(-10deg);
  width: 140px;
  height: 250px;
  background: url('../img/banner-img/text_pointer.png');
  background-repeat: no-repeat;
  background-size: 100% auto;
  z-index: 1;
  opacity: 0;
  -webkit-animation: mymove5 0.1s;
  -webkit-animation-fill-mode: forwards;
  animation: mymove5 0.1s;
  animation-fill-mode: forwards;
}
.banner_sec .text_con.right_set ul li.shapoint.pass:last-child::after {
  background: url('../img/banner-img/text_pointer.png');
  right: -235px;
  top: 14px;
  width: 239px;
  height: 214px;
  background-repeat: no-repeat;
  background-size: 100% auto;
}
.banner_sec .text_con ul li.badgetype.pass::after {
  position: absolute;
  left: 119%;
  content: '';
  top: -42px;
  width: 212px;
  transform: rotate(-24deg);
  height: 250px;
  background: url('../img/banner-img/text_pointer.png');
  background-repeat: no-repeat;
  background-size: 100% auto;
  z-index: 1;
  opacity: 0;
  -webkit-animation: mymove5 0.1s;
  -webkit-animation-fill-mode: forwards;
  animation: mymove5 0.1s;
  animation-fill-mode: forwards;
}
@-webkit-keyframes mymove5 {
from {opacity: 0;}
to {opacity: 1;}
}

@keyframes mymove5 {
from {opacity: 0;}
to {opacity: 1;}
}
.banner_sec .slider_batch .badge-container .com_bg .bar_code_img{
  position: relative;
  display: inline-block;
  width: 100%;
  text-align: center;
}
.banner_sec .slider_batch .badge-container .com_bg .bar_code_img > div{
  position: relative;
}
.banner_sec .slider_batch .badge-container .com_bg .bar_code_img > div img{
  width: auto;
  max-width: none;
  height: 75px;
  filter: grayscale(100%);
  opacity: 0.1;
}
.banner_sec .slider_batch .badge-container .com_bg .bar_code_img > div.add img{
  filter: none;
  opacity: 1;
}
.banner_sec .slider_batch .badge-container .com_bg .demo_logo .prt2,.banner_sec .slider_batch .badge-container .com_bg .bar_code_img .prt1{
  right: 0;
  left: inherit;
}
.banner_sec .text_con ul li .dot,.sonar-emitter{
  position: absolute;
  width:15px;
  height: 15px;
  border-radius: 9999px;
  background-color: #fe9400;
  z-index: 2;
  left: 10px;
  top: 0px;
  cursor: pointer;
   display: none !important;
}
.banner_sec .text_con ul li .dot > span,.sonar-emitter > .sonar-wave{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 9999px;
  background-color: #fe9400;
  opacity: 0;
  z-index: -1;
  animation: sonarWave 1s linear infinite;
}
.banner_sec .text_con ul li .dot{
  position: absolute;
  top: 0;
  left: 0;
  display: none !important;
}
.banner_sec .text_con ul li.textpoint .dot,.banner_sec .text_con ul li.textpoint .dot > span,.sonar-emitter.prt4,.sonar-emitter.prt4 > .sonar-wave{
  background-color: #013378;
}
.banner_sec .text_con ul li.logopoint .dot,.sonar-emitter.prt2{
  background-color:#0472b0
}
.banner_sec .text_con ul li.logopoint .dot > span,.sonar-emitter.prt2 > .sonar-wave{
  background-color:#0472b0
}
.banner_sec .text_con ul li.compny .dot,.banner_sec .text_con ul li.compny .dot > span,
.sonar-emitter.prt3,.sonar-emitter.prt3 > .sonar-wave{
  background-color: #000;
}
.banner_sec .text_con ul li.shapoint .dot,.banner_sec .text_con ul li.shapoint .dot > span{
  background-color: #999;
}
@keyframes sonarWave {
from {
  opacity: 0.4;
}
to {
  transform: scale(3);
  opacity: 0;
}
}
.sonar-emitter{
  display: none;
}
.sonar-emitter.prt4.set,.sonar-emitter.prt1.set,.sonar-emitter.prt2.set,.sonar-emitter.prt3.set{
  display: inline-block;
}
#fBanner .btn_more{
  text-transform: uppercase;
  font-size: 20px;

}


/*==========================[Css Media Quary]==============================*/

@media (min-width: 992px) {
  .our_product .fGalleryImages > li:last-child {
      margin-left: 25%;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .banner_sec .text_con ul li.shapoint.pass::after {
      right: 116%;
      transform: rotate(45deg);
      top: -39px;
  }
}

@media (min-width : 768px) and (max-width : 992px) {
  .banner_sec .slider_batch .badge-container .com_bg .owl-carousel .owl-controls{
      right: 42%;
  }

  .banner_sec .slider_batch {
   position: unset !important; 
    
}

.banner_sec .slider_batch > img { 
  display: none !important; 
  
}

  
  .banner_sec .text_con {
margin-top: 0px;
}

  .banner_sec .text_con ul li:after{
      display: none !important;
  }
  .banner_sec .text_con.right_set ul li{
      text-align: center !important;
  }
  .banner_sec .text_con.right_set ul li:nth-child(2) {
      margin-bottom: 63px;
  }
  .banner_sec .text_con.right_set ul li:last-child {
      margin-bottom: 35px;
  }
  .banner_sec .text_con.right_set ul li h2 a::after {
      right: inherit;
      left: -30px;
}
  .banner_sec .text_con.right_set ul{
      padding-left: 30px;
      padding-right: 0;
  }
  .banner_sec .fModuleContent .row .flip_div{
      display: -webkit-flex; /* Safari */
      -webkit-flex-direction: column-reverse; /* Safari 6.1+ */
      display: flex;
      flex-direction: column-reverse; 
  }
  .banner_sec .text_con.left_set{
      margin-top: 0px;
  }
  .banner_sec .slider_batch {
margin-top: 100px;
}
  .slider_batch .btn{
      display: none;
  }
  .banner_sec .text_con ul{
      display: inline-block;
      width: 100%;
  }
  .banner_sec .text_con ul li{
      float: left;
      width: 100%;
      text-align: center;
  }


}
@media (max-width : 992px){
  .banner_sec .text_con {
    margin-top: 28px;
}
.banner_sec .slider_batch .badge-container .com_bg .owl-carousel .item h1 { 
  font-size: 34px; 
}

.banner_sec .slider_batch .badge-container {
  
  margin-bottom: 40px;
}
#fBanner { 
  padding-bottom: 30px;
}
}

@media (max-width : 767px){
  .banner_sec .slider_batch {
    position: unset !important; 
     
 }

 .banner_sec .slider_batch > img { 
  display: none !important; 
  
}
  .navbar-toggle{
      position: absolute;
      right: 15px;
      top: 15px;
      margin: 0;
      cursor: pointer;
      z-index: 2;
  }
  .navbar-toggle .icon-bar{
      background: #000;
  }
  .head-padding{
      display: none;
  }

  
  .banner_sec .slider_batch{
      margin-top: 115px;
  }
  .order_form .fModuleContent ul{
      display: block;
      text-align: center;
  }
  .order_form .fModuleContent ul li{
      float: none;
      display: inline-block;
  }
   /* .banner_sec .text_con {
margin-top: 70px;
} */

  .banner_sec .slider_batch .badge-container .com_bg .owl-carousel .owl-controls{
      right: 42%;
  }
  h1, h2, h3, #fMatter h1, #fContentPost h3{
      font-size: 21px;
  }
  .banner_sec .slider_batch {
      position: fixed;
      width: 100%;
      left: 0;
      z-index: 1;
}
  /* .banner_sec .text_con {
margin-top:502px;
} */
  .banner_sec .slider_batch .btn,.banner_sec .slider_batch .badge-container .com_bg .owl-carousel .owl-controls{
      display: none;
  }
  .region-contentPost{
      position:relative;
      z-index: 988;
      background: #fff;
  }
 
  .banner_sec .text_con ul li:after{
      display: none !important;
  }
  .banner_sec .text_con.right_set ul li{
      text-align: center;
      padding: 0 0px;
  }
  .banner_sec .text_con.right_set ul li h2 a::after {
      right: inherit;
      left: -30px;
}
  .banner_sec .text_con.right_set ul{
      padding-left: 0px;
      padding-right: 0;
      padding-top: 20px;
      text-align: center;
  }
  .banner_sec .fModuleContent .row .flip_div{
      display: -webkit-flex; /* Safari */
      -webkit-flex-direction: column-reverse; /* Safari 6.1+ */
      display: flex;
      flex-direction: column-reverse; 
  }
  .banner_sec .text_con.left_set{
      margin-top: 30px;
  }
   .banner_sec .text_con ul{
      display: inline-block;
      width: 100%;
  }
  .banner_sec .text_con ul li{
      float: left;
      width: 100%;
  }
  .banner_sec .slider_batch {
 margin-top: 80px;
}

.banner_sec .slider_batch .heading-alpha {  
  font-size: 18px;
  margin-bottom: 20px;
  padding-right: 0;
}

}
@media (max-width : 500px){

  
  .banner_sec .slider_batch .badge-container .com_bg{
      padding: 15px;
  }
  .banner_sec .slider_batch .badge-container .com_bg .bar_code_img > div{
      float: none !important;
      width: 100%;
      text-align: center;
  }
  .banner_sec .slider_batch .badge-container .com_bg .bar_code_img > div img{
      height: 40px;
      display: inline-block;
  }
  .banner_sec .slider_batch .badge-container .com_bg .owl-carousel .item h1{
      font-size: 21px;
      line-height: normal;
  }
  .banner_sec .slider_batch .badge-container .com_bg .owl-carousel .item .desg{
      font-size: 12px;
      padding: 12px;
  }
  .banner_sec .slider_batch .badge-container .com_bg .owl-carousel .item h1{
      margin-bottom: 15px;
      margin-top: 5px;
  }
  .banner_sec .slider_batch .badge-container .com_bg .bar_code_img > div.demo_logo{
      margin-bottom: 10px;
  }
  .banner_sec .slider_batch .badge-container .com_bg .owl-carousel{
      margin-left: -15px;
      margin-right: -15px;
      margin-bottom: -20px;
  }
  .banner_sec .slider_batch .badge-container .com_bg .owl-carousel .owl-controls {
      display: none;
}
  .banner_sec .text_con ul li{
      width: 100%;
  }
  .banner_sec .slider_batch{     
      z-index: 11;
      margin-top: 0;
      padding-top: 70px;
  }
  .banner_sec .slider_batch .badge-container{
      margin-bottom: 25px;
  }
  .banner_sec .slider_batch .badge-container .com_bg .owl-carousel .owl-controls{
      top: -32px;
      right: -29px;
  }
  .banner_sec .slider_batch .badge-container .com_bg .owl-carousel.owl-theme .owl-controls .owl-page {
      display: block;
  }
  .banner_sec .slider_batch .badge-container .com_bg .owl-carousel .owl-controls .owl-page span {
      width: 20px;
      height: 20px;
  }
  .banner_sec .text_con {
margin-top: 0px;
}

.banner_sec .slider_batch > img {
  display: none;
}

  .banner_sec .slider_batch .badge-container .com_bg .owl-carousel .item h1 .prt4 {
top: 4px;
left: 13px;
}
  .banner_sec .slider_batch .badge-container .com_bg .demo_logo .prt2{
      right: 30%;
  } 
  .banner_sec .slider_batch .badge-container .com_bg .bar_code_img .prt1{
      right: 40%;
  }
}

.pull-left {
  float: left;
}
.pull-right {
  float: right;
}

@media (max-width: 480px) {
  
}
@media (max-width : 380px){
  .btn{
      padding: 10px 20px;
  }
  .banner_sec .text_con ul li{
      width: 100%;
  }

  .banner_sec .slider_batch .badge-container .com_bg .owl-carousel .owl-controls {
right: 38%;
}

}


























/* we-offer-area */
 

.site-heading h2 {   
  color: #000;
  font-weight: bold;
  font-size: 21px;
  text-transform: uppercase;
  margin-top: 0;
  font-size: 3rem;
}

.site-heading h2 span {
  font-weight: 400;
}

.site-heading h4 {
display: inline-block;
padding-bottom: 20px;
position: relative;
text-transform: capitalize;
z-index: 1;
}

.site-heading h4::before {
background: #275c87 none repeat scroll 0 0;
bottom: 0;
content: "";
height: 2px;
left: 50%;
margin-left: -25px;
position: absolute;
width: 50px;
}

.site-heading {
margin-bottom: 60px;
overflow: hidden;
margin-top: -5px;
} 

.name-badges .container {
  max-width: 1300px;
}

.we-offer-area .item {
background: #ffffff none repeat scroll 0 0;
border-left: 0px solid #275c87; 
box-shadow: 0 0 10px #cccccc;
overflow: hidden;
padding: 30px;
position: relative;
z-index: 1;
border-radius: 10px;
height: 100%;
transition: all 0.5s ease;
border-top: 0px solid red;
}
.we-offer-area .item:hover{
  border-top: 2px solid red;
}

.we-offer-area.text-center .item {
background: #ffffff none repeat scroll 0 0;
border: medium none;
padding: 67px 40px 64px;

}
.we-offer-area.item-border-less .item {
border: medium none;
}


.we-offer-area .equal-height {
  margin-bottom: 24px;
}
.we-offer-area .card-image {
  top: -100px;
  left: 5%;
}
.we-offer-area .card-image img {
  width: 86%;
}

.we-offer-area.item-border-less .item .number {
font-family: "Poppins",sans-serif;
font-size: 50px;
font-weight: 900;
opacity: 0.1;
position: absolute;
right: 30px;
top: 30px;
}

.we-offer-area .item .easy-img {
  max-width: 36px;
  width: 100%;
}
.we-offer-area .item h4 {
font-weight: 600;
text-transform: capitalize;
color: #00366c;
font-size: 20px;
}

.we-offer-area .item p {
  margin: 0;
  font-size: 16px;
  color: #000;
  line-height: 26px;
  text-align: left;
}


.we-offer-area .item h4,
.we-offer-area .item p {
transition: all 0.35s ease-in-out;
}

.we-offer-area .item::after {
background: #275c87 none repeat scroll 0 0;
content: "";
height: 100%;
left: -100%;
position: absolute;
top: 0;
transition: all 0.35s ease-in-out; 
width: 100%;
z-index: -1;
}



/* Product & Pricing CSS  */

section#pricing {
  background-color: #406ae8!important;
}

section#pricing .heding-bg {
  background-color: #3c2b99!important;
  padding-top: 50px;
}
.plan-inner {
  margin: 0 auto;
  height: 100%; 
  max-width: 100%;
  position: relative;
  padding: 30px 15px 30px 15px;
  border-radius: 22px;
  /* border: 1px solid #d0d0d0; */
  background-color: #ececec;
}

.plan-inner,
.plan-inner .pricing-table-item-price p,
.plan-inner .ContentPost,
.plan-inner .entry-content li,
.plan-inner .ContentPost,
.pricing-table-item-price > span { 

  transition: all 0.5s ease-in-out;
}

.plan-inner.active .button.simple {    
  background-color: transparent; 
}


.plan-inner .entry-title {

  position: relative;
  text-align: center;
  color: #fff;
  margin-bottom: 30px;
  border-radius: 10px;
  background-position: left;
  background-size: cover;
  background-repeat: no-repeat;
}

.plan-inner .pricing-table-item-price {
  padding: 30px 10px;
  text-align: center;
  color: #ffffff;
  position: relative;
}
.pricing-table-item-price > span.star-from {
  position: absolute;
  top: 5px;
  right: 140px;
  background-color: #000000;
  color: #fff;
  padding: 3px 5px;
  font-size: 11px;
}
.plan-inner .pricing-table-item-price p {
  font-size: 26px;
  font-weight: 700;
  line-height: 13px; 
  color: #000000;
  margin: 10px 0px;
}

.pricing-table-item-price > span {
  font-size: 14px;
  font-weight: 400;
  color: #535353;
  margin-bottom: 5px;
  display: inline-block;
  margin-top: 6px;
}

.plan-inner .pricing-table-item-price p sub {
  font-size: 22px;
  font-weight: 400;
}

.plan-inner .pricingnew-btn {
  margin-top: 12px;
}

.fGalleryImageffs {
  text-align: center;
}

.plan-inner .pricingnew-btn .pricing-btn {
  box-shadow: none;
  color: #000;
  background-color: #fde315;
  padding: 12px 27px;
  border-radius: 6px;
  text-transform: capitalize;
  letter-spacing: 0.5px;
  transition: all 0.5s ease;
  font-size: 22px;
  font-weight: 800;
  border: 2px solid #000;
}

.plan-inner .pricingnew-btn .pricing-btn:hover {  
  color: #000;
  background-color: #fbe116;

}
 
.plan-inner h6 {
  color: #0487f2;
  font-size: 20px;
  font-weight: 900;
  margin: 0;
}
.plan-inner .price span {
  font-size: 13px;
  font-weight: 400;
  color: #000;
  margin: 0;
}

.entry-content {
  color: #323232;
  padding-top: 15px;
}

.plan-inner .entry-content ul {
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: center;
 
}

.plan-inner .entry-content li i {
  color: #000;
  font-size: 18px;
}
.plan-inner .keyner ul {
  border-bottom: 1px solid #000000;
  border-top: 1px solid #000000;
}
.plan-inner  .entry-content li {
  border-bottom: 1px solid #000000;
  padding: 10px 0;
}

.plan-inner .entry-content li:last-child {
  border: none;
}

.plan-inner .fGalleryImage > img {
  width: auto;
  height: 75px;
  max-width: inherit;
}

.plan-inner .ContentPost {
  text-align: center;
  margin: 3px auto 7px;
  color: #000;
  font-weight: 600;
  font-size: 21px;
  text-transform: uppercase;
}

/* -------------How_It_Works-Section-Css-Start------------------ */

/* how it works wraper */
.how_it_works .container {
  max-width: 1370px;
}

/* how it works list */
.how_it_works .step_block ul {
  max-width: 1080px;
  margin: 0 auto;
  padding: 10px;
}

.how_it_works .step_block ul li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  margin-bottom: 50px;
}

.how_it_works .step_block ul li::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50px;
  transform: translateX(-50%);
  width: 4px;
  height: calc(100% + 100px);
  background-color: #0d1001;
}

.how_it_works .step_block ul li:first-child::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 14px;
  height: 14px;
  background-color: #0d1001;
  border-radius: 15px;
}

.how_it_works .step_block ul li:first-child::before {
  top: 0;
}

.how_it_works .step_block ul li:last-child::before {
  height: 50%;
  top: 0;
}

.how_it_works .step_block ul li .step_text,
.how_it_works .step_block ul li .step_img {
  width: 360px;
  text-align: right;
}

/* how it works image */
.how_it_works .step_block ul li .step_img img {
  max-width: 100%;
}

/* how it works heading h4 */
.how_it_works .step_block ul li .step_text h4 {
  font-size: 20px;
  font-weight: 600;
}

.how_it_works .step_block ul li .step_text .app_icon {
  margin-bottom: 10px;
}

.how_it_works .step_block ul li .step_text .app_icon a {
  display: inline-block;
  width: 40px;
  height: 40px;
  border-radius: 100%;
  background-color: var(--light-bg);
  color: var(--text-white);
  font-size: 20px;
  text-align: center;
  line-height: 40px;
  transition: .4s all;
}

.how_it_works .step_block ul li .step_text .app_icon a:hover {
  background-color: var(--purple);
}

.how_it_works .step_block ul li .step_text span {
  font-weight: 600;
}

.how_it_works .step_block ul li .step_text span a {
  color: var(--purple);
  text-decoration: underline;
}

.how_it_works .step_block ul li:nth-child(2) {
  flex-direction: row-reverse;
}

.how_it_works .step_block ul li:nth-child(2) .step_text,
.how_it_works .step_block ul li:nth-child(2) .step_img {
  text-align: left;
}

/* how it works numbers */
.how_it_works .step_block ul li .step_number {
  background-image: url(../img/icon_bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  width: 110px;
  height: 110px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  filter: invert(1);
}

/* how it works numbers heading h3 */
.how_it_works .step_block ul li .step_number h3 {
  font-size: 30px;
  font-weight: 600;
}







@media screen and (max-width:992px) {
  /* how it work section */
  .how_it_works .step_block ul li .step_text, .how_it_works .step_block ul li .step_img {width: 280px;}
  .how_it_works .yt_video .thumbnil a {top: 57%;}
  .how_it_works .yt_video .thumbnil a span {font-size: 20px;} 

}

@media screen and (max-width:767px) {

  /* how it work section */
  .how_it_works .how_it_inner {padding: 50px 15px;}
  .how_it_works .step_block ul {padding-top: 30px;}
  .how_it_works .step_block ul li , .how_it_works .step_block ul li:nth-child(2) {flex-direction: column; padding-left: 30px;}
  .how_it_works .step_block ul li .step_text h4 {font-size: 18px;}
  .how_it_works .step_block ul li::before {left: 0; transform: none; height: calc(100% + 10px); top: 40px;}
  .how_it_works .step_block ul li:first-child::before {height: calc(100% + 50px);}
  .how_it_works .step_block ul li:first-child::after {left: -5px; transform: none; display: none;}
  .how_it_works .step_block ul li .step_text, .how_it_works .step_block ul li .step_img ,
  .how_it_works .step_block ul li:nth-child(2) .step_text, .how_it_works .step_block ul li:nth-child(2) .step_img {text-align: center;}
  .how_it_works .step_block ul li .step_text, .how_it_works .step_block ul li .step_img {width: 100%;}
  .how_it_works .step_block ul li .step_number {position: absolute; top: -5px; left: -23px; width: 50px; height: 50px;}
  .how_it_works .step_block ul li:last-child::before {opacity: 0;}
  .how_it_works .step_block ul li .step_number h3 {font-size: 15px; margin-bottom: 0; margin-top: -2px;}
  .how_it_works .yt_video {margin-top: -50px;}
  .how_it_works .yt_video .thumbnil {height: 300px; border-radius: 15px;}
  .how_it_works .yt_video .thumbnil img {height: 100%; object-fit: cover; object-position: center; border-radius: 15px;}
  .how_it_works .yt_video .thumbnil a {width: 100%;}
  .how_it_works .yt_video .thumbnil a .play_btn::after {width: 140px; height: 140px;}
  .how_it_works .yt_video .thumbnil a .play_btn::before {width: 120px; height: 120px;}
  .how_it_works .yt_video .thumbnil a .play_btn img {height: auto;}



}



ul.faq-links li {
  background-color: #fff;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  margin-bottom: 20px;
  padding: 16px 18px;
  border-radius: 10px;
  transition: all 0.3s ease;
}

ul.faq-links li a {
  color: #00174e;
  font-size: 18px;
  letter-spacing: 0.5px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}
ul.faq-links li a i {
  font-weight: 800 !important;
  transition: all 0.3s ease;
}

ul.faq-links li:hover {
  background-color: #00174e;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 0px 0px; 
  transition: all 0.3s ease;
}
ul.faq-links li:hover a { 
  color: #fff;
}

.faq-img {
  text-align: center;
  position: relative;
}
.faq-img .img-fluid {
  max-width: 405px;
  height: auto;
  width: 100%;
}

.faq-img .img-icon {
  position: absolute;
  right: 18%;
  top: 1%;
  width: 15%;
  -webkit-animation: upndown 7s linear 0s infinite;
  animation: upndown 7s linear 0s infinite;
  max-width: 75px;
}

@keyframes upndown {
  0% {
    -ms-transform: translateY(0px);
    -webkit-transform: translateY(0px);
    transform: translateY(0px); 
  }
  50% {
    -ms-transform: translateY(20px);
    -webkit-transform: translateY(20px);
    transform: translateY(20px); 
  }
}


.button.simple {
  background: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  border: 3px solid #ffffff;
  color: #fff;   
  background-color: #00457f;
  padding: 20px 55px;
  border-radius: 100px;
 
  text-transform: capitalize;
  letter-spacing: 0.5px;
  transition: all 0.5s ease;
  font-size: 20px;
}
.button.simple:hover{ 
  background-color: #0a508a;
 

}






/*-------------------------------------------------------------------------------------
  custom plan area
---------------------------------------------------------------------------------------*/

.custom-plan-wrap {
  padding: 112px 0 120px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center
}

.custom-plan-wrap.bg-1 {
  background-image: url(../img/custom-plan-bg-1.png);
}

#custom-plan-area h2 {
  font-size: 50px;
  font-weight: 800;
  letter-spacing: 0.5px;
  margin-bottom: 15px;
}

#custom-plan-area p {
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.5px;
  margin-bottom: 25px;
}

.plan-btn a {
  display: inline-block;
  border: 2px solid #fff;
  color: #fff;
  padding: 16px 55px;
  border-radius: 30px;
  background-size: 100% auto;
  font-weight: 600;
}


/* footer CSS */

.footer-min {
  
  background-image: linear-gradient(60deg, #224a6a 0%, #61a3cf 100%);
  background-image: -webkit-linear-gradient(60deg, #224a6a 0%, #61a3cf 100%);
  background-position: right top;
  background-repeat: repeat-y;

}
.img-l-size img{ width:80px;}

.shipping-top {
  padding-top: 50px;
}
.card-badge-img {
  margin-top: -9px;
}
.card-badge-img img {
  width: 80%;
}

  .footer-min .footer-cont p {
      font-size: 16px !IMPORTANT;
      display: inline-block;
      line-height: 24px;
      margin-bottom: 22px;
      font-weight: normal;
      color: #fff;
  }

  .footer-min .footer-logo {
      margin-top: 5px !important
  }

  .footer-min .wi-100 li a {
      color: #fff;
      font-size: 15px;
      padding: 8px 0px;
      display: block;
      font-weight: 500;
  }
.menu-footer-con li {
  color: #fff;
  font-size: 15px;
  padding: 8px 0px !IMPORTANT;
  display: block;
  font-weight: 500;

}
.menu-footer li i {
  font-size: 22px;
  margin-right: 10px;
  color: #fff;
  font-weight: 600;
}
.footer-min .wi-100 li a:hover {
  color: #fff;     
}
.news-f1 button.btn.upcase {
  width: 100%;
  padding: 13px;
  color: #fff;
  background: #fff;
  font-size: 19px;
  margin-bottom: 20px;
  text-align: center;
  display: block;
}
.footer-min .footer-cont h3 {
  font-size: 22px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 22px;
}

  .footer-min .footer-cont h3:before {
      content: "";
      position: absolute;
      width: 50px;
      height: 3px;
      background: #fff;
      bottom: 0;
  }




.social-t {
  width: auto;
  text-align: center;
  display: inline-block;
  float: none;
  margin-top: 20px;
}
  .social-t li {
      float: left;
  }
      .social-t li:first-child a {
          margin-left: 0px !important;
      }

      .social-t li a {
          float: left;
          width: 40px;
          height: 40px;
          box-shadow: 0px 5px 19.53px 1.47px rgb(85 80 98 / 19%);
          display: inline-block;
          margin-left: 16px;
          border-radius: 50%;
          line-height: 40px;
          color: #fff;
      }
.facebook-change-co {
  background: #23a1cf;
  color: #fff;
}

.twitter-change-co {
  background: #88d9f7;
  color: #fff;
}

.pinterest-change-co {
  background: #f5235d;
  color: #fff;
}

.linkedin-change-co {
  background: #1893da;
  color: #fff;
}

.footer-min .wi-100 li{ padding:0px;}
.b-top {
  border-top: 1px solid #999;
}


.footer-copyright {
  padding: 12px;
  background-color: #fff;
  border-radius: 10px;
  margin-top: 30px;
}

.footer-copyright p {
  font-size: 16px;
  line-height: 25px;
  margin: 0;
  color: #000;
}



@media only screen and (max-width: 767px){
  header .navlinks .items{
      display: none;
  }
  header span { 
      font-size: 18px;   

  }

  .when-will-charged .pagebuilder-column h2.fw5 {
    line-height: 38px;
}
  .site-heading h2 { 
      font-size: 24px;
  }
  .plan-inner {  
    height: auto;   
}

  .we-offer-area .card-image img {      
      display: none;
  }
  .section-padding {
      padding: 30px 0px;
  }

  .site-heading {
      margin-bottom: 10px;     
  }
  .button.simple {    
      padding: 15px 36px; 
      font-size: 15px;
  }

  .how_it_works .how_it_inner {
      padding: 2px 0px;
  }

  .faq-img .img-icon {
      right: 4%;   
      max-width: 70px;
  }

  .custom-plan-wrap {
      padding: 25px 0 25px;     
  }

  #custom-plan-area h2 {
      font-size: 20px;     
  }
  #custom-plan-area p { 
      margin-bottom: 15px;
      max-width: 300px;
      margin: 15px auto;
  }
  .plan-btn a {
      padding: 12px 30px;
  
  }
  #custom-plan-area p br {
      display: none;
  }
  .card-badge-img {
      margin-top: 0px;
  }
}
.plan {
  margin-bottom: 24px;
  height: 100%;
}

.section-services .header-section {
margin-bottom: 34px;
}



.section-services .header-section .title:before {
content: "";
position: absolute;
bottom: 0;
left: 50%;
transform: translateX(-50%);
width: 50px;
height: 3px;
background-color: #00366c;
  border-radius: 3px;
}

.section-services .header-section .title:after {
content: "";
position: absolute;
bottom: 0;
left: 50%;
  transform: translateX(30px);
width: 10px;
height: 3px;
background-color: #504f93;
  border-radius: 3px;
}

.section-services .header-section .description {
font-size: 14px;
  color: #282828;
}

.section-services .single-service {
  position: relative;
  margin-top: 30px;
  background-color: #fff;
  border-radius: 10px;
  padding: 40px 30px;
  overflow: hidden;
}

.section-services .single-service .content {
position: relative;
z-index: 20;
}

.section-services .single-service .circle-before {
  position: absolute;
  top: 0;
  right: 0px;
  transform: translate(40%, -40%);
  width: 150px;
  height: 150px;
  background-color: #00366c;
  border: 6px solid #504f93;
  border-radius: 50%;
  opacity: 0.5;
  z-index: 10;
  transition: all .6s;
}

.section-services .single-service:hover .circle-before {
width: 100%;
height: 100%;
transform: none;
border: 0;
border-radius: 0;
opacity: 1;
}

.section-services .single-service .icon {
display: inline-block;
margin-bottom: 26px;
  width: 70px;
  height: 70px;
  background-color: #00366c;
  border-radius: 5px;
  line-height: 70px;
  text-align: center;
  color: #fff;
  font-size: 30px;
  transition: all .3s;
}

.section-services .single-service:hover .icon {
background-color: #fff;
color: #00366c;
}

.section-services .single-service .title {
  margin-bottom: 18px;
font-weight: 700;
  font-size: 23px;
  transition: color .3s;
}

.section-services .single-service:hover .title {
color: #fff;
}

.section-services .single-service .description {
  margin-bottom: 20px;
  font-size: 14px;
  transition: color .3s;
}

.section-services .single-service:hover .description {
color: #fff;
}

.section-services .single-service a {
position: relative;
font-size: 18px;
  color: #202020;
  text-decoration: none;
  font-weight: 500;
  transition: color .3s;
}

.section-services .single-service:hover a {
color: #fff;
}

.section-services .single-service a:after {
content: "";
position: absolute;
bottom: 0;
left: 0;
right: 0;
height: 1px;
background-color: #00366c;
transition: background-color .3s;
}

.section-services .single-service:hover a:after {
background-color: #fff;
}



.live-analytics-sec{
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  
}

.about .content ul {
list-style: none;
padding: 0;
}

.about .content ul li {
padding-left: 28px;
position: relative;
}

.about .content ul li+li {
margin-top: 10px;
}

.about .content ul i {
  position: absolute;
  left: 0;
  top: 7px;
  font-size: 20px;
  color: #e26005;
  line-height: 1;
}

.about .content p:last-child {
margin-bottom: 0;
}



.color-change {
  color: #00457f;
  margin-bottom: 15px;
  font-weight: 600;
  font-size: 32px;
  line-height: 44px;
}

.Pro-upcoming-j .weeks-right img {
  border: 1px solid #333;
  padding: 4px;
  border-radius: 8px;
  height: 450px;
  object-fit: cover;
}





/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact-us .info-box {
color: #444444;
text-align: center;
box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
padding: 30px 0 32px 0;
border-radius: 4px;
}

.contact-us .info-box i {
  font-size: 32px;
  color: #00366c;
  border-radius: 50%;
  padding: 8px;
  border: 2px dotted #00366c;
  width: 70px;
  height: 70px;
  line-height: 56px;
  display: inline-block;
}
.contact-us .info-box h3 {
font-size: 20px;
color: #777777;
font-weight: 700;
margin: 10px 0;
}

.contact-us .info-box p {
padding: 0;
line-height: 24px;
font-size: 14px;
margin-bottom: 0;
}

.contact-us .php-email-form {
box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
padding: 30px;
border-radius: 4px;
}

.contact-us .php-email-form .error-message {
display: none;
color: #fff;
background: #ed3c0d;
text-align: left;
padding: 15px;
font-weight: 600;
}

.contact-us .php-email-form .error-message br+br {
margin-top: 25px;
}

.contact-us .php-email-form .sent-message {
display: none;
color: #fff;
background: #18d26e;
text-align: center;
padding: 15px;
font-weight: 600;
}

.contact-us .php-email-form .loading {
display: none;
background: #fff;
text-align: center;
padding: 15px;
}

.contact-us .php-email-form .loading:before {
content: "";
display: inline-block;
border-radius: 50%;
width: 24px;
height: 24px;
margin: 0 10px -6px 0;
border: 3px solid #18d26e;
border-top-color: #eee;
animation: animate-loading 1s linear infinite;
}

.contact-us .php-email-form .form-group {
margin-bottom: 25px;
}

.contact-us .php-email-form input,
.contact-us .php-email-form textarea {
box-shadow: none;
font-size: 14px;
border-radius: 4px;
}

.contact-us .php-email-form input:focus,
.contact-us .php-email-form textarea:focus {
border-color: #111111;
}

.contact-us .php-email-form input {
padding: 10px 15px;
}

.contact-us .php-email-form textarea {
padding: 12px 15px;
}

.contact-us .php-email-form button[type=submit] {
background: #00366c;
border: 0;
padding: 10px 32px;
color: #fff;
transition: 0.4s;
border-radius: 100px;
}

.contact-us .php-email-form button[type=submit]:hover {
background: #00366c;
}

@keyframes animate-loading {
0% {
  transform: rotate(0deg);
}

100% {
  transform: rotate(360deg);
}
}




.site-heading h2 span {
  font-weight: bold !important;
}
.section-services {
background-color: #e6edf7;
color: #202020; 
}

.section-services .header-section {
margin-bottom: 34px;
}




.section-services .header-section .description {
font-size: 14px;
  color: #282828;
}






.about .content ul {
list-style: none;
padding: 0;
}

.about .content ul li {
padding-left: 28px;
position: relative;
}

.about .content ul li+li {
margin-top: 10px;
}

.about .content p:last-child {
margin-bottom: 0;
}




.Pro-upcoming-j .weeks-right img {
  border: 1px solid #333;
  padding: 4px;
  border-radius: 8px;
  height: 450px;
  object-fit: cover;
}







/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact-us .info-box {
color: #444444;
text-align: center;
box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
padding: 30px 0 32px 0;
border-radius: 4px;
}

.contact-us .info-box i {
  font-size: 32px;
  color: #00366c;
  border-radius: 50%;
  padding: 8px;
  border: 2px dotted #00366c;
  width: 70px;
  height: 70px;
  line-height: 56px;
  display: inline-block;
}
.contact-us .info-box h3 {
font-size: 20px;
color: #777777;
font-weight: 700;
margin: 10px 0;
}

.contact-us .info-box p {
padding: 0;
line-height: 24px;
font-size: 14px;
margin-bottom: 0;
}

.contact-us .php-email-form {
box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
padding: 30px;
border-radius: 4px;
}

.contact-us .php-email-form .error-message {
display: none;
color: #fff;
background: #ed3c0d;
text-align: left;
padding: 15px;
font-weight: 600;
}

.contact-us .php-email-form .error-message br+br {
margin-top: 25px;
}

.contact-us .php-email-form .sent-message {
display: none;
color: #fff;
background: #18d26e;
text-align: center;
padding: 15px;
font-weight: 600;
}

.contact-us .php-email-form .loading {
display: none;
background: #fff;
text-align: center;
padding: 15px;
}

.contact-us .php-email-form .loading:before {
content: "";
display: inline-block;
border-radius: 50%;
width: 24px;
height: 24px;
margin: 0 10px -6px 0;
border: 3px solid #18d26e;
border-top-color: #eee;
animation: animate-loading 1s linear infinite;
}

.contact-us .php-email-form .form-group {
margin-bottom: 25px;
}

.contact-us .php-email-form input,
.contact-us .php-email-form textarea {
box-shadow: none;
font-size: 14px;
border-radius: 4px;
}

.contact-us .php-email-form input:focus,
.contact-us .php-email-form textarea:focus {
border-color: #111111;
}

.contact-us .php-email-form input {
padding: 10px 15px;
}

.contact-us .php-email-form textarea {
padding: 12px 15px;
}

.contact-us .php-email-form button[type=submit] {
background: #00366c;
border: 0;
padding: 10px 32px;
color: #fff;
transition: 0.4s;
border-radius: 100px;
}

.contact-us .php-email-form button[type=submit]:hover {
background: #00366c;
}

@keyframes animate-loading {
0% {
  transform: rotate(0deg);
}

100% {
  transform: rotate(360deg);
}
}


.section-services .header-section .title:before,
.section-services .header-section .title::after{
  display: none;
}
.we-offer-area .item h4,
.we-offer-area .item .easy-img{
  transition: all 300ms ease-in-out;
} 

.we-offer-area .item { 
  position: relative;
  border: 1px solid #ffffff;  
  transition: all 300ms ease-in-out;
}


.we-offer-area .item:hover {
  border: 1px solid #096ccf;
}
.we-offer-area .item:hover { 
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

.we-offer-area .item:hover .easy-img { 
  filter: grayscale(1); 
}
.we-offer-area .item:hover h4 {
  color: #096ccf;   
}








 
.when-will-charged .pagebuilder-column {
  /* background-color: rgba(255, 255, 255, .8); */
  padding: 30px;
  text-align: center; 
}

figure.pagebuilder-mobile-hidden img.pagebuilder-mobile-hidden {
  width: 100%;
  border: 1px solid #949494;
  padding: 5px;
  border-radius: 5px;
}
.when-will-charged .pagebuilder-column h2.fw5 {
  line-height: 56px;
}
.when-will-charged .pagebuilder-column p  {
  text-align: center;
}


.howit-works-sec {
 background-color: #414950;

}

.howit-works-sec h2 {
  color: #fff; 
}

.howit-works-sec .accordion-button {

  color: #ffffff;    
  background-color: transparent;
 
}

.howit-works-sec .accordion-button::after {   
  
  filter: invert(10);
}


.howit-works-sec .accordion-item {
   border-bottom: 1px solid rgb(255 255 255 / 54%);
   background-color: transparent;
}
.howit-works-sec .accordion-button {
  
  font-size: 20px;
  color: #dcdcdc;
  padding: 1rem 5px;

}

.howit-works-sec .accordion-button:hover {    
 
  color: #fff;    

}

.howit-works-sec .button.simple {
  background: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  border: 1px solid #646b72;
  color: #fff;    
  transition: border-color 0.15s;
  text-transform: uppercase;
  font-size: 16px;
  font-size: 1.6rem;    
  letter-spacing: 0.12em;
  text-align: center;
}


.howit-works-sec .accordion-button:focus {
 
  box-shadow: unset;
}

.howit-works-sec  .accordion-body {
  padding: 0px 1rem 1.25rem;
  color: #fff;
}


.Weonly-charge {
  background-color: #eff2ff;
}

.weeks-right {
  width: 90%;
}

.weeks-right .is-style-features > li {
  overflow: hidden;
  box-sizing: border-box;
  height: 80px;
  padding-top: 0.2em;
  padding-left: 60px;
  padding-right: 60px;
  color: #6682ff;
  border-bottom: 1px solid #6682ff;
  transition: all 0.2s ease-in-out;
  text-align: left;
  font-weight: 400;
}


.weeks-right  .is-style-features {
  list-style: none;
  font-size: 70px;
  font-weight: 200;
  line-height: 1.1;
}
.weeks-left p {
  font-size: 18px;
  line-height: 36px;
}

.weeks-right  .is-style-features > li:hover, .weeks-right  .is-style-features > li:focus, .weeks-right  .is-style-features > li:focus-within {
  padding-top: 0;
  color: #3858e9;
}


.dm-width {
 width: 306px;
 margin: 0 auto;
}

.iphone-mockup {
 position: relative;
 z-index: 5;
}

.dm-device {
  position: relative;
  width: 100%;
  padding-bottom:263.477897%;
  margin-bottom: 20px;
}

.device {
position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  -webkit-background-size: 100% 100%;
  
  background-repeat: no-repeat;
        background-image: url(img/badges-img/Ritu.png);
background-size: cover;
  background-position: center center;
}

.screen {
  overflow: hidden;
  position: absolute;
  top: 40.1%;
  bottom: 2.3%;
  left: 3.49%;
  right: 0;
  background-color: #E91E63;
  width: 100%;
  max-width: 284px;
}

.slider {
height: 100%;
}
.slider div {
height: 100%;
}

.slider__item{
  width: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}




.custom-slide img{
  width: 100% !important;
}



.how-it-works .biggest-img img {
  width: 100%;   
}

.how-it-works .content p {
 
  padding: 0.75em 0 1em 0;
  color: #0c0c0c;
  font-size: 16px;
  line-height: 30px;
  text-align: left;   
  transition: color 0.5s;
}
.how-it-works .content ul li {   
  color: #0c0c0c;
  font-size: 16px;
  line-height: 30px;

}
.service-style-three{
  transition: all 0.5s ease-in-out;
}

/* .service-style-three:hover span,
.service-style-three:hover .info > a {
  color: #00366c;
}
.service-style-three:hover {
  border: 1px solid #00366c;
} */

/* WHAT DO WE DO CSS */ 

.service-style-three .site-heading {
  margin-bottom: 60px;
}

.service-style-three .mb-30 {
  margin-bottom: 30px;
}

.service-style-three {
  padding: 10px;
  margin-bottom: 15px;
  border-radius: 10px;
  position: relative;
  display: grid;
  grid-template-columns: 20% 80%;
  gap: 13px;
}

.service-style-three .icon {
  margin-bottom: 30px;
  text-align: center;
   
  height: 100px;
  width: 100px;
  background: #275c87;
   
  border-radius: 50%;
  display: flex;
  align-items: center;
}

.service-style-three .icon img {
  margin: 0 auto;
  width: 100%;
  max-width: 60px;
  filter: brightness(10);
}
.service-style-three .info h4 a {
  color: #275c87;
  font-size: 35px;
  font-weight: 800;
}
.create-beautiful {
  background: -webkit-linear-gradient(left, #ffffff 0%, #fbfbfb 25%, #e0edf6 100%);
}



.service-style-three p {
  color: #666666;
  margin: 0 0 15px;
  text-transform: none;
  font-weight: 400;
  font-family: var(--font-default);
}
.service-style-three .info > a {
  text-align: right;
  text-transform: uppercase;
  font-size: 14px;
  border-bottom: 1px solid;
  padding-right: 0;
  display: block;
  padding-bottom: 10px;
  padding-top: 10px;
  color: #666666;
}

.service-style-three .info > a i {
  transform: rotate(-45deg);
  margin-left: 5px;
}

.service-style-three span {
  position: absolute;
  height: 50px;
  width: 50px;
  line-height: 50px;
  bottom: 21px;
  color: #d7d4de;
  font-size: 50px;
  padding-right: 100px;
  font-weight: 700;
  background: #ffffff;
}

/* bades-about css */
.bades-about .weeks-right .image-02{
  border: 0px !important;
  object-fit: cover;
}
.bades-about {
  background-color: #fff !important;   
}

.planninganevent{
  background-color: #f6f6f6;
  padding: 30px;
  border-radius: 10px;
}
.bades-about p {
  font-size: 17px;
  line-height: 25px;
}
.bades-about .owl-theme img{width:100%;min-height:200px;}
.bades-about .owl-carousel .owl-prev, .bades-about .owl-carousel .owl-next{position:absolute; top:40%; transform:translateY(-50%); background-color:#fff !important; color:#000 !important; font-size:1.5em !important; width:40px; height:40px; line-height: 5px; border-radius:100% !important; font-weight:bold; padding:15px !important; text-align:center; }
.bades-about .owl-carousel .owl-prev:hover, .bades-about .owl-carousel .owl-next:hover{box-shadow:0px 0px 0px 0px #000; background-color:#2196F3 !important; color:#fff !important;}
.bades-about .owl-carousel .owl-prev{left:-30px;}
.bades-about .owl-carousel .owl-next{right:-30px;}
.bades-about .owl-theme .owl-dots .owl-dot.active span{background:#2196F3 !important; width:25px; transition:0.2s ease-in-out;}
.bades-about .owl-theme .owl-dots .owl-dot:hover span{background:#2196F3 !important; transition:0.2s ease-in-out;}


/* Responsive design custom css */
@media only screen and (max-width:480px){
  .bades-about .owl-theme .bades-about .owl-dots .bades-about .owl-dot{display:none;}
.bades-about .owl-carousel .owl-prev, .bades-about .owl-carousel .owl-next{width:30px; height:30px; font-size:14px !important; top:45%;  }
.bades-about .owl-carousel .owl-prev{left:0px;}
.bades-about .owl-carousel .owl-next{right:0px;}
}
















.lg-back {
  background: #edf2f5;
}
.pull-none {
float: none !important;
}
.row.row-equal {
  display: flex;
  flex-wrap: wrap;
}
#fContentPost .fModule.container {
  padding: 50px 15px;
}
 
ul.fGalleryImages.row.text-center.fGalleryList li {
  width: 33%;
}
@media only screen and (max-width:992px){
  .service-style-three .icon img {
 
    max-width: 30px;
   
  }
  
  .service-style-three .icon {
    margin-bottom: 10px; 
    height: 65px;
    width: 65px; 
  }
  .service-style-three .info h4 a {  
    font-size: 24px;
    font-weight: 600;
}
}

/* Responsive design custom css */
@media only screen and (max-width:767px){
  .service-style-three {
    padding: 3px;
    margin-bottom: 6px;    
    grid-template-columns: 100%;
    gap: 7px;
}
.mb-30 {
  margin-bottom: 5px;
}




.plan-inner .pricing-table-item-price p {
  font-size: 26px;
  margin-bottom: 16px;
  text-align: center;
}

.plan-inner .pricingnew-btn .pricing-btn { 
  padding: 12px 33px;
  font-size: 18px;
  
}

.howit-works-sec .accordion-button {
  font-size: 17px;  
  line-height: 26px;
}

  }


@media (max-width:1820px){
    .tp-header__main-menu nav > ul > li {      
        margin-right: 18px !important;        
    }

    .tp-header__main-menu nav > ul > li > a {       
        font-size: 15px !important;

    }

    .banner_sec .slider_batch .heading-alpha {  
      font-size: 19px;   
  }
}








/* Why Us CSS */ 

/* .frequently-asked-questions{
  background-color: #fff;
} */
.frequently-asked-questions  h2 {
  color: #000;
}

.frequently-asked-questions .accordion-button {
  font-size: 20px;
  color: #000;
  padding: 1rem 5px;
}

.frequently-asked-questions .accordion-item {
  border-bottom: 1px solid rgb(39 39 39 / 54%);
  background-color: transparent;
}

.credits-timeline ul {
--col-gap: 2rem;
--row-gap: 2rem;
--line-w: 0.25rem;
display: grid;
grid-template-columns: var(--line-w) 1fr;
grid-auto-columns: max-content;
column-gap: var(--col-gap);
list-style: none;
/* width: min(60rem, 90%); */
margin-inline: auto;
}

/* line */
.credits-timeline ul::before {
content: "";
grid-column: 1;
grid-row: 1 / span 20;
background: rgb(225, 225, 225);
border-radius: calc(var(--line-w) / 2);
}

/* columns*/

/* row gaps */
.credits-timeline ul li:not(:last-child) {
margin-bottom: var(--row-gap);
}

/* card */
.credits-timeline ul li {
grid-column: 2;
--inlineP: 1.5rem;
margin-inline: var(--inlineP);
grid-row: span 2;
display: grid;
grid-template-rows: min-content min-content min-content;
}

/* date */
.credits-timeline ul li .date {
--dateH: 3rem;
height: var(--dateH);
margin-inline: calc(var(--inlineP) * -1);

text-align: center;
background-color: var(--accent-color);

color: white;
font-size: 1.25rem;
font-weight: 700;

display: grid;
place-content: center;
position: relative;

border-radius: calc(var(--dateH) / 2) 0 0 calc(var(--dateH) / 2);
}

/* date flap */
.credits-timeline ul li .date::before {
content: "";
width: var(--inlineP);
aspect-ratio: 1;
background: var(--accent-color);
background-image: linear-gradient(rgba(0, 0, 0, 0.2) 100%, transparent);
position: absolute;
top: 100%;

clip-path: polygon(0 0, 100% 0, 0 100%);
right: 0;
}

/* circle */
.credits-timeline ul li .date::after {
content: "";
position: absolute;
width: 2rem;
aspect-ratio: 1;
background: var(--bgColor);
border: 0.3rem solid var(--accent-color);
border-radius: 50%;
top: 50%;

transform: translate(50%, -50%);
right: calc(100% + var(--col-gap) + var(--line-w) / 2);
}

/* title descr */
.credits-timeline ul li .title,
.credits-timeline ul li .descr {
background: var(--bgColor);
position: relative;
padding-inline: 1.5rem;   
}
.credits-timeline ul li .title {
overflow: hidden;
padding-block-start: 1.5rem;
padding-block-end: 1rem;
font-weight: 500;
}
.credits-timeline ul li .descr {
padding-block-end: 1.5rem;
font-weight: 300;
}


.credits-timeline ul li .title::before {
bottom: calc(100% + 0.125rem);
}



@media (min-width: 40rem) {
.credits-timeline  ul {
grid-template-columns: 1fr var(--line-w) 1fr;
}
.credits-timeline ul::before {
grid-column: 2;
}
.credits-timeline ul li:nth-child(odd) {
grid-column: 1;
}
.credits-timeline ul li:nth-child(even) {
grid-column: 3;
}

/* start second card */
.credits-timeline ul li:nth-child(2) {
grid-row: 2/4;
}

.credits-timeline ul li:nth-child(odd) .date::before {
clip-path: polygon(0 0, 100% 0, 100% 100%);
left: 0;
}

.credits-timeline ul li:nth-child(odd) .date::after {
transform: translate(-50%, -50%);
left: calc(100% + var(--col-gap) + var(--line-w) / 2);
}
.credits-timeline ul li:nth-child(odd) .date {
border-radius: 0 calc(var(--dateH) / 2) calc(var(--dateH) / 2) 0;
}
}

.credits-timeline .credits {
margin-top: 1rem;
text-align: right;
}
.credits-timeline .credits a {
color: var(--color);
}





.tp-breadcrumb-height {
padding-top: 100px;
padding-bottom: 100px;
background-repeat: no-repeat;
background-size: cover;
object-fit: cover;
background-color: #052725;
background-position: center;

} 

.tp-breadcrumb__list {
display: inline-block;
padding: 8px 20px;
background-color: rgba(255, 255, 255, 0.078);
margin-bottom: 20px;
}

.tp-breadcrumb__list span {
font-size: 16px;
font-weight: 400;
color: #ffffff;
text-transform: capitalize;
opacity: 85%;
}
.tp-breadcrumb__title {
font-weight: 800;
font-size: 50px;
line-height: 1;
color: #ffffff;
margin-bottom: 0;
}

.content-image {
margin-top: 7px;
}

.content-image img {
border-radius: 50%;
width: 12%;
border: 4px solid #eee;
}

.content-image.position-right {
position: absolute;
right: -67%;
top: 8%;
}

.content-image.position-left-side {
position: absolute;
left: 0;
top: 10px;
}
.content-info-jk {
padding-left: 35px;
}


@media (max-width:767px){
    .content-info-jk {
      padding-left: 5px;
  }
  .content-image.position-left-side,
  .content-image.position-right{
    position: unset;
  }
  .credits-timeline ul li .title { 
    padding: 10px 7px;
}
.credits-timeline ul li .descr {
   
  font-weight: 300;
  padding: 0px 10px;
}

.content-image img { 
  width: 20%;
  border: 2px solid #eee;
}
.credits-timeline .tp-btn { 
  height: 40px;
  line-height: 40px;
  padding: 0 45px;
  font-size: 15px;
 
}
}
 




/* Info Graphice Inner Css */


@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Maven+Pro:wght@800&display=swap");
:root {
  --font-size: 0.8em;
  --bg1: #f5f8f7;
  --blue: #3498db;
  --green: #2ecc71;
  --purple: #9b59b6;
  --gold: #f1c40f;
  --red: #e74c3c;
  --orange: #e67e22;
  --shadow1: 0 2px 4px #00000026, 0 3px 6px #0000001f;
  --shadow2: 0 2px 6px #00000044, 0 4px 7px #00000022;
}

.infographice{
  padding: 50px 0px;
}

.infographice ul.infoGraphic {
  font-size: var(--font-size);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.infographice ul.infoGraphic li {
  position: relative;
  width: 100%;
  max-width: 25em;
  background: var(--bg1);
  border-radius: 0.5em;
  padding: 30px 0.5em;
  z-index: 1;
  transition: all 0.2s;
  cursor: pointer;
}
.infographice ul.infoGraphic li .numberWrap {
  position: absolute;
}
.infographice ul.infoGraphic li .number {
  font-family: "maven pro", sans-serif;
  font-size: 13em;
  font-weight: 900;
  width: 0.9em;
  text-align: center; 
 margin-left:0px;
 transition: all 0.5s;
  cursor: pointer;
 
}
.infographice ul.infoGraphic li:hover .number {
   margin-left:-37px;
}
.infographice ul.infoGraphic li .number.fontColor1 {
  color: var(--blue);
}
.infographice ul.infoGraphic li .number.fontColor2 {
  color: var(--green);
}
.infographice ul.infoGraphic li .number.fontColor3 {
  color: var(--purple);
}
.infographice ul.infoGraphic li .number.fontColor4 {
  color: var(--gold);
}
.infographice ul.infoGraphic li .number.fontColor5 {
  color: var(--red);
}
.infographice ul.infoGraphic li .number.fontColor6 {
  color: var(--orange);
}
.infographice ul.infoGraphic li .coverWrap {
  transform: rotate(130deg);
  position: absolute;
  width: 18em;
  height: 15em;
  left: -3em;
  top: -1em;
}
.infographice ul.infoGraphic li .coverWrap .numberCover {
  position: absolute;
  background: var(--bg1);
  width: 18em;
  height: 6em;
  border-radius: 50% 50% 0 0;
  border-bottom: 3px solid #f5f8f7;
  transition: all 0.4s;
}
.infographice ul.infoGraphic li .coverWrap .numberCover::before {
  position: absolute;
  content: "";
  bottom: 5px;
  left: 4em;
  right: 4em;
  top: 5em;
  box-shadow: 0 0 30px 17px #48668577;
  border-radius: 100px / 10px;
  z-index: -1;
}
.infographice ul.infoGraphic li .coverWrap .numberCover::after {
  position: absolute;
  bottom: 0;
  content: "";
  left: -10%;
  width: 120%;
  height: 150%;
  background: radial-gradient(at bottom, #48668533, transparent, transparent);
  z-index: 1;
}
.infographice ul.infoGraphic li .content {
  margin: 8em 3em 1em 7em;
  position: relative;
}
.infographice ul.infoGraphic li .content h2 {
  font-size: 1.4em;
  font-weight: 900;
  text-align: center;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.infographice ul.infoGraphic li .content p {
  line-height: 1.5em;
}
.infographice ul.infoGraphic li:hover .coverWrap .numberCover {
  border-radius: 100%;
}
.infographice .icon {
  position: absolute;
  font-size: 2rem;
  text-align: center;
  top: -1.6em;
  left: 50%;
  transform: translatex(-50%);
}
.infographice .icon:before {
  color: #666;
  font-family: FontAwesome;
  font-style: normal;
  font-weight: normal;
  text-decoration: inherit;
}
.infographice .icon img {
  width: 43%;
  filter: invert(1);
}
.infographice .iconCodepen:before {
  content: "\f1cb";
}
.infographice .iconSocial:before {
  content: "\f08a";
}
.infographice .iconAirplane:before {
  content: "\f1d9";
}
.infographice .iconMap:before {
  content: "\f278";
}
.infographice .iconBulb:before {
  content: "\f0eb";
}
.infographice .iconPeace:before {
  content: "\f25b";
}
 
.infographice {
  
  background: var(--bg1);
 
 
}

section#pricing .heding-bg {
    background-color: #275c87!important;    
}

.infographice .controls {
  position: fixed;
  z-index: 2;
  bottom: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  background: #d7d7d7a1;
  padding: 0.5rem 2em;
  border-top-right-radius: 1rem;
  border-top-left-radius: 1rem;
  border: 1px solid #0000004d;
}
 