@charset "UTF-8";
/*----------------------------------------*/
/*  01. THEME DEFAULT CSS START
/*----------------------------------------*/
 
a {
  color: #000000;
  text-decoration: none;
}
 
/*---------------------------------
	typography css start 
---------------------------------*/
ol, ul {
  padding-left: 0;
}

  
 
 
 
/*--
    - Spacing
-----------------------------------------*/
.tp-bt-btn {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  padding: 20px 42px;
  border-radius: 5px;
  background: var(--tp-common-white);
}
.tp-bt-btn:hover {
  color: var(--tp-icon-green);
}
.tp-bt-btn span {
  color: var(--tp-text-2);
  margin-left: 10px;
  text-transform: uppercase;
}
@media only screen and (min-width: 1400px) and (max-width: 1600px) {
  .tp-bt-btn {
    padding: 20px 30px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-bt-btn {
    padding: 20px 15px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-bt-btn {
    box-shadow: rgba(100, 100, 111, 0.1) 1px 5px 20px 1px;
    line-height: 1;
    padding: 16px 25px 12px 25px;
  }
}

.tp-cta-btn {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  padding: 19px 46px;
  border-radius: 5px;
  background: var(--tp-icon-green);
  color: var(--tp-common-white);
}
.tp-cta-btn span {
  text-transform: uppercase;
  color: var(--tp-common-white);
  margin-left: 10px;
  margin-right: 4px;
}
.tp-cta-btn:hover {
  color: var(--tp-text-body);
}

.tp-btn,
.tp-btn-second {
  font-size: 15px;
  line-height: 1;
  font-weight: 700;
  padding: 25px 45px;
  background-color: #0E63FF;
  text-align: center;
  display: inline-block;
  border-radius: 5px;
  text-transform: uppercase;
  color: var(--tp-common-white);
  position: relative;
  overflow: hidden;
  z-index: 1;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .tp-btn,
.tp-btn-second {
    padding: 20px 40px;
  }
}
.tp-btn::after,
.tp-btn-second::after {
  content: "";
  height: 300px;
  width: 300px;
  background-color: #2974FF;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%) scale(0);
  transition: 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: -1;
}
.tp-btn:hover,
.tp-btn-second:hover {
  color: #fff;
}
.tp-btn:hover::after,
.tp-btn-second:hover::after {
  transform: translateY(-50%) translateX(-50%) scale(1);
}

@media (max-width: 767px) {
  .tp-btn {
    margin-right: 5px;
  }
}

.tp-btn-second {
  background: var(--tp-icon-green);
}
@media (max-width: 767px) {
  .tp-btn-second {
    margin-left: 0px;
    margin-top: 10px;
  }
}
.tp-btn-second::after {
  content: "";
  height: 300px;
  width: 300px;
  background-color: #13D9A8;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%) scale(0);
  transition: 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: -1;
}

/* 01. ========= video ripple animation ========== */
@keyframes tp-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(16, 208, 161, 0.4);
  }
  70% {
    box-shadow: 0 0 0 45px rgba(16, 208, 161, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(16, 208, 161, 0);
  }
}
/* 02. ========= video ripple animation ========== */
@keyframes tp-pulse-2 {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
  }
  70% {
    box-shadow: 0 0 0 45px rgba(255, 255, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}
/* 03. ========= ripple animation ========== */
@keyframes popupBtn {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }
  50% {
    transform: scale(1.6);
    opacity: 0.3;
  }
  100% {
    transform: scale(2.2);
    opacity: 0;
  }
}
/* 04. ========= btn-arrow-animation ========== */
@keyframes tfLeftToRight {
  49% {
    transform: translateX(30%);
  }
  50% {
    opacity: 0;
    transform: translateX(-30%);
  }
  51% {
    opacity: 1;
  }
}
/* 05. ========= firefly ========== */
@keyframes firefly {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
    color: white;
  }
}
/* 06. ========= ripple animation ========== */
.tp-ripple-white {
  border-radius: 50%;
  animation: ripple-white 2s linear infinite;
}

@-webkit-keyframes tp-ripple-white {
  0% {
    box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.5), 0 0 0 20px rgba(255, 255, 255, 0.5);
  }
  100% {
    box-shadow: 0 0 0 20px rgba(255, 255, 255, 0.5), 0 0 0 30px rgba(255, 255, 255, 0);
  }
}
@keyframes tp-ripple-white {
  0% {
    box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.5), 0 0 0 20px rgba(255, 255, 255, 0.5);
  }
  100% {
    box-shadow: 0 0 0 20px rgba(255, 255, 255, 0.5), 0 0 0 30px rgba(255, 255, 255, 0);
  }
}
/*--
    - Background color
-----------------------------------------*/
  
 

