/*-----------------------------------------------------------------------------------

   

-----------------------------------------------------------------------------------

/************ TABLE OF CONTENTS ***************

  01. HEADER CSS START HERE
	02. MEANMENU CSS START HERE
	03. SLIDER CSS START HERE
	04. ABOUT CSS START HERE
	05. FACT CSS START HERE
	06. SERVICE CSS START HERE
	07. PROJECT CSS START HERE
	08. PRICE CSS START HERE
	09. FEATURE CSS START HERE
	10. TESTIMONIAL CSS START HERE
	11. CTA CSS START HERE
	12. BRAND CSS START HERE
	13. FEED CSS START HERE
	14. BLOG CSS START HERE
	15. PROCESS CSS START HERE
	16. PORTFOLIO CSS START HERE
	17. TEAM CSS START HERE
	18. SHOP CSS START HERE
	19. CONTACT CSS START HERE
	20. CART CSS START HERE
	21. FOOTER CSS START HERE



**********************************************/
/*----------------------------------------*/
/*  01. THEME DEFAULT CSS START
/*----------------------------------------*/

@import url('meanmenu.css');
@import url('animate.css');
@import url('swiper-bundle.css');
@import url('slick.css');
@import url('backtotop.css');
@import url('jquery.fancybox.css');
@import url('nice-select.css');
@import url('ui-icon.css');
@import url('fontawesome-all.min.css');

@import url('spacing.css');


@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&family=Roboto:wght@400;500;700&display=swap");
li {
  list-style: none;
}

:root {
  /**
  @font family declaration
  */
  --tp-ff-body: 'Roboto', sans-serif;
  --tp-ff-heading: 'Poppins', sans-serif;
  --tp-ff-p: 'Roboto', sans-serif;
  --tp-ff-fontawesome: "Font Awesome 5 Pro";
  /**
  @color declaration
  */
  --tp-common-white: #ffffff;
  --tp-common-black: #212121;
  --tp-heading-primary: #212121;
  --tp-grey-1: #f7f7f7;
  --tp-grey-2: #eceff4;
  --tp-text-body: #777777;
  --tp-text-p: #777777;
  --tp-theme-1: #56bbed;
  --tp-theme-2: #26145f;
  --tp-border-1: #000;
  /**
  @font weight declaration
  */
  --tp-fw-normal: normal;
  --tp-fw-elight: 200;
  --tp-fw-light: 300;
  --tp-fw-regular: 400;
  --tp-fw-medium: 500;
  --tp-fw-sbold: 600;
  --tp-fw-bold: 700;
  --tp-fw-ebold: 800;
  --tp-fw-black: 900;
  /**
  @font size declaration
  */
  --tp-fz-body: 16px;
  --tp-fz-p: 16px;
  --tp-fz-h1: 40px;
  --tp-fz-h2: 36px;
  --tp-fz-h3: 24px;
  --tp-fz-h4: 20px;
  --tp-fz-h5: 16px;
  --tp-fz-h6: 14px;
}

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

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

a {
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--tp-ff-heading);
  color: var(--tp-heading-primary);
  margin-top: 0px;
  font-weight: var(--tp-fw-bold);
  line-height: 1.2;
  -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;
}

h1 {
  font-size: var(--tp-fz-h1);
}

h2 {
  font-size: var(--tp-fz-h2);
}

h3 {
  font-size: var(--tp-fz-h3);
}

h4 {
  font-size: var(--tp-fz-h4);
}

h5 {
  font-size: var(--tp-fz-h5);
}

h6 {
  font-size: var(--tp-fz-h6);
}

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

p {
  font-family: var(--tp-ff-p);
  font-size: var(--tp-fz-p);
  font-weight: var(--tp-fw-normal);
  color: var(--tp-text-body);
  margin-bottom: 15px;
  line-height: 26px;
}

a,
.btn,
button,
span,
p,
i,
input,
select,
textarea,
li,
img,
svg path,
*::after,
*::before,
.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;
}

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;
  border: 0;
}

.uppercase {
  text-transform: uppercase;
}

.capitalize {
  text-transform: capitalize;
}

input {
  outline: none;
}

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-common-black);
  color: var(--tp-common-white);
  text-shadow: none;
}

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

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

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

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

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

img {
  max-width: 100%;
}

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

.fix {
  overflow: hidden;
}

.clear {
  clear: both;
}

.f-left {
  float: left;
}

.f-right {
  float: right;
}

.z-index-1 {
  z-index: 1;
}

.z-index-11 {
  z-index: 11;
}

.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;
}

/*----------------------------------------
    Body Overlay 
-----------------------------------------*/
.body-overlay {
  background-color: rgba(var(--tp-common-black), 0.5);
  height: 100%;
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 99;
  left: 0;
  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;
}
.body-overlay:hover {
  cursor: pointer;
}

.body-overlay.opened {
  opacity: 1;
  visibility: visible;
}

/*----------------------------------------
    Progress Wrap
-----------------------------------------*/
@media (max-width: 767px) {
  .progress-wrap {
    right: 15px;
    bottom: 15px;
  }
}

.basic-pagination ul li {
  display: inline-block;
}
.basic-pagination ul li:not(:last-child) {
  margin-right: 10px;
}
.basic-pagination ul li a, .basic-pagination ul li span {
  display: inline-block;
  width: 50px;
  height: 50px;
  line-height: 46px;
  text-align: center;
  -webkit-border-radius: 7px;
  -moz-border-radius: 7px;
  -o-border-radius: 7px;
  -ms-border-radius: 7px;
  border-radius: 7px;
  border: 2px solid #f1f1f1;
  font-size: 18px;
  font-weight: 600;
}
.basic-pagination ul li a:hover, .basic-pagination ul li a.current, .basic-pagination ul li span:hover, .basic-pagination ul li span.current {
  background: var(--tp-theme-1);
  border-color: var(--tp-theme-1);
  color: var(--tp-common-white);
}

.nice-select::after {
  border: none;
  background-color: transparent;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  margin-top: 0;
  right: 0;
  content: "\f107";
  font-family: var(--tp-ff-fontawesome);
  transform-origin: center;
  color: var(--tp-common-white);
  font-weight: 500;
  height: auto;
  width: auto;
}
.nice-select.open::after {
  -webkit-transform: translateY(-50%) rotate(-180deg);
  -moz-transform: translateY(-50%) rotate(-180deg);
  -ms-transform: translateY(-50%) rotate(-180deg);
  -o-transform: translateY(-50%) rotate(-180deg);
  transform: translateY(-50%) rotate(-180deg);
}

/*--
    - Background color
-----------------------------------------*/
.grey-bg {
  background: var(--tp-grey-1);
}

.grey-bg-2 {
  background: var(--tp-grey-2);
}

.white-bg {
  background: var(--tp-common-white);
}

.black-bg {
  background: var(--tp-common-black);
}

.theme-bg {
  background: var(--tp-theme-1);
}

.footer-bg {
  background-color: #111111;
}

/*--
    - Spacing
-----------------------------------------*/
/* pulse btn */
.pulse-btn {
  display: inline-block;
  width: 80px;
  height: 80px;
  line-height: 80px;
  text-align: center;
  background-color: var(--tp-theme-1);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  color: var(--tp-common-white);
  animation: pulse 2s infinite;
}
.pulse-btn:hover {
  background-color: var(--tp-common-white);
  color: var(--tp-theme-1);
}
.pulse-btn i {
  padding-left: 2px;
}

/* hambur btn */
.hamurger-btn {
  width: 30px;
  height: 30px;
  position: relative;
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  cursor: pointer;
  background: transparent;
  border: 0;
  outline: 0;
}
.hamurger-btn span {
  display: inline-block;
  width: 100%;
  background: var(--tp-common-black);
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  opacity: 1;
  left: 0;
  z-index: 1;
}
.hamurger-btn span:nth-child(1) {
  top: 0;
}
.hamurger-btn span:nth-child(2) {
  top: 10px;
}
.hamurger-btn span:nth-child(3) {
  top: 20px;
}