.tp-nav-tavs {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #171151;
  font-weight: 700;
  font-size: 14px;
}
.tp-nav-tavs li {
      position: relative;
    border: 1px solid #00a69c;
    margin-left: 5px;
    margin-right: 5px;
    background-color: #fff;
    margin-bottom: 8px;
}
.tp-nav-tavs li::before {
  position: absolute;
  content: "";
  height: 40px;
  width: 1px;
  background: #DFE3E9;
  top: 50%;
  transform: translateY(-50%);
}
.tp-nav-tavs li:first-child::before {
  display: none;
}

.navtabs__icon {      font-size: 90px;
  color: #00a69c;}

.tp-nav-tavs .nav-link.active {
  border-bottom: 4px solid #00a69c;
  color: var(--tp-theme-primary);
  box-shadow: 0px 10px 10px rgba(21, 48, 73, 0.1);
  background-color: var(--tp-common-white);
}
.tp-nav-tavs button {
  padding: 24px 120px;
  background-color: var(--tp-grey-1);
  color: var(--tp-text-2);
  border-bottom: 4px solid var(--tp-grey-1);
  text-transform: uppercase;
  letter-spacing: 1.4px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-nav-tavs button {
    padding: 24px 80px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-nav-tavs button {
    padding: 22px 60px;
  }
}
@media (max-width: 767px) {
  .tp-nav-tavs button {
    padding: 12px 20px;
    min-width: 157px;
  }
}
.tp-nav-tavs button:hover {
  color: var(--tp-icon-green);
}

.nav-info {
  font-size: 18px;
  color: var(--tp-text-2);
}
@media (max-width: 767px) {
  .nav-info br {
    display: none;
  }
}

.navtabs__shape {
  position: absolute;
  top: 33px;
  left: 360px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .navtabs__shape {
    left: 300px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .navtabs__shape {
    left: 230px;
  }
}

.nabthumb img {
  border-radius: 20px;
  width: 100%;
}

@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) {
  .nabmission__content {
    padding-top: 0;
    margin-left: 0;
    margin-right: 0;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), (max-width: 767px) {
  .nabmission p {
    font-size: 14px;
    margin-bottom: 15px;
  }
}
.nabmission__title {
  font-weight: 400;
  font-size: 36px;
  line-height: 1.32;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), (max-width: 767px) {
  .nabmission__title {
    font-size: 28px;
    margin-bottom: 15px;
  }
}

.tp-section__sub-title {
  text-transform: uppercase;
  font-weight: 700;
  color: var(--tp-icon-blue);
  display: inline-block;
}
.tp-section__title {
  font-size: 43px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-section__title {
    font-size: 40px;
  }
}
@media (max-width: 767px) {
  .tp-section__title {
    font-size: 32px;
  }
}
.tp-section i {
  font-size: 18px;
  font-weight: 500;
  font-style: normal;
  margin-bottom: 35px;
  display: block;
}
.tp-section__link {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 25px;
  display: inline-block;
}
.tp-section__link > i {
  display: inline-block;
  margin-bottom: 0;
}
.tp-section__link:hover {
  color: var(--tp-icon-green);
}
.tp-section__link:hover i {
  animation: tfLeftToRight 0.5s forwards;
}
.tp-section p {
  font-size: 15px;
  display: block;
  padding-right: 55px;
}
@media only screen and (min-width: 1400px) and (max-width: 1600px) {
  .tp-section p {
    padding: 10px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-section p {
    padding: 0px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-section p {
    padding: 0px;
    font-size: 14px;
    margin-bottom: 20px;
  }
}
@media (max-width: 767px) {
  .tp-section p {
    padding: 0px;
    font-size: 14px;
    margin-right: 0;
  }
}

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

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

.left-line {
  position: relative;
}
.left-line::before {
  content: "";
  width: 35px;
  height: 2px;
  background-color: var(--tp-icon-blue);
  display: inline-block;
  margin-right: 10px;
}

.left-line-white {
  position: relative;
}
.left-line-white::before {
  content: "";
  width: 35px;
  height: 2px;
  background-color: var(--tp-common-white);
  display: inline-block;
  margin-right: 10px;
}
 
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-section-center {
    text-align: center !important;
  }
}

.header__area {
  padding: 40px 90px 40px 80px;
  position: relative;
  z-index: 2;
}
@media only screen and (min-width: 1400px) and (max-width: 1600px), only screen and (min-width: 1200px) and (max-width: 1399px) {
  .header__area {
    padding: 40px 15px;
  }
}

.main-menu {
  margin: 0 0 0 60px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .main-menu {
    margin: 10px 0 0 0;
  }
}
.main-menu ul > li {
  display: inline-block;
  position: relative;
  z-index: 9;
}
.main-menu ul > li > a {
  padding: 15px 0;
  margin: 0 30px;
  font-size: 14px;
  color: var(--tp-text-2);
  font-weight: 700;
  display: block;
  text-transform: uppercase;
}
.main-menu ul > li > a:hover, .main-menu ul > li > a.active {
  color: var(--tp-text-body);
}
@media only screen and (min-width: 1400px) and (max-width: 1600px) {
  .main-menu ul > li > a {
    font-size: 12px;
  }
}
@media only screen and (min-width: 1400px) and (max-width: 1600px), only screen and (min-width: 1200px) and (max-width: 1399px) {
  .main-menu ul > li > a {
    margin: 0 20px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .main-menu ul > li > a {
    font-size: 12px;
  }
}
.main-menu ul > li.has-dropdown a {
  position: relative;
}
.main-menu ul > li.has-dropdown a::after {
  content: "+";
  transform: translateY();
  right: 0;
}
  
  

.green-dot i {
  color: rgba(16, 208, 161, 0.5);
}

.

]sky-bg:hover {
  box-shadow: 0px 7px 11px rgba(66, 191, 255, 0.26);
  background-color: var(--tp-theme-sky);
}

.tp-sky-icon {
  background-color: var(--tp-icon-sky-light);
}
.tp-sky-icon i {
  color: var(--tp-theme-sky);
}

.sky-dot i {
  color: rgba(66, 191, 255, 0.5);
}
 
/*----------------------------------------*/
/*  07. ABOUT CSS START
/*----------------------------------------*/
.about__img {
  position: relative;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .about__img {
    text-align: center;
  }
}
.about__img img {
  border-radius: 0 0 362px 341px;
  max-width: 100%;
}
.about__img-shape-text {
  background: var(--tp-icon-green);
  border-radius: 50%;
}
.about__exprience {
  position: absolute;
  bottom: -135px;
  left: 120px;
  height: 326px;
  width: 326px;
  background: var(--tp-icon-green);
  border-radius: 50%;
  padding: 65px 30px;
  text-align: center;
  -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;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .about__exprience {
    left: 0;
    right: 0;
    margin: 0 auto;
  }
}
@media (max-width: 767px) {
  .about__exprience {
    height: 200px;
    width: 200px;
    padding: 30px;
  }
}
.about__exprience h3 {
  font-size: 115px;
  color: var(--tp-common-white);
  font-family: days one;
  line-height: 1;
}
@media (max-width: 767px) {
  .about__exprience h3 {
    font-size: 80px;
  }
}
.about__exprience i {
  display: inline-block;
  font-size: 24px;
  color: var(--tp-common-white);
  font-weight: 600;
  font-style: normal;
  line-height: 1.3;
  text-align: left;
}
@media (max-width: 767px) {
  .about__exprience i {
    font-size: 16px;
  }
}

.tp-about__info-list ul li {
  font-size: 15px;
  font-weight: 500;
  position: relative;
  padding-left: 34px;
  display: flex;
  align-items: center;
  margin-bottom: 8px;
}
.tp-about__info-list ul li i {
  font-size: 20px;
  color: var(--tp-icon-green);
  position: absolute;
  display: inline-block;
  left: 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-about__content {
    margin-left: 0;
  }
}

.about-thumb-shape {
  position: absolute;
  bottom: 0;
  left: -170px;
}
@media only screen and (min-width: 1400px) and (max-width: 1600px), only screen and (min-width: 1200px) and (max-width: 1399px) {
  .about-thumb-shape {
    left: -100px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .about-thumb-shape {
    left: 0px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .about-thumb-shape {
    left: -120px;
  }
}

.about-video {
  position: absolute;
  top: 230px;
  left: 200px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .about-video {
    left: 360px;
  }
}
@media (max-width: 767px) {
  .about-video {
    left: 0px;
  }
}
.about-video i {
  height: 100px;
  width: 100px;
  line-height: 100px;
  text-align: center;
  background: var(--tp-icon-green);
  border-radius: 50px;
  color: var(--tp-common-white);
  animation: tp-pulse 2s infinite;
}
.about-video i:hover {
  background-color: var(--tp-theme-blue);
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .about-content {
    margin-left: 0;
  }
}

@media (max-width: 767px) {
  .about-thumb {
    margin-left: 0;
  }
  
  
}
@media (max-width: 767px) {
  .about-thumb img {
    max-width: 100%;
  }
}

@media (max-width: 767px) {
  .tp-box-space {
    margin-left: 0;
    margin-right: 0;
  }
}

.ab-title {
  font-size: 36px;
  font-weight: 400;
}
@media (max-width: 767px) {
  .ab-title {
    font-size: 30px;
  }
}

.about-align {
  padding-left: 80px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px), only screen and (min-width: 1200px) and (max-width: 1399px) {
  .about-align {
    padding-left: 0;
  }
}

.ab-check-list ul li i {
  color: var(--tp-theme-blue);
}

.tp-ab-main-img {
  margin-right: 15px;
}
@media (max-width: 767px) {
  .tp-ab-main-img {
    margin-right: 0;
  }
}
.tp-ab-main-img img {
  border-radius: 5px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), (max-width: 767px) {
  .tp-ab-main-img img {
    max-width: 100%;
  }
}

.tp-ab-shape img {
  border-radius: 5px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-ab-shape img {
    max-width: 100%;
  }
}
.tp-ab-shape .ab-shape-one {
  margin-bottom: 15px;
}

.tp-ab-counter {
  border-radius: 5px;
  width: 236px;
  height: 258px;
  padding: 31px 15px 15px 15px;
  left: 50px;
  bottom: 7px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-ab-counter {
    left: 0;
    bottom: 0;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-ab-counter {
    left: 90px;
    bottom: -125px;
  }
}
@media (max-width: 767px) {
  .tp-ab-counter {
    width: 170px;
    height: 190px;
    left: 85px;
    bottom: -35px;
  }
}

@media (max-width: 767px) {
  .tp-ab-img {
    justify-content: center;
  }
}

.about-title {
  font-size: 36px;
  text-transform: capitalize;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), (max-width: 767px) {
  .about-title {
    font-size: 30px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), (max-width: 767px) {
  .about-title br {
    display: none;
  }
}

.ab-count {
  left: -110px;
  bottom: 35px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 1200px) and (max-width: 1399px) {
  .ab-count {
    left: 0;
    bottom: 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .ab-count {
    left: 0;
    bottom: -80px;
  }
}

.tp-3-thumb {
  display: flex;
  justify-content: end;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-3-thumb {
    justify-content: center;
  }
}

.tp-ab-sm-title {
  font-size: 36px;
}

/*----------------------------------------*/
/*  08. COUNTER CSS START
/*----------------------------------------*/
.counter__item {
  border: 1px solid var(--tp-border-primary);
  padding: 75px 40px 70px 55px;
  border-radius: 10px;
  -webkit-transition: all 0.4s ease-out 0s;
  -moz-transition: all 0.4s ease-out 0s;
  -ms-transition: all 0.4s ease-out 0s;
  -o-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
}
@media only screen and (min-width: 1500px) and (max-width: 1700px) {
  .counter__item {
    padding: 75px 30px 70px 30px;
  }
}
@media only screen and (min-width: 1400px) and (max-width: 1600px) {
  .counter__item {
    padding: 75px 20px 70px 25px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .counter__item {
    padding: 75px 20px 70px 25px;
  }
}
.counter__item:hover.counter__item {
  border: 1px solid var(--tp-icon-blue);
}
.counter__item:hover.blue-border {
  border: 1px solid var(--tp-icon-blue);
}
.counter__item:hover.pink-border {
  border: 1px solid var(--tp-icon-pink);
}
.counter__item:hover.sky-border {
  border: 1px solid var(--tp-icon-sky);
}
.counter__item:hover.green-border {
  border: 1px solid var(--tp-icon-green);
}
.counter__icon i {
  clip-path: polygon(0 25%, 50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%);
  background-color: var(--tp-icon-blue);
  display: inline-block;
  height: 20px;
  width: 18px;
  transform: translateY(5px);
  -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;
  flex: 0 0 auto;
  margin-right: 10px;
  animation: firefly 2.5s linear infinite;
}
.counter__icon.pink-hard i {
  background-color: var(--tp-icon-pink);
}
.counter__icon.sky-hard i {
  background-color: var(--tp-icon-sky);
}
.counter__icon.green-hard i {
  background-color: var(--tp-icon-green);
}
.counter__content p {
  font-size: 15px;
  margin-bottom: 0;
}
.counter__title {
  font-size: 48px;
  font-weight: 400;
}

.experience-item span {
  color: #141515;
  font-size: 15px;
  font-weight: 600;
}

.tl-progress {
  height: 200px;
  width: 200px;
  background: #fff;
  text-align: center;
  line-height: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  margin: auto;
  margin-bottom: 25px;
}
.tl-progress input {
  color: #171151 !important;
}

/*----------------------------------------*/
/*  09. GALLERY CSS START
/*----------------------------------------*/
@media (max-width: 767px) {
  .tp-gallery {
    margin-left: 0;
    margin-right: 0;
  }
}
.tp-gallery__item:hover .tp-gallery__img::before {
  height: 100%;
}
.tp-gallery__item:hover .tp-gallery__content {
  bottom: 27px;
  opacity: 1;
  visibility: visible;
}
.tp-gallery__item:hover .tp-gallery__info {
  top: 35px;
  transform: rotateY(180deg);
  opacity: 1;
  visibility: visible;
}
.tp-gallery__img img {
  width: 100%;
}
.tp-gallery__img::before {
  -webkit-transition: all 0.4s ease-out 0s;
  -moz-transition: all 0.4s ease-out 0s;
  -ms-transition: all 0.4s ease-out 0s;
  -o-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
  position: absolute;
  content: "";
  width: 100%;
  height: 0%;
  background: linear-gradient(179.97deg, rgba(14, 99, 255, 0) 20.71%, #0E63FF 90.16%);
  left: 0px;
  right: 0;
  bottom: 0px;
  z-index: 1;
}
.tp-gallery__info {
  position: absolute;
  top: 0px;
  right: 35px;
  z-index: 5;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.4s ease-out 0s;
  -moz-transition: all 0.4s ease-out 0s;
  -ms-transition: all 0.4s ease-out 0s;
  -o-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
}
.tp-gallery__info a {
  clip-path: polygon(0 25%, 50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%);
  background-color: var(--tp-common-white);
  display: block;
  height: 75px;
  width: 65px;
  text-align: center;
  line-height: 75px;
  font-size: 20px;
  color: var(--tp-common-white);
  position: relative;
}
.tp-gallery__info a::before {
  position: absolute;
  content: "";
  clip-path: polygon(0 25%, 50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%);
  background-color: var(--tp-icon-green);
  display: block;
  height: 65px;
  width: 55px;
  left: 5px;
  top: 5px;
  z-index: -1;
}
.tp-gallery__info a:hover::before {
  background-color: var(--tp-icon-sky);
}
.tp-gallery__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 35px;
  padding-bottom: 0;
  z-index: 5;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.4s ease-out 0s;
  -moz-transition: all 0.4s ease-out 0s;
  -ms-transition: all 0.4s ease-out 0s;
  -o-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
}
.tp-gallery__content span {
  color: var(--tp-common-white);
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 700;
}
.tp-gallery__content span i {
  margin-right: 5px;
}
.tp-gallery__content span a:hover {
  color: var(--tp-icon-green);
}
.tp-gallery__title {
  text-transform: uppercase;
  font-size: 22px;
  color: var(--tp-common-white);
  margin-bottom: 5px;
}
@media only screen and (min-width: 1400px) and (max-width: 1600px), only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-gallery__title {
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  .tp-gallery__title {
    font-size: 16px;
  }
}
.tp-gallery__title a {
  background-image: linear-gradient(#fff, #fff), linear-gradient(#fff, #fff);
  display: inline;
  background-size: 0% 1px, 0 1px;
  background-position: 100% 100%, 0 100%;
  background-repeat: no-repeat;
  transition: background-size 0.4s linear;
}
.tp-gallery__title a:hover {
  background-size: 0% 1px, 100% 1px;
}

.gallery-item-bg {
  margin-top: -215px;
}

.gallery-item img {
  width: 100%;
}
.gallery-item:hover.gallery-item::before {
  height: 210px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .gallery-item:hover.gallery-item::before {
    height: 150px;
  }
}
.gallery-item:hover .gallery-item__content {
  opacity: 1;
  visibility: visible;
  bottom: 30px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), (max-width: 767px) {
  .gallery-item:hover .gallery-item__content {
    bottom: 0;
  }
}
.gallery-item::before {
  position: absolute;
  content: "";
  clip-path: polygon(50% 0%, 100% 60%, 100% 100%, 0 100%, 0 60%);
  bottom: 0px;
  left: 0;
  height: 0px;
  width: 100%;
  background-color: var(--tp-icon-green);
}
@media (max-width: 767px) {
  .gallery-item::before {
    clip-path: polygon(0% 50%, 100% 50%, 100% 100%, 0px 100%, 0 0%);
  }
}
.gallery-item__content {
  position: absolute;
  z-index: 2;
  bottom: -10px;
  left: 0px;
  padding: 10px 20px;
  right: 0;
  margin: 0 auto;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  -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;
}
.gallery-item__content span {
  color: var(--tp-common-white);
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 700;
  -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;
}
.gallery-item__content span i {
  margin-right: 5px;
}
.gallery-item__content span:hover {
  color: var(--tp-icon-blue);
}
.gallery-item__title {
  font-size: 22px;
  color: var(--tp-common-white);
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .gallery-item__title {
    font-size: 18px;
  }
}
.gallery-item__title a {
  background-image: linear-gradient(#fff, #fff), linear-gradient(#fff, #fff);
  display: inline;
  background-size: 0% 1px, 0 1px;
  background-position: 100% 100%, 0 100%;
  background-repeat: no-repeat;
  transition: background-size 0.4s linear;
}
.gallery-item__title a:hover {
  background-size: 0% 1px, 100% 1px;
}

/*----------------------------------------*/
/*  10. CHOOSE CSS START
/*----------------------------------------*/
@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-choose__item {
    margin-left: 0;
  }
}
.tp-choose__item:hover .tp-choose__icon {
  box-shadow: inset 0 0 0 60px var(--tp-icon-blue);
}
.tp-choose__item:hover .tp-choose__icon i {
  color: var(--tp-common-white);
}
.tp-choose__item:hover .pink-icon {
  box-shadow: inset 0 0 0 60px var(--tp-icon-pink);
}
.tp-choose__item:hover .green-icon {
  box-shadow: inset 0 0 0 60px var(--tp-icon-green);
}
.tp-choose__item:hover .sky-icon {
  box-shadow: inset 0 0 0 60px var(--tp-icon-sky);
}
.tp-choose__icon {
  height: 115px;
  width: 115px;
  text-align: center;
  line-height: 130px;
  background-color: rgba(14, 99, 255, 0.1);
  border-radius: 50%;
  -webkit-transition: all 0.4s ease-out 0s;
  -moz-transition: all 0.4s ease-out 0s;
  -ms-transition: all 0.4s ease-out 0s;
  -o-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
}
.tp-choose__icon i {
  color: var(--tp-icon-blue);
  font-size: 45px;
}
.tp-choose__icon.pink-icon {
  background-color: rgba(247, 42, 117, 0.1);
}
.tp-choose__icon.pink-icon i {
  color: var(--tp-icon-pink);
}
.tp-choose__icon.green-icon {
  background-color: rgba(16, 208, 161, 0.1);
}
.tp-choose__icon.green-icon i {
  color: var(--tp-icon-green);
}
.tp-choose__icon.sky-icon {
  background-color: rgba(66, 191, 255, 0.1);
}
.tp-choose__icon.sky-icon i {
  color: var(--tp-icon-sky);
}
.tp-choose__content p {
  color: var(--tp-text-1);
  font-size: 15px;
}
.tp-choose__title {
  color: var(--tp-common-white);
  font-weight: 400;
}

.tp-choose-option span {
  font-size: 18px;
  color: var(--tp-text-1);
  font-weight: 500;
}
.tp-choose-option span a {
  color: var(--tp-common-white);
  text-transform: uppercase;
}
.tp-choose-option span a i {
  margin-left: 5px;
}
.tp-choose-option span a:hover {
  color: var(--tp-icon-pink);
}
.tp-choose-option span a:hover i {
  animation: tfLeftToRight 0.5s forwards;
}



@media (max-width: 767px) {
  .pt_30_pb_30 {
   padding-top: 20px;
    padding-bottom: 20px;
  }
  .mb_30_ar{
      margin-bottom:30px!important;
  }
  .bg_img_fixed_2{
      top: 10px;
  }
  .pt_50_5{
      padding-bottom:10px;
  }
}