/* theme btn */
.tp-btn-simelar {
  display: inline-block;
  font-size: 16px;
  font-weight: 700;
  color: var(--tp-common-white);
  background: #226172;
  height: 48px;
  line-height: 49px;
  text-align: center;
  padding: 0 38px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.tp-btn-simelar i {
  padding-left: 5px;
}
.tp-btn-simelar:hover {
  color: var(--tp-common-white);
  background-color: var(--tp-common-black);
}
.tp-btn-simelar:focus {
  color: var(--tp-common-white);
}

.tp-btn-border {
  display: inline-block;
  font-size: 16px;
  font-weight: 700;
  color: var(--tp-common-black);
  background: none;
  height: 58px;
  line-height: 58px;
  text-align: center;
  padding: 0 38px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  border: 1px solid #ececec;
}
.tp-btn-border:hover {
  color: var(--tp-common-white);
  background-color: var(--tp-common-black);
  border: 1px solid #222;
}
.tp-btn-border i {
  padding-left: 5px;
}

.tp-btn {
  display: inline-block;
  font-size: 16px;
  font-weight: 700;
  color: var(--tp-common-white);
  background: var(--tp-theme-1);
  height: 60px;
  line-height: 60px;
  text-align: center;
  padding: 0 38px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.tp-btn i {
  padding-left: 5px;
}
.tp-btn:hover {
  color: var(--tp-common-white);
  background-color: var(--tp-common-black);
}
.tp-btn:focus {
  color: var(--tp-common-white);
}

.tp-white-btn {
  display: inline-block;
  font-size: 16px;
  font-weight: 700;
  color: var(--tp-common-black);
  background: #f6f6f6;
  height: 60px;
  line-height: 60px;
  text-align: center;
  padding: 0 38px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.tp-white-btn i {
  padding-left: 5px;
}
.tp-white-btn:hover {
  color: var(--tp-common-white);
  background-color: var(--tp-common-black);
}
.tp-white-btn:focus {
  color: var(--tp-common-white);
}

.tp-btn-380-two {
  display: inline-block;
  font-size: 16px;
  font-weight: 700;
  color: var(--tp-common-white);
  background: var(--tp-theme-1);
  height: 60px;
  width: 380px;
  line-height: 60px;
  text-align: center;
  padding: 0 38px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.tp-btn-380-two i {
  padding-left: 5px;
}
.tp-btn-380-two:hover {
  color: var(--tp-common-white);
  background-color: var(--tp-common-black);
}
.tp-btn-380-two:focus {
  color: var(--tp-common-white);
}

.tp-btn-2 {
  display: inline-block;
  font-size: 16px;
  font-weight: 700;
  color: var(--tp-common-white);
  background: var(--tp-theme-1);
  height: 48px;
  line-height: 48px;
  text-align: center;
  padding: 0 38px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.tp-btn-2 i {
  padding-left: 5px;
}
.tp-btn-2:hover {
  color: var(--tp-common-white);
  background-color: var(--tp-common-black);
}
.tp-btn-2:focus {
  color: var(--tp-common-white);
}

.tp-black-btn {
  display: inline-block;
  font-size: 16px;
  font-weight: 700;
  color: var(--tp-common-white);
  background: #171717;
  height: 48px;
  line-height: 49px;
  text-align: center;
  padding: 0 38px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.tp-black-btn i {
  padding-left: 5px;
}
.tp-black-btn:hover {
  color: var(--tp-common-white);
  background-color: var(--tp-theme-1);
}
.tp-black-btn:focus {
  color: var(--tp-common-white);
}

.tp-black-btn-2 {
  display: inline-block;
  font-size: 16px;
  font-weight: 700;
  color: var(--tp-common-white);
  background: #171717;
  height: 60px;
  line-height: 60px;
  text-align: center;
  padding: 0 38px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.tp-black-btn-2 i {
  padding-left: 5px;
}
.tp-black-btn-2:hover {
  color: var(--tp-common-white);
  background-color: var(--tp-theme-1);
}
.tp-black-btn-2:focus {
  color: var(--tp-common-white);
}

.tp-btn-380 {
  display: inline-block;
  font-size: 16px;
  font-weight: 700;
  color: var(--tp-common-white);
  background: #171717;
  height: 60px;
  width: 380px;
  line-height: 60px;
  text-align: center;
  padding: 0 38px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.tp-btn-380 i {
  padding-left: 5px;
}
.tp-btn-380:hover {
  color: var(--tp-common-white);
  background-color: var(--tp-theme-1);
}
.tp-btn-380:focus {
  color: var(--tp-common-white);
}

.tp-btn-white {
  display: inline-block;
  font-size: 16px;
  font-weight: 700;
  color: var(--tp-common-black);
  background: var(--tp-common-white);
  height: 60 px;
  line-height: 60px;
  text-align: center;
  padding: 0 38px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.tp-btn-white i {
  padding-left: 5px;
}
.tp-btn-white:hover {
  color: var(--tp-common-white);
  background-color: var(--tp-common-black);
}
.tp-btn-white:focus {
  color: var(--tp-common-white);
}

/* link btn style 1 */
.link-btn {
  position: relative;
  display: inline-block;
  font-size: 18px;
  color: var(--tp-text-3);
  background: transparent;
  border: 1px solid var(--tp-border-2);
  width: 50px;
  height: 50px;
  text-align: center;
  line-height: 48px;
  padding-right: 25px;
  transition: all ease 0.2s;
  -webkit-transition: all ease 0.2s;
  -moz-transition: all ease 0.2s;
  -ms-transition: all ease 0.2s;
  -o-transition: all ease 0.2s;
  overflow: hidden;
}
.link-btn i {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  transition: all ease 0.2s;
  -webkit-transition: all ease 0.2s;
  -moz-transition: all ease 0.2s;
  -ms-transition: all ease 0.2s;
  -o-transition: all ease 0.2s;
}
.link-btn i:last-child {
  left: 0%;
  visibility: hidden;
  opacity: 0;
}
.link-btn:hover {
  color: var(--tp-common-white);
  background-color: var(--tp-theme-1);
  border-color: var(--tp-theme-1);
}
.link-btn:hover i {
  left: 100%;
  visibility: hidden;
  opacity: 0;
}
.link-btn:hover i:last-child {
  left: 50%;
  visibility: visible;
  opacity: 1;
}

/* link btn style 2 */
.link-btn-2 {
  position: relative;
  font-size: 16px;
  color: var(--tp-text-1);
  font-weight: 500;
  padding-right: 21px;
  display: inline-block;
}
.link-btn-2 i {
  font-size: 14px;
  position: absolute;
  top: 12px;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  transition: all ease 0.2s;
  -webkit-transition: all ease 0.2s;
  -moz-transition: all ease 0.2s;
  -ms-transition: all ease 0.2s;
  -o-transition: all ease 0.2s;
}
.link-btn-2 i:first-child {
  right: 10%;
  visibility: hidden;
  opacity: 0;
}
.link-btn-2 i:last-child {
  right: 0;
}
.link-btn-2:hover {
  color: var(--tp-theme-1);
}
.link-btn-2:hover i:first-child {
  right: 0;
  visibility: visible;
  opacity: 1;
}
.link-btn-2:hover i:last-child {
  right: -10%;
  visibility: hidden;
  opacity: 0;
}
.link-btn-2.link-prev {
  padding-right: 0;
  padding-left: 21px;
}
.link-btn-2.link-prev i:first-child {
  left: 10%;
  right: auto;
}
.link-btn-2.link-prev i:last-child {
  left: 0;
  right: auto;
}
.link-btn-2.link-prev:hover i:first-child {
  left: 0%;
  right: auto;
}
.link-btn-2.link-prev:hover i:last-child {
  left: -10%;
  right: auto;
}

.tp-big-text {
  font-size: 160px;
  color: transparent;
  -webkit-text-stroke: 1px #f4f4f4;
  position: absolute;
  top: -70px;
  left: -40px;
  z-index: -1;
}
@media (max-width: 767px) {
  .tp-big-text {
    font-size: 50px;
    top: -49px;
    left: -10px;
  }
}

.text-center .tp-big-text {
  z-index: -1;
  right: 0;
}

.tp-section-subtitle {
  background: #3c8599;
  color: #fff;
  font-weight: 700;
  padding: 3px 10px;
  text-transform: uppercase;
}

.tp-section-box-2 .tp-section-subtitle {
  color: #3c8599;
  font-weight: 700;
  text-transform: uppercase;
  background: 0;
  padding: 0;
}

.cta-map-section .tp-section-subtitle {
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  background: 0;
  padding: 0;
}

.white-text .tp-section-subtitle {
  color: #fff;
}
.white-text .tp-section-title {
  color: #fff;
}
@media (max-width: 767px) {
  .white-text .tp-section-title {
    font-size: 30px;
  }
}

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

.tp-section-title {
  font-size: 59px;
  letter-spacing: -2.5px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-section-title {
    font-size: 45px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-section-title {
    font-size: 52px;
  }
}
@media (max-width: 767px) {
  .tp-section-title {
    font-size: 35px;
  }
}

.tp-section-white .tp-big-text {
  -webkit-text-stroke: 1px #2e2e2e;
}

.tp-section-title2 {
  color: var(--tp-common-black);
}

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

.pre {
  position: relative;
}
.pre::before {
  content: "";
  width: 30px;
  height: 2px;
  background-color: var(--tp-theme-1);
  display: inline-block;
  margin-right: 14px;
  transform: translateY(-4px);
}
.pre::after {
  content: "";
  width: 30px;
  height: 2px;
  background-color: var(--tp-theme-1);
  display: inline-block;
  margin-left: 14px;
  transform: translateY(-4px);
}

.right {
  position: relative;
}
.right::before {
  position: absolute;
  content: "";
  top: 50%;
  transform: translateY(-50%);
  right: -37px;
  width: 30px;
  height: 2px;
  background-color: var(--tp-theme-1);
}

.right-white {
  position: relative;
}
.right-white::before {
  position: absolute;
  content: "";
  top: 50%;
  transform: translateY(-50%);
  right: -37px;
  width: 30px;
  height: 2px;
  background-color: var(--tp-common-white);
}

.left {
  position: relative;
}
.left::after {
  position: absolute;
  content: "";
  top: 50%;
  transform: translateY(-50%);
  left: -37px;
  width: 30px;
  height: 2px;
  background-color: var(--tp-theme-1);
}



.dvdr i {
  font-size: 12px;
}

@-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);
  }
}
#loading {
  background-color: #fff;
  height: 100%;
  width: 100%;
  position: fixed;
  z-index: 999999;
  margin-top: 0px;
  top: 0px;
  display: none;
}

#loading-center {
  width: 100%;
  height: 100%;
  position: relative;
}

#loading-center-absolute {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 25%;
  transform: translate(-50%, -50%);
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  #loading-center-absolute {
    width: 40%;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  #loading-center-absolute {
    width: 40%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  #loading-center-absolute {
    width: 45%;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  #loading-center-absolute {
    width: 50%;
  }
}
@media (max-width: 575px) {
  #loading-center-absolute {
    width: 60%;
  }
}
#loading {
  background-color: #fff;
  height: 100%;
  width: 100%;
  position: fixed;
  z-index: 999999;
  margin-top: 0px;
  top: 0px;
}

#loading-center {
  width: 100%;
  height: 100%;
  position: relative;
}

#loading-center-absolute {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.object {
  width: 20px;
  height: 20px;
  background-color: #5f3afc;
  -moz-border-radius: 50% 50% 50% 50%;
  -webkit-border-radius: 50% 50% 50% 50%;
  border-radius: 50% 50% 50% 50%;
  margin-right: 20px;
  margin-bottom: 20px;
  position: absolute;
}

#object_one {
  -webkit-animation: object 2s linear infinite;
  animation: object 2s linear infinite;
}

#object_two {
  -webkit-animation: object 2s linear infinite -0.4s;
  animation: object 2s linear infinite -0.4s;
}

#object_three {
  -webkit-animation: object 2s linear infinite -0.8s;
  animation: object 2s linear infinite -0.8s;
}

#object_four {
  -webkit-animation: object 2s linear infinite -1.2s;
  animation: object 2s linear infinite -1.2s;
}

#object_five {
  -webkit-animation: object 2s linear infinite -1.6s;
  animation: object 2s linear infinite -1.6s;
}

@-webkit-keyframes object {
  0% {
    left: 100px;
    top: 0;
  }
  80% {
    left: 0;
    top: 0;
  }
  85% {
    left: 0;
    top: -20px;
    width: 20px;
    height: 20px;
  }
  90% {
    width: 40px;
    height: 15px;
  }
  95% {
    left: 100px;
    top: -20px;
    width: 20px;
    height: 20px;
  }
  100% {
    left: 100px;
    top: 0;
  }
}
@keyframes object {
  0% {
    left: 100px;
    top: 0;
  }
  80% {
    left: 0;
    top: 0;
  }
  85% {
    left: 0;
    top: -20px;
    width: 20px;
    height: 20px;
  }
  90% {
    width: 40px;
    height: 15px;
  }
  95% {
    left: 100px;
    top: -20px;
    width: 20px;
    height: 20px;
  }
  100% {
    left: 100px;
    top: 0;
  }
}
.loading-icon .loading-logo {
  width: 64px;
  height: 64px;
  -webkit-animation: ghurche 4s linear infinite -1.2s;
  animation: ghurche 4s linear infinite -1.2s;
}

@media (max-width: 575px) {
  .loading-icon .loading-logo {
    margin-bottom: 10px;
  }
}
@-webkit-keyframes ghurche {
  0% {
    left: 100px;
    top: 0;
  }
  100% {
    left: 100px;
    top: 0;
  }
}
@keyframes ghurche {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/*----------------------------------------*/
/*  ACCORDION CSS START
/*----------------------------------------*/
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-faq-wrapper {
    padding-left: 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-faq-wrapper {
    padding-left: 0;
  }
}
@media (max-width: 767px) {
  .tp-faq-wrapper {
    padding-left: 0;
  }
}

.tp-custom-accordio .accordion-items {
  margin-bottom: 20px;
}
.tp-custom-accordio .accordion-buttons {
  position: relative;
  width: 100%;
  text-align: left;
  font-size: 18px;
  font-weight: 700;
  padding: 24px 30px;
  background-color: #fafafa;
  color: #212121;
}
.tp-custom-accordio .accordion-buttons::after {
  position: absolute;
  content: "\f068";
  font-family: var(--tp-ff-fontawesome);
  background-image: none;
  top: 28px;
  right: 30px;
  color: #212121;
  width: auto;
  height: auto;
  font-weight: 500;
  font-size: 14px;
}
.tp-custom-accordio .accordion-buttons.collapsed::after {
  content: "\f067";
}
.tp-custom-accordio .accordion-body {
  padding: 20px 30px;
  box-shadow: 0px 16px 32px 0px rgba(0, 0, 0, 0.06);
}

.tp-custom-accordio-2 {
  padding-top: 100px;
  padding-bottom: 100px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .tp-custom-accordio-2 {
    padding-bottom: 0px;
    padding-top: 20px;
  }
}
.tp-custom-accordio-2 .accordion-items {
  margin-bottom: 20px;
  border: 1px solid #e0e5eb;
}
.tp-custom-accordio-2 .accordion-buttons {
  position: relative;
  width: 100%;
  text-align: left;
  font-size: 18px;
  font-weight: 700;
  padding: 24px 30px;
  color: #212121;
  padding-right: 50px;
}
.tp-custom-accordio-2 .accordion-buttons::after {
  position: absolute;
  content: "\f068";
  font-family: var(--tp-ff-fontawesome);
  background-image: none;
  top: 28px;
  right: 30px;
  color: #bfbfbf;
  width: auto;
  height: auto;
  font-weight: 500;
  font-size: 14px;
}
.tp-custom-accordio-2 .accordion-buttons.collapsed::after {
  content: "\f067";
}
.tp-custom-accordio-2 .accordion-body {
  padding: 30px;
  padding-top: 0;
  color: #777777;
  position: relative;
}
.tp-custom-accordio-2 .accordion-body .accordio-icon {
  position: absolute;
  right: 17px;
  top: -4px;
  z-index: -1;
}
.tp-custom-accordio-2 .accordion-body .accordio-icon i {
  font-size: 100px;
  color: #f7f7f7;
}

/*----------------------------------------*/
/*  01. HEADER CSS START HERE
/*----------------------------------------*/
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .header-1-space {
    padding: 0 15px;
  }
}

@media only screen and (min-width: 1601px) and (max-width: 1800px) {
  .header-area {
    padding: 0 30px;
  }
}
@media only screen and (min-width: 1400px) and (max-width: 1600px) {
  .header-area {
    padding: 0 30px;
  }
}
@media (max-width: 767px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .header-area {
    padding: 15px 0;
  }
}

.tp-header-2-mobile-area {
  padding: 20px 0;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .header-area-flat {
    padding: 20px 25px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header-area-flat {
    padding: 20px 25px;
  }
}
@media (max-width: 767px) {
  .header-area-flat {
    padding: 20px 0px;
  }
}

.toast {
  width: 100%;
  max-width: 100%;
  font-size: inherit;
  pointer-events: auto;
  background-color: inherit;
  background-clip: padding-box;
  border: 0;
  box-shadow: none;
  border-radius: 0;
}

.btn-close.btn-close-white {
  position: absolute;
  right: 100px;
  top: 17px;
}
@media (max-width: 767px) {
  .btn-close.btn-close-white {
    right: 0;
    top: auto;
    bottom: 3px;
    font-size: 12px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .header-area-space {
    padding-bottom: 24px;
  }
}

.notification-color .notification-text p {
  color: #777777;
}
.notification-color .notification-text p b {
  color: var(--tp-common-black);
}

.notification-text p {
  color: #fff;
}
.notification-text p b {
  color: #ffb614;
}

.tp-top-menu ul {
  text-align: right;
}
.tp-top-menu ul li {
  display: inline-block;
  padding-left: 30px;
  position: relative;
  transition: 0.3s;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-top-menu ul li {
    padding-left: 5px;
    margin-left: 3px;
  }
}
.tp-top-menu ul li:hover > a {
  color: var(--tp-theme-1);
}
.tp-top-menu ul li:hover ul {
  opacity: 1;
  visibility: visible;
}
.tp-top-menu ul li ul {
  width: 120px;
  background-color: #222;
  padding: 15px 20px;
  text-align: left;
  position: absolute;
  top: 100%;
  right: 0;
  z-index: 99;
  padding-top: 12px;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}
.tp-top-menu ul li ul li {
  margin: 0;
  padding-left: 0;
  display: block;
  line-height: 1;
  margin-bottom: 6px;
}
.tp-top-menu ul li ul li a {
  padding: 0;
  font-size: 13px;
  line-height: 1;
}
.tp-top-menu ul a {
  color: var(--tp-common-white);
  font-weight: var(--tp-fw-bold);
  display: inline-block;
  font-size: 14px;
  padding: 6px 0;
}

.notification-color .tp-top-menu a {
  color: var(--tp-common-black);
}
.notification-color .header-lan-menu::before {
  background-color: #d7d7d7;
}
.notification-color .tp-top-menu ul li ul li a {
  color: #fff;
}
.notification-color .tp-top-menu ul li ul li a:hover {
  color: var(--tp-theme-1);
}

.header-lan-menu {
  position: relative;
}
.header-lan-menu::before {
  position: absolute;
  content: "";
  top: 10px;
  left: 0;
  height: 20px;
  width: 2px;
  background-color: #383838;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header-lan-menu::before {
    display: none;
  }
}

.tp-top-notification-menu-3 ul {
  text-align: right;
}
.tp-top-notification-menu-3 ul li {
  display: inline-block;
  padding-left: 30px;
  margin-left: 30px;
  position: relative;
  transition: 0.3s;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-top-notification-menu-3 ul li {
    padding-left: 5px;
    margin-left: 3px;
  }
}
.tp-top-notification-menu-3 ul li:last-child::after {
  position: absolute;
  content: "";
  top: 4px;
  left: 0;
  height: 20px;
  width: 2px;
  background-color: #d7d7d7;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-top-notification-menu-3 ul li:last-child::after {
    display: none;
  }
}
.tp-top-notification-menu-3 ul li:hover a {
  color: var(--tp-theme-1);
}
.tp-top-notification-menu-3 ul a {
  color: var(--tp-common-black);
  font-weight: var(--tp-fw-bold);
  display: inline-block;
  font-size: 14px;
}

.tp-main-menu ul li {
  display: inline-block;
  position: relative;
  margin: 0 25px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-main-menu ul li {
    margin: 0 15px;
  }
}
.tp-main-menu ul li.has-dropdown:after {
  content: "\f078";
  font-family: var(--tp-ff-fontawesome);
  color: var(--tp-common-black);
  font-size: 14px;
}
.tp-main-menu ul li a {
  font-weight: var(--tp-fw-bold);
  color: var(--tp-common-black);
  padding: 42px 0;
  display: inline-block;
}
.tp-main-menu ul li:hover::after {
  color: var(--tp-theme-1);
}
.tp-main-menu ul li:hover a {
  color: var(--tp-theme-1);
}
.tp-main-menu ul li .submenu {
  position: absolute;
  width: 220px;
  background-color: var(--tp-common-black);
  padding: 30px;
  top: 105%;
  left: 0;
  text-align: left;
  transition: 0.3s;
  opacity: 0;
  visibility: hidden;
  z-index: 5;
}
.tp-main-menu ul li .submenu li {
  display: block;
  margin: 0;
  padding-left: 0;
}
.tp-main-menu ul li .submenu li::before {
  display: none;
}
.tp-main-menu ul li .submenu li a {
  color: var(--tp-common-white);
  padding: 0;
  font-size: 14px;
  line-height: 18px;
  font-weight: 400;
}
.tp-main-menu ul li .submenu li a:hover {
  color: var(--tp-theme-1);
}
.tp-main-menu ul li .submenu li:not(:last-child) {
  margin-bottom: 10px;
}
.tp-main-menu ul li:hover > .submenu {
  top: 100%;
  visibility: visible;
  opacity: 1;
}

.search-form {
  position: absolute;
  top: 80px;
  right: 50%;
  padding: 40px;
  background-color: black;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}
.search-form input {
  padding-right: 50px;
  width: 270px;
  margin-bottom: 0;
  color: inherit;
  border: none;
  display: block;
  height: 56px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-width: 0 0 1px 0;
  font-size: 16px;
  line-height: 1.7;
  font-weight: 500;
  color: var(--tp-common-white);
  background-color: transparent;
}
@media (max-width: 767px) {
  .search-form input {
    width: 170px;
    height: 45px;
  }
}
.search-form input::placeholder {
  color: #939393;
}
.search-form input::-moz-placeholder {
  color: #939393;
}
.search-form button {
  position: absolute;
  right: 50px;
  top: 44%;
  color: #939393;
}

.search-form.header_search-open {
  opacity: 1;
  visibility: visible;
  top: 69px;
}

.tp-header-right {
  display: flex;
  align-items: center;
  justify-content: end;
}

.tp-h-search i:last-child {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  transform: scale(0);
  transform-origin: center;
}
.tp-h-search.opened i:first-child {
  transform: scale(0);
}
.tp-h-search.opened i:last-child {
  transform: scale(1);
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
}

.tp-header-icon {
  height: 48px;
  width: 48px;
  border: 1px solid #e8e8e8;
  display: inline-block;
  text-align: center;
  line-height: 45px;
  margin-left: 10px;
}
.tp-header-icon:hover {
  background-color: var(--tp-theme-1);
  border: 1px solid #3c8599;
  color: #fff;
}

.tp-header-icon2 {
  height: 48px;
  width: 48px;
  border: 1px solid #e8e8e8;
  display: inline-block;
  text-align: center;
  line-height: 45px;
  margin-left: 10px;
  color: #fff;
}

.tp-header-icon2:hover {
  color: var(--tp-common-black);
}

.tp-sidebar-menu {
  position: fixed;
  right: -100%;
  top: 0;
  width: 320px;
  height: 100%;
  background: #ffffff none repeat scroll 0 0;
  -webkit-box-shadow: -5px 0 20px -5px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: -5px 0 20px -5px rgba(0, 0, 0, 0.5);
  box-shadow: -5px 0 20px -5px rgba(0, 0, 0, 0.5);
  -webkit-transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -moz-transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  z-index: 9999;
  padding: 30px;
  min-width: 300px;
  overflow-y: scroll;
}
@media (max-width: 767px) {
  .tp-sidebar-menu {
    width: 290px;
  }
}

.sidebar-close {
  position: absolute;
  left: -45px;
  top: 28px;
  height: 40px;
  width: 40px;
  background: #fff;
  color: #000;
}

.tp-sidebar-menu.sidebar-opened {
  right: 0;
}

.body-overlay {
  background-color: rgba(0, 0, 0, 0.5);
  height: 100%;
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 99;
  left: 0;
  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;
}

.body-overlay.opened {
  opacity: 1;
  visibility: visible;
}

.tp-search-icon {
  padding-left: 10px;
}

.tp-header-contact-icon i {
  font-size: 14px;
  color: var(--tp-common-white);
  font-weight: normal;
  height: 40px;
  width: 40px;
  border: 2px solid #629cac;
  border-radius: 50%;
  text-align: center;
  line-height: 36px;
  margin-right: 15px;
  transition: 0.3s;
}
.tp-header-contact-icon label {
  font-size: 14px;
  color: #c8d9de;
  font-weight: 400;
  font-weight: 400;
  display: block;
  transition: 0.3s;
}
.tp-header-contact-icon a {
  color: var(--tp-common-white);
  font-size: 20px;
  font-weight: var(--tp-fw-bold);
  transition: 0.3s;
}

.select-icon-main .tp-header-contact-icon i {
  font-size: 26px;
  color: var(--tp-common-black);
  font-weight: normal;
  height: 50px;
  width: 50px;
  border: 2px solid #fff;
  background-color: #fff;
  line-height: 45px;
}
.select-icon-main .tp-header-contact-icon a {
  font-size: 18px;
}

.tp-header-contact-icon:hover i {
  background: #fff;
  color: #629cac;
}

.tp-header-menu-area {
  position: absolute;
  bottom: -36px;
  left: 0;
  width: 100%;
  z-index: 9;
}


.tp-header-contact-icon-2 i {
  height: 60px;
  width: 60px;
  line-height: 60px;
}

.tp-header-contact-icon-3 i {
  height: 60px;
  width: 60px;
  line-height: 60px;
  background-color: var(--tp-theme-1);
  border: none;
  font-size: 24px;
}

.tp-search-wrapper input::placeholder {
  color: #c9c9c9;
  text-transform: uppercase;
}

.tp-search-wrapper input {
  border: 0;
  text-transform: lowercase;
  font-size: 16px;
  font-weight: 500;
  background: 0;
  width: 170px;
  padding-right: 20px;
}
.tp-search-wrapper i {
  color: #222;
  padding-right: 5px;
}

.notification-text-3 p {
  color: #777777;
}
.notification-text-3 p b {
  color: var(--tp-common-black);
}

.header-sticky {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: #fff;
  z-index: 999;
}

/*----------------------------------------*/
/*  02. MEANMENU CSS START HERE
/*----------------------------------------*/
.mobile-menu .sidebar-list {
  clear: both;
}
.mobile-menu .sidebar-list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 5px;
}
.mobile-menu .sidebar-list li::after {
  top: 10px;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  border: 1px solid #666;
  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-1);
  color: #fff;
  display: inline-block;
  width: 35px;
  height: 35px;
  text-align: center;
  font-size: 14px;
  line-height: 34px;
}

/* 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;
  overflow: hidden;
  margin-bottom: 30px;
}

.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: 10px 0;
  color: var(--clr-common-black);
  border-top: 1px solid #ebebeb;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 700;
}
.mean-container .mean-nav ul li a:hover {
  color: var(--clr-theme-1);
}

.mean-container .mean-nav ul li a.mean-expand {
  margin-top: 5px;
  padding: 0 !important;
  line-height: 14px;
  border: 1px solid #ebebeb !important;
  height: 30px;
  width: 30px;
  line-height: 30px;
  color: var(--clr-common-black);
  line-height: 30px;
  top: 0;
  font-weight: 400;
}
.mean-container .mean-nav ul li a.mean-expand:hover {
  background: var(--clr-theme-1);
  color: var(--clr-common-white);
  border-color: var(--clr-theme-1);
}

.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(--clr-common-black);
}

.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(--clr-common-black);
}




/*----------------------------------------*/
/*  06. SERVICE CSS START HERE
/*----------------------------------------*/
.tpservices{
  padding: 25px 0 0 0;
  position: relative;
  overflow: hidden;
}
.tpservices__thumb {
  width: 130px;
  height: 130px;
  position: relative;
  background-color: var(--tp-common-white);
  border-radius: 50%;
  margin: 0 auto;
}
/*
.tpservices__thumb:before {
  background-image: -moz-linear-gradient(90deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 100%);
  background-image: -webkit-linear-gradient(90deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 100%);
  background-image: -ms-linear-gradient(90deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 100%);
  content: "";
  height: 90px;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
}
*/
.tpservices:hover img {
  transform: scale(1.1);
}
.tpservices__content {
  padding:0 40px 0px 40px;
 
  /*box-shadow: 0px 16px 32px 0px rgba(0, 0, 0, 0.06);
  background: #fff;*/
  position: relative;
  z-index: 2;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tpservices__content {
    padding: 36px;
  }
}
.tpservices__content i {
  margin-top: -30px;
  position: relative;
  z-index: 1;
  margin-bottom: 30px;
  color: #3C8599;
  font-size: 75px;
}
.tpservices__content p {
  font-size: 14px;
  margin: 0;
}
.tpservices__title {
  font-size: 20px;
  text-align: center;
  padding-top: 10px;
  font-weight: 500;
}
.tpservices__btn {
  font-weight: 400;
  padding: 10px;
  width: 100%;
  transform: translateY(100%);
  transition: 0.3s;
  z-index: 1;
  position: relative;
  left: 0;
  bottom: -8px;
  opacity: 0;
  z-index: 999;
}
.tpservices:hover .tpservices__btn {
  transform: translateY(0);
  opacity: 1;
}

@media (max-width: 767px) {
  .tpservices__thumb img {
    width: 100%;
  }
}


/*----------------------------------------*/
/*  07. PROJECT CSS START HERE
/*----------------------------------------*/
.project-item img {
  width: 100%;
}

.slider-space-60 .slick-slide > div {
  padding: 0 20px;
}

.project-item {
  position: relative;
}
.project-item a {
  position: absolute;
  top: 110px;
  left: 110px;
  background: #fff;
  width: 60px;
  height: 60px;
  text-align: center;
  line-height: 60px;
  opacity: 0;
  visibility: hidden;
  z-index: 5;
}
.project-item a:hover i {
  color: var(--tp-theme-1);
}

.project-item.slick-center a {
  opacity: 1;
  visibility: visible;
}

.tp-project-active .slick-dots {
  text-align: center;
  padding-top: 35px;
}

.tp-project-active .slick-dots li {
  display: inline-block;
  margin: 0 5px;
}

.tp-project-active .slick-dots li button {
  text-indent: -10000px;
  height: 5px;
  width: 20px;
  background: var(--tp-theme-2);
  border-radius: 30px;
  transition: 0.3s;
}

.tp-project-active .slick-dots li.slick-active button {
  background-color: var(--tp-theme-1);
  width: 25px;
}

.tp-process__item {
  background-color: var(--tp-common-white);
  padding: 50px 35px;
}
.tp-process__subtitle {
  font-size: 120px;
  font-weight: bold;
  color: transparent;
  -webkit-text-stroke: 1px #212121;
}
.tp-process__title {
  color: var(--tp-common-black);
  font-size: 24px;
  font-weight: var(--tp-fw-bold);
}
.tp-process p {
  color: #777777;
  font-size: 14px;
}

.tp-project-icon a {
  height: 100px;
  width: 100px;
  background-color: var(--tp-theme-1);
  border-radius: 50%;
  text-align: center;
  line-height: 100px;
  display: inline-block;
  position: absolute;
  top: 0;
  right: -30px;
  transition: 0.3s;
}
.tp-project-icon::before {
  content: "";
  height: 95px;
  width: 95px;
  background-color: #f8f8f8;
  border-radius: 50%;
  text-align: center;
  line-height: 95px;
  display: inline-block;
  position: absolute;
  top: 13px;
  right: -18px;
  transition: 0.3s;
}
.tp-project-icon:hover::before {
  background-color: var(--tp-theme-1);
}
.tp-project-icon:hover a {
  background-color: black;
  color: var(--tp-theme-1);
}

/*----------------------------------------*/
/*  08. PRICE CSS START HERE
/*----------------------------------------*/
.pricing-area {
  padding-top: 225px;
  margin-top: -125px;
}


/*----------------------------------------*/
/*  12. BRAND CSS START HERE
/*----------------------------------------*/
.tp-brand-big-text h3 {
  position: absolute;
  font-size: 160px;
  font-weight: 700;
  -webkit-text-stroke: 1px #2d2d2d;
  color: transparent;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-brand-big-text h3 {
    font-size: 120px;
  }
}

.brand-power {
  position: relative;
  z-index: 2;
  text-align: center;
}

.slick-slide img {
  display: inline-block;
}

@media (max-width: 767px) {
  .tp-brand-big-text {
    display: none;
  }
}

@media (max-width: 767px) {
  .tp-brand-item .slick-slide img {
    display: inline-block;
  }
}

@media (max-width: 767px) {
  .tp-brand-item {
    text-align: center;
  }
}


.select-main {
  background-color: #fff;
  padding: 55px;
  padding-bottom: 0;
  box-shadow: 0px 16px 32px 0px rgba(0, 0, 0, 0.06);
  position: relative;
  z-index: 9;
}
@media (max-width: 767px) {
  .select-main {
    padding: 0;
  }
}

.select-text span {
  font-weight: bold;
  color: #222;
  font-size: 18px;
}

.select-icon-main {
  padding: 20px;
  background-color: var(--tp-theme-1);
  position: relative;
  z-index: 2;
  padding-bottom: 0;
}

.select-item .form-select:focus {
  box-shadow: none;
}
.select-item .nice-select {
  -webkit-tap-highlight-color: transparent;
  background-color: #fff;
  border-radius: 5px;
  border: solid 1px #e8e8e8;
  clear: both;
  cursor: pointer;
  display: block;
  float: left;
  font-family: inherit;
  font-size: 14px;
  font-weight: normal;
  height: 60px;
  line-height: 45px;
  outline: 0;
  padding-left: 18px;
  padding-right: 30px;
  position: relative;
  text-align: left !important;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  white-space: nowrap;
  width: 100%;
}
.select-item .nice-select .option {
  cursor: pointer;
  font-weight: 400;
  line-height: 40px;
  list-style: none;
  min-height: 40px;
  outline: none;
  padding-left: 18px;
  padding-right: 29px;
  text-align: left;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  width: 100%;
}
.select-item .nice-select .list {
  width: 100%;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .select-item .nice-select {
    width: 310px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .select-item .nice-select {
    width: 260px;
  }
}
@media (max-width: 767px) {
  .select-item .nice-select {
    width: 100%;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .select-text-size .tp-header-icon-info a {
    font-size: 15px;
  }
}

/*----------------------------------------*/
/*  19. CONTACT CSS START HERE
/*----------------------------------------*/


.contact__input {
  position: relative;
  margin-bottom: 15px;
}
.contact__input i {
  font-size: 17px;
  color: var(--tp-theme-1);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 23px;
}
.contact__input input {
  padding: 10px 15px;
  border: 0;
  height: 50px;
  background-color: rgb(255, 255, 255);
  color: #999999;
  border: 1px solid rgba(0,0,0,.1);
}
.contact__input input::placeholder {
  color: #999999;
  font-size: 16px;
  font-weight: 400;
}
.contact__input textarea {
  padding: 10px 15px;
  border: 0;
  background-color: rgb(255, 255, 255);
  color: #999999;
  outline: none;
  resize: none;
  height: 150px;
  border: 1px solid rgba(0,0,0,.1);
}
.contact__input textarea::placeholder {
  color: #999999;
  font-size: 16px;
  font-weight: 400;
}


/*----------------------------------------*/
/*  21. FOOTER CSS START HERE
/*----------------------------------------*/
.footer-widget-2 .footer-widget-title {
  color: black;
}
.footer-widget-2 .footer-link {
  color: #3c8599;
  border-bottom: 1px solid #3c8599;
  font-weight: 700;
}
.footer-widget-2 .footer-link i {
  padding-left: 15px;
}

.footer-widget-title {
  color: #fff;
  font-size: 16px;
  margin-bottom: 15px;
  font-weight: 600;
}

.footer-widget p {
  color: #aeaeae;
}

.footer-widget ul {
  overflow: hidden;
}
.footer-widget ul li {
  
  margin-bottom: 8px;
  color: #aeaeae;
  list-style: none;
  width: 100%;
  float: left;
  transition: 0.3s;
}
.footer-widget ul li :hover {
  color: var(--tp-theme-1);
}

.footer-widget ul li::before {
  content: "\f105";
  font-family: var(--tp-ff-fontawesome);
  margin-right: 8px;
  display: inline-block;
  transform: translateY(1px);
}

.footer-widget ul li:hover::before {
  color: var(--tp-theme-1);
  margin-right: 5px;
}

.footer-col-2 {
  padding-left: 55px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .footer-col-2 {
    padding-left: 0px;
  }
}

.footer-col-3 {
  padding-left: 10px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .footer-col-3 {
    padding-left: 0px;
  }
}

.footer-col-4 {
  padding-left: 20px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .footer-col-4 {
    padding-left: 0px;
  }
}



.footer-social a {
  margin-right: 20px;
  font-size: 14px;
  height: 30px;
  width: 30px;
  display: inline-block;
  text-align: center;
  line-height: 30px;
  border-radius: 50%;
  background-color: transparent;
  transition: 0.3s;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .footer-social a {
    margin-right: 14px;
  }
}
.footer-social a:hover {
  background-color: var(--tp-theme-1);
  color: var(--tp-common-white);
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .footer-social a {
    margin-right: 8px;
  }
}

.copyright-text p {
  color: #fff;
  margin: 0;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .copyright-text p {
    margin-bottom: 5px;
  }
}
@media (max-width: 767px) {
  .copyright-text p {
    margin-bottom: 5px;
  }
}

.footer-menu ul li {
  display: inline-block;
  color: #fff;
  margin-left: 40px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .footer-menu ul li {
    margin-left: 0;
    margin-right: 20px;
  }
}
@media (max-width: 767px) {
  .footer-menu ul li {
    margin-left: 0;
    margin-right: 20px;
  }
}

.theme-white {
  padding: 25px 40px;
  box-shadow: -16px 0px 32px 0px rgba(0, 0, 0, 0.04);
  padding-bottom: 10px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .theme-white {
    padding-left: 0;
  }
}
@media (max-width: 767px) {
  .theme-white {
    padding: 10px;
    padding-top: 20px;
  }
}

@media (max-width: 767px) {
  .tp-footer-logo {
    margin-bottom: 15px;
  }
}

.tp-footer-social a {
  color: #222;
  height: 50px;
  width: 50px;
  border-radius: 50%;
  line-height: 50px;
  background-color: #f1f1f1;
  display: inline-block;
  text-align: center;
  margin-right: 10px;
  transition: 0.3s;
  margin-bottom: 15px;
}
@media (max-width: 767px) {
  .tp-footer-social a {
    margin-right: 2px;
  }
}
.tp-footer-social :hover {
  background-color: var(--tp-theme-1);
  color: #fff;
}

.tp-footer-btn {
  background-color: var(--tp-theme-1);
  display: inline-block;
  height: 100%;
  position: absolute;
  padding: 0 25px;
  top: 0;
  right: 0;
}
.tp-footer-btn .tp-f-text {
  font-size: 12px;
  font-weight: 700;
  color: var(--tp-common-white);
  line-height: 1;
}
.tp-footer-btn .tp-f-icon {
  color: var(--tp-common-white);
  padding-top: 20px;
  line-height: 1;
  font-size: 45px;
}

.footer-widget-area-2 {
  margin-top: -50px;
}

.footer-area-white .footer-widget p {
  color: #777;
}
.footer-area-white .footer-widget ul li {
  margin-bottom: 8px;
  color: #777;
  list-style: none;
  width: 50%;
  float: left;
  transition: 0.3s;
}


.footer-sp-title {
  font-size: 32px;
  line-height: 1.2;
  color: var(--tp-theme-1);
  font-weight: var(--tp-fw-sbold);
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .footer-sp-title {
    font-size: 20px;
  }
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .footer-sp-title {
    font-size: 25px;
  }
}
.footer-sp-title i {
  color: var(--tp-theme-1);
  margin-right: 6px;
}
.footer-sp-title a:hover {
  color: var(--tp-common-white);
}

.footer-sp-contact {
  font-size: 17px;
  font-weight: var(--tp-fw-medium);
  color: var(--tp-common-white);
  display: block;
}
.footer-sp-contact a:hover {
  color: var(--tp-theme-1);
}


.bg1{
  background-color: #56bbed;
}
.bg2{
  background-color: #26145f;
}
.group_insti .memberBx{
  padding: 15px 0;
}
.group_insti .member-logo{
  width: 130px;
  height: 130px;
  margin: 0 auto;
  background-color: var(--tp-common-white);
  border-radius: 50%;
 
}
.group_insti .member-logo img{
  max-width: 100%;
}

.member-modal .btn-close{
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 15px;
  background-color: var(--tp-common-white);
  border-radius: 50%;
  opacity: 1;
}

.mem-btn {
  display: inline-block;
  font-size: 16px;
  font-weight: 500;
  color: var(--tp-common-white) !important;
  background: var(--tp-theme-1);
  height: 50px;
  line-height: 50px;
  text-align: center;
  padding: 0 38px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-radius: 2px;
}
.mem-btn i {
  padding-left: 5px;
}
.mem-btn:hover {
  color: var(--tp-theme-2) !important;
  background-color: var(--tp-common-white);
}

.mem-btn2 {
  display: inline-block;
  font-size: 16px;
  font-weight: 500;
  color: var(--tp-common-white) !important;
  background: var(--tp-theme-2);
  height: 50px;
  line-height: 50px;
  text-align: center;
  padding: 0 38px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-radius: 2px;
}
.mem-btn2 i {
  padding-left: 5px;
}
.mem-btn2:hover {
  color: var(--tp-theme-2) !important;
  background-color: var(--tp-common-white);
}

.round-btn {
  display: inline-block;
  font-size: 16px;
  font-weight: 400;
  color: var(--tp-common-white) !important;
  background: var(--tp-theme-2);
  height: 45px;
  line-height: 42px;
  text-align: center;
  text-transform: uppercase;
  padding: 0 38px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-radius: 25px;
  border: 2px solid transparent;
  letter-spacing: 1px;
}
.round-btn i {
  padding-left: 5px;
}
.round-btn:hover {
  color: var(--tp-theme-2) !important;
  background-color: transparent;
  border: 2px solid var(--tp-theme-2);
}


.section-title h2 {
  font-size: 30px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--tp-theme-2);;
  margin: 0 0 25px 0;
  position: relative;
  display: inline-block;
}
@media only screen and (max-width: 767px) {
  .section-title h2 {
    font-size: 24px;
    line-height: 30px;
  }
  .section-title h2.mb-50 {
    margin-bottom: 30px;
  }
}
.section-title h2::before {
  position: absolute;
  content: "";
  left: -100px;
  background-color: #000;
  width: 80px;
  height: 2px;
  top: 17px;
}
@media only screen and (max-width: 767px) {
  .section-title h2::before {
    left: -40px;
    width: 30px;
  }
}
.section-title h2::after {
  position: absolute;
  content: "";
  right: -100px;
  background-color: #000;
  width: 80px;
  height: 2px;
  top: 17px;
}
@media only screen and (max-width: 767px) {
  .section-title h2::after {
    right: -40px;
    width: 30px;
  }
}

.inner-title{
  color: var(--tp-theme-2);
}

.tpcourse__title {
  font-size: 18px !important;
  line-height: 1.5;
  color: #fff;
  margin: 0 0 0 13px;
  font-weight: 500;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), (max-width: 767px) {
  .tpcourse__title {
    font-size: 16px;
    line-height: 1.4;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tpcourse__title {
    font-size: 18px;
    line-height: 1.4;
  }
}
.tpcourse__title a:hover {
  color: var(--tp-heading-secondary);
}


.mem-amcptrust .mem-photo img{
  padding: 3px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.2);
}
.mem-amcptrust h4{
  margin-top: 5px;
  color: var(--tp-theme-2);
}
.mem-amcptrust h6{
  font-size: 18px;
  font-weight: 400;
  color: var(--tp-theme-1);
  padding: 0;
  margin: 0;
}


/*** 

====================================================================
	Inner Page Banner
====================================================================

***/
.bg_img {
	background-image: url(https://amcp.in/assets/images/titlebar-bg.jpg);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}
.hero-shape {
    position: absolute !important;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}
.page-header-section {
    position: relative;
    background: -webkit-linear-gradient(0deg, #007aff 0%, rgba(0, 122, 255, 0.9) 100%);
    padding: 70px 0 70px;
    overflow: hidden;
}

@media (max-width: 1199px) {
    .page-header-section {
        padding: 50px 0 50px;
    }
}

.page-header-section .container {
    position: relative;
}

.page-content {
    text-align: center;
}
.page-content .skew{
	
  display:inline-block;
  
  background: var(--secondary-color);
  margin:0px auto 10px auto;
  color:var(--black-color);
  padding:5px 20px;
  font-size:17px;
  text-align:center;
  -webkit-transform:skew(-200deg);
  -moz-transform:skew(-200deg);
  transform:skew(-200deg);
}

.page-content .title {
    color: #fff;
    margin-bottom: 10px;
}

.page-content .breadcrumb {
    padding: 0;
    margin: 0;
    justify-content: center;
}

.page-content .breadcrumb li {
    padding: 0;
    color: #007aff;
}

.page-content .breadcrumb li a {
    text-decoration: none;
    color: #0d1856;
}

.page-content .breadcrumb li a::after {
    content: "/";
    margin: 0 5px;
}

.bg-light-gradient {
    background: -webkit-linear-gradient(0deg, #c5d5ff 0%, #e2f0ff 51%, #d7d4ff 100%);
}

.bg-blue-gradient {
    background: -webkit-linear-gradient(0deg, #082654 0%, #0f4ba7 100%);
}


.tie-ups ul{
	list-style-type: none;
	margin: 0;
	padding: 0;
	overflow: hidden;
	vertical-align: middle;
	text-align: center
}
.tie-ups ul li{
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	-webkit-justify-content: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	align-items: center;
    width: 20%;
    height: 130px;
    border: 1px solid rgba(0,0,0,.1);
    float: left;
    margin-left: -1px;
    margin-top: -1px;
    border-top: none;
    border-right: none;
    overflow: hidden;
    vertical-align: middle;
    text-align: center
}
.tie-ups ul li img{
	display: inline-block;
	width: auto;
	height: auto;
	max-width: 85%;
	max-height: 85%
}

@media (max-width: 991px) {
  .tie-ups ul li{
   
      width: 25%;
      
  }
}
@media (max-width: 768px) {
  .tie-ups ul li{
   
      width: 33.33333%;
      height: 100px;

  }
}
@media (max-width: 575px) {
  .tie-ups ul li{
   
      width: 50%;
      height: 100px;

  }
}


.gallery__item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.gallery__item:before {
  content: "";
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  visibility: hidden;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  -webkit-transform: scale(0.8);
  -ms-transform: scale(0.8);
      transform: scale(0.8);
}

.gallery__item:hover:before {
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  visibility: visible;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
      transform: scale(1);
}

.gallery__item:hover .gallery__item--plus {
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  visibility: visible;
}

.gallery__item:hover .gallery__item--content {
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  visibility: visible;
  bottom: 0px;
}

.gallery__item--plus {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%);
  z-index: 10;
  font-size: 40px;
  color: #fff;
  display: inline-block;
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  visibility: hidden;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.gallery__item--content {
  position: absolute;
  left: 0px;
  bottom: -15px;
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  visibility: hidden;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  width: 100%;
  padding-left: 30px;
  padding-bottom: 27px;
  padding-right: 30px;
}

.gallery__item--content h4 {
  font-size: 14px;
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  line-height: 24px;
  color: #fff;
  margin-bottom: 0px;
}

.gallery__item--content h3 {
  font-size: 16px;
  font-family: "Open Sans", sans-serif;
  font-weight: 500;
  line-height: 26px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0px;
}


.left-bg{
  width:15%;
  height:100%;
  background-color:var(--tp-theme-1);
  position:absolute;
  left:0;
  top:0;
  z-index: -1;
}
@media only screen and (max-width:991px){
  .left-bg{
    width: 100%;
    height: 10%;
  }
}

.quoteBx{
  width:100%;
  height:5px;
  background-color:#f0f0f0;
  position:relative;

}
.quoteBx .quote-icons{
  position:absolute;
  top:0;
  left:50%;
  
  transform:translateX(-50%);
  background-color:#fff
}


.quote-icons::after {
content: "❝";
position: absolute;
z-index: 1;
left: 50%;
top: -2px;
transform: translate(-50%, -50%);
width: 1em;
height: 1em;
background: white;
box-shadow: 0 4px 5px -1px hsla(0 0% 0% / 20%);
border-radius: 999px;
display: grid;
place-content: center;
padding-top: .5em;
color: var(--accent-color);
font-size: 45px;
font-style: normal;
text-indent: 0;
}

.msg-bx h2{
  font-size: 24px;
  color: var(--tp-theme-1);
}
.msg-bx h5{
  font-weight: 500;
  
}




.row.gray,
.column.gray
{
	background-color: #F2F4F8;
}
.features-list li
{
	margin-top: 30px;
	word-wrap: break-word;
}
.features-list .item-content
{
	word-wrap: break-word;
	margin-left: 76px;
}
.features-list li:first-child
{
	margin-top: 0;
}
.features-list li .icon
{
	float: left;
}
.features-list li .icon::before
{
	float: left;
	width: 56px;
	font-size: 22px;
	line-height: 56px;
	color: #505563;
	text-align: center;
	background-color: #FFF;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	border-radius: 50%;
}
.features-list li.gray .icon::before
{
	background-color: #F2F4F8;
}
.features-list li h5
{
	margin-top: 0px;
  font-weight: 500;
}
.features-list li p
{
	font-size: 14px;
	line-height: 20px;
	font-weight: 500;
	padding-top: 0;
	padding-bottom: 0;
	color: #868F9E;
  margin: 0px 0 5px 0;
}
.features-list li .icon+.item-content>p:first-child
{
	padding-top: 3px;
}

.map-bx{
  border:1px solid #e6e8ed; padding:5px;
    -webkit-box-shadow: 0px 25px 15px -20px rgb(135 138 170 / 20%);
    -moz-box-shadow: 0px 25px 15px -20px rgba(135,138,170,0.2);
    box-shadow: 0px 25px 15px -20px rgb(135 138 170 / 20%);
}



.single-team-item {
	margin-bottom: 30px;
	-webkit-transition: all ease 0.5s;
	transition: all ease 0.5s;
  }
  
  .single-team-item .team-content {
	position: relative;
	-webkit-box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
			box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
	padding: 20px;
  }
  
  .single-team-item .team-content h3 {
	font-size: 22px;
  }
  
  
  .single-team-item:hover {
	-webkit-transform: translateY(-5px);
			transform: translateY(-5px);
  }

  /* Max width 767px */
@media only screen and (max-width: 767px) {
	  /* Team Area */
	  .single-team-item .team-content {
		background-color: #ffffff;
		-webkit-box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
				box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
		margin-top: 0;
		padding: 20px;
		border-radius: 0 0 4px 4px;
	  }
	  .single-team-item .team-content h3 {
		font-size: 19px;
		margin-bottom: 0;
	  }

}

/* Min width 768px to Max width 991px */
@media only screen and (min-width: 768px) and (max-width: 991px) {
	  /* Team Area */
	  .single-team-item .team-content {
		background-color: #ffffff;
		-webkit-box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
				box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
		margin-top: 0;
		padding: 20px;
		border-radius: 0 0 4px 4px;
	  }
	  .single-team-item .team-content h3 {
		font-size: 19px;
		margin-bottom: 0;
	  }

}

/* Min width 992px to Max width 1199px */
@media only screen and (min-width: 992px) and (max-width: 1199px) {
	  /* Team Area */
	  .single-team-item .team-content h3 {
		font-size: 20px;
	  }
}

/*# sourceMappingURL=style.css.map */


